@ -42,8 +42,8 @@ class CVPCB_MAINFRAME;
class DISPLAY_FOOTPRINTS_FRAME : public PCB_BASE_FRAME
{
public :
DISPLAY_FOOTPRINTS_FRAME ( KIWAY * aKiway , CVPCB_MAINFRAME * aParent ) ;
~ DISPLAY_FOOTPRINTS_FRAME ( ) ;
DISPLAY_FOOTPRINTS_FRAME ( KIWAY * aKiway , wxWindow * aParent ) ;
~ DISPLAY_FOOTPRINTS_FRAME ( ) override ;
void OnCloseWindow ( wxCloseEvent & Event ) override ;
@ -55,7 +55,6 @@ public:
void ReCreateHToolbar ( ) override ;
void ReCreateVToolbar ( ) override ;
void ReCreateOptToolbar ( ) override ;
void RecreateMenuBar ( ) ;
void OnSelectOptionToolbar ( wxCommandEvent & event ) ;
@ -74,7 +73,7 @@ public:
* Function IsGridVisible ( ) , virtual
* @ return true if the grid must be shown
*/
virtual bool IsGridVisible ( ) const override ;
bool IsGridVisible ( ) const override ;
/**
* Function SetGridVisibility ( ) , virtual
@ -82,12 +81,12 @@ public:
* if you want to store / retrieve the grid visibility in configuration .
* @ param aVisible = true if the grid must be shown
*/
virtual void SetGridVisibility ( bool aVisible ) override ;
void SetGridVisibility ( bool aVisible ) override ;
/**
* Function GetGridColor ( ) , virtual
* @ return the color of the grid
*/
virtual COLOR4D GetGridColor ( ) override ;
COLOR4D GetGridColor ( ) override ;
void OnLeftClick ( wxDC * DC , const wxPoint & MousePos ) override ;
void OnLeftDClick ( wxDC * DC , const wxPoint & MousePos ) override ;
@ -99,8 +98,6 @@ public:
/ / / > @ copydoc EDA_DRAW_FRAME : : GetHotKeyDescription ( )
EDA_HOTKEY * GetHotKeyDescription ( int aCommand ) const override { return NULL ; }
void Process_Settings ( wxCommandEvent & event ) ;
/**
* Display 3 D frame of current footprint selection .
*/
@ -110,9 +107,8 @@ public:
* currently : do nothing in CvPcb .
* but but be defined because it is a pure virtual in PCB_BASE_FRAME
*/
virtual void SaveCopyInUndoList ( BOARD_ITEM * aItemToCopy ,
UNDO_REDO_T aTypeCommand = UR_UNSPECIFIED ,
const wxPoint & aTransformPoint = wxPoint ( 0 , 0 ) ) override
void SaveCopyInUndoList ( BOARD_ITEM * aItemToCopy , UNDO_REDO_T aTypeCommand = UR_UNSPECIFIED ,
const wxPoint & aTransformPoint = wxPoint ( 0 , 0 ) ) override
{
}
@ -126,9 +122,8 @@ public:
* @ param aTransformPoint = the reference point of the transformation ,
* for commands like move
*/
virtual void SaveCopyInUndoList ( const PICKED_ITEMS_LIST & aItemsList ,
UNDO_REDO_T aTypeCommand ,
const wxPoint & aTransformPoint = wxPoint ( 0 , 0 ) ) override
void SaveCopyInUndoList ( const PICKED_ITEMS_LIST & aItemsList , UNDO_REDO_T aTypeCommand ,
const wxPoint & aTransformPoint = wxPoint ( 0 , 0 ) ) override
{
/ / currently : do nothing in CvPcb .
}