20#include <wx/aui/framemanager.h>
34 {
"name",
"KiCad official repository" },
66 [&]() -> nlohmann::json
68 nlohmann::json js = nlohmann::json::array();
72 js.push_back( nlohmann::json( { {
"name", pair.first.ToUTF8() },
73 {
"url", pair.second.ToUTF8() } } ) );
78 [&](
const nlohmann::json aObj )
82 if( !aObj.is_array() )
85 for(
const auto& entry : aObj )
87 if( entry.empty() || !entry.is_object() )
91 std::make_pair( wxString( entry[
"name"].get<std::string>() ),
92 wxString( entry[
"url"].get<std::string>() ) ) );
98 "libraries.overrides",
99 [&]() -> nlohmann::json
101 nlohmann::json js = nlohmann::json::object();
105 nlohmann::json tableJs = nlohmann::json::object();
107 for(
const auto& [nickname, override_] : libs )
109 nlohmann::json entry = nlohmann::json::object();
111 if( override_.disabled )
112 entry[
"disabled"] =
true;
114 if( override_.hidden )
115 entry[
"hidden"] =
true;
118 tableJs[std::string( nickname.ToUTF8() )] = entry;
121 if( !tableJs.empty() )
122 js[std::string( tablePath.ToUTF8() )] = tableJs;
127 [&](
const nlohmann::json& aObj )
131 if( !aObj.is_object() )
134 for(
const auto& [tablePath, tableObj] : aObj.items() )
136 if( !tableObj.is_object() )
139 std::map<wxString, LIB_OVERRIDE>& libs =
142 for(
const auto& [nickname, entry] : tableObj.items() )
144 if( !entry.is_object() )
149 if( entry.contains(
"disabled" ) && entry[
"disabled"].is_boolean() )
150 override_.
disabled = entry[
"disabled"].get<
bool>();
152 if( entry.contains(
"hidden" ) && entry[
"hidden"].is_boolean() )
153 override_.
hidden = entry[
"hidden"].get<
bool>();
155 libs[wxString::FromUTF8( nickname )] = override_;
159 nlohmann::json::object() ) );
181 ret &=
fromLegacy<int>( aCfg,
"LeftWinWidth",
"appearance.left_frame_width" );
185 Set(
"window.size_x", 0 );
186 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.
wxString m_BrowsedTemplatesPath
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.