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 (C) 2020 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
25#define PCM_DEFAULT_REPOSITORY_URL "https://repository.kicad.org/repository.json"
26
27
29{
30public:
32
33 virtual ~KICAD_SETTINGS() {}
34
35 virtual bool MigrateFromLegacy( wxConfigBase* aLegacyConfig ) override;
36
38
39
40 std::vector<wxString> m_OpenProjects;
41
42 std::vector<std::pair<wxString, wxString>> m_PcmRepositories;
44
45 // This controls background update check for PCM.
46 // It is set according to m_updateCheck on first start.
48 // Auto add libs to global table
50 // Auto remove libs
52 // Generated library nickname prefix
54
58
59protected:
60 virtual std::string getLegacyFrameName() const override { return "KicadFrame"; }
61};
62
63#endif
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Definition: app_settings.h:92
virtual bool MigrateFromLegacy(wxConfigBase *aCfg) override
Migrates from wxConfig to JSON-based configuration.
virtual std::string getLegacyFrameName() const override
virtual ~KICAD_SETTINGS()
wxString m_PcmLibPrefix
wxString m_lastUpdateCheckTime
wxString m_PcmLastDownloadDir
std::vector< wxString > m_OpenProjects
std::vector< std::pair< wxString, wxString > > m_PcmRepositories
wxString m_lastReceivedUpdate
#define KICOMMON_API
Definition: kicommon.h:28