58
|
1 // Filename : geraline.h
|
|
2 // Last Change: 2020-08-06 –Ø 15:45:27.
|
|
3 //
|
|
4 #pragma once
|
|
5
|
|
6 #include <wx/button.h>
|
|
7 #include <wx/bitmap.h>
|
|
8 #include <wx/filepicker.h>
|
|
9 #include <wx/image.h>
|
|
10 #include <wx/statbmp.h>
|
|
11 #include <wx/gbsizer.h>
|
|
12 #include <wx/stattext.h>
|
|
13 #include <wx/textctrl.h>
|
|
14 #include <wx/sizer.h>
|
|
15 #include <wx/frame.h>
|
|
16 #include <wx/spinctrl.h>
|
|
17
|
|
18 class EralineFrame : public wxFrame
|
|
19 {
|
|
20 private:
|
|
21
|
|
22 protected:
|
|
23 wxStaticBitmap* m_bitmapZoom;
|
|
24 wxStaticText* m_staticTextInDir;
|
|
25 wxDirPickerCtrl* m_dirPickerInDir;
|
|
26 wxStaticText* m_staticTextOutDir;
|
|
27 wxDirPickerCtrl* m_dirPickerOutDir;
|
|
28 wxStaticText* m_staticTextY;
|
|
29 wxSpinCtrl* m_spinCtrlY;
|
|
30 wxStaticText* m_staticTextH;
|
|
31 wxSpinCtrl* m_spinCtrlH;
|
|
32 wxButton* m_buttonErase;
|
|
33 wxStaticText* m_staticTextFile;
|
|
34 wxTextCtrl* m_textCtrlFile;
|
|
35 wxStaticBitmap* m_bitmapThumb;
|
|
36 wxButton* m_buttonPrev;
|
|
37 wxButton* m_buttonNext;
|
|
38
|
|
39 // Virtual event handlers, overide them in your derived class
|
|
40 virtual void OnErase(wxCommandEvent& event) { event.Skip(); }
|
|
41 virtual void OnDClick(wxMouseEvent& event) { event.Skip(); }
|
|
42 virtual void OnPrev(wxCommandEvent& event) { event.Skip(); }
|
|
43 virtual void OnNext(wxCommandEvent& event) { event.Skip(); }
|
|
44
|
|
45 public:
|
|
46 EralineFrame(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(800,800), long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL);
|
|
47 ~EralineFrame();
|
|
48
|
|
49 };
|
|
50
|