KiCad PCB EDA Suite
Loading...
Searching...
No Matches
kicad_id.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2019 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
29#ifndef KICAD_ID_H
30#define KICAD_ID_H
31
32#include <id.h>
33#include <eda_base_frame.h>
34
65
75
76 ID_GIT_INITIALIZE_PROJECT, // Initialize a new git repository in an existing project
77 ID_GIT_CLONE_PROJECT, // Clone a project from a remote repository
78 ID_GIT_COMMIT_PROJECT, // Commit all files in the project
79 ID_GIT_COMMIT_FILE, // Commit a single file
80 ID_GIT_SYNC_PROJECT, // Sync the project with the remote repository (pull and push -- same as Update)
81 ID_GIT_FETCH, // Fetch the remote repository (without merging -- this is the same as Refresh)
82 ID_GIT_PUSH, // Push the local repository to the remote repository
83 ID_GIT_PULL, // Pull the remote repository to the local repository
84 ID_GIT_RESOLVE_CONFLICT, // Present the user with a resolve conflicts dialog (ours/theirs/merge)
85 ID_GIT_REVERT_LOCAL, // Revert the local repository to the last commit
86 ID_GIT_COMPARE, // Compare the current project to a different branch or commit in the git repository
87 ID_GIT_REMOVE_VCS, // Remove the git repository data from the project directory (rm .git)
88 ID_GIT_ADD_TO_INDEX, // Add a file to the git index
89 ID_GIT_REMOVE_FROM_INDEX, // Remove a file from the git index
90 ID_GIT_SWITCH_BRANCH, // Switch the local repository to a different branch
91 ID_GIT_SWITCH_QUICK1, // Switch the local repository to the first quick branch
92 ID_GIT_SWITCH_QUICK2, // Switch the local repository to the second quick branch
93 ID_GIT_SWITCH_QUICK3, // Switch the local repository to the third quick branch
94 ID_GIT_SWITCH_QUICK4, // Switch the local repository to the fourth quick branch
95 ID_GIT_SWITCH_QUICK5, // Switch the local repository to the fifth quick branch
96
97 // Please, verify: the number of items in this list should be
98 // less than ROOM_FOR_KICADMANAGER (see id.h)
101
102#endif
Base window classes and related definitions.
@ ID_KICAD_MANAGER_START
Definition: id.h:177
id_kicad_frm
Command IDs for KiCad.
Definition: kicad_id.h:56
@ ID_PROJECT_OPEN_DIR
Definition: kicad_id.h:62
@ ID_GIT_PUSH
Definition: kicad_id.h:82
@ ID_GIT_REVERT_LOCAL
Definition: kicad_id.h:85
@ ID_PROJECT_SWITCH_TO_OTHER
Definition: kicad_id.h:60
@ ID_PROJECT_NEWDIR
Definition: kicad_id.h:61
@ ID_PROJECT_RENAME
Definition: kicad_id.h:64
@ ID_IMPORT_EAGLE_PROJECT
Definition: kicad_id.h:72
@ ID_IMPORT_EASYEDAPRO_PROJECT
Definition: kicad_id.h:74
@ ID_READ_ZIP_ARCHIVE
Definition: kicad_id.h:69
@ ID_GIT_SWITCH_QUICK5
Definition: kicad_id.h:95
@ ID_GIT_REMOVE_VCS
Definition: kicad_id.h:87
@ ID_GIT_COMMIT_FILE
Definition: kicad_id.h:79
@ ID_GIT_PULL
Definition: kicad_id.h:83
@ ID_SAVE_AND_ZIP_FILES
Definition: kicad_id.h:68
@ ID_KICADMANAGER_END_LIST
Definition: kicad_id.h:99
@ ID_GIT_COMPARE
Definition: kicad_id.h:86
@ ID_PROJECT_TXTEDIT
Definition: kicad_id.h:59
@ ID_GIT_SWITCH_QUICK2
Definition: kicad_id.h:92
@ ID_GIT_REMOVE_FROM_INDEX
Definition: kicad_id.h:89
@ ID_GIT_RESOLVE_CONFLICT
Definition: kicad_id.h:84
@ ID_GIT_CLONE_PROJECT
Definition: kicad_id.h:77
@ ID_INIT_WATCHED_PATHS
Definition: kicad_id.h:70
@ ID_GIT_SWITCH_QUICK4
Definition: kicad_id.h:94
@ ID_IMPORT_CADSTAR_ARCHIVE_PROJECT
Definition: kicad_id.h:71
@ ID_GIT_SWITCH_QUICK3
Definition: kicad_id.h:93
@ ID_GIT_COMMIT_PROJECT
Definition: kicad_id.h:78
@ ID_GIT_SWITCH_BRANCH
Definition: kicad_id.h:90
@ ID_GIT_ADD_TO_INDEX
Definition: kicad_id.h:88
@ ID_GIT_SYNC_PROJECT
Definition: kicad_id.h:80
@ ID_PROJECT_TREE
Definition: kicad_id.h:58
@ ID_EDIT_LOCAL_FILE_IN_TEXT_EDITOR
Definition: kicad_id.h:66
@ ID_IMPORT_EASYEDA_PROJECT
Definition: kicad_id.h:73
@ ID_BROWSE_IN_FILE_EXPLORER
Definition: kicad_id.h:67
@ ID_GIT_FETCH
Definition: kicad_id.h:81
@ ID_GIT_SWITCH_QUICK1
Definition: kicad_id.h:91
@ ID_GIT_INITIALIZE_PROJECT
Definition: kicad_id.h:76
@ ID_PROJECT_DELETE
Definition: kicad_id.h:63
@ ID_LEFT_FRAME
Definition: kicad_id.h:57