73#include <wx/filedlg.h>
77#include <wx/fdrepdlg.h>
80#define FR_HISTORY_LIST_CNT 10
95 const wxString& aTitle, const wxPoint& aPos, const wxSize& aSize,
96 long aStyle, const wxString& aFrameName, const
EDA_IU_SCALE& aIuScale ) :
97 KIWAY_PLAYER( aKiway, aParent, aFrameType, aTitle, aPos, aSize, aStyle, aFrameName, aIuScale ),
126 m_auimgr.SetFlags( wxAUI_MGR_DEFAULT );
128 if( ( aStyle & wxFRAME_NO_TASKBAR ) == 0 )
130 CreateStatusBar( 8 )->SetDoubleBuffered(
true );
149 Bind( wxEVT_DPI_CHANGED,
150 [&]( wxDPIChangedEvent& aEvent )
152 if( ( GetWindowStyle() & wxFRAME_NO_TASKBAR ) == 0 )
203 auto gridSelectorFactory =
217 auto zoomSelectorFactory =
229 auto overrideLocksFactory =
238 [
this]( wxCommandEvent& aEvent )
321 wxCommandEvent e( EDA_EVT_UNITS_CHANGED );
322 ProcessEventLocally( e );
389 wxArrayString gridsList;
395 for(
const wxString&
grid : gridsList )
433 int preset = wxNOT_FOUND;
435 for(
size_t jj = 0; jj < zoomList.size(); ++jj )
437 if( zoomList[jj] ==
zoom )
439 preset = (int) jj + 1;
444 if( preset != wxNOT_FOUND )
459 wxString
text = wxString::Format(
_(
"Zoom %.2f" ),
zoom );
474 wxCHECK_RET(
m_gridSelectBox, wxS(
"m_gridSelectBox uninitialized" ) );
482 wxUpdateUIEvent
dummy;
489 wxUpdateUIEvent
dummy;
523 wxCHECK(
config(),
true );
553 wxCHECK(
config(),
false );
593 if(
zoom == current )
601 wxCHECK_RET(
m_zoomSelectBox, wxS(
"m_zoomSelectBox uninitialized" ) );
639 canvas->CallAfter( [canvas]() { canvas->
ResizeGal(
true ); } );
653 std::shared_ptr<ZOOM_MENU> zoomMenu = std::make_shared<ZOOM_MENU>(
this );
654 zoomMenu->SetTool( commonTools );
657 std::shared_ptr<GRID_MENU> gridMenu = std::make_shared<GRID_MENU>(
this );
658 gridMenu->SetTool( commonTools );
671 SetStatusText( msg, 6 );
680 SetStatusText( msg, 7 );
694 msg.Printf(
_(
"grid %s" ), gridSettings.
grids[currentIdx].UserUnitsMessageText(
this,
false ) );
696 SetStatusText( msg, 4 );
712 default: msg =
_(
"Units" );
break;
715 SetStatusText( msg, 5 );
731 constexpr int numLocalFields = 8;
733 wxStatusBar* stsbar = GetStatusBar();
737 int totalFields = stsbar->GetFieldsCount();
739 std::vector<int> dims = {
753 KIUI::GetTextSize( wxT(
"dx 00000.0000 dy 00000.0000 dist 00000.0000" ), stsbar ).x + spacer,
768 for(
int idx = numLocalFields; idx < totalFields; ++idx )
769 dims.emplace_back( stsbar->GetStatusWidth( idx ) );
771 SetStatusWidths( dims.size(), dims.data() );
801 return wxString::Format( wxT(
"Z %.2f" ),
zoom );
875 m_messagePanel->AppendMessage( aTextUpper, aTextLower, aPadding );
903 m_messagePanel->AppendMessage( aTextUpper, aTextLower, aPadding );
910 wxCHECK_RET( aItem, wxT(
"Invalid EDA_ITEM pointer. Bad programmer." ) );
912 std::vector<MSG_PANEL_ITEM> items;
925 GetCanvas()->SetEvtHandlerEnabled(
true );
964 wxString envCanvasType;
966 if( wxGetEnv(
"KICAD_SOFTWARE_RENDERING", &envCanvasType ) )
968 if( envCanvasType.CmpNoCase(
"1" ) == 0
969 || envCanvasType.CmpNoCase(
"true" ) == 0
970 || envCanvasType.CmpNoCase(
"yes" ) == 0 )
986 static std::vector<FRAME_T> s_allowedFrames = {
FRAME_SCH,
996 if( wxGetEnv(
"KICAD_SOFTWARE_RENDERING",
nullptr ) )
1009 cfg->m_Graphics.canvas_type =
static_cast<int>( aCanvasType );
1020 double xOffset = fmod( gridOrigin.
x, gridSize.
x );
1021 int x =
KiROUND( (aPosition.
x - xOffset) / gridSize.
x );
1022 double yOffset = fmod( gridOrigin.
y, gridSize.
y );
1023 int y =
KiROUND( (aPosition.
y - yOffset) / gridSize.
y );
1025 return KiROUND( x * gridSize.
x + xOffset, y * gridSize.
y + yOffset );
1034 double xOffset = fmod( gridOrigin.
x, gridSize.
x );
1035 int x =
KiROUND( (aPosition.
x - xOffset) / gridSize.
x );
1036 double yOffset = fmod( gridOrigin.
y, gridSize.
y );
1037 int y =
KiROUND( (aPosition.
y - yOffset) / gridSize.
y );
1039 return KiROUND( x * gridSize.
x + xOffset, y * gridSize.
y + yOffset );
1063 std::vector<wxWindow*> dialogs;
1065 for( wxWindow* window : GetChildren() )
1068 dialogs.push_back( window );
1077 bool centerView =
false;
1078 std::vector<BOX2D> dialogScreenRects;
1092 dialogScreenRects.emplace_back(
ToVECTOR2D(
GetCanvas()->ScreenToClient( dialog->GetScreenPosition() ) ),
1097 for(
BOX2D rect : dialogScreenRects )
1099 rect.Inflate( rect.GetWidth() / 10 );
1101 if( rect.Contains(
GetCanvas()->GetView()->ToScreen( aPos ) ) )
1112 catch(
const Clipper2Lib::Clipper2Exception& e )
1114 wxFAIL_MSG( wxString::Format( wxT(
"Clipper2 exception occurred centering object: %s" ), e.what() ) );
1123 const wxString& aSheetName,
const wxString& aSheetPath,
1124 const wxString& aFileName,
const TITLE_BLOCK& aTitleBlock,
1125 const std::map<wxString, wxString>* aProperties,
int aSheetCount,
1126 const wxString& aPageNumber,
double aMils2Iu,
const PROJECT* aProject,
1127 const wxString& aSheetLayer,
bool aIsFirstPage )
1146 drawList.
Print( aSettings );
1151 const std::map<wxString, wxString>* aProperties,
1152 double aMils2Iu,
const wxString &aFilename,
1153 const wxString &aSheetLayer )
1159 wxPoint origin = DC->GetDeviceOrigin();
1163 DC->SetDeviceOrigin( 0, 0 );
1164 DC->SetAxisOrientation(
true,
false );
1174 DC->SetDeviceOrigin( origin.x, origin.y );
1175 DC->SetAxisOrientation(
true,
true );
1183 return wxEmptyString;
1190 return wxEmptyString;
1195 const wxString& wildcard,
const wxString& ext,
1198 aFilename.SetExt( ext );
1200 wxString defaultDir = aFilename.GetPath();
1202 if( defaultDir.IsEmpty() )
1205 if( isDirectory && doOpen )
1207 wxDirDialog dlg(
this, aTitle, defaultDir, wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST );
1209 if( dlg.ShowModal() == wxID_CANCEL )
1212 aFilename = dlg.GetPath();
1213 aFilename.SetExt( ext );
1218 if( aFilename.GetName().empty() )
1219 aFilename.SetName( wxS(
"Library" ) );
1221 wxFileDialog dlg(
this, aTitle, defaultDir, aFilename.GetFullName(), wildcard,
1222 doOpen ? wxFD_OPEN | wxFD_FILE_MUST_EXIST
1223 : wxFD_SAVE | wxFD_CHANGE_DIR | wxFD_OVERWRITE_PROMPT );
1226 dlg.SetCustomizeHook( *aFileDlgHook );
1230 if( dlg.ShowModal() == wxID_CANCEL )
1233 aFilename = dlg.GetPath();
1234 aFilename.SetExt( ext );
1250 search_pane_info.Caption(
_(
"Search" ) );
1256 properties_pane_info.Caption(
_(
"Properties" ) );
1262 net_inspector_panel_info.Caption(
_(
"Net Inspector" ) );
1403 wxSize image_size =
GetCanvas()->GetClientSize();
1405 wxBitmap bitmap( image_size.x, image_size.y );
1408 memdc.SelectObject( bitmap );
1409 memdc.Blit( 0, 0, image_size.x, image_size.y, &dc, 0, 0 );
1410 memdc.SelectObject( wxNullBitmap );
1412 image = bitmap.ConvertToImage();
1415 wxBitmapType type = wxBITMAP_TYPE_PNG;
1416 switch( aBitmapType )
1423 bool retv =
image.SaveFile( aFileName, type );
1447 std::vector<const PLUGIN_ACTION*> actions;
1448 wxCHECK( aCfg, actions );
1452 std::map<wxString, const PLUGIN_ACTION*> actionMap;
1453 std::set<const PLUGIN_ACTION*> handled;
1456 actionMap[action->identifier] = action;
1460 if( actionMap.contains( identifier ) )
1463 actions.emplace_back( action );
1464 handled.insert( action );
1468 for(
const auto& action : actionMap | std::views::values )
1470 if( !handled.contains( action ) )
1471 actions.emplace_back( action );
1492 : action->icon_light;
1494 wxAuiToolBarItem* button = aToolbar->AddTool( wxID_ANY, wxEmptyString, icon, action->name );
1496 Connect( button->GetId(), wxEVT_COMMAND_MENU_SELECTED,
1499 mgr.
ButtonBindings().insert( { button->GetId(), action->identifier } );
1510 std::shared_ptr<REPORTER>
reporter;
1513 reporter = std::make_shared<STATUSBAR_WARNING_REPORTER>( statusBar, wxS(
"plugin" ) );
BASE_SCREEN class implementation.
constexpr EDA_IU_SCALE unityScale
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
static TOOL_ACTION gridProperties
static TOOL_ACTION millimetersUnits
static TOOL_ACTION updatePreferences
static TOOL_ACTION gridPreset
static TOOL_ACTION updateUnits
static TOOL_ACTION milsUnits
static TOOL_ACTION inchesUnits
static TOOL_ACTION zoomFitScreen
static TOOL_ACTION zoomPreset
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...
Responsible for loading plugin definitions for API-based plugins (ones that do not run inside KiCad i...
std::map< int, wxString > & ButtonBindings()
void InvokeAction(const wxString &aIdentifier, std::shared_ptr< REPORTER > aReporter=nullptr)
std::vector< const PLUGIN_ACTION * > GetActionsForScope(PLUGIN_ACTION_SCOPE aScope)
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
FIND_REPLACE m_FindReplace
Handles how to draw a screen (a board, a schematic ...)
int GetVirtualPageNumber() const
const wxString & GetPageNumber() const
constexpr BOX2< Vec > & Inflate(coord_type dx, coord_type dy)
Inflates the rectangle horizontally by dx and vertically by dy.
constexpr size_type GetWidth() const
constexpr bool Contains(const Vec &aPoint) const
Color settings are a bit different than most of the settings objects in that there can be more than o...
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...
Store the list of graphic items: rect, lines, polygons and texts to draw/plot the title block and fra...
void SetPlotterMilsToIUfactor(double aMils2Iu)
Set the scalar to convert pages units (mils) to plot units.
void BuildDrawItemsList(const PAGE_INFO &aPageInfo, const TITLE_BLOCK &aTitleBlock)
Drawing or plot the drawing sheet.
void SetSheetPath(const wxString &aSheetPath)
Set the sheet path to draw/plot.
void SetFileName(const wxString &aFileName)
Set the filename to draw/plot.
void SetDefaultPenSize(int aPenSize)
void Print(const RENDER_SETTINGS *aSettings)
Draws the item list created by BuildDrawItemsList.
void SetSheetName(const wxString &aSheetName)
Set the sheet name to draw/plot.
void SetIsFirstPage(bool aIsFirstPage)
Set if the page is the first page.
void SetProperties(const std::map< wxString, wxString > *aProps)
Set properties used for text variable resolution.
void SetSheetLayer(const wxString &aSheetLayer)
Set the sheet layer to draw/plot.
void SetSheetCount(int aSheetCount)
Set the value of the count of sheets, for basic inscriptions.
void SetPageNumber(const wxString &aPageNumber)
Set the value of the sheet number.
void SetProject(const PROJECT *aProject)
void SelectToolbarAction(const TOOL_ACTION &aAction) override
Select the given action in the toolbar group which contains it, if any.
virtual APP_SETTINGS_BASE * config() const
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
void CommonSettingsChanged(int aFlags) override
Notification event that some of the common (suite-wide) settings have changed.
virtual WINDOW_SETTINGS * GetWindowSettings(APP_SETTINGS_BASE *aCfg)
Return a pointer to the window settings for this frame.
void OnToolbarSizeChanged()
Update toolbars if desired toolbar icon changed.
void ShowChangedLanguage() override
Redraw the menus and what not in current language.
virtual void setupUIConditions()
Setup the UI conditions for the various actions and their controls in this frame.
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.
virtual void configureToolbars()
wxTimer * m_autoSaveTimer
int GetMaxUndoItems() const
virtual void LoadSettings(APP_SETTINGS_BASE *aCfg)
Load common frame parameters from a configuration file.
wxString GetMruPath() const
virtual void OnSize(wxSizeEvent &aEvent)
int GetAutoSaveInterval() const
virtual void SaveSettings(APP_SETTINGS_BASE *aCfg)
Save common frame parameters to a configuration data file.
void SetMruPath(const wxString &aPath)
bool m_isClosing
Set by the close window event handler after frames are asked if they can close.
The base class for create windows for drawing purpose.
virtual const BOX2I GetDocumentExtents(bool aIncludeAllVisible=true) const
Return bounding box of document with option to not include some items.
wxCheckBox * m_overrideLocksCb
wxArrayString m_replaceStringHistoryList
virtual void ClearMsgPanel()
Clear all messages from the message panel.
static std::vector< const PLUGIN_ACTION * > GetOrderedPluginActions(PLUGIN_ACTION_SCOPE aScope, APP_SETTINGS_BASE *aCfg)
Return ordered list of plugin actions for display in the toolbar.
void configureToolbars() override
EDA_DRAW_PANEL_GAL * m_canvas
virtual void ActivateGalCanvas()
Use to start up the GAL drawing canvas.
void SaveSettings(APP_SETTINGS_BASE *aCfg) override
Save common frame parameters to a configuration data file.
GAL_DISPLAY_OPTIONS_IMPL m_galDisplayOptions
This the frame's interface to setting GAL display options.
virtual const TITLE_BLOCK & GetTitleBlock() const =0
void onActivate(wxActivateEvent &aEvent)
COLOR_SETTINGS * m_colorSettings
wxChoice * m_gridSelectBox
void AddStandardSubMenus(TOOL_MENU &aMenu)
Construct a "basic" menu for a tool, containing only items that apply to all tools (e....
void ReleaseFile()
Release the current file marked in use.
int m_lastToolbarIconSize
EDA_DRAW_PANEL_GAL::GAL_TYPE m_canvasType
The current canvas type.
virtual wxString GetFullScreenDesc() const
void OnSelectGrid(wxCommandEvent &event)
Command event handler for selecting grid sizes.
void DisplayToolMsg(const wxString &msg) override
std::unique_ptr< LOCKFILE > m_file_checker
void OnUpdateSelectZoom(wxUpdateUIEvent &aEvent)
Update the checked item in the zoom wxchoice.
virtual const PAGE_INFO & GetPageSettings() const =0
void DisplayUnitsMsg()
Display current unit pane in the status bar.
void setupUnits(APP_SETTINGS_BASE *aCfg)
void SetMsgPanel(const std::vector< MSG_PANEL_ITEM > &aList)
Clear the message panel and populates it with the contents of aList.
void UpdateGridSelectBox()
Rebuild the grid combobox to respond to any changes in the GUI (units, user grid changes,...
bool LockFile(const wxString &aFileName)
Mark a schematic file as being in use.
virtual void HardRedraw()
Rebuild the GAL and redraws the screen.
void LoadSettings(APP_SETTINGS_BASE *aCfg) override
Load common frame parameters from a configuration file.
bool SaveCanvasImageToFile(const wxString &aFileName, BITMAP_TYPE aBitmapType)
Save the current view as an image file.
void UpdateZoomSelectBox()
Rebuild the grid combobox to respond to any changes in the GUI (units, user grid changes,...
virtual void SwitchCanvas(EDA_DRAW_PANEL_GAL::GAL_TYPE aCanvasType)
Change the current rendering backend.
virtual void OnSize(wxSizeEvent &event) override
Recalculate the size of toolbars and display panel when the frame size changes.
const wxString GetZoomLevelIndicator() const
Return a human readable value for display in dialogs.
virtual void OnSelectZoom(wxCommandEvent &event)
Set the zoom factor when selected by the zoom list box in the main tool bar.
virtual void resolveCanvasType()
Determine the canvas type to load (with prompt if required) and initializes m_canvasType.
static bool m_openGLFailureOccured
Has any failure occurred when switching to OpenGL in any EDA_DRAW_FRAME?
BASE_SCREEN * m_currentScreen
current used SCREEN
virtual wxString GetScreenDesc() const
VECTOR2I GetNearestGridPosition(const VECTOR2I &aPosition) const
Return the nearest aGridSize location to aPosition.
EDA_MSG_PANEL * m_messagePanel
virtual const VECTOR2I & GetGridOrigin() const =0
Return the absolute coordinates of the origin of the snap grid.
bool saveCanvasTypeSetting(EDA_DRAW_PANEL_GAL::GAL_TYPE aCanvasType)
Store the canvas type in the application settings.
EDA_DRAW_FRAME(KIWAY *aKiway, wxWindow *aParent, FRAME_T aFrameType, const wxString &aTitle, const wxPoint &aPos, const wxSize &aSize, long aStyle, const wxString &aFrameName, const EDA_IU_SCALE &aIuScale)
virtual void Zoom_Automatique(bool aWarpPointer)
Redraw the screen with best zoom level and the best centering that shows all the page or the board.
NET_INSPECTOR_PANEL * m_netInspectorPanel
bool LibraryFileBrowser(const wxString &aTitle, bool doOpen, wxFileName &aFilename, const wxString &wildcard, const wxString &ext, bool isDirectory, FILEDLG_HOOK_NEW_LIBRARY *aFileDlgHook=nullptr)
virtual void SetGridVisibility(bool aVisible)
virtual void handleActivateEvent(wxActivateEvent &aEvent)
Handle a window activation event.
virtual void AddApiPluginTools(ACTION_TOOLBAR *aToolbar)
Append actions from API plugins to the given toolbar.
virtual void OnApiPluginInvoke(wxCommandEvent &aEvent)
Handler for activating an API plugin (via toolbar or menu).
virtual void UpdateMsgPanel()
Redraw the message panel.
wxStatusBar * OnCreateStatusBar(int number, long style, wxWindowID id, const wxString &name) override
Create the status line (like a wxStatusBar).
virtual COLOR_SETTINGS * GetColorSettings(bool aForceRefresh=false) const
Returns a pointer to the active color theme settings.
void ToggleUserUnits() override
void FocusOnLocation(const VECTOR2I &aPos, bool aAllowScroll=true)
Useful to focus on a particular location, in find functions.
virtual void CreateHotkeyPopup()
void UpdateStatusBar() override
Update the status bar information.
void GetUnitPair(EDA_UNITS &aPrimaryUnit, EDA_UNITS &aSecondaryUnits) override
Get the pair or units in current use.
void ShowChangedLanguage() override
Redraw the menus and what not in current language.
void updateStatusBarWidths()
void PrintDrawingSheet(const RENDER_SETTINGS *aSettings, BASE_SCREEN *aScreen, const std::map< wxString, wxString > *aProperties, double aMils2Iu, const wxString &aFilename, const wxString &aSheetLayer=wxEmptyString)
Print the drawing-sheet (frame and title block).
virtual EDA_DRAW_PANEL_GAL * GetCanvas() const
Return a pointer to GAL-based canvas of given EDA draw frame.
wxSocketServer * m_socketServer
Prevents opening same file multiple times.
SEARCH_PANE * m_searchPane
EDA_SEARCH_DATA & GetFindReplaceData()
void unitsChangeRefresh() override
Called when when the units setting has changed to allow for any derived classes to handle refreshing ...
void OnMove(wxMoveEvent &aEvent) override
std::vector< wxWindow * > findDialogs()
virtual void DisplayGridMsg()
Display current grid size in the status bar.
EDA_DRAW_PANEL_GAL::GAL_TYPE loadCanvasTypeSetting()
Return the canvas type stored in the application settings.
void setupUIConditions() override
Setup the UI conditions for the various actions and their controls in this frame.
wxArrayString m_findStringHistoryList
wxChoice * m_zoomSelectBox
virtual std::unique_ptr< GRID_HELPER > MakeGridHelper()
virtual PLUGIN_ACTION_SCOPE PluginActionScope() const
std::unique_ptr< EDA_SEARCH_DATA > m_findReplaceData
void CommonSettingsChanged(int aFlags) override
Notification event that some of the common (suite-wide) settings have changed.
void DisplayConstraintsMsg(const wxString &msg)
void AppendMsgPanel(const wxString &aTextUpper, const wxString &aTextLower, int aPadding=6)
Append a message to the message panel.
virtual void SetGridOverrides(bool aOverride)
PROPERTIES_PANEL * m_propertiesPanel
bool m_showBorderAndTitleBlock
VECTOR2I GetNearestHalfGridPosition(const VECTOR2I &aPosition) const
Return the nearest aGridSize / 2 location to aPosition.
void ClearToolbarControl(int aId) override
bool GetOverrideLocks() const
HOTKEY_CYCLE_POPUP * m_hotkeyPopup
virtual void UpdateProperties()
void OnUpdateSelectGrid(wxUpdateUIEvent &aEvent)
Update the checked item in the grid wxchoice.
static bool IsPluginActionButtonVisible(const PLUGIN_ACTION &aAction, APP_SETTINGS_BASE *aCfg)
static constexpr GAL_TYPE GAL_FALLBACK
GAL_TYPE GetBackend() const
Return the type of backend currently used by GAL canvas.
KIGFX::VIEW_CONTROLS * GetViewControls() const
Return a pointer to the #VIEW_CONTROLS instance used in the panel.
virtual KIGFX::VIEW * GetView() const
Return a pointer to the #VIEW instance used in the panel.
void ResizeGal(bool aForce=false)
Resize the GAL to the current client size of this panel.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
@ GAL_TYPE_LAST
Sentinel, do not use as a parameter.
@ GAL_TYPE_OPENGL
OpenGL implementation.
@ GAL_TYPE_CAIRO
Cairo implementation.
@ GAL_TYPE_NONE
GAL not used (the legacy wxDC engine is used)
KIGFX::GAL * GetGAL() const
Return a pointer to the GAL instance used in the panel.
void UpdateTouchpadGestureHandler()
Apply the current native touchpad gesture preference to the active backend window.
virtual bool SwitchBackend(GAL_TYPE aGalType)
Switch method of rendering graphics.
void StartDrawing()
Begin drawing if it was stopped previously.
A base class for most all the KiCad significant classes used in schematics and boards.
virtual void GetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList)
Populate aList of MSG_PANEL_ITEM objects with it's internal state for display purposes.
A panel to display various information messages.
Class that groups generic conditions for editor states.
SELECTION_CONDITION Units(EDA_UNITS aUnit)
Create a functor that tests if the frame has the specified units.
static const TOOL_EVENT SelectedEvent
A color representation with 4 components: red, green, blue, alpha.
double GetZoomFactor() const
const VECTOR2D & GetGridSize() const
Return the grid size.
void SetGridVisibility(bool aVisibility)
Set the visibility setting of the grid.
Container for all the knowledge about how graphical objects are drawn on any output surface/device.
int GetDefaultPenWidth() const
wxDC * GetPrintDC() const
An interface for classes handling user events controlling the view behavior such as zooming,...
virtual void LoadSettings()
Load new settings from program common settings.
virtual void SetCrossHairCursorPosition(const VECTOR2D &aPosition, bool aWarpView=true)=0
Move the graphic crosshair cursor to the requested position expressed in world coordinates.
BOX2D GetViewport() const
Return the current viewport visible area rectangle.
void SetCenter(const VECTOR2D &aCenter)
Set the center point of the VIEW (i.e.
void MarkTargetDirty(int aTarget)
Set or clear target 'dirty' flag.
KISTATUSBAR is a wxStatusBar suitable for Kicad manager.
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
KIWAY_PLAYER(KIWAY *aKiway, wxWindow *aParent, FRAME_T aFrameType, const wxString &aTitle, const wxPoint &aPos, const wxSize &aSize, long aStyle, const wxString &aFrameName, const EDA_IU_SCALE &aIuScale)
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
EDA_MSG_PANEL items for displaying messages.
Describe the page size and margins of a paper page on which to eventually print or plot.
virtual COMMON_SETTINGS * GetCommonSettings() const
virtual API_PLUGIN_MANAGER & GetPluginManager() const
Container for project specific data.
static bool ShowAlways(const SELECTION &aSelection)
The default condition function (always returns true).
Hold the information shown in the lower right corner of a plot, printout, or editing view.
EDA_UNITS GetUserUnits() const
void SetUserUnits(EDA_UNITS aUnits)
This file is part of the common library.
#define DEFAULT_MAX_UNDO_ITEMS
#define FR_HISTORY_LIST_CNT
Maximum size of the find/replace history stacks.
void PrintDrawingSheet(const RENDER_SETTINGS *aSettings, const PAGE_INFO &aPageInfo, const wxString &aSheetName, const wxString &aSheetPath, const wxString &aFileName, const TITLE_BLOCK &aTitleBlock, const std::map< wxString, wxString > *aProperties, int aSheetCount, const wxString &aPageNumber, double aMils2Iu, const PROJECT *aProject, const wxString &aSheetLayer, bool aIsFirstPage)
Print the border and title block.
FRAME_T
The set of EDA_BASE_FRAME derivatives, typically stored in EDA_BASE_FRAME::m_Ident.
@ FRAME_SCH_SYMBOL_EDITOR
This file contains miscellaneous commonly used macros and functions.
Message panel definition file.
KICOMMON_API bool IsImperialUnit(EDA_UNITS aUnit)
@ TARGET_NONCACHED
Auxiliary rendering target (noncached)
KICOMMON_API wxFont GetStatusFont(wxWindow *aWindow)
KICOMMON_API wxSize GetTextSize(const wxString &aSingleLine, wxWindow *aWindow)
Return the size of aSingleLine of text when it is rendered in aWindow using whatever font is currentl...
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
PGM_BASE & Pgm()
The global program "get" accessor.
std::vector< FAB_LAYER_COLOR > dummy
Functors that can be used to figure out how the action controls should be displayed in the UI and if ...
std::vector< wxString > replace_history
std::vector< wxString > find_history
std::vector< std::pair< wxString, bool > > actions
Ordered list of plugin actions mapped to whether or not they are shown in the toolbar.
int canvas_type
EDA_DRAW_PANEL_GAL::GAL_TYPE_* value, see gal_options_panel.cpp.
std::vector< GRID > grids
An action performed by a plugin via the IPC API.
Store the common settings that are saved and loaded for each window / frame.
std::vector< double > zoom_factors
IbisParser parser & reporter
wxLogTrace helper definitions.
Functions to provide common constants and other functions to assist in making a consistent UI.
VECTOR2< int32_t > VECTOR2I
VECTOR2< double > VECTOR2D
VECTOR2D ToVECTOR2D(const wxPoint &aPoint)