summaryrefslogtreecommitdiff
path: root/cvpcb/cvpcb_id.h
diff options
context:
space:
mode:
Diffstat (limited to 'cvpcb/cvpcb_id.h')
-rw-r--r--cvpcb/cvpcb_id.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/cvpcb/cvpcb_id.h b/cvpcb/cvpcb_id.h
new file mode 100644
index 0000000..57a2fee
--- /dev/null
+++ b/cvpcb/cvpcb_id.h
@@ -0,0 +1,60 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2010 Jean-Pierre Charras, jp.charras at wanadoo.fr
+ * Copyright (C) 2014 KiCad Developers, see CHANGELOG.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
+ */
+
+/**
+ * @file cvpcb_id.h
+ */
+/*
+ * Command IDs for CvPcb.
+ *
+ * Please add IDs that are unique to the component library viewer here and
+ * not in the global id.h file. This will prevent the entire project from
+ * being rebuilt when adding new commands to the component library viewer.
+ */
+
+// Generic IDs:
+#include <id.h>
+
+// specific IDs
+enum id_cvpcb_frm
+{
+ ID_CVPCB_QUIT = ID_END_LIST,
+ ID_CVPCB_SAVEQUITCVPCB,
+ ID_CVPCB_CREATE_SCREENCMP,
+ ID_CVPCB_GOTO_FIRSTNA,
+ ID_CVPCB_GOTO_PREVIOUSNA,
+ ID_CVPCB_DEL_ASSOCIATIONS,
+ ID_CVPCB_AUTO_ASSOCIE,
+ ID_CVPCB_COMPONENT_LIST,
+ ID_CVPCB_FOOTPRINT_LIST,
+ ID_CVPCB_SHOW3D_FRAME,
+ ID_CVPCB_FOOTPRINT_DISPLAY_FULL_LIST,
+ ID_CVPCB_FOOTPRINT_DISPLAY_FILTERED_LIST,
+ ID_CVPCB_FOOTPRINT_DISPLAY_PIN_FILTERED_LIST,
+ ID_CVPCB_FOOTPRINT_DISPLAY_BY_LIBRARY_LIST,
+ ID_CVPCB_CONFIG_KEEP_OPEN_ON_SAVE,
+ ID_CVPCB_LIBRARY_LIST,
+ ID_CVPCB_EQUFILES_LIST_EDIT,
+ ID_CVPCB_LIB_TABLE_EDIT
+};