1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
#ifndef WXGUIDINGINTERFACEFILE_H
#define WXGUIDINGINTERFACEFILE_H
//(*Headers(wxGuidingInterfaceFile)
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>
#include <wx/panel.h>
#include <wx/button.h>
//*)
#include "wxNoteBookPageEx.h"
class wxGuidingInterfaceFile : public wxNoteBookPageEx
{
public:
wxGuidingInterfaceFile(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
virtual ~wxGuidingInterfaceFile();
void Init();
/// On apply is called whenever the current page values should be applied
virtual void OnApply();
//(*Declarations(wxGuidingInterfaceFile)
wxTextCtrl* m_target_dir;
//*)
protected:
//(*Identifiers(wxGuidingInterfaceFile)
static const long ID_STATICTEXT1;
static const long ID_TEXTCTRL1;
static const long ID_BUTTON1;
//*)
private:
//(*Handlers(wxGuidingInterfaceFile)
void OnDirButtonClick(wxCommandEvent& event);
//*)
DECLARE_EVENT_TABLE()
};
#endif
|