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 The 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
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21#pragma once
22
23#include <memory>
24#include <vector>
25#include <mouse_drag_action.h>
28
30
31enum class ICON_THEME
32{
36};
37
38enum class APP_THEME
39{
43};
44
45enum class BACKUP_FORMAT
46{
48 ZIP = 1
49};
50
52{
55};
56
58{
59public:
75
89
91 {
93 };
94
123
133
134 struct GRAPHICS
135 {
138 };
139
140 struct SESSION
141 {
143 std::vector<wxString> pinned_symbol_libs;
144 std::vector<wxString> pinned_fp_libs;
145 std::vector<wxString> pinned_design_block_libs;
146 };
147
160
170
171 // Sticky "Embed file" choice, remembered per file-picker context.
179
181 {
183 };
184
186 {
187 wxString name;
188 wxString path;
189 wxString authType;
190 wxString username;
191 wxString ssh_path;
192 bool active;
194 };
195
196 struct GIT
197 {
198 std::vector<GIT_REPOSITORY> repositories;
202 wxString authorName;
203 wxString authorEmail;
204 };
205
206 struct API
207 {
210 };
211
213
215
218
219 virtual bool MigrateFromLegacy( wxConfigBase* aLegacyConfig ) override;
220
224 void InitializeEnvironment();
225
234 {
235 return m_Backup.enabled && m_Backup.format == BACKUP_FORMAT::INCREMENTAL;
236 }
237
238private:
239 bool migrateSchema0to1();
240 bool migrateSchema1to2();
241 bool migrateSchema2to3();
242 bool migrateSchema3to4();
243 bool migrateSchema4to5();
244 bool migrateSchema5to6();
245
247 {
248 wxString m_Alias; // alias to the base path
249 wxString m_Pathvar; // base path as stored in the config file
250 wxString m_Pathexp; // expanded base path
251 wxString m_Description; // description of the aliased path
252 };
253
254 static bool getLegacy3DHollerith( const std::string& aString, size_t& aIndex,
255 wxString& aResult );
256 bool readLegacy3DResolverCfg( const wxString& aPath,
257 std::vector<LEGACY_3D_SEARCH_PATH>& aSearchPaths );
258
259public:
273
276 std::vector<wxString> m_Extra3DSearchDirs;
277
278 std::unique_ptr<COMMON_SETTINGS_INTERNALS> m_csInternals;
279};
COMMON_SETTINGS_INTERNALS & CsInternals()
bool AutosaveUsesLocalHistory() const
The backup format is the single switch that selects the autosave mechanism: the incremental format re...
std::vector< wxString > m_Extra3DSearchDirs
Extra directories to search for 3D models, added by the user through the 3D model migration dialog.
SPACEMOUSE m_SpaceMouse
std::unique_ptr< COMMON_SETTINGS_INTERNALS > m_csInternals
const COMMON_SETTINGS_INTERNALS & CsInternals() const
APPEARANCE m_Appearance
virtual ~COMMON_SETTINGS()
static bool getLegacy3DHollerith(const std::string &aString, size_t &aIndex, wxString &aResult)
bool readLegacy3DResolverCfg(const wxString &aPath, std::vector< LEGACY_3D_SEARCH_PATH > &aSearchPaths)
PACKAGE_MANAGER m_PackageManager
EMBED_FILE_DEFAULTS m_EmbedFileDefaults
AUTO_BACKUP m_Backup
DO_NOT_SHOW_AGAIN m_DoNotShowAgain
virtual bool MigrateFromLegacy(wxConfigBase *aLegacyConfig)
Migrates from wxConfig to JSON-based configuration.
JSON_SETTINGS(const wxString &aFilename, SETTINGS_LOC aLocation, int aSchemaVersion)
A base light class to derive to implement other light classes.
Definition light.h:37
APP_THEME
ICON_THEME
BACKUP_FORMAT
@ ZIP
Zip archive snapshots; autosave uses recovery files.
@ INCREMENTAL
Git-based local history (default)
BACKUP_LOCATION
@ USER_DIR
Under the KiCad user data directory.
@ PROJECT_DIR
Inside the project directory (default)
std::map< wxString, ENV_VAR_ITEM > ENV_VAR_MAP
#define KICOMMON_API
Definition kicommon.h:27
MOUSE_DRAG_ACTION
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.
BACKUP_LOCATION location
Where backups, history, and autosave files live.
int limit_daily_files
Maximum files to keep per day, 0 for unlimited.
BACKUP_FORMAT format
Backup format (incremental git history vs zip archives)
bool enabled
Automatically back up the project when files are saved.
std::vector< GIT_REPOSITORY > repositories
int canvas_type
EDA_DRAW_PANEL_GAL::GAL_TYPE_* value, see gal_options_panel.cpp.
MOUSE_DRAG_ACTION drag_right
MOUSE_DRAG_ACTION drag_middle
MOUSE_DRAG_ACTION drag_left
std::vector< wxString > pinned_design_block_libs
std::vector< wxString > pinned_fp_libs
std::vector< wxString > pinned_symbol_libs