Formatting and cleanup.

This commit is contained in:
Jeff Young 2023-04-29 18:14:24 +01:00
parent 08c773a0bf
commit e923a5a8c6
1 changed files with 16 additions and 24 deletions

View File

@ -179,15 +179,6 @@ public:
*/
void OnSelectCoordOriginCorner( wxCommandEvent& event );
/**
* Toggle the display mode between the normal mode and the editor mode:
* In normal mode, title block texts are shown like they will be shown in other kicad
* applications: the format symbols in texts are replaced by the actual text.
* In editor mode, the format symbols in texts are not replaced by the actual text,
* and therefore format symbols are displayed.
*/
void OnSelectTitleBlockDisplayMode( wxCommandEvent& event );
/**
* Open a dialog frame to print layers.
*/
@ -271,15 +262,18 @@ protected:
void doReCreateMenuBar() override;
void DoWithAcceptedFiles() override;
DECLARE_EVENT_TABLE();
protected:
/// The last filename chosen to be proposed to the user
PROPERTIES_FRAME* m_propertiesPagelayout;
private:
PL_EDITOR_LAYOUT m_pageLayout;
int m_propertiesFrameWidth; // the last width (in pixels) of m_propertiesPagelayout
int m_propertiesFrameWidth; // last width (in pixels) of m_propertiesPagelayout
wxChoice* m_originSelectBox; // Corner origin choice for coordinates
int m_originSelectChoice; // the last choice for m_originSelectBox
@ -288,8 +282,6 @@ private:
wxString m_mruImagePath; // Most recently used path for placing a new image
// only on page 1, not on page 1
VECTOR2I m_grid_origin;
void DoWithAcceptedFiles() override;
};
#endif /* _PL_EDITOR_FRAME_H */