Formatting and cleanup.
This commit is contained in:
parent
f08029354a
commit
14be1935e8
|
@ -179,15 +179,6 @@ public:
|
||||||
*/
|
*/
|
||||||
void OnSelectCoordOriginCorner( wxCommandEvent& event );
|
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.
|
* Open a dialog frame to print layers.
|
||||||
*/
|
*/
|
||||||
|
@ -271,15 +262,18 @@ protected:
|
||||||
|
|
||||||
void doReCreateMenuBar() override;
|
void doReCreateMenuBar() override;
|
||||||
|
|
||||||
|
void DoWithAcceptedFiles() override;
|
||||||
|
|
||||||
DECLARE_EVENT_TABLE();
|
DECLARE_EVENT_TABLE();
|
||||||
|
|
||||||
|
protected:
|
||||||
/// The last filename chosen to be proposed to the user
|
/// The last filename chosen to be proposed to the user
|
||||||
PROPERTIES_FRAME* m_propertiesPagelayout;
|
PROPERTIES_FRAME* m_propertiesPagelayout;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
PL_EDITOR_LAYOUT m_pageLayout;
|
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
|
wxChoice* m_originSelectBox; // Corner origin choice for coordinates
|
||||||
int m_originSelectChoice; // the last choice for m_originSelectBox
|
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
|
wxString m_mruImagePath; // Most recently used path for placing a new image
|
||||||
// only on page 1, not on page 1
|
// only on page 1, not on page 1
|
||||||
VECTOR2I m_grid_origin;
|
VECTOR2I m_grid_origin;
|
||||||
|
|
||||||
void DoWithAcceptedFiles() override;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* _PL_EDITOR_FRAME_H */
|
#endif /* _PL_EDITOR_FRAME_H */
|
||||||
|
|
Loading…
Reference in New Issue