2014-10-21 18:36:45 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010-2014 Jean-Pierre Charras jp.charras at wanadoo.fr
|
2018-03-13 21:59:46 +00:00
|
|
|
* Copyright (C) 1992-2018 KiCad Developers, see change_log.txt for contributors.
|
2014-10-21 18:36:45 +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
|
|
|
|
*/
|
|
|
|
|
2010-01-24 13:46:01 +00:00
|
|
|
#ifndef __GERBVIEW_ID_H__
|
|
|
|
#define __GERBVIEW_ID_H__
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <id.h>
|
2018-08-20 13:46:38 +00:00
|
|
|
#include <pgm_base.h>
|
2010-01-24 13:46:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Command IDs for the printed circuit board editor.
|
|
|
|
*
|
2011-09-30 18:15:37 +00:00
|
|
|
* Please add IDs that are unique to the gerber file viewer (GerbView) here and not in
|
|
|
|
* the global id.h file. This will prevent the entire project from being rebuilt when
|
|
|
|
* adding new commands to the GerbView.
|
2010-01-24 13:46:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
enum gerbview_ids
|
|
|
|
{
|
|
|
|
ID_MAIN_MENUBAR = ID_END_LIST,
|
|
|
|
|
2011-03-26 08:20:25 +00:00
|
|
|
ID_GERBVIEW_SHOW_LIST_DCODES,
|
2011-03-14 21:19:13 +00:00
|
|
|
ID_GERBVIEW_LOAD_DRILL_FILE,
|
2017-08-19 16:28:11 +00:00
|
|
|
ID_GERBVIEW_LOAD_JOB_FILE,
|
2017-01-26 09:45:28 +00:00
|
|
|
ID_GERBVIEW_LOAD_ZIP_ARCHIVE_FILE,
|
2011-03-17 19:14:45 +00:00
|
|
|
ID_GERBVIEW_ERASE_ALL,
|
2018-10-08 09:51:13 +00:00
|
|
|
ID_GERBVIEW_RELOAD_ALL,
|
2011-03-16 10:47:15 +00:00
|
|
|
ID_TOOLBARH_GERBER_SELECT_ACTIVE_DCODE,
|
2011-03-14 21:19:13 +00:00
|
|
|
ID_GERBVIEW_SHOW_SOURCE,
|
|
|
|
ID_GERBVIEW_EXPORT_TO_PCBNEW,
|
|
|
|
|
2011-03-13 18:03:43 +00:00
|
|
|
ID_MENU_GERBVIEW_SELECT_PREFERED_EDITOR,
|
2010-02-03 14:05:17 +00:00
|
|
|
|
2016-08-16 10:56:20 +00:00
|
|
|
ID_GBR_AUX_TOOLBAR_PCB_CMP_CHOICE,
|
|
|
|
ID_GBR_AUX_TOOLBAR_PCB_NET_CHOICE,
|
|
|
|
ID_GBR_AUX_TOOLBAR_PCB_APERATTRIBUTES_CHOICE,
|
|
|
|
|
2011-03-14 21:19:13 +00:00
|
|
|
ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER,
|
2016-08-16 10:56:20 +00:00
|
|
|
ID_GERBVIEW_ERASE_CURR_LAYER,
|
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,
|
2011-03-04 19:16:00 +00:00
|
|
|
ID_TB_OPTIONS_SHOW_POLYGONS_SKETCH,
|
2013-01-06 13:31:49 +00:00
|
|
|
ID_TB_OPTIONS_SHOW_NEGATIVE_ITEMS,
|
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,
|
2017-09-17 22:43:20 +00:00
|
|
|
ID_TB_OPTIONS_DIFF_MODE,
|
|
|
|
ID_TB_OPTIONS_HIGH_CONTRAST_MODE,
|
|
|
|
ID_TB_MEASUREMENT_TOOL,
|
2010-02-03 14:05:17 +00:00
|
|
|
|
2016-08-16 10:56:20 +00:00
|
|
|
// Right click context menu
|
|
|
|
ID_HIGHLIGHT_REMOVE_ALL,
|
|
|
|
ID_HIGHLIGHT_CMP_ITEMS,
|
|
|
|
ID_HIGHLIGHT_NET_ITEMS,
|
|
|
|
ID_HIGHLIGHT_APER_ATTRIBUTE_ITEMS,
|
|
|
|
|
2018-08-20 13:46:38 +00:00
|
|
|
// IDs for drill file history (ID_FILEnn is already in use)
|
|
|
|
ID_GERBVIEW_DRILL_FILE = 4300,
|
|
|
|
ID_GERBVIEW_DRILL_FILE1,
|
|
|
|
ID_GERBVIEW_DRILL_FILEMAX = ID_GERBVIEW_DRILL_FILE + MAX_FILE_HISTORY_SIZE,
|
|
|
|
|
|
|
|
// IDs for job file history (ID_FILEnn is already in use)
|
|
|
|
ID_GERBVIEW_JOB_FILE,
|
|
|
|
ID_GERBVIEW_JOB_FILE1,
|
|
|
|
ID_GERBVIEW_JOB_FILEMAX = ID_GERBVIEW_JOB_FILE + MAX_FILE_HISTORY_SIZE,
|
|
|
|
|
|
|
|
// IDs for zip file history (ID_FILEnn is already in use)
|
|
|
|
ID_GERBVIEW_ZIP_FILE,
|
|
|
|
ID_GERBVIEW_ZIP_FILE1,
|
|
|
|
ID_GERBVIEW_ZIP_FILEMAX = ID_GERBVIEW_ZIP_FILE + MAX_FILE_HISTORY_SIZE,
|
|
|
|
|
2010-02-03 14:05:17 +00:00
|
|
|
ID_GERBER_END_LIST
|
2010-01-24 13:46:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __GERBVIEW_IDS_H__ */
|