20#include <wx/aui/framemanager.h>
34 {
"name",
"KiCad official repository" },
64 [&]() -> nlohmann::json
66 nlohmann::json js = nlohmann::json::array();
70 js.push_back( nlohmann::json( { {
"name", pair.first.ToUTF8() },
71 {
"url", pair.second.ToUTF8() } } ) );
76 [&](
const nlohmann::json aObj )
80 if( !aObj.is_array() )
83 for(
const auto& entry : aObj )
85 if( entry.empty() || !entry.is_object() )
89 std::make_pair( wxString( entry[
"name"].get<std::string>() ),
90 wxString( entry[
"url"].get<std::string>() ) ) );
96 "libraries.overrides",
97 [&]() -> nlohmann::json
99 nlohmann::json js = nlohmann::json::object();
103 nlohmann::json tableJs = nlohmann::json::object();
105 for(
const auto& [nickname, override_] : libs )
107 nlohmann::json entry = nlohmann::json::object();
109 if( override_.disabled )
110 entry[
"disabled"] =
true;
112 if( override_.hidden )
113 entry[
"hidden"] =
true;
116 tableJs[std::string( nickname.ToUTF8() )] = entry;
119 if( !tableJs.empty() )
120 js[std::string( tablePath.ToUTF8() )] = tableJs;
125 [&](
const nlohmann::json& aObj )
129 if( !aObj.is_object() )
132 for(
const auto& [tablePath, tableObj] : aObj.items() )
134 if( !tableObj.is_object() )
137 std::map<wxString, LIB_OVERRIDE>& libs =
140 for(
const auto& [nickname, entry] : tableObj.items() )
142 if( !entry.is_object() )
147 if( entry.contains(
"disabled" ) && entry[
"disabled"].is_boolean() )
148 override_.
disabled = entry[
"disabled"].get<
bool>();
150 if( entry.contains(
"hidden" ) && entry[
"hidden"].is_boolean() )
151 override_.
hidden = entry[
"hidden"].get<
bool>();
153 libs[wxString::FromUTF8( nickname )] = override_;
157 nlohmann::json::object() ) );
179 ret &=
fromLegacy<int>( aCfg,
"LeftWinWidth",
"appearance.left_frame_width" );
183 Set(
"window.size_x", 0 );
184 Set(
"window.size_y", 0 );
APP_SETTINGS_BASE(const std::string &aFilename, int aSchemaVersion)
virtual bool MigrateFromLegacy(wxConfigBase *aCfg) override
Migrates from wxConfig to JSON-based configuration.
bool fromLegacy(wxConfigBase *aConfig, const std::string &aKey, const std::string &aDest)
Translates a legacy wxConfig value to a given JSON pointer value.
void Set(const std::string &aPath, ValueType aVal)
Stores a value into the JSON document Will throw an exception if ValueType isn't something that the l...
std::vector< PARAM_BASE * > m_params
The list of parameters (owned by this object)
wxString m_PcmLastSelectedRepoId
wxString m_lastDesignBlockLibDir
int m_TemplateFilterChoice
std::vector< wxString > m_RecentTemplates
wxSize m_TemplateWindowSize
virtual bool MigrateFromLegacy(wxConfigBase *aLegacyConfig) override
Migrates from wxConfig to JSON-based configuration.
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
Like a normal param, but with custom getter and setter functions.
const nlohmann::json PCM_DEFAULT_REPOSITORIES
const int kicadSchemaVersion
! Update the schema version whenever a migration is required
#define PCM_DEFAULT_REPOSITORY_URL
Per-library override flags for libraries in read-only nested tables.