2011-10-13 19:56:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2017-03-02 13:46:18 +00:00
|
|
|
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2016-04-18 15:03:59 +00:00
|
|
|
* Copyright (C) 2009-2016 Wayne Stambaugh <stambaughw@verizon.net>
|
2017-03-02 13:46:18 +00:00
|
|
|
* Copyright (C) 1992-2017 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-13 19:56:32 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file id.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
#ifndef ID_H_
|
|
|
|
#define ID_H_
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
/**
|
2011-09-30 18:15:37 +00:00
|
|
|
* Common command IDs shared by more than one of the KiCad applications.
|
2009-09-22 12:27:57 +00:00
|
|
|
*
|
|
|
|
* Only place command IDs used in base window class event tables or shared
|
|
|
|
* across multple applications such as the zoom, grid, and language IDs.
|
|
|
|
* Application specific IDs should be defined in the appropriate header
|
|
|
|
* file to prevent the entire project from being rebuilt.
|
2014-08-19 14:51:15 +00:00
|
|
|
*
|
|
|
|
* However, we must avoid duplicate IDs in menus and toolbar items, when wxUpdateUIEvent
|
|
|
|
* are associated to menuitems and/or toolbar items
|
|
|
|
* The reason is the fact wxWidgets try to send a wxUpdateUIEvent event to a given window and,
|
|
|
|
* if a wxUpdateUIEvent event function is not defined for a menuitem, wxWidgets
|
|
|
|
* propagates this event ID to parents of the given window.
|
|
|
|
* Therefore duplicate IDs could create strange behavior in menus and subtle bugs, depending
|
|
|
|
* on the code inside the wxUpdateUIEvent event functions called in parent frames.
|
|
|
|
* I did not seen this propagation to child frames, only to parent frames
|
|
|
|
*
|
|
|
|
* Issues exist only if 2 menus have the same ID, and only one menu is associated to
|
|
|
|
* a wxUpdateUIEvent event, and this one is defined in a parent Window.
|
|
|
|
* The probability it happens is low, but not null.
|
|
|
|
*
|
|
|
|
* Therefore we reserve room in ID list for each sub application.
|
|
|
|
* Please, change these values if needed
|
2009-09-22 12:27:57 +00:00
|
|
|
*/
|
|
|
|
|
2014-08-19 14:51:15 +00:00
|
|
|
// Define room for IDs, for each sub application
|
|
|
|
#define ROOM_FOR_KICADMANAGER 50
|
|
|
|
#define ROOM_FOR_3D_VIEWER 100
|
2016-07-19 17:35:25 +00:00
|
|
|
#define ROOM_FOR_PANEL_PREV_MODEL 50
|
2014-08-19 14:51:15 +00:00
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
enum main_id
|
|
|
|
{
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
ID_RUN_PCB = wxID_HIGHEST,
|
|
|
|
ID_RUN_PCB_MODULE_EDITOR,
|
|
|
|
ID_RUN_CVPCB,
|
|
|
|
ID_RUN_LIBRARY, // pcbnew & eeschema each use this internally to load their respective lib editors
|
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_LOAD_PROJECT,
|
2013-01-24 17:46:37 +00:00
|
|
|
ID_APPEND_PROJECT,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_NEW_PROJECT,
|
2012-10-14 16:57:11 +00:00
|
|
|
ID_NEW_PROJECT_FROM_TEMPLATE,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_SAVE_PROJECT,
|
2011-08-24 19:44:05 +00:00
|
|
|
ID_SAVE_PROJECT_AS,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_LOAD_FILE,
|
|
|
|
ID_APPEND_FILE,
|
|
|
|
ID_NEW_BOARD,
|
|
|
|
ID_SAVE_BOARD,
|
|
|
|
ID_SAVE_BOARD_AS,
|
2011-10-13 19:56:32 +00:00
|
|
|
ID_AUTO_SAVE_TIMER,
|
2009-09-22 12:27:57 +00:00
|
|
|
|
|
|
|
ID_CONFIG_REQ,
|
|
|
|
ID_CONFIG_SAVE,
|
|
|
|
ID_CONFIG_READ,
|
2009-10-27 13:48:24 +00:00
|
|
|
|
2018-01-04 14:28:02 +00:00
|
|
|
ID_MENU_CANVAS_LEGACY,
|
|
|
|
ID_MENU_CANVAS_OPENGL,
|
|
|
|
ID_MENU_CANVAS_CAIRO,
|
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST,
|
2015-03-29 21:22:53 +00:00
|
|
|
ID_PREFERENCES_CONFIGURE_PATHS,
|
2018-07-19 19:15:40 +00:00
|
|
|
ID_EDIT_SYMBOL_LIBRARY_TABLE,
|
|
|
|
ID_EDIT_FOOTPRINT_LIBRARY_TABLE,
|
2009-09-22 12:27:57 +00:00
|
|
|
|
|
|
|
ID_GEN_PLOT,
|
|
|
|
ID_GEN_PLOT_PS,
|
|
|
|
ID_GEN_PLOT_HPGL,
|
|
|
|
ID_GEN_PLOT_GERBER,
|
|
|
|
ID_GEN_PLOT_SVG,
|
|
|
|
ID_GEN_PLOT_DXF,
|
2012-05-03 18:37:56 +00:00
|
|
|
ID_GEN_PLOT_PDF,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_GEN_COPY_SHEET_TO_CLIPBOARD,
|
|
|
|
ID_GEN_COPY_BLOCK_TO_CLIPBOARD,
|
|
|
|
|
|
|
|
ID_GEN_EXPORT_FILE,
|
|
|
|
ID_GEN_IMPORT_FILE,
|
|
|
|
|
|
|
|
ID_EXIT,
|
|
|
|
ID_OPTIONS_SETUP,
|
|
|
|
|
2014-10-15 11:40:38 +00:00
|
|
|
// id for toolbars
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_H_TOOLBAR,
|
|
|
|
ID_V_TOOLBAR,
|
|
|
|
ID_OPT_TOOLBAR,
|
|
|
|
ID_AUX_TOOLBAR,
|
|
|
|
|
|
|
|
ID_EDIT,
|
2011-02-24 20:22:12 +00:00
|
|
|
ID_NO_TOOL_SELECTED,
|
2016-06-08 11:19:53 +00:00
|
|
|
ID_ZOOM_SELECTION,
|
2018-04-01 18:58:27 +00:00
|
|
|
ID_MENU_ZOOM_SELECTION, // similar to ID_ZOOM_SELECTION, used in main memubar
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_SEL_BG_COLOR,
|
|
|
|
|
|
|
|
ID_REPEAT_BUTT,
|
|
|
|
|
|
|
|
ID_LANGUAGE_CHOICE,
|
|
|
|
ID_LANGUAGE_DEFAULT,
|
|
|
|
ID_LANGUAGE_ENGLISH,
|
|
|
|
ID_LANGUAGE_FRENCH,
|
2010-02-07 16:32:51 +00:00
|
|
|
ID_LANGUAGE_FINNISH,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_LANGUAGE_SPANISH,
|
|
|
|
ID_LANGUAGE_GERMAN,
|
2011-02-05 16:15:48 +00:00
|
|
|
ID_LANGUAGE_GREEK,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_LANGUAGE_RUSSIAN,
|
|
|
|
ID_LANGUAGE_PORTUGUESE,
|
|
|
|
ID_LANGUAGE_ITALIAN,
|
|
|
|
ID_LANGUAGE_SLOVENIAN,
|
2016-02-11 19:12:37 +00:00
|
|
|
ID_LANGUAGE_SLOVAK,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_LANGUAGE_HUNGARIAN,
|
|
|
|
ID_LANGUAGE_POLISH,
|
|
|
|
ID_LANGUAGE_CZECH,
|
|
|
|
ID_LANGUAGE_KOREAN,
|
|
|
|
ID_LANGUAGE_CATALAN,
|
|
|
|
ID_LANGUAGE_CHINESE_SIMPLIFIED,
|
2018-08-27 15:20:28 +00:00
|
|
|
ID_LANGUAGE_CHINESE_TRADITIONAL,
|
2008-04-22 06:10:37 +00:00
|
|
|
ID_LANGUAGE_DUTCH,
|
2011-01-16 17:11:26 +00:00
|
|
|
ID_LANGUAGE_JAPANESE,
|
2011-11-30 11:45:49 +00:00
|
|
|
ID_LANGUAGE_BULGARIAN,
|
2016-05-22 10:31:08 +00:00
|
|
|
ID_LANGUAGE_LITHUANIAN,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_LANGUAGE_CHOICE_END,
|
|
|
|
|
2017-03-02 13:46:18 +00:00
|
|
|
ID_KICAD_SELECT_ICONS_OPTIONS,
|
|
|
|
ID_KICAD_SELECT_ICONS_IN_MENUS,
|
|
|
|
ID_KICAD_SELECT_ICON_OPTIONS_END,
|
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_SET_REPEAT_OPTION,
|
|
|
|
|
|
|
|
// Popup Menu (mouse Right button) (id consecutifs)
|
|
|
|
|
|
|
|
ID_POPUP_GENERAL_START_RANGE, // first number
|
|
|
|
ID_POPUP_CANCEL_CURRENT_COMMAND,
|
|
|
|
ID_POPUP_CLOSE_CURRENT_TOOL,
|
|
|
|
ID_POPUP_MOVE_BLOCK,
|
2015-02-12 03:22:24 +00:00
|
|
|
ID_POPUP_MOVE_BLOCK_EXACT,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_POPUP_DRAG_BLOCK,
|
2017-12-23 19:44:16 +00:00
|
|
|
ID_POPUP_COPY_BLOCK,
|
2018-10-30 10:48:23 +00:00
|
|
|
ID_POPUP_PASTE_BLOCK,
|
2017-12-23 19:44:16 +00:00
|
|
|
ID_POPUP_CUT_BLOCK,
|
2017-07-04 08:08:33 +00:00
|
|
|
ID_POPUP_DUPLICATE_BLOCK,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_POPUP_ROTATE_BLOCK,
|
|
|
|
ID_POPUP_DELETE_BLOCK,
|
|
|
|
ID_POPUP_FLIP_BLOCK,
|
|
|
|
ID_POPUP_PLACE_BLOCK,
|
|
|
|
ID_POPUP_ZOOM_BLOCK,
|
|
|
|
ID_POPUP_SELECT_ITEMS_BLOCK,
|
|
|
|
ID_POPUP_MIRROR_X_BLOCK,
|
|
|
|
ID_POPUP_MIRROR_Y_BLOCK,
|
|
|
|
ID_POPUP_OTHER_COMMANDS,
|
|
|
|
ID_POPUP_GENERAL_END_RANGE, // last number
|
|
|
|
|
|
|
|
ID_POPUP_ENTER_MENU,
|
|
|
|
|
|
|
|
ID_ON_ZOOM_SELECT,
|
|
|
|
ID_POPUP_ZOOM_START_RANGE, // first zoom id
|
|
|
|
ID_POPUP_CANCEL,
|
|
|
|
ID_POPUP_ZOOM_IN,
|
|
|
|
ID_POPUP_ZOOM_OUT,
|
|
|
|
ID_POPUP_ZOOM_SELECT,
|
|
|
|
ID_POPUP_ZOOM_CENTER,
|
2014-10-15 11:40:38 +00:00
|
|
|
ID_POPUP_ZOOM_PAGE,
|
|
|
|
ID_POPUP_ZOOM_REDRAW,
|
2009-01-29 14:26:20 +00:00
|
|
|
|
2018-01-12 10:40:55 +00:00
|
|
|
ID_KEY_ZOOM_IN,
|
|
|
|
ID_KEY_ZOOM_OUT,
|
|
|
|
|
2009-02-14 18:01:07 +00:00
|
|
|
/* Reserve IDs for popup menu zoom levels. If you need more
|
2009-01-29 14:26:20 +00:00
|
|
|
* levels of zoom, change ID_POPUP_ZOOM_LEVEL_END. Note that more
|
|
|
|
* than 15 entries in a context submenu may get too large to display
|
|
|
|
* cleanly. Add any additional popup zoom IDs above here or the
|
|
|
|
* zoom event handler will not work properly.
|
2009-02-14 18:01:07 +00:00
|
|
|
* currently room is provided for 32 levels (this is a very large value).
|
|
|
|
* Pcbnew use 18 values. For schematic 15 is enought
|
2009-01-29 14:26:20 +00:00
|
|
|
*/
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_POPUP_ZOOM_LEVEL_START,
|
|
|
|
ID_POPUP_ZOOM_LEVEL_END = ID_POPUP_ZOOM_LEVEL_START + 32,
|
|
|
|
ID_POPUP_ZOOM_END_RANGE, // last zoom id
|
|
|
|
|
|
|
|
ID_ON_GRID_SELECT,
|
|
|
|
ID_POPUP_GRID_PLUS,
|
|
|
|
ID_POPUP_GRID_MOINS,
|
|
|
|
ID_POPUP_GRID_SELECT,
|
|
|
|
ID_POPUP_GRID_LEVEL_1000, // id for first predefined grid in inches (1000 * 0.0001 inch)
|
|
|
|
ID_POPUP_GRID_LEVEL_500,
|
|
|
|
ID_POPUP_GRID_LEVEL_250,
|
|
|
|
ID_POPUP_GRID_LEVEL_200,
|
|
|
|
ID_POPUP_GRID_LEVEL_100,
|
|
|
|
ID_POPUP_GRID_LEVEL_50,
|
|
|
|
ID_POPUP_GRID_LEVEL_25,
|
|
|
|
ID_POPUP_GRID_LEVEL_20,
|
|
|
|
ID_POPUP_GRID_LEVEL_10,
|
|
|
|
ID_POPUP_GRID_LEVEL_5,
|
|
|
|
ID_POPUP_GRID_LEVEL_2,
|
|
|
|
ID_POPUP_GRID_LEVEL_1, // id for last predefined grid in inches ( 0.0001 inch)
|
2009-10-14 19:43:31 +00:00
|
|
|
ID_POPUP_GRID_LEVEL_5MM,
|
|
|
|
ID_POPUP_GRID_LEVEL_2_5MM,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_POPUP_GRID_LEVEL_1MM, // id for first predefined grid in mm (1mm)
|
|
|
|
ID_POPUP_GRID_LEVEL_0_5MM,
|
|
|
|
ID_POPUP_GRID_LEVEL_0_25MM,
|
|
|
|
ID_POPUP_GRID_LEVEL_0_2MM,
|
|
|
|
ID_POPUP_GRID_LEVEL_0_1MM,
|
2009-10-14 19:43:31 +00:00
|
|
|
ID_POPUP_GRID_LEVEL_0_0_5MM,
|
|
|
|
ID_POPUP_GRID_LEVEL_0_0_25MM,
|
|
|
|
ID_POPUP_GRID_LEVEL_0_0_1MM,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_POPUP_GRID_USER,
|
|
|
|
|
|
|
|
ID_SHEET_SET,
|
|
|
|
ID_COMPONENT_BUTT,
|
|
|
|
|
2014-10-15 11:40:38 +00:00
|
|
|
ID_ZOOM_BEGIN,
|
|
|
|
ID_ZOOM_IN = ID_ZOOM_BEGIN,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_ZOOM_OUT,
|
|
|
|
ID_ZOOM_PAGE,
|
2011-02-21 13:54:29 +00:00
|
|
|
ID_ZOOM_REDRAW,
|
2014-10-15 11:40:38 +00:00
|
|
|
ID_VIEWER_ZOOM_IN,
|
|
|
|
ID_VIEWER_ZOOM_OUT,
|
|
|
|
ID_VIEWER_ZOOM_PAGE,
|
|
|
|
ID_VIEWER_ZOOM_REDRAW,
|
|
|
|
// zoom commands for non center zooming
|
|
|
|
ID_OFFCENTER_ZOOM_IN,
|
|
|
|
ID_OFFCENTER_ZOOM_OUT,
|
|
|
|
ID_ZOOM_END,
|
2007-05-06 16:03:28 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
// Panning command event IDs.
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_PAN_UP,
|
|
|
|
ID_PAN_DOWN,
|
|
|
|
ID_PAN_LEFT,
|
|
|
|
ID_PAN_RIGHT,
|
|
|
|
|
2017-12-06 05:25:52 +00:00
|
|
|
ID_MOUSE_DOUBLECLICK,
|
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_GET_NETLIST,
|
2017-04-02 12:09:01 +00:00
|
|
|
ID_OPEN_CMP_TABLE,
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_GET_TOOLS,
|
|
|
|
ID_FIND_ITEMS,
|
|
|
|
|
|
|
|
ID_EDA_SOCKET_EVENT_SERV,
|
|
|
|
ID_EDA_SOCKET_EVENT,
|
|
|
|
|
2011-03-04 19:16:00 +00:00
|
|
|
// Common to all
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_TB_OPTIONS_SELECT_UNIT_MM,
|
|
|
|
ID_TB_OPTIONS_SELECT_UNIT_INCH,
|
|
|
|
ID_TB_OPTIONS_SELECT_CURSOR,
|
|
|
|
ID_TB_OPTIONS_SHOW_POLAR_COORD,
|
|
|
|
ID_TB_OPTIONS_SHOW_GRID,
|
2016-09-24 00:44:52 +00:00
|
|
|
ID_HELP_GET_INVOLVED,
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
// Common to Pcbnew and CvPcb
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_TB_OPTIONS_SHOW_MODULE_TEXT_SKETCH,
|
|
|
|
ID_TB_OPTIONS_SHOW_MODULE_EDGE_SKETCH,
|
2018-02-18 14:21:23 +00:00
|
|
|
ID_TB_OPTIONS_SHOW_GRAPHIC_SKETCH,
|
2011-03-04 19:16:00 +00:00
|
|
|
ID_TB_OPTIONS_SHOW_PADS_SKETCH,
|
2013-06-07 20:56:55 +00:00
|
|
|
|
|
|
|
ID_DIALOG_ERC, ///< eeschema ERC modeless dialog ID
|
|
|
|
|
2014-08-19 14:51:15 +00:00
|
|
|
// IDs specifics to a sub-application (Eeschema, Kicad manager....) start here
|
|
|
|
//
|
|
|
|
// We reserve here Ids for each sub-application, to avoid duplicate IDs
|
|
|
|
// between them.
|
|
|
|
// mainly we experienced issues related to wxUpdateUIEvent calls when 2 (or more) wxFrames
|
|
|
|
// share the same ID in menus, mainly in menubars/toolbars
|
|
|
|
// The reason is the fact wxWidgets propagates the wxUpdateUIEvent to all parent windows
|
2016-10-11 17:40:23 +00:00
|
|
|
// to find wxUpdateUIEvent event functions matching the menuitem IDs found when activate a
|
|
|
|
// menu in the first frame.
|
2014-08-19 14:51:15 +00:00
|
|
|
|
|
|
|
// Reserve ROOM_FOR_KICADMANAGER IDs, for Kicad manager
|
|
|
|
// Change it if this count is too small.
|
|
|
|
ID_KICAD_MANAGER_START,
|
|
|
|
ID_KICAD_MANAGER_END = ID_KICAD_MANAGER_START + ROOM_FOR_KICADMANAGER,
|
|
|
|
|
|
|
|
// Reserve ROOM_FOR_KICADMANAGER IDs, for Kicad manager
|
|
|
|
// Change it if this count is too small.
|
|
|
|
ID_KICAD_3D_VIEWER_START,
|
|
|
|
ID_KICAD_3D_VIEWER_END = ID_KICAD_3D_VIEWER_START + ROOM_FOR_3D_VIEWER,
|
|
|
|
|
2016-07-19 17:35:25 +00:00
|
|
|
ID_KICAD_PANEL_PREV_MODEL_START,
|
|
|
|
ID_KICAD_PANEL_PREV_MODEL_END = ID_KICAD_PANEL_PREV_MODEL_START + ROOM_FOR_PANEL_PREV_MODEL,
|
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
ID_END_LIST
|
2007-05-06 16:03:28 +00:00
|
|
|
};
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
#endif // ID_H_
|