kicad/pcbnew/dialogs/dialog_freeroute_exchange.h

42 lines
1.3 KiB
C
Raw Normal View History

2008-03-14 18:17:51 +00:00
/////////////////////////////////////////////////////////////////////////////
// Name: dialog_freeroute_exchange.h
/////////////////////////////////////////////////////////////////////////////
#ifndef _DIALOG_FREEROUTE_EXCHANGE_H_
#define _DIALOG_FREEROUTE_EXCHANGE_H_
2009-11-21 15:39:50 +00:00
#include "dialog_freeroute_exchange_base.h"
2008-03-14 18:17:51 +00:00
2009-11-21 15:39:50 +00:00
///////////////////////////////////////////////////////////////////////////////
// Class DIALOG_FREEROUTE derived from wxFormBuilder class DIALOG_FREEROUTE_BASE
///////////////////////////////////////////////////////////////////////////////
class DIALOG_FREEROUTE : public DIALOG_FREEROUTE_BASE
2008-03-14 18:17:51 +00:00
{
2009-11-21 15:39:50 +00:00
private:
PCB_EDIT_FRAME* m_Parent;
2009-11-21 15:39:50 +00:00
bool m_FreeRouteSetupChanged;
2008-03-14 18:17:51 +00:00
2009-11-21 15:39:50 +00:00
private:
// Virtual event handlers
void OnOKButtonClick( wxCommandEvent& event );
void OnExportButtonClick( wxCommandEvent& event );
void OnLaunchButtonClick( wxCommandEvent& event );
void OnImportButtonClick( wxCommandEvent& event );
void OnVisitButtonClick( wxCommandEvent& event );
void OnHelpButtonClick( wxCommandEvent& event );
void OnCancelButtonClick( wxCommandEvent& event );
void OnTextEditFrUrlUpdated( wxCommandEvent& event );
void MyInit ( );
2008-03-14 18:17:51 +00:00
2009-11-21 15:39:50 +00:00
public:
DIALOG_FREEROUTE( PCB_EDIT_FRAME* parent );
2009-11-21 15:39:50 +00:00
~DIALOG_FREEROUTE() {};
2008-03-14 18:17:51 +00:00
};
#endif
// _DIALOG_FREEROUTE_EXCHANGE_H_