KiCad PCB EDA Suite
Loading...
Searching...
No Matches
common_settings.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) 2020 Jon Evans <[email protected]>
5 * Copyright (C) 2020, 2023 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef _COMMON_SETTINGS_H
22#define _COMMON_SETTINGS_H
23
26
27
29{
30 // WARNING: these are encoded as integers in the file, so don't change their values.
31 DRAG_ANY = -2,
33 SELECT,
34 ZOOM,
35 PAN,
36 NONE
37};
38
39enum class ICON_THEME
40{
41 LIGHT,
42 DARK,
43 AUTO
44};
45
46
48{
49public:
51 {
61 };
62
64 {
65 bool enabled;
70
72 unsigned long long limit_total_size;
73 };
74
76 {
78 };
79
80 struct INPUT
81 {
90
94
98
102
104 };
105
106 struct GRAPHICS
107 {
110 };
111
112 struct SESSION
113 {
115 std::vector<wxString> pinned_symbol_libs;
116 std::vector<wxString> pinned_fp_libs;
117 };
118
119 struct SYSTEM
120 {
122 wxString text_editor;
124 wxString language;
127 wxString working_dir;
129 };
130
132 {
138 };
139
141 {
143 };
144
146 {
148 };
149
151 {
152 wxString name;
153 wxString path;
154 wxString authType;
155 wxString username;
156 wxString ssh_path;
157 bool active;
159 };
160
161 struct GIT
162 {
163 std::vector<GIT_REPOSITORY> repositories;
165 wxString authorName;
166 wxString authorEmail;
167 };
168
169 struct API
170 {
173 };
174
176
177 virtual ~COMMON_SETTINGS() {}
178
179 virtual bool MigrateFromLegacy( wxConfigBase* aLegacyConfig ) override;
180
184 void InitializeEnvironment();
185
186private:
187 bool migrateSchema0to1();
188 bool migrateSchema1to2();
189 bool migrateSchema2to3();
190
192 {
193 wxString m_Alias; // alias to the base path
194 wxString m_Pathvar; // base path as stored in the config file
195 wxString m_Pathexp; // expanded base path
196 wxString m_Description; // description of the aliased path
197 };
198
199 static bool getLegacy3DHollerith( const std::string& aString, size_t& aIndex,
200 wxString& aResult );
201 bool readLegacy3DResolverCfg( const wxString& aPath,
202 std::vector<LEGACY_3D_SEARCH_PATH>& aSearchPaths );
203
204public:
206
208
210
212
214
216
218
220
222
224
226
228};
229
230#endif
NETCLASS_PANEL m_NetclassPanel
APPEARANCE m_Appearance
virtual ~COMMON_SETTINGS()
PACKAGE_MANAGER m_PackageManager
AUTO_BACKUP m_Backup
DO_NOT_SHOW_AGAIN m_DoNotShowAgain
ENVIRONMENT m_Env
virtual bool MigrateFromLegacy(wxConfigBase *aLegacyConfig)
Migrates from wxConfig to JSON-based configuration.
MOUSE_DRAG_ACTION
ICON_THEME
std::map< wxString, ENV_VAR_ITEM > ENV_VAR_MAP
#define KICOMMON_API
Definition: kicommon.h:28
int min_interval
Minimum time, in seconds, between subsequent backups.
bool backup_on_autosave
Trigger a backup on autosave.
unsigned long long limit_total_size
Maximum total size of backups (bytes), 0 for unlimited.
int limit_total_files
Maximum number of backup archives to retain.
int limit_daily_files
Maximum files to keep per day, 0 for unlimited.
bool enabled
Automatically back up the project when files are saved.
std::vector< GIT_REPOSITORY > repositories
MOUSE_DRAG_ACTION drag_right
MOUSE_DRAG_ACTION drag_middle
MOUSE_DRAG_ACTION drag_left
std::vector< wxString > pinned_fp_libs
std::vector< wxString > pinned_symbol_libs