]>
git.saurik.com Git - wxWidgets.git/blob - utils/screenshotgen/src/guiframe.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Defines the window containing all controls.
4 // Author: Utensil Candel (UtensilCandel@@gmail.com)
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/animate.h"
13 #include "wx/bmpcbox.h"
14 #include "wx/calctrl.h"
15 #include "wx/clrpicker.h"
16 #include "wx/collpane.h"
17 #include "wx/datectrl.h"
18 #include "wx/dirctrl.h"
19 #include "wx/filepicker.h"
20 #include "wx/fontpicker.h"
21 #include "wx/hyperlink.h"
22 #include "wx/listctrl.h"
23 #include "wx/notebook.h"
24 #include "wx/richtext/richtextctrl.h"
25 #include "wx/spinbutt.h"
26 #include "wx/spinctrl.h"
27 #include "wx/tglbtn.h"
28 #include "wx/treectrl.h"
30 #include "customcombo.h"
33 class GUIFrame
: public wxFrame
37 GUIFrame( wxWindow
* parent
, wxWindowID id
= wxID_ANY
, const wxString
& title
= _("wxWidgets Control Screenshot Generator"), const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxSize( -1,-1 ), long style
= wxDEFAULT_FRAME_STYLE
|wxTAB_TRAVERSAL
);
44 idMenuCapFullScreen
= 1000,
53 wxStatusBar
* statusBar
;
55 wxNotebook
* m_notebook1
;
59 wxStaticText
* m_staticText1
;
60 wxCheckBox
* m_checkBox1
;
61 wxCheckBox
* m_checkBox2
;
62 wxRadioButton
* m_radioBtn1
;
63 wxRadioButton
* m_radioBtn2
;
64 wxBitmapButton
* m_bpButton1
;
65 wxStaticBitmap
* m_bitmap1
;
68 wxToggleButton
* m_toggleBtn1
;
69 wxToggleButton
* m_toggleBtn2
;
70 wxHyperlinkCtrl
* m_hyperlink1
;
71 wxSpinCtrl
* m_spinCtrl1
;
72 wxSpinButton
* m_spinBtn1
;
73 wxScrollBar
* m_scrollBar1
;
76 wxCheckListBox
* m_checkList1
;
77 wxListBox
* m_listBox1
;
78 wxRadioBox
* m_radioBox1
;
79 wxStaticBox
* m_staticBox1
;
80 wxTreeCtrl
* m_treeCtrl1
;
81 wxListCtrl
* m_listCtrl1
;
82 wxAnimationCtrl
* m_animationCtrl1
;
83 wxCollapsiblePane
*m_collPane1
;
84 wxCollapsiblePane
*m_collPane2
;
87 wxTextCtrl
* m_textCtrl1
;
88 wxTextCtrl
* m_textCtrl2
;
89 wxRichTextCtrl
* m_richText1
;
92 wxColourPickerCtrl
* m_colourPicker1
;
93 wxFontPickerCtrl
* m_fontPicker1
;
94 wxFilePickerCtrl
* m_filePicker1
;
95 wxCalendarCtrl
* m_calendar1
;
96 wxDatePickerCtrl
* m_datePicker1
;
97 wxGenericDirCtrl
* m_genericDirCtrl1
;
98 wxDirPickerCtrl
* m_dirPicker1
;
102 wxComboBox
* m_comboBox1
;
103 wxBitmapComboBox
* m_bmpComboBox1
;
104 PenStyleComboBox
* m_ownerDrawnComboBox1
;
105 wxComboCtrl
* m_comboCtrl1
;
106 wxComboCtrl
* m_comboCtrl2
;
108 // Virtual event handlers, overide them in your derived class
109 virtual void OnClose( wxCloseEvent
& event
){ event
.Skip(); }
110 virtual void OnSeeScreenshots( wxCommandEvent
& event
){ event
.Skip(); }
111 virtual void OnQuit( wxCommandEvent
& event
){ event
.Skip(); }
112 virtual void OnCaptureFullScreen( wxCommandEvent
& event
){ event
.Skip(); }
113 virtual void OnCaptureAllControls( wxCommandEvent
& event
){ event
.Skip(); }
114 virtual void OnAbout( wxCommandEvent
& event
){ event
.Skip(); }
125 #endif //_GUIFRAME_H_