You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.0 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2010 Jean-Pierre Charras, jp.charras at wanadoo.fr
  5. * Copyright (C) 2014 KiCad Developers, see CHANGELOG.TXT for contributors.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 2
  10. * of the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, you may find one here:
  19. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  20. * or you may search the http://www.gnu.org website for the version 2 license,
  21. * or you may write to the Free Software Foundation, Inc.,
  22. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  23. */
  24. /**
  25. * @file cvpcb_id.h
  26. */
  27. /*
  28. * Command IDs for CvPcb.
  29. *
  30. * Please add IDs that are unique to the component library viewer here and
  31. * not in the global id.h file. This will prevent the entire project from
  32. * being rebuilt when adding new commands to the component library viewer.
  33. */
  34. // Generic IDs:
  35. #include <id.h>
  36. // specific IDs
  37. enum id_cvpcb_frm
  38. {
  39. ID_CVPCB_CREATE_SCREENCMP = ID_END_LIST,
  40. ID_CVPCB_GOTO_FIRSTNA,
  41. ID_CVPCB_GOTO_PREVIOUSNA,
  42. ID_CVPCB_DEL_ASSOCIATIONS,
  43. ID_CVPCB_AUTO_ASSOCIE,
  44. ID_CVPCB_COMPONENT_LIST,
  45. ID_CVPCB_FOOTPRINT_LIST,
  46. ID_CVPCB_FOOTPRINT_DISPLAY_FULL_LIST,
  47. ID_CVPCB_FOOTPRINT_DISPLAY_FILTERED_LIST,
  48. ID_CVPCB_FOOTPRINT_DISPLAY_PIN_FILTERED_LIST,
  49. ID_CVPCB_FOOTPRINT_DISPLAY_BY_LIBRARY_LIST,
  50. ID_CVPCB_FOOTPRINT_DISPLAY_BY_NAME,
  51. ID_CVPCB_LIBRARY_LIST,
  52. ID_CVPCB_EQUFILES_LIST_EDIT,
  53. ID_CVPCB_LIB_TABLE_EDIT,
  54. ID_CVPCB_FILTER_TEXT_EDIT,
  55. ID_TB_MEASUREMENT_TOOL
  56. };