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>
|
2010-01-24 13:46:01 +00:00
|
|
|
|
|
|
|
/**
|
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-16 10:47:15 +00:00
|
|
|
ID_TOOLBARH_GERBER_SELECT_ACTIVE_DCODE,
|
2021-03-27 21:49:38 +00:00
|
|
|
ID_TOOLBARH_GERBER_DATA_TEXT_BOX,
|
2011-03-14 21:19:13 +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,
|
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,
|
2016-08-16 10:56:20 +00:00
|
|
|
|
2018-08-20 13:46:38 +00:00
|
|
|
// IDs for drill file history (ID_FILEnn is already in use)
|
2019-06-02 18:59:13 +00:00
|
|
|
ID_GERBVIEW_DRILL_FILE,
|
2018-08-20 13:46:38 +00:00
|
|
|
ID_GERBVIEW_DRILL_FILE1,
|
|
|
|
ID_GERBVIEW_DRILL_FILEMAX = ID_GERBVIEW_DRILL_FILE + MAX_FILE_HISTORY_SIZE,
|
2020-02-25 15:46:56 +00:00
|
|
|
ID_GERBVIEW_DRILL_FILE_LIST_CLEAR,
|
2018-08-20 13:46:38 +00:00
|
|
|
|
|
|
|
// 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,
|
2020-02-25 15:46:56 +00:00
|
|
|
ID_GERBVIEW_JOB_FILE_LIST_CLEAR,
|
2018-08-20 13:46:38 +00:00
|
|
|
|
|
|
|
// 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,
|
2020-02-25 15:46:56 +00:00
|
|
|
ID_GERBVIEW_ZIP_FILE_LIST_CLEAR,
|
2018-08-20 13:46:38 +00:00
|
|
|
|
2010-02-03 14:05:17 +00:00
|
|
|
ID_GERBER_END_LIST
|
2010-01-24 13:46:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __GERBVIEW_IDS_H__ */
|