File: PGEditor.xsp

package info (click to toggle)
libwx-perl 1%3A0.9909-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,912 kB
  • sloc: cpp: 9,728; perl: 8,182; ansic: 626; makefile: 41
file content (421 lines) | stat: -rw-r--r-- 14,866 bytes parent folder | download | duplicates (6)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
#############################################################################
## Name:        ext/propgrid/XS/PGEditor.xsp
## Purpose:     XS++ for Wx::PGEditor
## Author:      Mark Dootson
## Modified by:
## Created:     04/03/2012
## RCS-ID:      $Id: $
## Copyright:   (c) 2012 Mattia Barbon
## Licence:     This program is free software; you can redistribute it and/or
##              modify it under the same terms as Perl itself
#############################################################################

%module{Wx};

#if WXPERL_W_VERSION_GE( 2, 9, 3 ) && wxUSE_PROPGRID

%loadplugin{build::Wx::XSP::Overload};

%name{Wx::PGWindowList} class wxPGWindowList
{


%{
static void
wxPGWindowList::CLONE()
  CODE:
    wxPli_thread_sv_clone( aTHX_ CLASS, (wxPliCloneSV)wxPli_detach_object );
%}

public:
    %name{newDefault} wxPGWindowList() %Overload;
    %name{newOneWindow} wxPGWindowList( wxWindow* a ) %Overload;
    %name{newTwoWindows} wxPGWindowList(  wxWindow* a, wxWindow* b ) %Overload;

    ~wxPGWindowList()
        %code%{  wxPli_thread_sv_unregister( aTHX_ "Wx::PGWindowList", THIS, ST(0) );
                 delete THIS;
               %};

    void SetSecondary( wxWindow* secondary );
};


%name{Wx::PGMultiButton} class wxPGMultiButton : public %name{Wx::Window} wxWindow
{
public:
    
    wxPGMultiButton( wxPropertyGrid* pg, const wxSize& sz )
        %postcall{% wxPli_create_evthandler( aTHX_ RETVAL, CLASS ); %};

    %name{AddString} void Add( const wxString& label, int id = -2 ) %Overload;

    %name{AddBitmap} void Add( const wxBitmap& bitmap, int id = -2 ) %Overload;

    void Finalize( wxPropertyGrid* propGrid, const wxPoint& pos );

    wxWindow* GetButton( unsigned int i );

    int GetButtonId( unsigned int i ) const;

    unsigned int GetCount();

    wxSize GetPrimarySize() const;
};

%name{Wx::PGEditor} class wxPGEditor : public %name{Wx::Object} wxObject
{

%{
static void
wxPGEditor::CLONE()
  CODE:
    wxPli_thread_sv_clone( aTHX_ CLASS, (wxPliCloneSV)wxPli_detach_object );
%}   

public:

    ~wxPGEditor()
        %code%{  wxPli_thread_sv_unregister( aTHX_ wxPli_get_class( aTHX_ ST(0) ), THIS, ST(0) );
                 if( wxPli_object_is_deleteable( aTHX_ ST(0) ) )
                    delete THIS;
               %};

    virtual wxString GetName() const; /* %Virtual; */

    virtual wxPGWindowList CreateControls( wxPropertyGrid* propgrid,
                                           wxPGProperty* property,
                                           const wxPoint& pos,
                                           const wxSize& size ) const; /* = 0;  %Virtual{pure}; */

    /** Loads value from property to the control. */
    virtual void UpdateControl( wxPGProperty* property, wxWindow* ctrl ) const; /*  = 0 %Virtual{pure}; */
    
    virtual void DrawValue( wxDC& dc, const wxRect& rect,
                            wxPGProperty* property, const wxString& text ) const; /* %Virtual; */

    virtual bool OnEvent( wxPropertyGrid* propgrid, wxPGProperty* property, wxWindow* wnd_primary, wxEvent& event ) const; /*  = 0 %Virtual{pure}; */

    virtual bool GetValueFromControl( wxVariant& variant, wxPGProperty* property,
                                      wxWindow* ctrl ) const; /* %Virtual; */

    virtual void SetValueToUnspecified( wxPGProperty* property,
                                        wxWindow* ctrl ) const; /*  = 0 %Virtual{pure}; */

    virtual void SetControlAppearance( wxPropertyGrid* pg,
                                       wxPGProperty* property,
                                       wxWindow* ctrl,
                                       const wxPGCell& appearance,
                                       const wxPGCell& oldAppearance,
                                       bool unspecified ) const; /* %Virtual; */

    /** Sets control's value specifically from string. */
    virtual void SetControlStringValue( wxPGProperty* property,
                                        wxWindow* ctrl, const wxString& txt ) const; /* %Virtual; */

    /** Sets control's value specifically from int (applies to choice etc.). */
    virtual void SetControlIntValue( wxPGProperty* property,
                                     wxWindow* ctrl, int value ) const; /* %Virtual; */

    virtual int InsertItem( wxWindow* ctrl, const wxString& label, int index ) const; /* %Virtual; */

    virtual void DeleteItem( wxWindow* ctrl, int index ) const; /* %Virtual; */

    virtual void OnFocus( wxPGProperty* property, wxWindow* wnd ) const; /* %Virtual; */

    virtual bool CanContainCustomImage() const; /* %Virtual; */
};

%name{Wx::PGEditorDialogAdapter} class wxPGEditorDialogAdapter : public %name{Wx::Object} wxObject

{

%{
static void
wxPGEditorDialogAdapter::CLONE()
  CODE:
    wxPli_thread_sv_clone( aTHX_ CLASS, (wxPliCloneSV)wxPli_detach_object );
%}      

public:
    
    ~wxPGEditorDialogAdapter()
        %code%{  wxPli_thread_sv_unregister( aTHX_ "Wx::PGEditorDialogAdapter", THIS, ST(0) );
                 delete THIS;
               %};

    bool ShowDialog( wxPropertyGrid* propGrid, wxPGProperty* property );

    virtual bool DoShowDialog( wxPropertyGrid* propGrid, wxPGProperty* property ); /*  = 0 %Virtual{pure}; */

    void SetValue( wxVariant value );

    wxVariant& GetValue();

};

%name{Wx::PGTextCtrlEditor} class wxPGTextCtrlEditor : public %name{Wx::PGEditor} wxPGEditor

{

public:
    wxPGTextCtrlEditor();

    virtual wxPGWindowList CreateControls(wxPropertyGrid* propgrid,
                                          wxPGProperty* property,
                                          const wxPoint& pos,
                                          const wxSize& size) const; /* %Virtual; */
    
    virtual void UpdateControl( wxPGProperty* property,
                                wxWindow* ctrl ); /* %Virtual; */
    
    virtual bool OnEvent( wxPropertyGrid* propgrid,
                          wxPGProperty* property,
                          wxWindow* primaryCtrl,
                          wxEvent& event ) const; /* %Virtual; */
    
    virtual bool GetValueFromControl( wxVariant& variant,
                                      wxPGProperty* property,
                                      wxWindow* ctrl ); /* %Virtual; */

    virtual wxString GetName(); /* %Virtual; */

    //virtual wxPGCellRenderer* GetCellRenderer() const;
    virtual void SetControlStringValue( wxPGProperty* property,
                                        wxWindow* ctrl,
                                        const wxString& txt ); /* %Virtual; */
    
    virtual void OnFocus( wxPGProperty* property, wxWindow* wnd ); /* %Virtual; */

    // Provided so that, for example, ComboBox editor can use the same code
    // (multiple inheritance would get way too messy).
    
    static bool OnTextCtrlEvent( wxPropertyGrid* propgrid,
                                 wxPGProperty* property,
                                 wxWindow* ctrl,
                                 wxEvent& event );

    static bool GetTextCtrlValueFromControl( wxVariant& variant,
                                             wxPGProperty* property,
                                             wxWindow* ctrl );

};

%name{Wx::PGChoiceEditor} class wxPGChoiceEditor : public %name{Wx::PGEditor} wxPGEditor

{

public:
    wxPGChoiceEditor();

    virtual wxPGWindowList CreateControls(wxPropertyGrid* propgrid,
                                          wxPGProperty* property,
                                          const wxPoint& pos,
                                          const wxSize& size) const; /* %Virtual; */
    
    virtual void UpdateControl( wxPGProperty* property,
                                wxWindow* ctrl ) const; /* %Virtual; */
    
    virtual bool OnEvent( wxPropertyGrid* propgrid,
                          wxPGProperty* property,
                          wxWindow* primaryCtrl,
                          wxEvent& event ) const; /* %Virtual; */
    
    virtual bool GetValueFromControl( wxVariant& variant,
                                      wxPGProperty* property,
                                      wxWindow* ctrl ) const; /* %Virtual; */
    
    virtual void SetValueToUnspecified( wxPGProperty* property,
                                        wxWindow* ctrl ) const; /* %Virtual; */
    
    virtual wxString GetName() const; /* %Virtual; */

    virtual void SetControlIntValue( wxPGProperty* property,
                                     wxWindow* ctrl,
                                     int value ) const; /* %Virtual; */
    
    virtual void SetControlStringValue( wxPGProperty* property,
                                        wxWindow* ctrl,
                                        const wxString& txt ) const; /* %Virtual; */

    virtual int InsertItem( wxWindow* ctrl,
                            const wxString& label,
                            int index ) const; /* %Virtual; */
    
    virtual void DeleteItem( wxWindow* ctrl, int index ) const; /* %Virtual; */
    
    virtual bool CanContainCustomImage() const; /* %Virtual; */

    // CreateControls calls this with CB_READONLY in extraStyle
    wxWindow* CreateControlsBase( wxPropertyGrid* propgrid,
                                  wxPGProperty* property,
                                  const wxPoint& pos,
                                  const wxSize& sz,
                                  long extraStyle ) const;

};

%name{Wx::PGComboBoxEditor} class wxPGComboBoxEditor : public %name{Wx::PGChoiceEditor} wxPGChoiceEditor

{

public:
    wxPGComboBoxEditor();

    virtual wxPGWindowList CreateControls(wxPropertyGrid* propgrid,
                                          wxPGProperty* property,
                                          const wxPoint& pos,
                                          const wxSize& size) const; /* %Virtual; */

    virtual wxString GetName() const; /* %Virtual; */

    virtual void UpdateControl( wxPGProperty* property, wxWindow* ctrl ) const; /* %Virtual; */

    virtual bool OnEvent( wxPropertyGrid* propgrid, wxPGProperty* property,
        wxWindow* ctrl, wxEvent& event ) const; /* %Virtual; */

    virtual bool GetValueFromControl( wxVariant& variant,
                                      wxPGProperty* property,
                                      wxWindow* ctrl ) const; /* %Virtual; */

    virtual void OnFocus( wxPGProperty* property, wxWindow* wnd ) const; /* %Virtual; */

};

%name{Wx::PGChoiceAndButtonEditor} class wxPGChoiceAndButtonEditor : public %name{Wx::PGChoiceEditor} wxPGChoiceEditor

{

public:
    wxPGChoiceAndButtonEditor();
        
    virtual wxString GetName() const; /* %Virtual; */

    virtual wxPGWindowList CreateControls(wxPropertyGrid* propgrid,
                                          wxPGProperty* property,
                                          const wxPoint& pos,
                                          const wxSize& size) const; /* %Virtual; */

};

%name{Wx::PGTextCtrlAndButtonEditor} class wxPGTextCtrlAndButtonEditor : public %name{Wx::PGTextCtrlEditor} wxPGTextCtrlEditor

{

public:
    wxPGTextCtrlAndButtonEditor();
    
    virtual wxString GetName() const; /* %Virtual; */

    virtual wxPGWindowList CreateControls(wxPropertyGrid* propgrid,
                                          wxPGProperty* property,
                                          const wxPoint& pos,
                                          const wxSize& size) const; /* %Virtual; */

};


#if wxPG_INCLUDE_CHECKBOX

//
// Use custom check box code instead of native control
// for cleaner (ie. more integrated) look.
//

%name{Wx::PGCheckBoxEditor} class wxPGCheckBoxEditor : public %name{Wx::PGEditor} wxPGEditor

{

public:
    wxPGCheckBoxEditor();

    virtual wxString GetName() const; /* %Virtual; */
    
    virtual wxPGWindowList CreateControls(wxPropertyGrid* propgrid,
                                          wxPGProperty* property,
                                          const wxPoint& pos,
                                          const wxSize& size) const; /* %Virtual; */
    
    virtual void UpdateControl( wxPGProperty* property,
                                wxWindow* ctrl ) const; /* %Virtual; */
    
    virtual bool OnEvent( wxPropertyGrid* propgrid,
                          wxPGProperty* property,
                          wxWindow* primaryCtrl,
                          wxEvent& event ) const; /* %Virtual; */
    
    virtual bool GetValueFromControl( wxVariant& variant,
                                      wxPGProperty* property,
                                      wxWindow* ctrl ) const; /* %Virtual; */
    
    virtual void SetValueToUnspecified( wxPGProperty* property,
                                        wxWindow* ctrl ) const; /* %Virtual; */

    virtual void DrawValue( wxDC& dc,
                            const wxRect& rect,
                            wxPGProperty* property,
                            const wxString& text ) const; /* %Virtual; */
    
    //virtual wxPGCellRenderer* GetCellRenderer() const;

    virtual void SetControlIntValue( wxPGProperty* property,
                                     wxWindow* ctrl,
                                     int value ) const; /* %Virtual; */
};

#endif

#if wxUSE_SPINBTN

#include "wx/spinbutt.h"
#include "wx/propgrid/editors.h"


%name{Wx::PGSpinCtrlEditor} class wxPGSpinCtrlEditor : public %name{Wx::PGTextCtrlEditor} wxPGTextCtrlEditor
{

public:
    
    wxPGSpinCtrlEditor();
    
    wxString GetName() const;
    
    virtual wxPGWindowList CreateControls(wxPropertyGrid* propgrid,
                                          wxPGProperty* property,
                                          const wxPoint& pos,
                                          const wxSize& size) const;
    
    virtual bool OnEvent( wxPropertyGrid* propgrid, wxPGProperty* property,
        wxWindow* wnd, wxEvent& event ) const;

};

#endif // wxUSE_SPINBTN

#if wxUSE_DATEPICKCTRL

%name{Wx::PGDatePickerCtrlEditor} class wxPGDatePickerCtrlEditor : public %name{Wx::PGEditor} wxPGEditor
{

public:
    
    wxString GetName() const;
    virtual wxPGWindowList CreateControls(wxPropertyGrid* propgrid,
                                          wxPGProperty* property,
                                          const wxPoint& pos,
                                          const wxSize& size) const;
    
    virtual void UpdateControl( wxPGProperty* property, wxWindow* wnd ) const;
    virtual bool OnEvent( wxPropertyGrid* propgrid, wxPGProperty* property,
        wxWindow* wnd, wxEvent& event ) const;
    
    virtual bool GetValueFromControl( wxVariant& variant, wxPGProperty* property, wxWindow* wnd ) const;
    
    virtual void SetValueToUnspecified( wxPGProperty* property, wxWindow* wnd ) const;
};

#endif // wxUSE_DATEPICKCTRL

#endif