]> git.saurik.com Git - wxWidgets.git/blame - utils/screenshotgen/src/guiframe.h
added wxLog::IsLevelEnabled() helper; document it and a few related functions which...
[wxWidgets.git] / utils / screenshotgen / src / guiframe.h
CommitLineData
f978831f
BP
1/////////////////////////////////////////////////////////////////////////////
2// Name: guiframe.h
3// Purpose: Defines the window containing all controls.
4// Author: Utensil Candel (UtensilCandel@@gmail.com)
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
0d5eda9c 8
f978831f
BP
9#ifndef _GUIFRAME_H_
10#define _GUIFRAME_H_
0d5eda9c 11
0d5eda9c 12#include "wx/animate.h"
f978831f
BP
13#include "wx/bmpcbox.h"
14#include "wx/calctrl.h"
15#include "wx/clrpicker.h"
0d5eda9c 16#include "wx/collpane.h"
f978831f
BP
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"
29
0d5eda9c 30#include "customcombo.h"
0d5eda9c 31
0d5eda9c 32
51d48751 33class GUIFrame : public wxFrame
0d5eda9c 34{
f978831f
BP
35public:
36
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 );
38 ~GUIFrame();
39
40protected:
41
42 enum
43 {
44 idMenuCapFullScreen = 1000,
ecba92ec 45 idMenuCapAll
f978831f
BP
46 };
47
48 wxMenuBar* mbar;
49 wxMenu* fileMenu;
50 wxMenu* captureMenu;
f978831f 51 wxMenu* helpMenu;
51d48751
FM
52
53 wxStatusBar* statusBar;
54
f978831f 55 wxNotebook* m_notebook1;
51d48751 56
f978831f
BP
57 wxPanel* m_panel1;
58 wxButton* m_button1;
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;
66 wxGauge* m_gauge1;
67 wxSlider* m_slider1;
68 wxToggleButton* m_toggleBtn1;
69 wxToggleButton* m_toggleBtn2;
70 wxHyperlinkCtrl* m_hyperlink1;
71 wxSpinCtrl* m_spinCtrl1;
72 wxSpinButton* m_spinBtn1;
73 wxScrollBar* m_scrollBar1;
51d48751 74
f978831f
BP
75 wxPanel* m_panel2;
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;
51d48751 85
f978831f
BP
86 wxPanel* m_panel3;
87 wxTextCtrl* m_textCtrl1;
f978831f
BP
88 wxTextCtrl* m_textCtrl2;
89 wxRichTextCtrl* m_richText1;
51d48751 90
f978831f
BP
91 wxPanel* m_panel4;
92 wxColourPickerCtrl* m_colourPicker1;
93 wxFontPickerCtrl* m_fontPicker1;
94 wxFilePickerCtrl* m_filePicker1;
f978831f
BP
95 wxCalendarCtrl* m_calendar1;
96 wxDatePickerCtrl* m_datePicker1;
97 wxGenericDirCtrl* m_genericDirCtrl1;
98 wxDirPickerCtrl* m_dirPicker1;
51d48751 99
f978831f
BP
100 wxPanel* m_panel5;
101 wxChoice* m_choice1;
102 wxComboBox* m_comboBox1;
f978831f
BP
103 wxBitmapComboBox * m_bmpComboBox1;
104 PenStyleComboBox * m_ownerDrawnComboBox1;
f978831f
BP
105 wxComboCtrl * m_comboCtrl1;
106 wxComboCtrl * m_comboCtrl2;
f978831f
BP
107
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(); }
f978831f
BP
113 virtual void OnCaptureAllControls( wxCommandEvent& event ){ event.Skip(); }
114 virtual void OnAbout( wxCommandEvent& event ){ event.Skip(); }
51d48751
FM
115
116private:
117 void AddMenuBar();
118 void AddPanel_1();
119 void AddPanel_2();
120 void AddPanel_3();
121 void AddPanel_4();
122 void AddPanel_5();
0d5eda9c
FM
123};
124
f978831f 125#endif //_GUIFRAME_H_