No changes, just reorganize the menu slightly in the exec sample.
[wxWidgets.git] / samples / propgrid / propgrid.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/propgrid/propgrid.h
3 // Purpose: wxPropertyGrid sample
4 // Author: Jaakko Salli
5 // Modified by:
6 // Created: 2004-09-25
7 // RCS-ID: $Id$
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_SAMPLES_PROPGRID_PROPGRID_H_
13 #define _WX_SAMPLES_PROPGRID_PROPGRID_H_
14
15 // -----------------------------------------------------------------------
16
17 class wxAdvImageFileProperty : public wxFileProperty
18 {
19 WX_PG_DECLARE_PROPERTY_CLASS(wxAdvImageFileProperty)
20 public:
21
22 wxAdvImageFileProperty( const wxString& label = wxPG_LABEL,
23 const wxString& name = wxPG_LABEL,
24 const wxString& value = wxEmptyString );
25 virtual ~wxAdvImageFileProperty ();
26
27 virtual void OnSetValue(); // Override to allow image loading.
28
29 virtual bool IntToValue( wxVariant& variant, int number, int argFlags = 0 ) const;
30 virtual bool OnEvent( wxPropertyGrid* propgrid, wxWindow* primary, wxEvent& event );
31 virtual wxSize OnMeasureImage( int item ) const;
32 virtual void OnCustomPaint( wxDC& dc,
33 const wxRect& rect, wxPGPaintData& paintdata );
34
35 void LoadThumbnails( size_t n );
36
37 protected:
38 wxImage* m_pImage; // Temporary thumbnail data.
39
40 static wxPGChoices ms_choices;
41
42 int m_index; // Index required for choice behaviour.
43 };
44
45 // -----------------------------------------------------------------------
46
47 class wxVector3f
48 {
49 public:
50 wxVector3f()
51 {
52 x = y = z = 0.0;
53 }
54 wxVector3f( double x, double y, double z )
55 {
56 x = x; y = y; z = z;
57 }
58
59 double x, y, z;
60 };
61
62 inline bool operator == (const wxVector3f& a, const wxVector3f& b)
63 {
64 return (a.x == b.x && a.y == b.y && a.z == b.z);
65 }
66
67 WX_PG_DECLARE_VARIANT_DATA(wxVector3f)
68
69 class wxVectorProperty : public wxPGProperty
70 {
71 WX_PG_DECLARE_PROPERTY_CLASS(wxVectorProperty)
72 public:
73
74 wxVectorProperty( const wxString& label = wxPG_LABEL,
75 const wxString& name = wxPG_LABEL,
76 const wxVector3f& value = wxVector3f() );
77 virtual ~wxVectorProperty();
78
79 virtual wxVariant ChildChanged( wxVariant& thisValue,
80 int childIndex,
81 wxVariant& childValue ) const;
82 virtual void RefreshChildren();
83
84 protected:
85 };
86
87 // -----------------------------------------------------------------------
88
89 class wxTriangle
90 {
91 public:
92 wxVector3f a, b, c;
93 };
94
95 inline bool operator == (const wxTriangle& a, const wxTriangle& b)
96 {
97 return (a.a == b.a && a.b == b.b && a.c == b.c);
98 }
99
100 WX_PG_DECLARE_VARIANT_DATA(wxTriangle)
101
102 class wxTriangleProperty : public wxPGProperty
103 {
104 WX_PG_DECLARE_PROPERTY_CLASS(wxTriangleProperty)
105 public:
106
107 wxTriangleProperty( const wxString& label = wxPG_LABEL,
108 const wxString& name = wxPG_LABEL,
109 const wxTriangle& value = wxTriangle() );
110 virtual ~wxTriangleProperty();
111
112 virtual wxVariant ChildChanged( wxVariant& thisValue,
113 int childIndex,
114 wxVariant& childValue ) const;
115 virtual void RefreshChildren();
116
117 protected:
118 };
119
120 // -----------------------------------------------------------------------
121
122 enum
123 {
124 ID_COLOURSCHEME4 = 100
125 };
126
127 // -----------------------------------------------------------------------
128
129 class FormMain : public wxFrame
130 {
131 public:
132 FormMain(const wxString& title, const wxPoint& pos, const wxSize& size );
133 ~FormMain();
134
135 wxPropertyGridManager* m_pPropGridManager;
136 wxPropertyGrid* m_propGrid;
137
138 wxTextCtrl* m_tcPropLabel;
139 wxWindow* m_panel;
140 wxBoxSizer* m_topSizer;
141
142 #if wxUSE_LOGWINDOW
143 wxLogWindow* m_logWindow;
144 #endif
145
146 wxPGEditor* m_pSampleMultiButtonEditor;
147 wxPGChoices m_combinedFlags;
148
149 wxMenuItem* m_itemCatColours;
150 wxMenuItem* m_itemFreeze;
151 wxMenuItem* m_itemEnable;
152 wxMenuItem* m_itemVetoDragging;
153
154 wxVariant m_storedValues;
155
156 wxString m_savedState;
157
158
159 void CreateGrid( int style, int extraStyle );
160 void FinalizeFramePosition();
161
162 // These are used in CreateGrid(), and in tests to compose
163 // grids for testing purposes.
164 void InitPanel();
165 void PopulateGrid();
166 void FinalizePanel( bool wasCreated = true );
167
168 void PopulateWithStandardItems();
169 void PopulateWithExamples();
170 void PopulateWithLibraryConfig();
171
172 void OnCloseClick( wxCommandEvent& event );
173 void OnLabelTextChange( wxCommandEvent& event );
174
175 void OnColourScheme( wxCommandEvent& event );
176
177 void OnInsertPropClick( wxCommandEvent& event );
178 void OnAppendPropClick( wxCommandEvent& event );
179 void OnClearClick( wxCommandEvent& event );
180 void OnAppendCatClick( wxCommandEvent& event );
181 void OnInsertCatClick( wxCommandEvent& event );
182 void OnDelPropClick( wxCommandEvent& event );
183 void OnDelPropRClick( wxCommandEvent& event );
184
185 void OnContextMenu( wxContextMenuEvent& event );
186
187 void OnEnableDisable( wxCommandEvent& event );
188 void OnSetReadOnly( wxCommandEvent& event );
189 void OnHide( wxCommandEvent& event );
190 void OnSetBackgroundColour( wxCommandEvent& event );
191 void OnClearModifyStatusClick( wxCommandEvent& event );
192 void OnFreezeClick( wxCommandEvent& event );
193 void OnEnableLabelEditing( wxCommandEvent& event );
194 void OnShowHeader( wxCommandEvent& event );
195 void OnDumpList( wxCommandEvent& event );
196 void OnCatColours( wxCommandEvent& event );
197 void OnSetColumns( wxCommandEvent& event );
198 void OnMisc( wxCommandEvent& event );
199 void OnPopulateClick( wxCommandEvent& event );
200 void OnSetSpinCtrlEditorClick( wxCommandEvent& event );
201 void OnTestReplaceClick( wxCommandEvent& event );
202 void OnTestXRC( wxCommandEvent& event );
203 void OnEnableCommonValues( wxCommandEvent& event );
204 void OnSelectStyle( wxCommandEvent& event );
205
206 void OnFitColumnsClick( wxCommandEvent& event );
207
208 void OnChangeFlagsPropItemsClick( wxCommandEvent& event );
209
210 void OnSaveToFileClick( wxCommandEvent& event );
211 void OnLoadFromFileClick( wxCommandEvent& event );
212
213 void OnSetPropertyValue( wxCommandEvent& event );
214 void OnInsertChoice( wxCommandEvent& event );
215 void OnDeleteChoice( wxCommandEvent& event );
216 void OnInsertPage( wxCommandEvent& event );
217 void OnRemovePage( wxCommandEvent& event );
218
219 void OnSaveState( wxCommandEvent& event );
220 void OnRestoreState( wxCommandEvent& event );
221
222 void OnRunMinimalClick( wxCommandEvent& event );
223
224 void OnIterate1Click( wxCommandEvent& event );
225 void OnIterate2Click( wxCommandEvent& event );
226 void OnIterate3Click( wxCommandEvent& event );
227 void OnIterate4Click( wxCommandEvent& event );
228
229 void OnExtendedKeyNav( wxCommandEvent& event );
230
231 void OnPropertyGridChange( wxPropertyGridEvent& event );
232 void OnPropertyGridChanging( wxPropertyGridEvent& event );
233 void OnPropertyGridSelect( wxPropertyGridEvent& event );
234 void OnPropertyGridHighlight( wxPropertyGridEvent& event );
235 void OnPropertyGridItemRightClick( wxPropertyGridEvent& event );
236 void OnPropertyGridItemDoubleClick( wxPropertyGridEvent& event );
237 void OnPropertyGridPageChange( wxPropertyGridEvent& event );
238 void OnPropertyGridButtonClick( wxCommandEvent& event );
239 void OnPropertyGridTextUpdate( wxCommandEvent& event );
240 void OnPropertyGridKeyEvent( wxKeyEvent& event );
241 void OnPropertyGridItemCollapse( wxPropertyGridEvent& event );
242 void OnPropertyGridItemExpand( wxPropertyGridEvent& event );
243 void OnPropertyGridLabelEditBegin( wxPropertyGridEvent& event );
244 void OnPropertyGridLabelEditEnding( wxPropertyGridEvent& event );
245 void OnPropertyGridColBeginDrag( wxPropertyGridEvent& event );
246 void OnPropertyGridColDragging( wxPropertyGridEvent& event );
247 void OnPropertyGridColEndDrag( wxPropertyGridEvent& event );
248
249 void OnAbout( wxCommandEvent& event );
250
251 void OnMove( wxMoveEvent& event );
252 void OnResize( wxSizeEvent& event );
253 void OnPaint( wxPaintEvent& event );
254 void OnCloseEvent( wxCloseEvent& event );
255
256 void OnIdle( wxIdleEvent& event );
257
258 void AddTestProperties( wxPropertyGridPage* pg );
259
260 bool RunTests( bool fullTest, bool interactive = false );
261
262 private:
263 DECLARE_EVENT_TABLE()
264 };
265
266 // -----------------------------------------------------------------------
267
268 class cxApplication : public wxApp
269 {
270 public:
271
272 virtual bool OnInit();
273
274 private:
275 FormMain *Form1;
276 };
277
278 DECLARE_APP(cxApplication)
279
280 // -----------------------------------------------------------------------
281
282 #endif // _WX_SAMPLES_PROPGRID_PROPGRID_H_