2010-01-17 20:25:10 +00:00
|
|
|
/**
|
2010-12-21 15:13:09 +00:00
|
|
|
* @file pcbnew/dialogs/dialog_display_options.h
|
2010-01-17 20:25:10 +00:00
|
|
|
*/
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_display_options_base.h>
|
2010-01-17 20:25:10 +00:00
|
|
|
|
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:
|
2011-03-01 19:26:17 +00:00
|
|
|
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 );
|
|
|
|
};
|
|
|
|
|