dialog_display_options.h 415 Bytes
Newer Older
jerryjacobs's avatar
jerryjacobs committed
1
/**
2
 * @file pcbnew/dialogs/dialog_display_options.h
jerryjacobs's avatar
jerryjacobs committed
3
 */
4
#include <dialog_display_options_base.h>
jerryjacobs's avatar
jerryjacobs committed
5

6
class DIALOG_DISPLAY_OPTIONS : public DIALOG_DISPLAY_OPTIONS_BASE
jerryjacobs's avatar
jerryjacobs committed
7 8
{
private:
9
   PCB_EDIT_FRAME* m_Parent;
jerryjacobs's avatar
jerryjacobs committed
10 11 12 13

   void init();

public:
14 15
   DIALOG_DISPLAY_OPTIONS( PCB_EDIT_FRAME* parent );
   ~DIALOG_DISPLAY_OPTIONS( ) { };
jerryjacobs's avatar
jerryjacobs committed
16 17 18 19
   void OnOkClick( wxCommandEvent& event );
   void OnCancelClick( wxCommandEvent& event );
};