69#include <wx/srchctrl.h>
70#include <wx/tokenzr.h>
72#include <wx/hyperlink.h>
76using namespace std::placeholders;
106 m_aboutTitle =
_HKI(
"KiCad Footprint Library Browser" );
111 m_magneticItems.graphics =
true;
123 m_libListWidth = 200;
126 wxPanel* libPanel =
new wxPanel(
this );
127 wxSizer* libSizer =
new wxBoxSizer( wxVERTICAL );
130 wxDefaultPosition, wxDefaultSize, wxTE_PROCESS_ENTER );
131 m_libFilter->SetDescriptiveText(
_(
"Filter" ) );
132 libSizer->Add( m_libFilter, 0, wxEXPAND, 5 );
135 0,
nullptr, wxLB_HSCROLL | wxNO_BORDER );
136 libSizer->Add( m_libList, 1, wxEXPAND, 5 );
138 libPanel->SetSizer( libSizer );
141 wxPanel* fpPanel =
new wxPanel(
this );
142 wxSizer* fpSizer =
new wxBoxSizer( wxVERTICAL );
145 wxDefaultPosition, wxDefaultSize, wxTE_PROCESS_ENTER );
146 m_fpFilter->SetDescriptiveText(
_(
"Filter" ) );
147 m_fpFilter->SetToolTip(
148 _(
"Filter on footprint name, keywords, description and pad count.\n"
149 "Search terms are separated by spaces. All search terms must match.\n"
150 "A term which is a number will also match against the pad count." ) );
151 fpSizer->Add( m_fpFilter, 0, wxEXPAND, 5 );
156 m_libFilter->SetMinSize( wxSize( -1, GetTextExtent( wxT(
"qb" ) ).y + 10 ) );
157 m_fpFilter->SetMinSize( wxSize( -1, GetTextExtent( wxT(
"qb" ) ).y + 10 ) );
161 0,
nullptr, wxLB_HSCROLL | wxNO_BORDER );
163 m_fpList->Connect( wxEVT_LEFT_DCLICK,
166 fpSizer->Add( m_fpList, 1, wxEXPAND, 5 );
168 fpPanel->SetSizer( fpSizer );
172 m_canvasType = loadCanvasTypeSetting();
175 GetGalDisplayOptions(), m_canvasType );
176 SetCanvas( drawPanel );
178 SetBoard(
new BOARD() );
194 SetScreen(
new PCB_SCREEN( GetPageSizeIU() ) );
196 GetScreen()->m_Center =
true;
198 GetGalDisplayOptions().m_axesEnabled =
true;
213 m_toolManager->RegisterTool(
new ZOOM_TOOL );
218 m_toolManager->InitTools();
219 m_toolManager->InvokeTool(
"common.InteractiveSelection" );
228 ReCreateLibraryList();
235 if( getCurNickname().size() && getCurFootprintName().size() )
240 id.SetLibItemName( getCurFootprintName() );
242 FOOTPRINT* footprint = loadFootprint(
id );
247 setFPWatcher( footprint );
253 m_auimgr.SetManagedWindow(
this );
256 m_auimgr.AddPane( m_tbTopMain,
EDA_PANE().VToolbar().Name(
"TopMainToolbar" ).Top().Layer(6) );
257 m_auimgr.AddPane( m_tbLeft,
EDA_PANE().VToolbar().Name(
"LeftToolbar" ).
Left().Layer(3) );
258 m_auimgr.AddPane( m_messagePanel,
EDA_PANE().Messages().Name(
"MsgPanel" ).Bottom().Layer(6) );
261 m_auimgr.AddPane( libPanel,
EDA_PANE().Palette().Name(
"Libraries" ).
Left().Layer(2)
262 .CaptionVisible(
false ).MinSize( 100, -1 ).BestSize( 200, -1 ) );
263 m_auimgr.AddPane( fpPanel,
EDA_PANE().Palette().Name(
"Footprints" ).
Left().Layer(1)
264 .CaptionVisible(
false ).MinSize( 100, -1 ).BestSize( 300, -1 ) );
266 m_auimgr.AddPane( GetCanvas(),
EDA_PANE().Canvas().Name(
"DrawFrame" ).
Center() );
271 if( m_libListWidth > 0 )
272 SetAuiPaneSize( m_auimgr, m_auimgr.GetPane(
"Libraries" ), m_libListWidth, -1 );
274 if( m_fpListWidth > 0 )
275 SetAuiPaneSize( m_auimgr, m_auimgr.GetPane(
"Footprints" ), m_fpListWidth, -1 );
278 GetCanvas()->SetCanFocus(
false );
279 GetCanvas()->GetGAL()->SetAxesEnabled(
true );
290 ReCreateFootprintList();
305 GetCanvas()->SetEvtHandlerEnabled(
false );
306 m_fpList->Disconnect( wxEVT_LEFT_DCLICK,
325 std::vector<MSG_PANEL_ITEM> msgItems;
326 fp->GetMsgPanelInfo(
this, msgItems );
341 auto addToBoardCond =
347#define ENABLE( x ) ACTION_CONDITIONS().Enable( x )
348#define CHECK( x ) ACTION_CONDITIONS().Check( x )
407 std::vector<wxString> pinnedMatches;
408 std::vector<wxString> otherMatches;
411 [&](
const wxString& aNickname )
416 pinnedMatches.push_back( aNickname );
420 otherMatches.push_back( aNickname );
426 for(
const wxString& nickname : nicknames )
431 wxStringTokenizer tokenizer(
m_libFilter->GetValue() );
433 while( tokenizer.HasMoreTokens() )
435 const wxString term = tokenizer.GetNextToken().Lower();
438 for(
const wxString& nickname : nicknames )
440 if( matcher.
Find( nickname.Lower() ) )
446 for(
const wxString& nickname : pinnedMatches )
449 for(
const wxString& nickname : otherMatches )
455 if( index == wxNOT_FOUND )
460 wxCommandEvent
dummy;
472 wxCommandEvent
dummy;
493 if( fp_info_list->GetErrorCount() )
495 fp_info_list->DisplayErrors(
this );
499 if( fp_info_list->GetList().empty() )
503 std::set<wxString> excludes;
507 wxStringTokenizer tokenizer(
m_fpFilter->GetValue() );
509 while( tokenizer.HasMoreTokens() )
511 const wxString filterTerm = tokenizer.GetNextToken().Lower();
514 for(
const std::unique_ptr<FOOTPRINT_INFO>& footprint : fp_info_list->GetList() )
516 std::vector<SEARCH_TERM> searchTerms = footprint->GetSearchTerms();
517 int matched = matcher.
ScoreTerms( searchTerms );
519 if( filterTerm.IsNumber() && wxAtoi( filterTerm ) == (
int)footprint->
GetPadCount() )
523 excludes.insert( footprint->GetFootprintName() );
528 for(
const std::unique_ptr<FOOTPRINT_INFO>& footprint : fp_info_list->GetList() )
530 if( !excludes.count( footprint->GetFootprintName() ) )
531 m_fpList->Append( footprint->GetFootprintName() );
536 if( index == wxNOT_FOUND )
543 wxCommandEvent
dummy;
553 m_fpList->SetSelection( index,
true );
581 if( aEvent.GetKeyCode() == WXK_UP )
588 else if( aEvent.GetKeyCode() == WXK_DOWN )
595 else if( aEvent.GetKeyCode() == WXK_TAB &&
m_libFilter->HasFocus() )
597 if( !aEvent.ShiftDown() )
602 else if( aEvent.GetKeyCode() == WXK_TAB &&
m_fpFilter->HasFocus() )
604 if( aEvent.ShiftDown() )
609 else if( ( aEvent.GetKeyCode() == WXK_RETURN || aEvent.GetKeyCode() == WXK_NUMPAD_ENTER )
623 int prev = aListBox->GetSelection() - 1;
627 aListBox->SetSelection( prev );
628 aListBox->EnsureVisible( prev );
630 wxCommandEvent
dummy;
642 int next = aListBox->GetSelection() + 1;
644 if(
next < (
int)aListBox->GetCount() )
646 aListBox->SetSelection(
next );
647 aListBox->EnsureVisible(
next );
649 wxCommandEvent
dummy;
712 pad->SetNet( netinfo );
728 if(
GetBoard()->GetFirstFootprint() )
733 if( pcbframe ==
nullptr )
743 DisplayError(
this,
_(
"Previous footprint placement still in progress." ) );
749 if( blocking_dialog )
750 blocking_dialog->Close(
true );
767 pad->SetNetCode( 0 );
778 commit.
Add( newFootprint );
784 commit.
Push(
_(
"Insert Footprint" ) );
847 wxCHECK_MSG( cfg,
nullptr, wxT(
"config not existing" ) );
902 if( event.GetActive() )
908 if( libNicknames.size() !=
m_libList->GetCount() )
912 for(
unsigned ii = 0; ii < libNicknames.size(); ii++ )
990 title =
_(
"[no library selected]" );
995 title =
_(
"[no library selected]" );
998 title += wxT(
" \u2014 " ) +
_(
"Footprint Library Browser" );
1011 if( aMode == FPVIEWER_CONSTANTS::NEXT_PART )
1013 if( selection != wxNOT_FOUND && selection < (
int)
m_fpList->GetCount() - 1 )
1017 if( aMode == FPVIEWER_CONSTANTS::PREVIOUS_PART )
1019 if( selection != wxNOT_FOUND && selection > 0 )
1023 if( selection != wxNOT_FOUND )
1025 m_fpList->SetSelection( selection );
1026 m_fpList->EnsureVisible( selection );
1032 selectionTool->ClearSelection(
true );
1043 if( aMode != FPVIEWER_CONSTANTS::RELOAD_PART )
wxBitmap KiBitmap(BITMAPS aBitmap, int aHeightTag)
Construct a wxBitmap from an image identifier Returns the image from the active theme if the image ha...
static TOOL_ACTION toggleGrid
static TOOL_ACTION millimetersUnits
static TOOL_ACTION milsUnits
static TOOL_ACTION toggleBoundingBoxes
static TOOL_ACTION centerContents
static TOOL_ACTION inchesUnits
static TOOL_ACTION toggleCursorStyle
static TOOL_ACTION measureTool
static TOOL_ACTION selectionTool
static TOOL_ACTION zoomFitScreen
static TOOL_ACTION zoomTool
static TOOL_ACTION selectionClear
Clear the current selection.
Manage TOOL_ACTION objects.
void SetConditions(const TOOL_ACTION &aAction, const ACTION_CONDITIONS &aConditions)
Set the conditions the UI elements for activating a specific tool action should use for determining t...
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
wxString m_ColorTheme
Active color theme name.
virtual void Push(const wxString &aMessage=wxEmptyString, int aCommitFlags=0) override
Execute the changes.
std::shared_ptr< NET_SETTINGS > m_NetSettings
int m_SolderMaskExpansion
Handle actions specific to the board editor in PcbNew.
bool PlacingFootprint() const
Re-entrancy checker for above.
Abstract interface for BOARD_ITEMs capable of storing other items inside.
Information pertinent to a Pcbnew printed circuit board.
void Add(BOARD_ITEM *aItem, ADD_MODE aMode=ADD_MODE::INSERT, bool aSkipConnectivity=false) override
Removes an item from the container.
void SetBoardUse(BOARD_USE aUse)
Set what the board is going to be used for.
FOOTPRINT * GetFirstFootprint() const
Get the first footprint on the board or nullptr.
void SetVisibleAlls()
Change the bit-mask of visible element categories and layers.
void RemoveUnusedNets(BOARD_COMMIT *aCommit)
void DeleteAllFootprints()
Remove all footprints from the deque and free the memory associated with them.
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
Color settings are a bit different than most of the settings objects in that there can be more than o...
COLOR4D GetColor(int aLayer) const
COMMIT & Add(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Add a new item to the model.
Handle actions that are shared between different applications.
Used to store the component pin name to net name (and pin function) associations stored in a netlist.
const wxString & GetPinFunction() const
const COMPONENT_NET & GetNet(unsigned aIndex) const
virtual APP_SETTINGS_BASE * config() const
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
virtual void setupUIConditions()
Setup the UI conditions for the various actions and their controls in this frame.
ACTION_TOOLBAR * m_tbTopMain
int ScoreTerms(std::vector< SEARCH_TERM > &aWeightedTerms)
bool Find(const wxString &aTerm, int &aMatchersTriggered, int &aPosition)
Look in all existing matchers, return the earliest match of any of the existing.
void OnSelectGrid(wxCommandEvent &event)
Command event handler for selecting grid sizes.
void SetMsgPanel(const std::vector< MSG_PANEL_ITEM > &aList)
Clear the message panel and populates it with the contents of aList.
virtual void OnSelectZoom(wxCommandEvent &event)
Set the zoom factor when selected by the zoom list box in the main tool bar.
GAL_DISPLAY_OPTIONS_IMPL & GetGalDisplayOptions()
Return a reference to the gal rendering options used by GAL for rendering.
virtual void UpdateMsgPanel()
Redraw the message panel.
void StopDrawing()
Prevent the GAL canvas from further drawing until it is recreated or StartDrawing() is called.
KIGFX::VIEW_CONTROLS * GetViewControls() const
Return a pointer to the #VIEW_CONTROLS instance used in the panel.
void ForceRefresh()
Force a redraw.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
void SetEventDispatcher(TOOL_DISPATCHER *aEventDispatcher)
Set a dispatcher that processes events and forwards them to tools.
void SetFlags(EDA_ITEM_FLAGS aMask)
void ClearFlags(EDA_ITEM_FLAGS aMask=EDA_ITEM_ALL_FLAGS)
virtual void SetParent(EDA_ITEM *aParent)
Specialization of the wxAuiPaneInfo class for KiCad panels.
SELECTION_CONDITION BoundingBoxes()
SELECTION_CONDITION CurrentTool(const TOOL_ACTION &aTool)
Create a functor testing if the specified tool is the current active tool in the frame.
SELECTION_CONDITION Units(EDA_UNITS aUnit)
Create a functor that tests if the frame has the specified units.
SELECTION_CONDITION GridVisible()
Create a functor testing if the grid is visible in a frame.
SELECTION_CONDITION FullscreenCursor()
Create a functor testing if the cursor is full screen in a frame.
const FP_LIB_TABLE_ROW * FindRow(const wxString &aNickName, bool aCheckIfEnabled=false)
Return an FP_LIB_TABLE_ROW if aNickName is found in this table or in any chained fall back table frag...
FOOTPRINT * FootprintLoad(const wxString &aNickname, const wxString &aFootprintName, bool aKeepUUID=false)
Load a footprint having aFootprintName from the library given by aNickname.
void ReadWindowSettings(WINDOW_SETTINGS &aCfg)
Read GAL config options from application-level config.
A color representation with 4 components: red, green, blue, alpha.
bool m_axesEnabled
Fullscreen crosshair or small cross.
An interface for classes handling user events controlling the view behavior such as zooming,...
virtual void SetCrossHairCursorPosition(const VECTOR2D &aPosition, bool aWarpView=true)=0
Move the graphic crosshair cursor to the requested position expressed in world coordinates.
VECTOR2D GetCursorPosition() const
Return the current cursor position in world coordinates.
void Clear()
Remove all items from the view.
Carry a payload from one KIWAY_PLAYER to another within a PROJECT.
MAIL_T Command()
Returns the MAIL_T associated with this mail.
KIWAY & Kiway() const
Return a reference to the KIWAY that this object has an opportunity to participate in.
bool Destroy() override
Our version of Destroy() which is virtual from wxWidgets.
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
virtual KIWAY_PLAYER * Player(FRAME_T aFrameType, bool doCreate=true, wxTopLevelWindow *aParent=nullptr)
Return the KIWAY_PLAYER* given a FRAME_T.
wxWindow * GetBlockingDialog()
Gets the window pointer to the blocking dialog (to send it signals)
virtual PROJECT & Prj() const
Return the PROJECT associated with this KIWAY.
A logical library item identifier and consists of various portions much like a URI.
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.
Hold a record identifying a library accessed by the appropriate plug in object in the LIB_TABLE.
const wxString GetFullURI(bool aSubstituted=false) const
Return the full location specifying URI for the LIB, either in original UI form or in environment var...
std::vector< wxString > GetLogicalLibs()
Return the logical library names, all of them that are pertinent to a look up done on this LIB_TABLE.
static const wxString GetPinningSymbol()
Handle the data for a net.
void SetNetname(const wxString &aNewName)
Set the long netname to aNetName, the short netname to the last token in the long netname's path,...
DISPLAY_OPTIONS m_Display
WINDOW_SETTINGS m_FootprintViewer
FLIP_DIRECTION m_FlipDirection
int m_FootprintViewerFPListWidth
int m_FootprintViewerLibListWidth
Gather all the actions that are shared by tools.
static TOOL_ACTION padDisplayMode
static TOOL_ACTION graphicsOutlines
Display footprint graphics as outlines.
static TOOL_ACTION fpAutoZoom
static TOOL_ACTION textOutlines
Display texts as lines.
static TOOL_ACTION showPadNumbers
static TOOL_ACTION placeFootprint
static TOOL_ACTION saveFpToBoard
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
void LoadSettings(APP_SETTINGS_BASE *aCfg) override
Load common frame parameters from a configuration file.
void setFPWatcher(FOOTPRINT *aFootprint)
Create or removes a watcher on the specified footprint.
PCBNEW_SETTINGS * GetPcbNewSettings() const
void CommonSettingsChanged(int aFlags) override
Notification event that some of the common (suite-wide) settings have changed.
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
void SaveSettings(APP_SETTINGS_BASE *aCfg) override
Save common frame parameters to a configuration data file.
void PlaceFootprint(FOOTPRINT *aFootprint, bool aRecreateRatsnest=true)
Place aFootprint at the current cursor position and updates footprint coordinates with the new positi...
PCB_DISPLAY_OPTIONS m_displayOptions
virtual void Update3DView(bool aMarkDirty, bool aRefresh, const wxString *aTitle=nullptr)
Update the 3D view, if the viewer is opened by this frame.
Handle actions that are shared between different frames in PcbNew.
void UpdateColors()
Update the color settings in the painter and GAL.
virtual KIGFX::PCB_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
void DisplayBoard(BOARD *aBoard, PROGRESS_REPORTER *aReporter=nullptr)
Add all items from the current board to the VIEW, so they can be displayed by GAL.
Group generic conditions for PCB editor states.
SELECTION_CONDITION PadFillDisplay()
Create a functor that tests if the frame fills the pads.
SELECTION_CONDITION GraphicsFillDisplay()
Create a functor that tests if the frame fills graphics items.
SELECTION_CONDITION FootprintViewerAutoZoom()
Create a functor that tests if the footprint viewer should auto zoom on new footprints.
SELECTION_CONDITION PadNumbersDisplay()
Create a functor that tests if the pad numbers are displayed.
SELECTION_CONDITION TextFillDisplay()
Create a functor that tests if the frame fills text items.
The main frame for Pcbnew.
bool m_FootprintViewerAutoZoomOnSelect
true to use automatic zoom on fp selection
double m_FootprintViewerZoom
The last zoom level used (0 for auto)
virtual COMMON_SETTINGS * GetCommonSettings() const
virtual SETTINGS_MANAGER & GetSettingsManager() const
The backing store for a PROJECT, in JSON format.
static FP_LIB_TABLE * PcbFootprintLibs(PROJECT *aProject)
Return the table of footprint libraries without Kiway.
@ PCB_FOOTPRINT_VIEWER_FP_NAME
@ PCB_FOOTPRINT_VIEWER_LIB_NICKNAME
virtual PROJECT_FILE & GetProjectFile() const
virtual void SetRString(RSTRING_T aStringId, const wxString &aString)
Store a "retained string", which is any session and project specific string identified in enum RSTRIN...
virtual const wxString & GetRString(RSTRING_T aStringId)
Return a "retained string", which is any session and project specific string identified in enum RSTRI...
COLOR_SETTINGS * GetColorSettings(const wxString &aName="user")
Retrieve a color settings object that applications can read colors from.
T * GetToolbarSettings(const wxString &aFilename)
Return a handle to the given toolbar settings.
T * GetAppSettings(const wxString &aFilename)
Return a handle to the a given settings by type.
wxString GetBaseString(int n) const
int FindString(const wxString &s, bool bCase=false) const override
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
This file is part of the common library.
Declaration of the eda_3d_viewer class.
#define KICAD_DEFAULT_DRAWFRAME_STYLE
#define FOOTPRINT_VIEWER_FRAME_NAME
#define IS_NEW
New item, just created.
Abstract pattern-matching tool and implementations.
Message panel definition file.
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
@ ID_MODVIEW_FOOTPRINT_LIST
@ ID_MODVIEW_FOOTPRINT_FILTER
static PGM_BASE * process
PGM_BASE & Pgm()
The global program "get" accessor.
KIWAY Kiway(KFCTL_STANDALONE)
std::vector< FAB_LAYER_COLOR > dummy
std::vector< wxString > pinned_fp_libs
bool m_ShowGlobalRatsnest
Store the common settings that are saved and loaded for each window / frame.
VECTOR2< int32_t > VECTOR2I
VECTOR2< double > VECTOR2D
Definition of file extensions used in Kicad.
void SetAuiPaneSize(wxAuiManager &aManager, wxAuiPaneInfo &aPane, int aWidth, int aHeight)
Sets the size of an AUI pane, working around http://trac.wxwidgets.org/ticket/13180.