gerbview_id.h 2.69 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * 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
 * Copyright (C) 1992-2014 KiCad Developers, see change_log.txt for contributors.
 *
 * 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
 */

charras's avatar
charras committed
25 26 27
#ifndef __GERBVIEW_ID_H__
#define __GERBVIEW_ID_H__

28
#include <id.h>
charras's avatar
charras committed
29 30 31 32

/**
 * Command IDs for the printed circuit board editor.
 *
33 34 35
 * 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.
charras's avatar
charras committed
36 37 38 39 40 41
 */

enum gerbview_ids
{
    ID_MAIN_MENUBAR = ID_END_LIST,

42
    ID_GERBVIEW_SHOW_LIST_DCODES,
43
    ID_GERBVIEW_LOAD_DRILL_FILE,
44
    ID_GERBVIEW_ERASE_ALL,
45
    ID_TOOLBARH_GERBER_SELECT_ACTIVE_DCODE,
46 47 48
    ID_GERBVIEW_SHOW_SOURCE,
    ID_GERBVIEW_EXPORT_TO_PCBNEW,

charras's avatar
charras committed
49
    ID_MENU_GERBVIEW_SHOW_HIDE_LAYERS_MANAGER_DIALOG,
50
    ID_MENU_GERBVIEW_SELECT_PREFERED_EDITOR,
charras's avatar
charras committed
51

52 53 54 55 56 57 58 59 60 61 62 63
    // IDs for drill file history (wxID_FILEnn is already in use)
    ID_GERBVIEW_DRILL_FILE,
    ID_GERBVIEW_DRILL_FILE1,
    ID_GERBVIEW_DRILL_FILE2,
    ID_GERBVIEW_DRILL_FILE3,
    ID_GERBVIEW_DRILL_FILE4,
    ID_GERBVIEW_DRILL_FILE5,
    ID_GERBVIEW_DRILL_FILE6,
    ID_GERBVIEW_DRILL_FILE7,
    ID_GERBVIEW_DRILL_FILE8,
    ID_GERBVIEW_DRILL_FILE9,

64
    ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER,
charras's avatar
charras committed
65
    ID_GERBVIEW_GLOBAL_DELETE,
66
    ID_GERBVIEW_OPTIONS_SETUP,
67
    ID_GERBVIEW_SET_PAGE_BORDER,
charras's avatar
charras committed
68 69
    ID_TB_OPTIONS_SHOW_LAYERS_MANAGER_VERTICAL_TOOLBAR,
    ID_TB_OPTIONS_SHOW_DCODES,
70 71
    ID_TB_OPTIONS_SHOW_FLASHED_ITEMS_SKETCH,
    ID_TB_OPTIONS_SHOW_LINES_SKETCH,
72
    ID_TB_OPTIONS_SHOW_POLYGONS_SKETCH,
73
    ID_TB_OPTIONS_SHOW_NEGATIVE_ITEMS,
jean-pierre charras's avatar
jean-pierre charras committed
74 75 76
    ID_TB_OPTIONS_SHOW_GBR_MODE_0,
    ID_TB_OPTIONS_SHOW_GBR_MODE_1,
    ID_TB_OPTIONS_SHOW_GBR_MODE_2,
charras's avatar
charras committed
77 78

    ID_GERBER_END_LIST
charras's avatar
charras committed
79 80 81
};

#endif  /* __GERBVIEW_IDS_H__  */