KiCad PCB EDA Suite
Loading...
Searching...
No Matches
kicad_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 along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef _KICAD_SETTINGS_H
22#define _KICAD_SETTINGS_H
23
24#include <map>
25#include <set>
27#define PCM_DEFAULT_REPOSITORY_URL "https://repository.kicad.org/repository.json"
28
29
36{
37 bool disabled = false;
38 bool hidden = false;
39};
40
41
43{
44public:
46
47 virtual ~KICAD_SETTINGS() {}
48
49 virtual bool MigrateFromLegacy( wxConfigBase* aLegacyConfig ) override;
50
53
54
55 std::vector<wxString> m_OpenProjects;
56
58
59 std::vector<std::pair<wxString, wxString>> m_PcmRepositories;
61
62 // This controls background update check for PCM.
63 // It is set according to m_updateCheck on first start.
65 // Auto add libs to global table
67 // Auto remove libs
69 // Generated library nickname prefix
71 // Last used repository (for pre-selection in dialog)
73
77
78 // Last position of the template window
80 // Last size of the template window
82 // Last used project template path (for pre-selection in dialog)
84
85 std::vector<wxString> m_RecentTemplates;
87
90 std::map<wxString, std::map<wxString, LIB_OVERRIDE>> m_LibOverrides;
91
92protected:
93 virtual std::string getLegacyFrameName() const override { return "KicadFrame"; }
94};
95
96#endif
APP_SETTINGS_BASE(const std::string &aFilename, int aSchemaVersion)
virtual bool MigrateFromLegacy(wxConfigBase *aCfg) override
Migrates from wxConfig to JSON-based configuration.
wxString m_PcmLastSelectedRepoId
wxString m_lastDesignBlockLibDir
virtual std::string getLegacyFrameName() const override
std::vector< wxString > m_RecentTemplates
wxSize m_TemplateWindowSize
virtual ~KICAD_SETTINGS()
wxString m_PcmLibPrefix
std::map< wxString, std::map< wxString, LIB_OVERRIDE > > m_LibOverrides
Overrides for libraries in read-only nested tables.
wxPoint m_TemplateWindowPos
wxString m_lastUpdateCheckTime
wxString m_PcmLastDownloadDir
std::vector< wxString > m_OpenProjects
std::vector< std::pair< wxString, wxString > > m_PcmRepositories
wxString m_lastReceivedUpdate
wxString m_LastUsedTemplate
#define KICOMMON_API
Definition kicommon.h:27
Per-library override flags for libraries in read-only nested tables.