2008-12-21 16:54:27 +00:00
|
|
|
#ifndef __dialog_general_options_h
|
|
|
|
#define __dialog_general_options_h
|
|
|
|
|
|
|
|
/***********************************************************************/
|
|
|
|
class Dialog_GeneralOptions : public DialogGeneralOptionsBoardEditor_base
|
|
|
|
/***********************************************************************/
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
WinEDA_PcbFrame* m_Parent;
|
|
|
|
wxDC* m_DC;
|
2009-02-24 22:41:30 +00:00
|
|
|
|
|
|
|
void init();
|
|
|
|
|
2008-12-21 16:54:27 +00:00
|
|
|
public:
|
2009-02-24 22:41:30 +00:00
|
|
|
Dialog_GeneralOptions( WinEDA_PcbFrame* parent, wxDC* DC );
|
|
|
|
~Dialog_GeneralOptions() {};
|
|
|
|
void OnOkClick( wxCommandEvent& event );
|
|
|
|
void OnCancelClick( wxCommandEvent& event );
|
2008-12-21 16:54:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __dialog_general_options_h
|