Blame view

GUI/SW1/SRC/EXPORT.h 834 Bytes
886c558b   Steve Greedy   SACAMOS Public Re...
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
#ifndef EXPORT_H
#define EXPORT_H

//(*Headers(EXPORT)
#include <wx/sizer.h>
#include <wx/filepicker.h>
#include <wx/button.h>
#include <wx/dialog.h>
//*)

class EXPORT: public wxDialog
{
	public:

		EXPORT(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
		virtual ~EXPORT();

		//(*Declarations(EXPORT)
		wxDirPickerCtrl* DirPickerCtrl1;
		wxFilePickerCtrl* FilePickerCtrl1;
		wxButton* Button1;
		wxButton* Button2;
		wxFilePickerCtrl* FilePickerCtrl2;
		//*)

	protected:

		//(*Identifiers(EXPORT)
		static const long ID_DIRPICKERCTRL1;
		static const long ID_FILEPICKERCTRL1;
		static const long ID_FILEPICKERCTRL2;
		static const long ID_BUTTON1;
		static const long ID_BUTTON2;
		//*)

	private:

		//(*Handlers(EXPORT)
		//*)

		DECLARE_EVENT_TABLE()
};

#endif