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.

73 lines
2.6 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2010-2014 Jean-Pierre Charras jp.charras at wanadoo.fr
  5. * Copyright (C) 1992-2018 KiCad Developers, see change_log.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. #ifndef __GERBVIEW_ID_H__
  25. #define __GERBVIEW_ID_H__
  26. #include <id.h>
  27. /**
  28. * Please add IDs that are unique to the gerber file viewer (GerbView) here and not in
  29. * the global id.h file. This will prevent the entire project from being rebuilt when
  30. * adding new commands to the GerbView.
  31. */
  32. enum gerbview_ids
  33. {
  34. ID_MAIN_MENUBAR = ID_END_LIST,
  35. ID_TOOLBARH_GERBER_SELECT_ACTIVE_DCODE,
  36. ID_TOOLBARH_GERBER_DATA_TEXT_BOX,
  37. ID_GBR_AUX_TOOLBAR_PCB_CMP_CHOICE,
  38. ID_GBR_AUX_TOOLBAR_PCB_NET_CHOICE,
  39. ID_GBR_AUX_TOOLBAR_PCB_APERATTRIBUTES_CHOICE,
  40. ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER,
  41. ID_TB_OPTIONS_SHOW_GBR_MODE_0,
  42. ID_TB_OPTIONS_SHOW_GBR_MODE_1,
  43. ID_TB_OPTIONS_SHOW_GBR_MODE_2,
  44. // IDs for drill file history (ID_FILEnn is already in use)
  45. ID_GERBVIEW_DRILL_FILE,
  46. ID_GERBVIEW_DRILL_FILE1,
  47. ID_GERBVIEW_DRILL_FILEMAX = ID_GERBVIEW_DRILL_FILE + MAX_FILE_HISTORY_SIZE,
  48. ID_GERBVIEW_DRILL_FILE_LIST_CLEAR,
  49. // IDs for job file history (ID_FILEnn is already in use)
  50. ID_GERBVIEW_JOB_FILE,
  51. ID_GERBVIEW_JOB_FILE1,
  52. ID_GERBVIEW_JOB_FILEMAX = ID_GERBVIEW_JOB_FILE + MAX_FILE_HISTORY_SIZE,
  53. ID_GERBVIEW_JOB_FILE_LIST_CLEAR,
  54. // IDs for zip file history (ID_FILEnn is already in use)
  55. ID_GERBVIEW_ZIP_FILE,
  56. ID_GERBVIEW_ZIP_FILE1,
  57. ID_GERBVIEW_ZIP_FILEMAX = ID_GERBVIEW_ZIP_FILE + MAX_FILE_HISTORY_SIZE,
  58. ID_GERBVIEW_ZIP_FILE_LIST_CLEAR,
  59. ID_GERBER_END_LIST
  60. };
  61. #endif /* __GERBVIEW_IDS_H__ */