~cern-kicad/kicad/kicad-pns-tom

« back to all changes in this revision

Viewing changes to pagelayout_editor/pl_editor_id.h

  • Committer: Maciej Suminski
  • Date: 2013-08-02 13:57:24 UTC
  • mfrom: (4024.1.238 kicad)
  • mto: This revision was merged to the branch mainline in revision 4221.
  • Revision ID: maciej.suminski@cern.ch-20130802135724-gix6orezshkukodv
Upstream merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _PL_EDITOR_ID_H_
 
2
#define _PL_EDITOR_ID_H_
 
3
 
 
4
#include <id.h>
 
5
 
 
6
/**
 
7
 * Command IDs for the printed circuit board editor.
 
8
 *
 
9
 * Please add IDs that are unique to the page layout editor (pl_editor) here and not in
 
10
 * the global id.h file.  This will prevent the entire project from being rebuilt when
 
11
 * adding new commands to the page layout editor.
 
12
 */
 
13
 
 
14
enum pl_editor_ids
 
15
{
 
16
    ID_MAIN_MENUBAR = ID_END_LIST,
 
17
 
 
18
    ID_PL_EDITOR_SHOW_SOURCE,
 
19
    ID_MENU_PL_EDITOR_SELECT_PREFERED_EDITOR,
 
20
    ID_MENU_SWITCH_BGCOLOR,
 
21
    ID_MENU_GRID_ONOFF,
 
22
    ID_DESIGN_TREE_FRAME,
 
23
 
 
24
    ID_SHOW_REAL_MODE,
 
25
    ID_SHOW_LPEDITOR_MODE,
 
26
    ID_SELECT_COORDINATE_ORIGIN,
 
27
    ID_LOAD_DEFAULT_PAGE_LAYOUT,
 
28
    ID_SELECT_PAGE_NUMBER,
 
29
 
 
30
    ID_OPEN_POLYGON_DESCR_FILE,
 
31
 
 
32
    ID_POPUP_START_RANGE,
 
33
    ID_POPUP_ITEM_DELETE,
 
34
    ID_POPUP_DESIGN_TREE_ITEM_DELETE,
 
35
    ID_POPUP_ITEM_ADD_LINE,
 
36
    ID_POPUP_ITEM_ADD_RECT,
 
37
    ID_POPUP_ITEM_ADD_TEXT,
 
38
    ID_POPUP_ITEM_ADD_POLY,
 
39
    ID_POPUP_ITEM_MOVE,
 
40
    ID_POPUP_ITEM_PLACE,
 
41
    ID_POPUP_ITEM_MOVE_START_POINT,
 
42
    ID_POPUP_ITEM_MOVE_END_POINT,
 
43
    ID_POPUP_ITEM_PLACE_CANCEL,
 
44
    ID_POPUP_END_RANGE,
 
45
 
 
46
    ID_PLEDITOR_END_LIST
 
47
};
 
48
 
 
49
#endif  /* _PL_EDITOR_IDS_H_ */