kicad/pcbnew/dialogs/dialog_display_options.h

20 lines
415 B
C
Raw Normal View History

2010-01-17 20:25:10 +00:00
/**
* @file pcbnew/dialogs/dialog_display_options.h
2010-01-17 20:25:10 +00:00
*/
#include "dialog_display_options_base.h"
2011-03-03 19:08:13 +00:00
class DIALOG_DISPLAY_OPTIONS : public DIALOG_DISPLAY_OPTIONS_BASE
2010-01-17 20:25:10 +00:00
{
private:
PCB_EDIT_FRAME* m_Parent;
2010-01-17 20:25:10 +00:00
void init();
public:
2011-03-03 19:08:13 +00:00
DIALOG_DISPLAY_OPTIONS( PCB_EDIT_FRAME* parent );
~DIALOG_DISPLAY_OPTIONS( ) { };
2010-01-17 20:25:10 +00:00
void OnOkClick( wxCommandEvent& event );
void OnCancelClick( wxCommandEvent& event );
};