KiCad PCB EDA Suite
Loading...
Searching...
No Matches
eda_base_frame.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) 2009-2015 Jean-Pierre Charras, jp.charras wanadoo.fr
5 * Copyright (C) 2011 Wayne Stambaugh <[email protected]>
6 * Copyright (C) 2023 CERN (www.cern.ch)
7 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, you may find one here:
21 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
22 * or you may search the http://www.gnu.org website for the version 2 license,
23 * or you may write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
25 */
26
31
32#ifndef EDA_BASE_FRAME_H_
33#define EDA_BASE_FRAME_H_
34
35
36#include <map>
37#include <optional>
38#include <vector>
39
40#include <nlohmann/json_fwd.hpp>
41
42#include <wx/aui/aui.h>
43#include <layer_ids.h>
44#include <frame_type.h>
45#include <hotkeys_basic.h>
46#include <kiway_holder.h>
47#include <tool/action_toolbar.h>
48#include <tool/tools_holder.h>
49#include <widgets/ui_common.h>
50#include <widgets/wx_infobar.h>
51#include <undo_redo_container.h>
52#include <units_provider.h>
53#include <origin_transforms.h>
54#include <ui_events.h>
55
56// Option for main frames
57#define KICAD_DEFAULT_DRAWFRAME_STYLE wxDEFAULT_FRAME_STYLE | wxWANTS_CHARS
58
59
60#define VIEWER3D_FRAMENAME wxT( "Viewer3DFrameName" )
61#define QUALIFIED_VIEWER3D_FRAMENAME( parent ) \
62 ( wxString( VIEWER3D_FRAMENAME ) + wxT( ":" ) + parent->GetName() )
63
64#define KICAD_MANAGER_FRAME_NAME wxT( "KicadFrame" )
65
66
67class wxChoice;
68class wxEvent;
69class wxFileName;
70class EDA_ITEM;
72class EDA_MSG_PANEL;
73class BASE_SCREEN;
74class PAGE_INFO;
75class PLOTTER;
76class TITLE_BLOCK;
77class MSG_PANEL_ITEM;
78class TOOL_MANAGER;
79class TOOL_DISPATCHER;
80class ACTIONS;
81class PAGED_DIALOG;
84class FILE_HISTORY;
86class SEARCH_STACK;
89struct WINDOW_SETTINGS;
90struct WINDOW_STATE;
91class ACTION_MENU;
94
95#define DEFAULT_MAX_UNDO_ITEMS 0
96#define ABS_MAX_UNDO_ITEMS (INT_MAX / 2)
97
99typedef std::function< void( wxUpdateUIEvent& ) > UIUpdateHandler;
100
101
111class EDA_BASE_FRAME : public wxFrame, public TOOLS_HOLDER, public KIWAY_HOLDER,
112 public UNITS_PROVIDER
113{
114public:
123
124 EDA_BASE_FRAME( wxWindow* aParent, FRAME_T aFrameType, const wxString& aTitle,
125 const wxPoint& aPos, const wxSize& aSize, long aStyle,
126 const wxString& aFrameName, KIWAY* aKiway, const EDA_IU_SCALE& aIuScale );
127
129
130 void ChangeUserUnits( EDA_UNITS aUnits );
131
132 virtual void ToggleUserUnits() { }
133
138 {
139 return m_originTransforms;
140 }
141
142
144
145 virtual SEVERITY GetSeverity( int aErrorCode ) const { return RPT_SEVERITY_UNDEFINED; }
146
153 bool ProcessEvent( wxEvent& aEvent ) override;
154
162 virtual void OnCharHook( wxKeyEvent& aKeyEvent );
163
168 void OnMenuEvent( wxMenuEvent& event );
169
176 virtual void RegisterUIUpdateHandler( int aID, const ACTION_CONDITIONS& aConditions ) override;
177
183 virtual void UnregisterUIUpdateHandler( int aID ) override;
184
193 static void HandleUpdateUIEvent( wxUpdateUIEvent& aEvent, EDA_BASE_FRAME* aFrame,
194 ACTION_CONDITIONS aCond );
195
196 virtual void OnMove( wxMoveEvent& aEvent )
197 {
198 aEvent.Skip();
199 }
200
201 virtual void OnSize( wxSizeEvent& aEvent );
202
207 void SelectToolbarAction( const TOOL_ACTION& aAction )
208 {
209 if( m_tbLeft )
210 m_tbLeft->SelectAction( aAction );
211
212 if( m_tbTopMain )
213 m_tbTopMain->SelectAction( aAction );
214
215 if( m_tbTopAux )
216 m_tbTopAux->SelectAction( aAction );
217
218 if( m_tbRight )
219 m_tbRight->SelectAction( aAction );
220 }
221
222 void OnMaximize( wxMaximizeEvent& aEvent );
223
224 int GetAutoSaveInterval() const;
225
226 bool IsType( FRAME_T aType ) const { return m_ident == aType; }
227 FRAME_T GetFrameType() const { return m_ident; }
228
234 virtual const SEARCH_STACK& sys_search();
235
236 virtual wxString help_name();
237
238 // Event handlers for menu events generated by the macOS application menu
239 void OnKicadAbout( wxCommandEvent& event );
240 void OnPreferences( wxCommandEvent& event );
241
246 void ShowPreferences( wxString aStartPage, wxString aStartParentPage );
247
248 void PrintMsg( const wxString& text );
249
250 void CreateInfoBar();
251
252 void RestoreAuiLayout();
253
255
260
270 void ShowInfoBarError( const wxString& aErrorMsg, bool aShowCloseButton = false,
272
287 void ShowInfoBarError( const wxString& aErrorMsg, bool aShowCloseButton,
288 std::function<void(void)> aCallback );
289
299 void ShowInfoBarWarning( const wxString& aWarningMsg, bool aShowCloseButton = false );
300
310 void ShowInfoBarMsg( const wxString& aMsg, bool aShowCloseButton = false );
311
316 virtual APP_SETTINGS_BASE* config() const;
317
318 void LoadWindowState( const wxString& aFileName );
319
326 void LoadWindowSettings( const WINDOW_SETTINGS* aCfg );
327
335
342 virtual void LoadSettings( APP_SETTINGS_BASE* aCfg );
343
350 virtual void SaveSettings( APP_SETTINGS_BASE* aCfg );
351
360
364 virtual void LoadWindowState( const WINDOW_STATE& aState );
365
376 wxString ConfigBaseName() override
377 {
378 wxString baseCfgName = m_configName.IsEmpty() ? GetName() : m_configName;
379 return baseCfgName;
380 }
381
393 virtual void SaveProjectLocalSettings() {};
394
402 void ImportHotkeyConfigFromFile( std::map<std::string, TOOL_ACTION*> aActionMap,
403 const wxString& aDefaultShortname );
404
417 wxString GetFileFromHistory( int cmdId, const wxString& type,
418 FILE_HISTORY* aFileHistory = nullptr );
419
423 virtual void ClearFileHistory();
424
434 void UpdateFileHistory( const wxString& FullFileName, FILE_HISTORY* aFileHistory = nullptr );
435
442 {
443 return *m_fileHistory;
444 }
445
446 void SetMruPath( const wxString& aPath ) { m_mruPath = aPath; }
447
448 wxString GetMruPath() const { return m_mruPath; }
449
457 virtual wxString GetCurrentFileName() const { return wxEmptyString; }
458
459 virtual void RecreateToolbars();
460
465
469 virtual void UpdateToolbarControlSizes();
470
481 const ACTION_TOOLBAR_CONTROL_FACTORY& aControlFactory );
482
487
493 void ReCreateMenuBar();
494
498 void AddStandardHelpMenu( wxMenuBar* aMenuBar );
499
500 wxString GetRunMenuCommandDescription( const TOOL_ACTION& aAction );
501
517 bool IsWritable( const wxFileName& aFileName, bool aVerbose = true );
518
526 virtual void UpdateStatusBar() { }
527
531 void ShowChangedLanguage() override;
532
537 void CommonSettingsChanged( int aFlags ) override;
538
542 virtual void ThemeChanged();
543
547 virtual void ProjectChanged() {}
548
549 const wxString& GetAboutTitle() const { return wxGetTranslation( m_aboutTitle ); }
550
551 const wxString& GetUntranslatedAboutTitle() const { return m_aboutTitle; }
552
558 virtual bool IsContentModified() const;
559
568 wxSize GetWindowSize();
569
582 virtual void ClearUndoORRedoList( UNDO_REDO_LIST aList, int aItemCount = -1 )
583 { }
584
590 virtual void ClearUndoRedoList();
591
597 virtual void PushCommandToUndoList( PICKED_ITEMS_LIST* aItem );
598
604 virtual void PushCommandToRedoList( PICKED_ITEMS_LIST* aItem );
605
610
615
616 virtual int GetUndoCommandCount() const { return m_undoList.m_CommandsList.size(); }
617 virtual int GetRedoCommandCount() const { return m_redoList.m_CommandsList.size(); }
618
619 virtual wxString GetUndoActionDescription() const;
620 virtual wxString GetRedoActionDescription() const;
621
622 int GetMaxUndoItems() const { return m_undoRedoCountMax; }
623
628 virtual void OnModify();
629
630 bool IsClosing() const { return m_isClosing; }
631
632 bool NonUserClose( bool aForce )
633 {
634 m_isNonUserClose = true;
635 return Close( aForce );
636 }
637
638 virtual void ClearToolbarControl( int aId ) { }
639
643 virtual void HandleSystemColorChange();
644
651 virtual bool CanAcceptApiCommands() { return IsEnabled(); }
652
653protected:
655 static constexpr int KICAD_AUI_TB_STYLE = wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_PLAIN_BACKGROUND;
656
657 virtual void doReCreateMenuBar() {}
658
659 virtual void configureToolbars();
660
664 void onAutoSaveTimer( wxTimerEvent& aEvent );
665
666
672 virtual void handleIconizeEvent( wxIconizeEvent& aEvent ) {}
673 void onIconize( wxIconizeEvent& aEvent );
674
680 virtual bool isAutoSaveRequired() const { return m_autoSaveRequired; }
681
687 virtual bool doAutoSave();
688
689 virtual bool canCloseWindow( wxCloseEvent& aCloseEvent ) { return true; }
690 virtual void doCloseWindow() { }
691
692 void onSystemColorChange( wxSysColourChangedEvent& aEvent );
693
701 virtual void unitsChangeRefresh() { }
702
706 virtual void setupUIConditions();
707
714 void initExitKey();
715
717
724 virtual void saveProjectSettings() {}
725
732 virtual void OnDropFiles( wxDropFilesEvent& aEvent );
733
740 void AddMenuLanguageList( ACTION_MENU* aMasterMenu, TOOL_INTERACTIVE* aControlTool );
741
748 virtual void DoWithAcceptedFiles();
749 std::vector<wxFileName> m_AcceptedFiles;
750
751 DECLARE_EVENT_TABLE()
752
753private:
764 void windowClosing( wxCloseEvent& event );
765
769 void commonInit( FRAME_T aFrameType );
770
771 wxWindow* findQuasiModalDialog();
772
780 virtual bool IsModal() const { return false; }
781
782#ifdef __WXMSW__
786 WXLRESULT MSWWindowProc( WXUINT message, WXWPARAM wParam, WXLPARAM lParam ) override;
787#endif
788
789 protected:
790 FRAME_T m_ident; // Id Type (pcb, schematic, library..)
791 wxPoint m_framePos;
795
796 // These contain the frame size and position for when it is not maximized
799
800 wxString m_aboutTitle; // Name of program displayed in About.
801
802 wxAuiManager m_auimgr;
803 wxString m_perspective; // wxAuiManager perspective.
804 nlohmann::json m_auiLayoutState;
805 WX_INFOBAR* m_infoBar; // Infobar for the frame
807 wxString m_configName; // Prefix used to identify some params (frame
808 // size) and to name some config files (legacy
809 // hotkey files)
811
812 FILE_HISTORY* m_fileHistory; // The frame's recently opened file list
818
819 int m_undoRedoCountMax; // undo/Redo command Max depth
820
821 UNDO_REDO_CONTAINER m_undoList; // Objects list for the undo command (old data)
822 UNDO_REDO_CONTAINER m_redoList; // Objects list for the redo command (old data)
823
824 wxString m_mruPath; // Most recently used path.
825
826 ORIGIN_TRANSFORMS m_originTransforms; // Default display origin transforms object.
827
829 std::map<int, UIUpdateHandler> m_uiUpdateMap;
830
834
837
841 std::map<const wxString, TOOL_ACTION*> m_acceptedExts;
842
843 // Toolbar Settings - this is not owned by the frame
845
846 // Toolbar UI elements
848 ACTION_TOOLBAR* m_tbTopAux; // Additional tools under main toolbar
849 ACTION_TOOLBAR* m_tbRight; // Drawing tools (typically on right edge of window)
850 ACTION_TOOLBAR* m_tbLeft; // Options (typically on left edge of window)
851
852 std::map<std::string, ACTION_TOOLBAR_CONTROL_FACTORY> m_toolbarControlFactories;
853};
854
855
877class EDA_PANE : public wxAuiPaneInfo
878{
879public:
881 {
882 Gripper( false );
883 CloseButton( false );
884 PaneBorder( false );
885 }
886
891 {
892 SetFlag( optionToolbar, true );
893 CaptionVisible( false );
894 TopDockable().BottomDockable();
895 DockFixed( true );
896 Movable( false );
897 Resizable( true ); // expand to fit available space
898 return *this;
899 }
900
905 {
906 SetFlag( optionToolbar, true );
907 CaptionVisible( false );
908 LeftDockable().RightDockable();
909 DockFixed( true );
910 Movable( false );
911 Resizable( true ); // expand to fit available space
912 return *this;
913 }
914
919 {
920 CaptionVisible( true );
921 PaneBorder( true );
922 return *this;
923 }
924
929 {
930 CaptionVisible( false );
931 Layer( 0 );
932 PaneBorder( true );
933 Resizable( true ); // expand to fit available space
934 return *this;
935 }
936
941 {
942 CaptionVisible( false );
943 BottomDockable( true );
944 DockFixed( true );
945 Movable( false );
946 Resizable( true ); // expand to fit available space
947 return *this;
948 }
949
954 {
955 CaptionVisible( false );
956 Movable( false );
957 Resizable( true );
958 PaneBorder( false );
959 DockFixed( true );
960 return *this;
961 }
962};
963
964#endif // EDA_BASE_FRAME_H_
std::function< void(ACTION_TOOLBAR *)> ACTION_TOOLBAR_CONTROL_FACTORY
Type for the function signature that is used to add custom controls to the toolbar.
Gather all the actions that are shared by tools.
Definition actions.h:48
Define the structure of a menu based on ACTIONs.
Definition action_menu.h:47
Class to hold basic information about controls that can be added to the toolbars.
Define the structure of a toolbar with buttons that invoke ACTIONs.
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Handles how to draw a screen (a board, a schematic ...)
Definition base_screen.h:41
The base frame for deriving all KiCad main window classes.
virtual wxString help_name()
virtual void saveProjectSettings()
Save any design-related project settings associated with this frame.
virtual bool doAutoSave()
This should be overridden by the derived class to handle the auto save feature.
void LoadWindowState(const wxString &aFileName)
FRAME_T GetFrameType() const
wxString ConfigBaseName() override
Get the configuration base name.
virtual void UnregisterUIUpdateHandler(int aID) override
Unregister a UI handler for a given ID that was registered using RegisterUIUpdateHandler.
virtual bool isAutoSaveRequired() const
Return the auto save status of the application.
virtual APP_SETTINGS_BASE * config() const
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
virtual void handleIconizeEvent(wxIconizeEvent &aEvent)
Handle a window iconize event.
virtual void PushCommandToUndoList(PICKED_ITEMS_LIST *aItem)
Add a command to undo in the undo list.
void windowClosing(wxCloseEvent &event)
(with its unexpected name so it does not collide with the real OnWindowClose() function provided in d...
APPEARANCE_CONTROLS_3D * m_appearancePanel
virtual void OnCharHook(wxKeyEvent &aKeyEvent)
Capture the key event before it is sent to the GUI.
virtual int GetRedoCommandCount() const
bool NonUserClose(bool aForce)
virtual void ProjectChanged()
Notification event that the project has changed.
void CommonSettingsChanged(int aFlags) override
Notification event that some of the common (suite-wide) settings have changed.
UNDO_REDO_CONTAINER m_undoList
virtual void OnMove(wxMoveEvent &aEvent)
virtual WINDOW_SETTINGS * GetWindowSettings(APP_SETTINGS_BASE *aCfg)
Return a pointer to the window settings for this frame.
virtual void doCloseWindow()
const wxString & GetUntranslatedAboutTitle() const
virtual void UpdateStatusBar()
Update the status bar information.
void OnToolbarSizeChanged()
Update toolbars if desired toolbar icon changed.
void OnMenuEvent(wxMenuEvent &event)
The TOOL_DISPATCHER needs these to work around some issues in wxWidgets where the menu events aren't ...
virtual bool IsModal() const
Return true if the frame is shown in our modal mode and false if the frame is shown as an usual frame...
void ShowChangedLanguage() override
Redraw the menus and what not in current language.
virtual void HandleSystemColorChange()
Update the UI in response to a change in the system colors.
virtual void setupUIConditions()
Setup the UI conditions for the various actions and their controls in this frame.
void ensureWindowIsOnScreen()
bool m_isNonUserClose
Set by NonUserClose() to indicate that the user did not request the current close.
const wxString & GetAboutTitle() const
virtual void ClearToolbarControl(int aId)
void LoadWindowSettings(const WINDOW_SETTINGS *aCfg)
Load window settings from the given settings object.
std::vector< wxFileName > m_AcceptedFiles
virtual SEVERITY GetSeverity(int aErrorCode) const
bool m_autoSavePermissionError
void OnKicadAbout(wxCommandEvent &event)
virtual void UpdateToolbarControlSizes()
Update the sizes of any controls in the toolbars of the frame.
virtual void ClearUndoRedoList()
Clear the undo and redo list using ClearUndoORRedoList()
SETTINGS_MANAGER * GetSettingsManager() const
virtual void DoWithAcceptedFiles()
Execute action on accepted dropped file.
UNDO_REDO_LIST
Specify whether we are interacting with the undo or redo stacks.
virtual void OnModify()
Must be called after a model change in order to set the "modify" flag and do other frame-specific pro...
wxWindow * findQuasiModalDialog()
static void HandleUpdateUIEvent(wxUpdateUIEvent &aEvent, EDA_BASE_FRAME *aFrame, ACTION_CONDITIONS aCond)
Handle events generated when the UI is trying to figure out the current state of the UI controls rela...
wxString m_perspective
bool IsClosing() const
virtual void ClearUndoORRedoList(UNDO_REDO_LIST aList, int aItemCount=-1)
Remove the aItemCount of old commands from aList and delete commands, pickers and picked items if nee...
virtual void ThemeChanged()
Process light/dark theme change.
EDA_BASE_FRAME(wxWindow *aParent, FRAME_T aFrameType, const wxString &aTitle, const wxPoint &aPos, const wxSize &aSize, long aStyle, const wxString &aFrameName, KIWAY *aKiway, const EDA_IU_SCALE &aIuScale)
static constexpr int KICAD_AUI_TB_STYLE
Default style flags used for wxAUI toolbars.
ACTION_TOOLBAR * m_tbRight
void ShowPreferences(wxString aStartPage, wxString aStartParentPage)
Display the preferences and settings of all opened editors paged dialog, starting with a particular p...
void initExitKey()
Set the common key-pair for exiting the application (Ctrl-Q) and ties it to the wxID_EXIT event id.
void OnPreferences(wxCommandEvent &event)
virtual const SEARCH_STACK & sys_search()
Return a SEARCH_STACK pertaining to entire program.
WX_INFOBAR * m_infoBar
void onAutoSaveTimer(wxTimerEvent &aEvent)
Handle the auto save timer event.
void SaveWindowSettings(WINDOW_SETTINGS *aCfg)
Save window settings to the given settings object.
virtual void ToggleUserUnits()
virtual wxString GetRedoActionDescription() const
TOOLBAR_SETTINGS * m_toolbarSettings
virtual wxString GetCurrentFileName() const
Get the full filename + path of the currently opened file in the frame.
void ChangeUserUnits(EDA_UNITS aUnits)
wxString m_configName
void AddMenuLanguageList(ACTION_MENU *aMasterMenu, TOOL_INTERACTIVE *aControlTool)
Create a menu list for language choice, and add it as submenu to MasterMenu.
void RegisterCustomToolbarControlFactory(const ACTION_TOOLBAR_CONTROL &aControlDesc, const ACTION_TOOLBAR_CONTROL_FACTORY &aControlFactory)
Register a creation factory for toolbar controls that are present in this frame.
void ShowInfoBarMsg(const wxString &aMsg, bool aShowCloseButton=false)
Show the WX_INFOBAR displayed on the top of the canvas with a message and an info icon on the left of...
virtual void configureToolbars()
wxTimer * m_autoSaveTimer
void UpdateFileHistory(const wxString &FullFileName, FILE_HISTORY *aFileHistory=nullptr)
Update the list of recently opened files.
wxAuiManager m_auimgr
void PrintMsg(const wxString &text)
void SelectToolbarAction(const TOOL_ACTION &aAction)
Select the given action in the toolbar group which contains it, if any.
void commonInit(FRAME_T aFrameType)
Collect common initialization functions used in all CTORs.
virtual bool IsContentModified() const
Get if the contents of the frame have been modified since the last save.
void ShowInfoBarWarning(const wxString &aWarningMsg, bool aShowCloseButton=false)
Show the WX_INFOBAR displayed on the top of the canvas with a message and a warning icon on the left ...
int GetMaxUndoItems() const
virtual PICKED_ITEMS_LIST * PopCommandFromRedoList()
Return the last command to undo and remove it from list, nothing is deleted.
virtual bool CanAcceptApiCommands()
Check if this frame is ready to accept API commands.
virtual void RecreateToolbars()
std::map< int, UIUpdateHandler > m_uiUpdateMap
Map containing the UI update handlers registered with wx for each action.
std::map< std::string, ACTION_TOOLBAR_CONTROL_FACTORY > m_toolbarControlFactories
ACTION_TOOLBAR_CONTROL_FACTORY * GetCustomToolbarControlFactory(const std::string &aName)
UNDO_REDO_CONTAINER m_redoList
virtual void LoadSettings(APP_SETTINGS_BASE *aCfg)
Load common frame parameters from a configuration file.
wxString GetMruPath() const
FILE_HISTORY * m_fileHistory
ACTION_TOOLBAR * m_tbLeft
SETTINGS_MANAGER * m_settingsManager
FILE_HISTORY & GetFileHistory()
Get the frame's main file history.
virtual void OnSize(wxSizeEvent &aEvent)
virtual wxString GetUndoActionDescription() const
void ImportHotkeyConfigFromFile(std::map< std::string, TOOL_ACTION * > aActionMap, const wxString &aDefaultShortname)
Prompt the user for a hotkey file to read, and read it.
virtual PICKED_ITEMS_LIST * PopCommandFromUndoList()
Return the last command to undo and remove it from list, nothing is deleted.
wxString GetRunMenuCommandDescription(const TOOL_ACTION &aAction)
virtual bool canCloseWindow(wxCloseEvent &aCloseEvent)
bool ProcessEvent(wxEvent &aEvent) override
Override the default process event handler to implement the auto save feature.
bool IsWritable(const wxFileName &aFileName, bool aVerbose=true)
Check if aFileName can be written.
wxPoint m_normalFramePos
void OnMaximize(wxMaximizeEvent &aEvent)
virtual void ClearFileHistory()
Remove all files from the file history.
ORIGIN_TRANSFORMS & GetOriginTransforms() override
Return a reference to the default ORIGIN_TRANSFORMS object.
ACTION_TOOLBAR * m_tbTopAux
virtual void OnDropFiles(wxDropFilesEvent &aEvent)
Handle event fired when a file is dropped to the window.
std::map< const wxString, TOOL_ACTION * > m_acceptedExts
Associate file extensions with action to execute.
void onIconize(wxIconizeEvent &aEvent)
virtual void unitsChangeRefresh()
Called when when the units setting has changed to allow for any derived classes to handle refreshing ...
wxString GetFileFromHistory(int cmdId, const wxString &type, FILE_HISTORY *aFileHistory=nullptr)
Fetch the file name from the file history list.
wxSize GetWindowSize()
Get the undecorated window size that can be used for restoring the window size.
int GetAutoSaveInterval() const
virtual void SaveSettings(APP_SETTINGS_BASE *aCfg)
Save common frame parameters to a configuration data file.
void SetMruPath(const wxString &aPath)
void onSystemColorChange(wxSysColourChangedEvent &aEvent)
virtual int GetUndoCommandCount() const
ORIGIN_TRANSFORMS m_originTransforms
virtual void RegisterUIUpdateHandler(int aID, const ACTION_CONDITIONS &aConditions) override
Register a UI update handler for the control with ID aID.
ACTION_TOOLBAR * m_tbTopMain
virtual void SaveProjectLocalSettings()
Save changes to the project local settings.
wxString m_aboutTitle
virtual void PushCommandToRedoList(PICKED_ITEMS_LIST *aItem)
Add a command to redo in the redo list.
void ShowInfoBarError(const wxString &aErrorMsg, bool aShowCloseButton=false, WX_INFOBAR::MESSAGE_TYPE aType=WX_INFOBAR::MESSAGE_TYPE::GENERIC)
Show the WX_INFOBAR displayed on the top of the canvas with a message and an error icon on the left o...
bool m_isClosing
Set by the close window event handler after frames are asked if they can close.
bool IsType(FRAME_T aType) const
void AddStandardHelpMenu(wxMenuBar *aMenuBar)
Add the standard KiCad help menu to the menubar.
nlohmann::json m_auiLayoutState
void ReCreateMenuBar()
Recreate the menu bar.
virtual void doReCreateMenuBar()
WX_INFOBAR * GetInfoBar()
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:98
A panel to display various information messages.
Definition msgpanel.h:101
EDA_PANE & Canvas()
Turn *this into an undecorated pane suitable for a drawing canvas.
EDA_PANE & Messages()
Turn *this into a messages pane for KiCad.
EDA_PANE & InfoBar()
Turn *this into a infobar for KiCad.
EDA_PANE & HToolbar()
Turn *this to a horizontal toolbar for KiCad.
EDA_PANE & VToolbar()
Turn *this into a vertical toolbar for KiCad.
EDA_PANE & Palette()
Turn *this into a captioned palette suitable for a symbol tree, layers manager, etc.
This class implements a file history object to store a list of files, that can then be added to a men...
KIWAY_HOLDER(KIWAY *aKiway, HOLDER_TYPE aType)
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition kiway.h:294
EDA_MSG_PANEL items for displaying messages.
Definition msgpanel.h:54
A class to perform either relative or absolute display origin transforms for a single axis of a point...
Describe the page size and margins of a paper page on which to eventually print or plot.
Definition page_info.h:79
A holder to handle information on schematic or board items.
Base plotter engine class.
Definition plotter.h:136
Look for files in a number of paths.
Hold the information shown in the lower right corner of a plot, printout, or editing view.
Definition title_block.h:41
Represent a single user action.
Master controller class:
A holder to handle a list of undo (or redo) commands.
UNITS_PROVIDER(const EDA_IU_SCALE &aIuScale, EDA_UNITS aUnits)
A modified version of the wxInfoBar class that allows us to:
Definition wx_infobar.h:76
MESSAGE_TYPE
Sets the type of message for special handling if needed.
Definition wx_infobar.h:94
@ GENERIC
GENERIC Are messages that do not have special handling.
Definition wx_infobar.h:95
std::function< void(wxUpdateUIEvent &) > UIUpdateHandler
This is the handler functor for the update UI events.
EDA_UNITS
Definition eda_units.h:48
FRAME_T
The set of EDA_BASE_FRAME derivatives, typically stored in EDA_BASE_FRAME::m_Ident.
Definition frame_type.h:33
SEVERITY
@ RPT_SEVERITY_UNDEFINED
Functors that can be used to figure out how the action controls should be displayed in the UI and if ...
Store the common settings that are saved and loaded for each window / frame.
Store the window positioning/state.
Functions to provide common constants and other functions to assist in making a consistent UI.