27#include <wx/tokenzr.h>
36wxObjectDataPtr<LIB_TREE_MODEL_ADAPTER>
41 return wxObjectDataPtr<LIB_TREE_MODEL_ADAPTER>( adapter );
50 Kiface().KifaceSettings()->m_DesignBlockChooserPanel.tree ),
69 wxString libName = row->Nickname();
94 const wxString& aLibName )
96 std::vector<LIB_TREE_ITEM*> libList;
104 LIB_ID id = block->GetLIB_ID();
106 block->SetLibId(
id );
107 libList.emplace_back( block );
120 "<hr><table border=0>"
124 static const wxString
DescFormat = wxS(
"<br>%s" );
125 static const wxString
KeywordsFormat = wxS(
"<br>" ) +
_(
"Keywords" ) + wxS(
": %s" );
129 " <td><b>__FIELD_NAME__</b></td>"
130 " <td>__FIELD_VALUE__</td>"
135 return wxEmptyString;
145 wxLogError(
_(
"Error loading design block %s from library '%s'." ) + wxS(
"\n%s" ),
148 return wxEmptyString;
164 esc_desc.Replace( wxS(
"\n" ), wxS(
"<br>" ) );
169 if( esc_desc.IsEmpty() )
170 html.Replace(
"__DESC__", wxEmptyString );
172 html.Replace(
"__DESC__", wxString::Format(
DescFormat, esc_desc ) );
174 if( keywords.IsEmpty() )
175 html.Replace(
"__KEY__", wxEmptyString );
181 for(
const auto& [key, value] : db->
GetFields() )
184 fieldRow.Replace( wxS(
"__FIELD_NAME__" ),
EscapeHTML( key ) );
185 fieldRow.Replace( wxS(
"__FIELD_VALUE__" ),
EscapeHTML( value ) );
186 fieldTable += fieldRow;
189 html.Replace(
"__FIELDS__", fieldTable );
196 html.Printf(
_(
"Error loading design block %s from library '%s'." ) + wxS(
"\n" ),
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
std::vector< DESIGN_BLOCK * > GetDesignBlocks(const wxString &aNickname)
std::vector< LIB_TREE_ITEM * > getDesignBlocks(EDA_BASE_FRAME *aParent, const wxString &aLibName)
DESIGN_BLOCK_LIBRARY_ADAPTER * m_libs
wxString GenerateInfo(LIB_ID const &aLibId, int aUnit) override
void AddLibraries(EDA_BASE_FRAME *aParent)
TOOL_INTERACTIVE * GetContextMenuTool() override
static wxObjectDataPtr< LIB_TREE_MODEL_ADAPTER > Create(EDA_BASE_FRAME *aParent, DESIGN_BLOCK_LIBRARY_ADAPTER *aLibs, APP_SETTINGS_BASE::LIB_TREE &aSettings, TOOL_INTERACTIVE *aContextMenuTool)
Factory function: create a model adapter in a reference-counting container.
TOOL_INTERACTIVE * m_contextMenuTool
DESIGN_BLOCK_TREE_MODEL_ADAPTER(EDA_BASE_FRAME *aParent, DESIGN_BLOCK_LIBRARY_ADAPTER *aLibs, APP_SETTINGS_BASE::LIB_TREE &aSettings, TOOL_INTERACTIVE *aContextMenuTool)
Constructor; takes a set of libraries to be included in the search.
const wxString & GetKeywords() const
const wxString & GetLibDescription() const
const nlohmann::ordered_map< wxString, wxString > & GetFields() const
The base frame for deriving all KiCad main window classes.
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual const wxString What() const
A composite of Problem() and Where()
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
std::vector< LIBRARY_TABLE_ROW * > Rows(LIBRARY_TABLE_TYPE aType, LIBRARY_TABLE_SCOPE aScope=LIBRARY_TABLE_SCOPE::BOTH, bool aIncludeInvalid=false) const
Returns a flattened list of libraries of the given type.
A logical library item identifier and consists of various portions much like a URI.
bool IsValid() const
Check if this LID_ID is valid.
int SetLibNickname(const UTF8 &aLibNickname)
Override the logical library name portion of the LIB_ID to aLibNickname.
const UTF8 & GetLibItemName() const
const UTF8 & GetLibNickname() const
Return the logical library name portion of a LIB_ID.
LIB_TREE_MODEL_ADAPTER(EDA_BASE_FRAME *aParent, const wxString &aPinnedKey, APP_SETTINGS_BASE::LIB_TREE &aSettingsStruct)
Create the adapter.
LIB_TREE_NODE_ROOT m_tree
wxDataViewCtrl * m_widget
std::vector< wxString > m_shownColumns
LIB_TREE_NODE_LIBRARY & DoAddLibrary(const wxString &aNodeName, const wxString &aDesc, const std::vector< LIB_TREE_ITEM * > &aItemList, bool pinned, bool presorted)
Add the given list of symbols by alias.
virtual COMMON_SETTINGS * GetCommonSettings() const
virtual LIBRARY_MANAGER & GetLibraryManager() const
The backing store for a PROJECT, in JSON format.
virtual PROJECT_FILE & GetProjectFile() const
Base window classes and related definitions.
Abstract pattern-matching tool and implementations.
static const wxString KeywordsFormat
static const wxString DescriptionFormat
static const wxString DescFormat
static const wxString FieldFormat
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
PGM_BASE & Pgm()
The global program "get" accessor.
wxString EscapeHTML(const wxString &aString)
Return a new wxString escaped for embedding in HTML.
wxString UnescapeString(const wxString &aSource)
wxString LinkifyHTML(wxString aStr)
Wraps links in HTML tags.
std::vector< wxString > pinned_design_block_libs