-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwxwidgets.cpp
More file actions
7655 lines (6698 loc) · 533 KB
/
wxwidgets.cpp
File metadata and controls
7655 lines (6698 loc) · 533 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
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* @author Mário Soares
* @contributors Jefferson González
*
* @license
* This file is part of wxPHP check the LICENSE file for information.
*
* @description
* Main start point for the wxWidgets php extension
*
* @note
* Some parts of this file are auto-generated by the wxPHP source maker
*/
#include "php_wxwidgets.h"
#include "app.h"
#include "functions.h"
/**
* To enable inclusion of class methods tables entries code
* on the generated headers
*/
#define WXPHP_INCLUDE_METHOD_TABLES
/**
* Space reserved for the zend_class_entry declaration of each class
* as the resource id and its include files
*/
#include "appmanagement.h"
#include "cfg.h"
#include "bookctrl.h"
#include "dnd.h"
#include "cmndlg.h"
#include "containers.h"
#include "ctrl.h"
#include "data.h"
#include "dc.h"
#include "docview.h"
#include "events.h"
#include "file.h"
#include "gdi.h"
#include "grid.h"
#include "html.h"
#include "help.h"
#include "logging.h"
#include "managedwnd.h"
#include "menus.h"
#include "misc.h"
#include "miscwnd.h"
#include "media.h"
#include "pickers.h"
#include "printing.h"
#include "ribbon.h"
#include "richtext.h"
#include "rtti.h"
#include "stc.h"
#include "streams.h"
#include "threading.h"
#include "validator.h"
#include "vfs.h"
#include "aui.h"
#include "winlayout.h"
#include "xml.h"
#include "xrc.h"
#include "dvc.h"
#include "others.h"
zend_class_entry* php_wxScrolledWindow_entry;
int le_wxScrolledWindow;
zend_class_entry* php_wxRibbonButtonBarButtonBase_entry;
int le_wxRibbonButtonBarButtonBase;
zend_class_entry* php_wxRibbonGalleryItem_entry;
int le_wxRibbonGalleryItem;
zend_class_entry* php_wxRibbonToolBarToolBase_entry;
int le_wxRibbonToolBarToolBase;
zend_class_entry* php_wxAboutDialogInfo_entry;
int le_wxAboutDialogInfo;
zend_class_entry* php_wxFrame_entry;
int le_wxFrame;
zend_class_entry* php_wxTopLevelWindow_entry;
int le_wxTopLevelWindow;
zend_class_entry* php_wxNonOwnedWindow_entry;
int le_wxNonOwnedWindow;
zend_class_entry* php_wxWindow_entry;
int le_wxWindow;
zend_class_entry* php_wxSize_entry;
int le_wxSize;
zend_class_entry* php_wxPoint_entry;
int le_wxPoint;
zend_class_entry* php_wxRealPoint_entry;
int le_wxRealPoint;
zend_class_entry* php_wxEvtHandler_entry;
int le_wxEvtHandler;
zend_class_entry* php_wxStatusBar_entry;
int le_wxStatusBar;
zend_class_entry* php_wxButton_entry;
int le_wxButton;
zend_class_entry* php_wxAnyButton_entry;
int le_wxAnyButton;
zend_class_entry* php_wxControl_entry;
int le_wxControl;
zend_class_entry* php_wxValidator_entry;
int le_wxValidator;
zend_class_entry* php_wxBitmapHandler_entry;
int le_wxBitmapHandler;
zend_class_entry* php_wxBitmap_entry;
int le_wxBitmap;
zend_class_entry* php_wxPalette_entry;
int le_wxPalette;
zend_class_entry* php_wxImage_entry;
int le_wxImage;
zend_class_entry* php_wxIcon_entry;
int le_wxIcon;
zend_class_entry* php_wxSplitterWindow_entry;
int le_wxSplitterWindow;
zend_class_entry* php_wxBoxSizer_entry;
int le_wxBoxSizer;
zend_class_entry* php_wxSizer_entry;
int le_wxSizer;
zend_class_entry* php_wxSizerItem_entry;
int le_wxSizerItem;
zend_class_entry* php_wxSizerFlags_entry;
int le_wxSizerFlags;
zend_class_entry* php_wxRect_entry;
int le_wxRect;
zend_class_entry* php_wxTreeCtrl_entry;
int le_wxTreeCtrl;
zend_class_entry* php_wxTreeItemId_entry;
int le_wxTreeItemId;
zend_class_entry* php_wxTreeItemData_entry;
int le_wxTreeItemData;
zend_class_entry* php_wxClientData_entry;
int le_wxClientData;
zend_class_entry* php_wxImageList_entry;
int le_wxImageList;
zend_class_entry* php_wxDC_entry;
int le_wxDC;
zend_class_entry* php_wxColour_entry;
int le_wxColour;
zend_class_entry* php_wxFont_entry;
int le_wxFont;
zend_class_entry* php_wxPanel_entry;
int le_wxPanel;
zend_class_entry* php_wxCheckListBox_entry;
int le_wxCheckListBox;
zend_class_entry* php_wxListBox_entry;
int le_wxListBox;
zend_class_entry* php_wxControlWithItems_entry;
int le_wxControlWithItems;
zend_class_entry* php_wxMenuBar_entry;
int le_wxMenuBar;
zend_class_entry* php_wxMenuEvent_entry;
int le_wxMenuEvent;
zend_class_entry* php_wxMenuItem_entry;
int le_wxMenuItem;
zend_class_entry* php_wxMenu_entry;
int le_wxMenu;
zend_class_entry* php_wxEvent_entry;
int le_wxEvent;
zend_class_entry* php_wxTreeEvent_entry;
int le_wxTreeEvent;
zend_class_entry* php_wxKeyEvent_entry;
int le_wxKeyEvent;
zend_class_entry* php_wxKeyboardState_entry;
int le_wxKeyboardState;
zend_class_entry* php_wxNotifyEvent_entry;
int le_wxNotifyEvent;
zend_class_entry* php_wxCommandEvent_entry;
int le_wxCommandEvent;
zend_class_entry* php_wxCloseEvent_entry;
int le_wxCloseEvent;
zend_class_entry* php_wxActivateEvent_entry;
int le_wxActivateEvent;
zend_class_entry* php_wxAuiManager_entry;
int le_wxAuiManager;
zend_class_entry* php_wxAuiDockArt_entry;
int le_wxAuiDockArt;
zend_class_entry* php_wxAuiPaneInfo_entry;
int le_wxAuiPaneInfo;
zend_class_entry* php_wxAuiManagerEvent_entry;
int le_wxAuiManagerEvent;
zend_class_entry* php_wxAuiNotebook_entry;
int le_wxAuiNotebook;
zend_class_entry* php_wxAuiNotebookEvent_entry;
int le_wxAuiNotebookEvent;
zend_class_entry* php_wxBookCtrlEvent_entry;
int le_wxBookCtrlEvent;
zend_class_entry* php_wxAuiDefaultToolBarArt_entry;
int le_wxAuiDefaultToolBarArt;
zend_class_entry* php_wxBookCtrlBase_entry;
int le_wxBookCtrlBase;
zend_class_entry* php_wxWithImages_entry;
int le_wxWithImages;
zend_class_entry* php_wxAcceleratorEntry_entry;
int le_wxAcceleratorEntry;
zend_class_entry* php_wxAcceleratorTable_entry;
int le_wxAcceleratorTable;
zend_class_entry* php_wxGDIObject_entry;
int le_wxGDIObject;
zend_class_entry* php_wxAnimation_entry;
int le_wxAnimation;
zend_class_entry* php_wxAnimationCtrl_entry;
int le_wxAnimationCtrl;
zend_class_entry* php_wxArtProvider_entry;
int le_wxArtProvider;
zend_class_entry* php_wxIconBundle_entry;
int le_wxIconBundle;
zend_class_entry* php_wxStyledTextCtrl_entry;
int le_wxStyledTextCtrl;
zend_class_entry* php_wxStyledTextEvent_entry;
int le_wxStyledTextEvent;
zend_class_entry* php_wxVersionInfo_entry;
int le_wxVersionInfo;
zend_class_entry* php_wxScrollBar_entry;
int le_wxScrollBar;
zend_class_entry* php_wxStaticText_entry;
int le_wxStaticText;
zend_class_entry* php_wxStatusBarPane_entry;
int le_wxStatusBarPane;
zend_class_entry* php_wxStaticLine_entry;
int le_wxStaticLine;
zend_class_entry* php_wxStaticBoxSizer_entry;
int le_wxStaticBoxSizer;
zend_class_entry* php_wxStaticBox_entry;
int le_wxStaticBox;
zend_class_entry* php_wxStaticBitmap_entry;
int le_wxStaticBitmap;
zend_class_entry* php_wxAuiToolBarItem_entry;
int le_wxAuiToolBarItem;
zend_class_entry* php_wxCheckBox_entry;
int le_wxCheckBox;
zend_class_entry* php_wxWrapSizer_entry;
int le_wxWrapSizer;
zend_class_entry* php_wxBitmapButton_entry;
int le_wxBitmapButton;
zend_class_entry* php_wxTextEntry_entry;
int le_wxTextEntry;
zend_class_entry* php_wxTextCompleter_entry;
int le_wxTextCompleter;
zend_class_entry* php_wxTextCtrl_entry;
int le_wxTextCtrl;
zend_class_entry* php_wxTextAttr_entry;
int le_wxTextAttr;
zend_class_entry* php_wxTextEntryDialog_entry;
int le_wxTextEntryDialog;
zend_class_entry* php_wxComboBox_entry;
int le_wxComboBox;
zend_class_entry* php_wxItemContainer_entry;
int le_wxItemContainer;
zend_class_entry* php_wxItemContainerImmutable_entry;
int le_wxItemContainerImmutable;
zend_class_entry* php_wxBitmapComboBox_entry;
int le_wxBitmapComboBox;
zend_class_entry* php_wxAuiToolBarEvent_entry;
int le_wxAuiToolBarEvent;
zend_class_entry* php_wxAuiToolBar_entry;
int le_wxAuiToolBar;
zend_class_entry* php_wxBannerWindow_entry;
int le_wxBannerWindow;
zend_class_entry* php_wxChoice_entry;
int le_wxChoice;
zend_class_entry* php_wxListEvent_entry;
int le_wxListEvent;
zend_class_entry* php_wxListCtrl_entry;
int le_wxListCtrl;
zend_class_entry* php_wxListItemAttr_entry;
int le_wxListItemAttr;
zend_class_entry* php_wxListItem_entry;
int le_wxListItem;
zend_class_entry* php_wxListbook_entry;
int le_wxListbook;
zend_class_entry* php_wxChildFocusEvent_entry;
int le_wxChildFocusEvent;
zend_class_entry* php_wxChoicebook_entry;
int le_wxChoicebook;
zend_class_entry* php_wxRadioBox_entry;
int le_wxRadioBox;
zend_class_entry* php_wxRadioButton_entry;
int le_wxRadioButton;
zend_class_entry* php_wxRearrangeCtrl_entry;
int le_wxRearrangeCtrl;
zend_class_entry* php_wxRearrangeDialog_entry;
int le_wxRearrangeDialog;
zend_class_entry* php_wxRearrangeList_entry;
int le_wxRearrangeList;
zend_class_entry* php_wxSlider_entry;
int le_wxSlider;
zend_class_entry* php_wxSpinCtrl_entry;
int le_wxSpinCtrl;
zend_class_entry* php_wxSpinButton_entry;
int le_wxSpinButton;
zend_class_entry* php_wxSpinEvent_entry;
int le_wxSpinEvent;
zend_class_entry* php_wxSplitterEvent_entry;
int le_wxSplitterEvent;
zend_class_entry* php_wxSplashScreen_entry;
int le_wxSplashScreen;
zend_class_entry* php_wxSizeEvent_entry;
int le_wxSizeEvent;
zend_class_entry* php_wxGauge_entry;
int le_wxGauge;
zend_class_entry* php_wxHtmlWindow_entry;
int le_wxHtmlWindow;
zend_class_entry* php_wxHtmlContainerCell_entry;
int le_wxHtmlContainerCell;
zend_class_entry* php_wxHtmlCell_entry;
int le_wxHtmlCell;
zend_class_entry* php_wxHtmlCellEvent_entry;
int le_wxHtmlCellEvent;
zend_class_entry* php_wxHtmlColourCell_entry;
int le_wxHtmlColourCell;
zend_class_entry* php_wxHtmlEasyPrinting_entry;
int le_wxHtmlEasyPrinting;
zend_class_entry* php_wxHtmlLinkEvent_entry;
int le_wxHtmlLinkEvent;
zend_class_entry* php_wxHtmlLinkInfo_entry;
int le_wxHtmlLinkInfo;
zend_class_entry* php_wxMouseEvent_entry;
int le_wxMouseEvent;
zend_class_entry* php_wxMouseState_entry;
int le_wxMouseState;
zend_class_entry* php_wxMoveEvent_entry;
int le_wxMoveEvent;
zend_class_entry* php_wxMouseEventsManager_entry;
int le_wxMouseEventsManager;
zend_class_entry* php_wxMessageDialog_entry;
int le_wxMessageDialog;
zend_class_entry* php_wxHtmlListBox_entry;
int le_wxHtmlListBox;
zend_class_entry* php_wxVListBox_entry;
int le_wxVListBox;
zend_class_entry* php_wxHtmlTag_entry;
int le_wxHtmlTag;
zend_class_entry* php_wxHyperlinkCtrl_entry;
int le_wxHyperlinkCtrl;
zend_class_entry* php_wxHyperlinkEvent_entry;
int le_wxHyperlinkEvent;
zend_class_entry* php_wxCursor_entry;
int le_wxCursor;
zend_class_entry* php_wxToggleButton_entry;
int le_wxToggleButton;
zend_class_entry* php_wxTimer_entry;
int le_wxTimer;
zend_class_entry* php_wxTimerEvent_entry;
int le_wxTimerEvent;
zend_class_entry* php_wxThreadEvent_entry;
int le_wxThreadEvent;
zend_class_entry* php_wxSearchCtrl_entry;
int le_wxSearchCtrl;
zend_class_entry* php_wxColourPickerEvent_entry;
int le_wxColourPickerEvent;
zend_class_entry* php_wxColourPickerCtrl_entry;
int le_wxColourPickerCtrl;
zend_class_entry* php_wxFontPickerCtrl_entry;
int le_wxFontPickerCtrl;
zend_class_entry* php_wxFontPickerEvent_entry;
int le_wxFontPickerEvent;
zend_class_entry* php_wxFilePickerCtrl_entry;
int le_wxFilePickerCtrl;
zend_class_entry* php_wxFindReplaceDialog_entry;
int le_wxFindReplaceDialog;
zend_class_entry* php_wxFindReplaceData_entry;
int le_wxFindReplaceData;
zend_class_entry* php_wxDirPickerCtrl_entry;
int le_wxDirPickerCtrl;
zend_class_entry* php_wxDirDialog_entry;
int le_wxDirDialog;
zend_class_entry* php_wxSpinDoubleEvent_entry;
int le_wxSpinDoubleEvent;
zend_class_entry* php_wxSpinCtrlDouble_entry;
int le_wxSpinCtrlDouble;
zend_class_entry* php_wxGenericDirCtrl_entry;
int le_wxGenericDirCtrl;
zend_class_entry* php_wxFileName_entry;
int le_wxFileName;
zend_class_entry* php_wxGridSizeEvent_entry;
int le_wxGridSizeEvent;
zend_class_entry* php_wxGridSizer_entry;
int le_wxGridSizer;
zend_class_entry* php_wxFlexGridSizer_entry;
int le_wxFlexGridSizer;
zend_class_entry* php_wxGridBagSizer_entry;
int le_wxGridBagSizer;
zend_class_entry* php_wxStdDialogButtonSizer_entry;
int le_wxStdDialogButtonSizer;
zend_class_entry* php_wxScrollEvent_entry;
int le_wxScrollEvent;
zend_class_entry* php_wxScrollWinEvent_entry;
int le_wxScrollWinEvent;
zend_class_entry* php_wxNotebook_entry;
int le_wxNotebook;
zend_class_entry* php_wxDialog_entry;
int le_wxDialog;
zend_class_entry* php_wxSysColourChangedEvent_entry;
int le_wxSysColourChangedEvent;
zend_class_entry* php_wxSymbolPickerDialog_entry;
int le_wxSymbolPickerDialog;
zend_class_entry* php_wxGBPosition_entry;
int le_wxGBPosition;
zend_class_entry* php_wxGBSpan_entry;
int le_wxGBSpan;
zend_class_entry* php_wxGBSizerItem_entry;
int le_wxGBSizerItem;
zend_class_entry* php_wxPopupWindow_entry;
int le_wxPopupWindow;
zend_class_entry* php_wxMDIChildFrame_entry;
int le_wxMDIChildFrame;
zend_class_entry* php_wxMDIClientWindow_entry;
int le_wxMDIClientWindow;
zend_class_entry* php_wxMDIParentFrame_entry;
int le_wxMDIParentFrame;
zend_class_entry* php_wxMiniFrame_entry;
int le_wxMiniFrame;
zend_class_entry* php_wxPropertySheetDialog_entry;
int le_wxPropertySheetDialog;
zend_class_entry* php_wxWizard_entry;
int le_wxWizard;
zend_class_entry* php_wxWizardEvent_entry;
int le_wxWizardEvent;
zend_class_entry* php_wxWizardPage_entry;
int le_wxWizardPage;
zend_class_entry* php_wxWizardPageSimple_entry;
int le_wxWizardPageSimple;
zend_class_entry* php_wxWindowModalDialogEvent_entry;
int le_wxWindowModalDialogEvent;
zend_class_entry* php_wxTreeListItem_entry;
int le_wxTreeListItem;
zend_class_entry* php_wxTreebook_entry;
int le_wxTreebook;
zend_class_entry* php_wxTreeListCtrl_entry;
int le_wxTreeListCtrl;
zend_class_entry* php_wxSound_entry;
int le_wxSound;
zend_class_entry* php_wxSimpleHtmlListBox_entry;
int le_wxSimpleHtmlListBox;
zend_class_entry* php_wxFileSystem_entry;
int le_wxFileSystem;
zend_class_entry* php_wxFileSystemHandler_entry;
int le_wxFileSystemHandler;
zend_class_entry* php_wxNativeFontInfo_entry;
int le_wxNativeFontInfo;
zend_class_entry* php_wxDateEvent_entry;
int le_wxDateEvent;
zend_class_entry* php_wxBitmapToggleButton_entry;
int le_wxBitmapToggleButton;
zend_class_entry* php_wxCalendarDateAttr_entry;
int le_wxCalendarDateAttr;
zend_class_entry* php_wxCalendarCtrl_entry;
int le_wxCalendarCtrl;
zend_class_entry* php_wxMask_entry;
int le_wxMask;
zend_class_entry* php_wxToolTip_entry;
int le_wxToolTip;
zend_class_entry* php_wxCaret_entry;
int le_wxCaret;
zend_class_entry* php_wxRegion_entry;
int le_wxRegion;
zend_class_entry* php_wxPoint2DDouble_entry;
int le_wxPoint2DDouble;
zend_class_entry* php_wxPoint2DInt_entry;
int le_wxPoint2DInt;
zend_class_entry* php_wxPopupTransientWindow_entry;
int le_wxPopupTransientWindow;
zend_class_entry* php_wxProcessEvent_entry;
int le_wxProcessEvent;
zend_class_entry* php_wxProgressDialog_entry;
int le_wxProgressDialog;
zend_class_entry* php_wxGraphicsMatrix_entry;
int le_wxGraphicsMatrix;
zend_class_entry* php_wxGraphicsRenderer_entry;
int le_wxGraphicsRenderer;
zend_class_entry* php_wxWindowDC_entry;
int le_wxWindowDC;
zend_class_entry* php_wxWindowCreateEvent_entry;
int le_wxWindowCreateEvent;
zend_class_entry* php_wxWindowDestroyEvent_entry;
int le_wxWindowDestroyEvent;
zend_class_entry* php_wxGraphicsGradientStop_entry;
int le_wxGraphicsGradientStop;
zend_class_entry* php_wxGraphicsGradientStops_entry;
int le_wxGraphicsGradientStops;
zend_class_entry* php_wxEventFilter_entry;
int le_wxEventFilter;
zend_class_entry* php_wxEventBlocker_entry;
int le_wxEventBlocker;
zend_class_entry* php_wxEraseEvent_entry;
int le_wxEraseEvent;
zend_class_entry* php_wxEventLoopActivator_entry;
int le_wxEventLoopActivator;
zend_class_entry* php_wxEventLoopBase_entry;
int le_wxEventLoopBase;
zend_class_entry* php_wxPickerBase_entry;
int le_wxPickerBase;
zend_class_entry* php_wxGridEvent_entry;
int le_wxGridEvent;
zend_class_entry* php_wxUpdateUIEvent_entry;
int le_wxUpdateUIEvent;
zend_class_entry* php_wxHelpEvent_entry;
int le_wxHelpEvent;
zend_class_entry* php_wxLayoutConstraints_entry;
int le_wxLayoutConstraints;
zend_class_entry* php_wxDropTarget_entry;
int le_wxDropTarget;
zend_class_entry* php_wxObject_entry;
int le_wxObject;
zend_class_entry* php_wxFFile_entry;
int le_wxFFile;
zend_class_entry* php_wxFSFile_entry;
int le_wxFSFile;
zend_class_entry* php_wxInputStream_entry;
int le_wxInputStream;
zend_class_entry* php_wxStreamBase_entry;
int le_wxStreamBase;
zend_class_entry* php_wxThread_entry;
int le_wxThread;
zend_class_entry* php_wxTimePickerCtrl_entry;
int le_wxTimePickerCtrl;
zend_class_entry* php_wxOutputStream_entry;
int le_wxOutputStream;
zend_class_entry* php_wxColourDialog_entry;
int le_wxColourDialog;
zend_class_entry* php_wxColourData_entry;
int le_wxColourData;
zend_class_entry* php_wxFileDialog_entry;
int le_wxFileDialog;
zend_class_entry* php_wxFontData_entry;
int le_wxFontData;
zend_class_entry* php_wxFontDialog_entry;
int le_wxFontDialog;
zend_class_entry* php_wxThreadHelper_entry;
int le_wxThreadHelper;
zend_class_entry* php_wxToolBar_entry;
int le_wxToolBar;
zend_class_entry* php_wxAuiTabArt_entry;
int le_wxAuiTabArt;
zend_class_entry* php_wxCalendarEvent_entry;
int le_wxCalendarEvent;
zend_class_entry* php_wxGrid_entry;
int le_wxGrid;
zend_class_entry* php_wxGridCellAttr_entry;
int le_wxGridCellAttr;
zend_class_entry* php_wxGridCellAttrProvider_entry;
int le_wxGridCellAttrProvider;
zend_class_entry* php_wxGridCellBoolEditor_entry;
int le_wxGridCellBoolEditor;
zend_class_entry* php_wxGridCellChoiceEditor_entry;
int le_wxGridCellChoiceEditor;
zend_class_entry* php_wxGridCellDateTimeRenderer_entry;
int le_wxGridCellDateTimeRenderer;
zend_class_entry* php_wxGridCellBoolRenderer_entry;
int le_wxGridCellBoolRenderer;
zend_class_entry* php_wxGridCellAutoWrapStringRenderer_entry;
int le_wxGridCellAutoWrapStringRenderer;
zend_class_entry* php_wxGridCellAutoWrapStringEditor_entry;
int le_wxGridCellAutoWrapStringEditor;
zend_class_entry* php_wxGridCellEditor_entry;
int le_wxGridCellEditor;
zend_class_entry* php_wxGridCellEnumEditor_entry;
int le_wxGridCellEnumEditor;
zend_class_entry* php_wxGridCellEnumRenderer_entry;
int le_wxGridCellEnumRenderer;
zend_class_entry* php_wxGridCellFloatEditor_entry;
int le_wxGridCellFloatEditor;
zend_class_entry* php_wxGridCellFloatRenderer_entry;
int le_wxGridCellFloatRenderer;
zend_class_entry* php_wxGridCellNumberEditor_entry;
int le_wxGridCellNumberEditor;
zend_class_entry* php_wxGridCellNumberRenderer_entry;
int le_wxGridCellNumberRenderer;
zend_class_entry* php_wxGridCellRenderer_entry;
int le_wxGridCellRenderer;
zend_class_entry* php_wxGridCellStringRenderer_entry;
int le_wxGridCellStringRenderer;
zend_class_entry* php_wxGridCellTextEditor_entry;
int le_wxGridCellTextEditor;
zend_class_entry* php_wxGridColumnHeaderRenderer_entry;
int le_wxGridColumnHeaderRenderer;
zend_class_entry* php_wxGridColumnHeaderRendererDefault_entry;
int le_wxGridColumnHeaderRendererDefault;
zend_class_entry* php_wxGridCornerHeaderRenderer_entry;
int le_wxGridCornerHeaderRenderer;
zend_class_entry* php_wxGridCornerHeaderRendererDefault_entry;
int le_wxGridCornerHeaderRendererDefault;
zend_class_entry* php_wxGridEditorCreatedEvent_entry;
int le_wxGridEditorCreatedEvent;
zend_class_entry* php_wxGridHeaderLabelsRenderer_entry;
int le_wxGridHeaderLabelsRenderer;
zend_class_entry* php_wxGridRangeSelectEvent_entry;
int le_wxGridRangeSelectEvent;
zend_class_entry* php_wxGridRowHeaderRenderer_entry;
int le_wxGridRowHeaderRenderer;
zend_class_entry* php_wxGridRowHeaderRendererDefault_entry;
int le_wxGridRowHeaderRendererDefault;
zend_class_entry* php_wxGridSizesInfo_entry;
int le_wxGridSizesInfo;
zend_class_entry* php_wxGridTableBase_entry;
int le_wxGridTableBase;
zend_class_entry* php_wxGridUpdateLocker_entry;
int le_wxGridUpdateLocker;
zend_class_entry* php_wxDatePickerCtrl_entry;
int le_wxDatePickerCtrl;
zend_class_entry* php_wxPasswordEntryDialog_entry;
int le_wxPasswordEntryDialog;
zend_class_entry* php_wxScreenDC_entry;
int le_wxScreenDC;
zend_class_entry* php_wxCollapsiblePane_entry;
int le_wxCollapsiblePane;
zend_class_entry* php_wxCollapsiblePaneEvent_entry;
int le_wxCollapsiblePaneEvent;
zend_class_entry* php_wxComboCtrl_entry;
int le_wxComboCtrl;
zend_class_entry* php_wxComboPopup_entry;
int le_wxComboPopup;
zend_class_entry* php_wxDataViewCtrl_entry;
int le_wxDataViewCtrl;
zend_class_entry* php_wxDataViewItem_entry;
int le_wxDataViewItem;
zend_class_entry* php_wxDataViewColumn_entry;
int le_wxDataViewColumn;
zend_class_entry* php_wxDataViewRenderer_entry;
int le_wxDataViewRenderer;
zend_class_entry* php_wxDataViewModel_entry;
int le_wxDataViewModel;
zend_class_entry* php_wxDataViewModelNotifier_entry;
int le_wxDataViewModelNotifier;
zend_class_entry* php_wxRefCounter_entry;
int le_wxRefCounter;
zend_class_entry* php_wxDataViewListCtrl_entry;
int le_wxDataViewListCtrl;
zend_class_entry* php_wxDataViewListStore_entry;
int le_wxDataViewListStore;
zend_class_entry* php_wxDataViewListModel_entry;
int le_wxDataViewListModel;
zend_class_entry* php_wxDataViewEvent_entry;
int le_wxDataViewEvent;
zend_class_entry* php_wxDataFormat_entry;
int le_wxDataFormat;
zend_class_entry* php_wxDataInputStream_entry;
int le_wxDataInputStream;
zend_class_entry* php_wxDataObject_entry;
int le_wxDataObject;
zend_class_entry* php_wxDataObjectComposite_entry;
int le_wxDataObjectComposite;
zend_class_entry* php_wxDataObjectSimple_entry;
int le_wxDataObjectSimple;
zend_class_entry* php_wxDataOutputStream_entry;
int le_wxDataOutputStream;
zend_class_entry* php_wxDataViewBitmapRenderer_entry;
int le_wxDataViewBitmapRenderer;
zend_class_entry* php_wxDataViewChoiceRenderer_entry;
int le_wxDataViewChoiceRenderer;
zend_class_entry* php_wxDataViewCustomRenderer_entry;
int le_wxDataViewCustomRenderer;
zend_class_entry* php_wxDataViewDateRenderer_entry;
int le_wxDataViewDateRenderer;
zend_class_entry* php_wxDataViewIconText_entry;
int le_wxDataViewIconText;
zend_class_entry* php_wxDataViewIconTextRenderer_entry;
int le_wxDataViewIconTextRenderer;
zend_class_entry* php_wxDataViewIndexListModel_entry;
int le_wxDataViewIndexListModel;
zend_class_entry* php_wxDataViewItemAttr_entry;
int le_wxDataViewItemAttr;
zend_class_entry* php_wxDataViewProgressRenderer_entry;
int le_wxDataViewProgressRenderer;
zend_class_entry* php_wxDataViewSpinRenderer_entry;
int le_wxDataViewSpinRenderer;
zend_class_entry* php_wxDataViewTextRenderer_entry;
int le_wxDataViewTextRenderer;
zend_class_entry* php_wxDataViewToggleRenderer_entry;
int le_wxDataViewToggleRenderer;
zend_class_entry* php_wxDataViewTreeCtrl_entry;
int le_wxDataViewTreeCtrl;
zend_class_entry* php_wxDataViewTreeStore_entry;
int le_wxDataViewTreeStore;
zend_class_entry* php_wxDataViewVirtualListModel_entry;
int le_wxDataViewVirtualListModel;
zend_class_entry* php_wxVariant_entry;
int le_wxVariant;
zend_class_entry* php_wxVariantData_entry;
int le_wxVariantData;
zend_class_entry* php_wxClassInfo_entry;
int le_wxClassInfo;
zend_class_entry* php_wxColourDatabase_entry;
int le_wxColourDatabase;
zend_class_entry* php_wxClipboard_entry;
int le_wxClipboard;
zend_class_entry* php_wxClipboardTextEvent_entry;
int le_wxClipboardTextEvent;