-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.h
More file actions
856 lines (713 loc) · 30.2 KB
/
data.h
File metadata and controls
856 lines (713 loc) · 30.2 KB
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
/*
* @author Mário Soares
* @contributors Jefferson González
*
* @license
* This file is part of wxPHP check the LICENSE file for information.
*
* @note
* This file was auto-generated by the wxPHP source maker
*/
#ifndef WXPHP_DATA_H_GUARD
#define WXPHP_DATA_H_GUARD
#include "references.h"
ZEND_BEGIN_ARG_INFO_EX(wxphp_data_get_args, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
extern int le_wxAcceleratorEntry;
extern zend_class_entry *php_wxAcceleratorEntry_entry;
void php_wxAcceleratorEntry_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxAcceleratorEntry_php: public wxAcceleratorEntry{
public:
wxAcceleratorEntry_php(const wxAcceleratorEntry& entry):wxAcceleratorEntry(entry){}
wxAcceleratorEntry_php(int flags=0, int keyCode=0, int cmd=0, wxMenuItem* item=NULL):wxAcceleratorEntry(flags, keyCode, cmd, item){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxAcceleratorEntry_functions[] = {
PHP_ME(php_wxAcceleratorEntry, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxAcceleratorEntry, ToString, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxAcceleratorEntry, Set, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxAcceleratorEntry, IsOk, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxAcceleratorEntry, GetMenuItem, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxAcceleratorEntry, GetKeyCode, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxAcceleratorEntry, GetFlags, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxAcceleratorEntry, GetCommand, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxAcceleratorEntry, FromString, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxAcceleratorTable;
extern zend_class_entry *php_wxAcceleratorTable_entry;
void php_wxAcceleratorTable_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxAcceleratorTable_php: public wxAcceleratorTable{
public:
wxAcceleratorTable_php():wxAcceleratorTable(){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxAcceleratorTable_functions[] = {
PHP_ME(php_wxObject, UnShare, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, UnRef, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsSameAs, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, Ref, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, GetClassInfo, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsKindOf, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxAcceleratorTable, IsOk, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxAcceleratorTable, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
#endif
extern int le_wxCalendarDateAttr;
extern zend_class_entry *php_wxCalendarDateAttr_entry;
void php_wxCalendarDateAttr_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxCalendarDateAttr_php: public wxCalendarDateAttr{
public:
wxCalendarDateAttr_php(wxCalendarDateBorder border, const wxColour& colBorder=wxNullColour):wxCalendarDateAttr(border, colBorder){}
wxCalendarDateAttr_php(const wxColour& colText=wxNullColour, const wxColour& colBack=wxNullColour, const wxColour& colBorder=wxNullColour, const wxFont& font=wxNullFont, wxCalendarDateBorder border=wxCAL_BORDER_NONE):wxCalendarDateAttr(colText, colBack, colBorder, font, border){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxCalendarDateAttr_functions[] = {
PHP_ME(php_wxCalendarDateAttr, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxCalendarDateAttr, SetTextColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, SetHoliday, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, SetFont, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, SetBorderColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, SetBorder, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, SetBackgroundColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, IsHoliday, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, HasTextColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, HasFont, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, HasBorderColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, HasBorder, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, HasBackgroundColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, GetTextColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, GetMark, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, GetFont, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, GetBorderColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, GetBorder, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, GetBackgroundColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxCalendarDateAttr, SetMark, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxPageSetupDialogData;
extern zend_class_entry *php_wxPageSetupDialogData_entry;
void php_wxPageSetupDialogData_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxPageSetupDialogData_php: public wxPageSetupDialogData{
public:
wxPageSetupDialogData_php():wxPageSetupDialogData(){}
wxPageSetupDialogData_php(const wxPrintData& printData):wxPageSetupDialogData(printData){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxPageSetupDialogData_functions[] = {
PHP_ME(php_wxObject, UnShare, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, UnRef, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsSameAs, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, Ref, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, GetClassInfo, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsKindOf, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, EnableHelp, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, EnableMargins, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, EnableOrientation, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, EnablePaper, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, EnablePrinter, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetDefaultInfo, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetDefaultMinMargins, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetEnableHelp, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetEnableMargins, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetEnableOrientation, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetEnablePaper, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetEnablePrinter, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetMarginBottomRight, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetMarginTopLeft, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetMinMarginBottomRight, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetMinMarginTopLeft, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetPaperId, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetPaperSize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, GetPrintData, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, IsOk, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, SetDefaultInfo, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, SetDefaultMinMargins, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, SetMarginBottomRight, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, SetMarginTopLeft, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, SetMinMarginBottomRight, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, SetMinMarginTopLeft, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, SetPaperId, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, SetPaperSize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, SetPrintData, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPageSetupDialogData, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
#endif
extern int le_wxPrintData;
extern zend_class_entry *php_wxPrintData_entry;
void php_wxPrintData_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxPrintData_php: public wxPrintData{
public:
wxPrintData_php():wxPrintData(){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxPrintData_functions[] = {
PHP_ME(php_wxObject, UnShare, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, UnRef, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsSameAs, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, Ref, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, GetClassInfo, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsKindOf, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, GetBin, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, GetCollate, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, GetColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, GetDuplex, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, GetFilename, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, GetNoCopies, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, GetOrientation, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, GetPaperId, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, GetPrintMode, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, GetPrinterName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, GetQuality, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, IsOk, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, SetBin, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, SetCollate, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, SetColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, SetDuplex, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, SetFilename, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, SetNoCopies, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, SetOrientation, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, SetPaperId, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, SetPrintMode, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, SetPrinterName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, SetQuality, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPrintData, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
#endif
extern int le_wxRealPoint;
extern zend_class_entry *php_wxRealPoint_entry;
void php_wxRealPoint_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxRealPoint_php: public wxRealPoint{
public:
wxRealPoint_php():wxRealPoint(){}
wxRealPoint_php(double x, double y):wxRealPoint(x, y){}
wxRealPoint_php(const wxPoint& pt):wxRealPoint(pt){}
void InitProperties(){
properties = new void*[2];
properties[0] = &x;
properties[1] = &y;
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxRealPoint_functions[] = {
PHP_ME(php_wxRealPoint, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxRealPoint, __get, wxphp_data_get_args, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxRect;
extern zend_class_entry *php_wxRect_entry;
void php_wxRect_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxRect_php: public wxRect{
public:
wxRect_php():wxRect(){}
wxRect_php(int x, int y, int width, int height):wxRect(x, y, width, height){}
wxRect_php(const wxPoint& topLeft, const wxPoint& bottomRight):wxRect(topLeft, bottomRight){}
wxRect_php(const wxPoint& pos, const wxSize& size):wxRect(pos, size){}
wxRect_php(const wxSize& size):wxRect(size){}
void InitProperties(){
properties = new void*[4];
properties[0] = &height;
properties[1] = &width;
properties[2] = &x;
properties[3] = &y;
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxRect_functions[] = {
PHP_ME(php_wxRect, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxRect, SetX, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, SetY, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, Union, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, SetWidth, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, SetSize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, SetHeight, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, Offset, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, IsEmpty, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, Intersects, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, Intersect, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, Inflate, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetY, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetX, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetWidth, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetTopRight, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetTopLeft, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetTop, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetSize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetRight, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetPosition, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, CenterIn, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, CentreIn, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, Contains, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, Deflate, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetBottom, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetBottomLeft, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetBottomRight, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetHeight, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, GetLeft, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRect, __get, wxphp_data_get_args, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxPoint;
extern zend_class_entry *php_wxPoint_entry;
void php_wxPoint_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxPoint_php: public wxPoint{
public:
wxPoint_php():wxPoint(){}
wxPoint_php(int x, int y):wxPoint(x, y){}
wxPoint_php(const wxRealPoint& pt):wxPoint(pt){}
void InitProperties(){
properties = new void*[2];
properties[0] = &x;
properties[1] = &y;
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxPoint_functions[] = {
PHP_ME(php_wxPoint, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxPoint, IsFullySpecified, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPoint, __get, wxphp_data_get_args, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxSize;
extern zend_class_entry *php_wxSize_entry;
void php_wxSize_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxSize_php: public wxSize{
public:
wxSize_php():wxSize(){}
wxSize_php(int width, int height):wxSize(width, height){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxSize_functions[] = {
PHP_ME(php_wxSize, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxSize, SetWidth, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxSize, SetHeight, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxSize, SetDefaults, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxSize, Set, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxSize, GetHeight, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxSize, GetWidth, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxSize, IsFullySpecified, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxSize, Scale, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxSize, DecTo, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxSize, IncTo, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxListItemAttr;
extern zend_class_entry *php_wxListItemAttr_entry;
void php_wxListItemAttr_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxListItemAttr_php: public wxListItemAttr{
public:
wxListItemAttr_php():wxListItemAttr(){}
wxListItemAttr_php(const wxColour& colText, const wxColour& colBack, const wxFont& font):wxListItemAttr(colText, colBack, font){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxListItemAttr_functions[] = {
PHP_ME(php_wxListItemAttr, GetBackgroundColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItemAttr, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxListItemAttr, SetTextColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItemAttr, SetFont, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItemAttr, SetBackgroundColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItemAttr, HasTextColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItemAttr, HasFont, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItemAttr, HasBackgroundColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItemAttr, GetTextColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItemAttr, GetFont, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxListItem;
extern zend_class_entry *php_wxListItem_entry;
void php_wxListItem_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxListItem_php: public wxListItem{
public:
wxListItem_php():wxListItem(){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxListItem_functions[] = {
PHP_ME(php_wxListItem, Clear, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxListItem, SetWidth, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, SetTextColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, SetText, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, SetStateMask, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, SetState, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, SetMask, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, SetImage, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, SetId, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, SetFont, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, SetData, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, SetColumn, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, SetBackgroundColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, SetAlign, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, GetWidth, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, GetTextColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, GetText, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, GetState, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, GetMask, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, GetImage, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, GetId, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, GetAlign, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, GetBackgroundColour, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, GetColumn, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxListItem, GetFont, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxFileType;
extern zend_class_entry *php_wxFileType_entry;
void php_wxFileType_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxFileType_php: public wxFileType{
public:
wxFileType_php(const wxFileTypeInfo& ftInfo):wxFileType(ftInfo){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxFileType_functions[] = {
PHP_ME(php_wxFileType, GetDescription, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileType, GetExtensions, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileType, GetMimeType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileType, GetMimeTypes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileType, GetOpenCommand, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileType, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
#endif
extern int le_wxPosition;
extern zend_class_entry *php_wxPosition_entry;
void php_wxPosition_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxPosition_php: public wxPosition{
public:
wxPosition_php():wxPosition(){}
wxPosition_php(int row, int col):wxPosition(row, col){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxPosition_functions[] = {
PHP_ME(php_wxPosition, GetCol, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPosition, GetColumn, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPosition, GetRow, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPosition, SetCol, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPosition, SetColumn, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPosition, SetRow, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPosition, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
#endif
extern int le_wxRegion;
extern zend_class_entry *php_wxRegion_entry;
void php_wxRegion_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxRegion_php: public wxRegion{
public:
wxRegion_php():wxRegion(){}
wxRegion_php(wxCoord x, wxCoord y, wxCoord width, wxCoord height):wxRegion(x, y, width, height){}
wxRegion_php(const wxPoint& topLeft, const wxPoint& bottomRight):wxRegion(topLeft, bottomRight){}
wxRegion_php(const wxRect& rect):wxRegion(rect){}
wxRegion_php(const wxRegion& region):wxRegion(region){}
wxRegion_php(size_t n, const wxPoint* points, wxPolygonFillMode fillStyle=wxODDEVEN_RULE):wxRegion(n, points, fillStyle){}
wxRegion_php(const wxBitmap& bmp):wxRegion(bmp){}
wxRegion_php(const wxBitmap& bmp, const wxColour& transColour, int tolerance=0):wxRegion(bmp, transColour, tolerance){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxRegion_functions[] = {
PHP_ME(php_wxObject, UnShare, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, UnRef, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsSameAs, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, Ref, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, GetClassInfo, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsKindOf, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRegion, Clear, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRegion, Contains, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRegion, ConvertToBitmap, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRegion, GetBox, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRegion, Intersect, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRegion, IsEmpty, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRegion, IsEqual, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRegion, Offset, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRegion, Subtract, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRegion, Union, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRegion, Xor, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxRegion, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
#endif
extern int le_wxStatusBarPane;
extern zend_class_entry *php_wxStatusBarPane_entry;
void php_wxStatusBarPane_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxStatusBarPane_php: public wxStatusBarPane{
public:
wxStatusBarPane_php(int style=wxSB_NORMAL, size_t width=0):wxStatusBarPane(style, width){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxStatusBarPane_functions[] = {
PHP_ME(php_wxStatusBarPane, GetText, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStatusBarPane, GetStyle, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStatusBarPane, GetWidth, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStatusBarPane, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
#endif
extern int le_wxTreeItemId;
extern zend_class_entry *php_wxTreeItemId_entry;
void php_wxTreeItemId_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxTreeItemId_php: public wxTreeItemId{
public:
wxTreeItemId_php():wxTreeItemId(){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxTreeItemId_functions[] = {
PHP_ME(php_wxTreeItemId, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxTreeItemId, IsOk, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxVariant;
extern zend_class_entry *php_wxVariant_entry;
void php_wxVariant_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxVariant_php: public wxVariant{
public:
wxVariant_php(const wxString& value, const wxString& name=wxEmptyString):wxVariant(value, name){}
wxVariant_php(long value, const wxString& name=wxEmptyString):wxVariant(value, name){}
wxVariant_php(bool value, const wxString& name=wxEmptyString):wxVariant(value, name){}
wxVariant_php(double value, const wxString& name=wxEmptyString):wxVariant(value, name){}
wxVariant_php(void* value, const wxString& name=wxEmptyString):wxVariant(value, name){}
wxVariant_php(wxObject* value, const wxString& name=wxEmptyString):wxVariant(value, name){}
wxVariant_php(const wxDateTime& val, const wxString& name=wxEmptyString):wxVariant(val, name){}
wxVariant_php(const wxArrayString& val, const wxString& name=wxEmptyString):wxVariant(val, name){}
wxVariant_php(const wxVariant& variant):wxVariant(variant){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxVariant_functions[] = {
PHP_ME(php_wxObject, UnShare, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, UnRef, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsSameAs, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, Ref, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, GetClassInfo, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsKindOf, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, Append, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, Clear, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, ClearList, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, Convert, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, Delete, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, GetArrayString, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, GetBool, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, GetData, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, GetDateTime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, GetDouble, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, GetLong, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, GetName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, GetType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, GetVoidPtr, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, GetWxObjectPtr, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, Insert, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, IsNull, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, IsValueKindOf, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, MakeNull, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, MakeString, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, Member, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, IsType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, GetString, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, GetCount, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, NullList, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, SetData, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariant, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
#endif
extern int le_wxVariantData;
extern zend_class_entry *php_wxVariantData_entry;
void php_wxVariantData_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxVariantData_php: public wxVariantData{
public:
wxVariantData_php():wxVariantData(){}
bool Eq(wxVariantData& data) const;
wxString GetType() const;
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxVariantData_functions[] = {
PHP_ME(php_wxVariantData, Clone, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariantData, DecRef, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariantData, GetValueClassInfo, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariantData, IncRef, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariantData, Read, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariantData, Write, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVariantData, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
#endif
extern int le_wxVersionInfo;
extern zend_class_entry *php_wxVersionInfo_entry;
void php_wxVersionInfo_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxVersionInfo_php: public wxVersionInfo{
public:
wxVersionInfo_php(const wxString& name=wxString(), int major=0, int minor=0, int micro=0, const wxString& description=wxString(), const wxString& copyright=wxString()):wxVersionInfo(name, major, minor, micro, description, copyright){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxVersionInfo_functions[] = {
PHP_ME(php_wxVersionInfo, ToString, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVersionInfo, HasCopyright, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVersionInfo, GetVersionString, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVersionInfo, GetName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVersionInfo, GetMinor, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVersionInfo, GetMicro, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVersionInfo, GetMajor, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVersionInfo, GetDescription, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVersionInfo, GetCopyright, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxVersionInfo, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxVersionInfo, HasDescription, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
#endif //WXPHP_DATA_H_GUARD