2010-01-24 13:46:01 +00:00
|
|
|
#ifndef __GERBVIEW_ID_H__
|
|
|
|
#define __GERBVIEW_ID_H__
|
|
|
|
|
|
|
|
#include "id.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Command IDs for the printed circuit board editor.
|
|
|
|
*
|
|
|
|
* Please add IDs that are unique to the printed circuit board editor (PCBNew)
|
|
|
|
* here and not in the global id.h file. This will prevent the entire project
|
|
|
|
* from being rebuilt when adding new commands to the PCBNew.
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum gerbview_ids
|
|
|
|
{
|
|
|
|
ID_MAIN_MENUBAR = ID_END_LIST,
|
|
|
|
|
2010-02-03 14:05:17 +00:00
|
|
|
ID_MENU_GERBVIEW_SHOW_HIDE_LAYERS_MANAGER_DIALOG,
|
|
|
|
|
|
|
|
ID_TOOLBARH_GERBVIEW_SELECT_LAYER,
|
|
|
|
ID_GERBVIEW_DELETE_ITEM_BUTT,
|
|
|
|
ID_GERBVIEW_GLOBAL_DELETE,
|
2010-10-09 11:03:03 +00:00
|
|
|
ID_GERBVIEW_OPTIONS_SETUP,
|
2010-02-03 14:05:17 +00:00
|
|
|
ID_TB_OPTIONS_SHOW_LAYERS_MANAGER_VERTICAL_TOOLBAR,
|
|
|
|
ID_TB_OPTIONS_SHOW_DCODES,
|
2010-09-28 14:42:05 +00:00
|
|
|
ID_TB_OPTIONS_SHOW_FLASHED_ITEMS_SKETCH,
|
|
|
|
ID_TB_OPTIONS_SHOW_LINES_SKETCH,
|
2010-12-15 20:15:24 +00:00
|
|
|
ID_TB_OPTIONS_SHOW_GBR_MODE_0,
|
|
|
|
ID_TB_OPTIONS_SHOW_GBR_MODE_1,
|
|
|
|
ID_TB_OPTIONS_SHOW_GBR_MODE_2,
|
2010-02-03 14:05:17 +00:00
|
|
|
|
|
|
|
ID_GERBER_END_LIST
|
2010-01-24 13:46:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __GERBVIEW_IDS_H__ */
|