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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477 | % |¯¯ |¯\ /\ |\/| |_¯
%\ W X |¯ |¯\ /¯¯\ | | |__ . E R L
%%——————————————————————————————————————————————————————————
%%
%% Copyright Ericsson AB 2008-2013. All Rights Reserved.
%%
%%——————————————————————————————————————————————
%% Whitespace Beautified by ScriptCulture © 2018
%% Sit Back · Feet Up · Learn wxErlang
%% For use as a reference only
%% www.scriptculture.com
%% Not check-summed
%% wx 1.8 ——————————————————————————————————————
%%
%% Licensed under the Apache License,
%% Version 2.0 (the "License"); you may
%% not use this file except in compliance
%% with the License. You may obtain a copy
%% of the License at:
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by
%% applicable law or agreed to in writing, software
%% distributed under the License is distributed
%% on an "AS IS" BASIS, WITHOUT WARRANTIES
%% OR CONDITIONS OF ANY KIND, either
%% express or implied. See the
%% License for the specific
%% language governing
%% permissions and
%% limitations
%% under the
%% License.
%%%%%%%
%%%%
%%%%%
%% @doc See external documentation: <a href="http://www.wxwidgets.org/manuals/2.8.12/wx_wxframe.html">wxFrame</a>.
%% <p>This class is derived (and can use functions) from:
%% <br />{@link wxTopLevelWindow}
%% <br />{@link wxWindow}
%% <br />{@link wxEvtHandler}
%% </p>
%% @type wxFrame().
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% OVERVIEW
%% ––––––––
%% A frame is a window whose size and
%% position can (usually) be changed by the user.
%% It usually has thick borders and a title bar,
%% and can optionally contain a menu bar,
%% toolbar and status bar.
%%
%% A frame can contain any window that is not a frame or dialog.
%%
%% A frame that has a status bar and toolbar
%% created via the CreateStatusBar/CreateToolBar
%% functions manages these windows, and adjusts the
%% value returned by GetClientSize to reflect
%% the remaining size available to application windows.
%%
%%
%%
%% FRAME STYLES
%% ––––––––————
%% wxDEFAULT_FRAME_STYLE Defined as wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER |
%% wxSYSTEM_MENU | wxCAPTION | wxCLOSE_BOX |
%% wxCLIP_CHILDREN
%% wxICONIZE Display the frame iconized (minimized). Windows only.
%% wxCAPTION Puts a caption on the frame.
%% wxMINIMIZE Identical to wxICONIZE. Windows only.
%% wxMINIMIZE_BOX Displays a minimize box on the frame.
%% wxMAXIMIZE Displays the frame maximized. Windows and GTK+ only.
%% wxMAXIMIZE_BOX Displays a maximize box on the frame.
%% wxCLOSE_BOX Displays a close box on the frame.
%% wxSTAY_ON_TOP Stay on top of all other windows, see also wxFRAME_FLOAT_ON_PARENT.
%% wxSYSTEM_MENU Displays a system menu.
%% wxRESIZE_BORDER Displays a resizeable border around the window.
%% wxFRAME_TOOL_WINDOW Causes a frame with a small titlebar to be created;
%% the frame does not appear in the taskbar under Windows or GTK+.
%% wxFRAME_NO_TASKBAR Creates an otherwise normal frame but it does not appear
%% in the taskbar under Windows or GTK+ (note that it will minimize
%% to the desktop window under Windows which may seem strange to the users and
%% thus it might be better to use this style only without wxMINIMIZE_BOX style).
%% In wxGTK, the flag is respected only if GTK+ is at least version 2.2 and
%% the window manager supports _NET_WM_STATE_SKIP_TASKBAR hint.
%% Has no effect under other platforms.
%% wxFRAME_FLOAT_ON_PARENT The frame will always be on top of its parent (unlike wxSTAY_ON_TOP).
%% A frame created with this style must have a non-NULL parent.
%% wxFRAME_EX_CONTEXTHELP Under Windows, puts a query button on the caption.
%% When pressed, Windows will go into a context-sensitive help mode and
%% wxWidgets will send a wxEVT_HELP event if the user clicked on an application window.
%% Note that this is an extended style and must be set by
%% calling SetExtraStyle before Create is called (two-step construction).
%% You cannot use this style together with wxMAXIMIZE_BOX or wxMINIMIZE_BOX,
%% so you should use wxDEFAULT_FRAME_STYLE & ~ (wxMINIMIZE_BOX | wxMAXIMIZE_BOX) for
%% the frames having this style (the dialogs don't have a minimize or a maximize box by default)
%% wxFRAME_SHAPED Windows with this style are allowed to have their shape changed with the SetShape method.
%% wxFRAME_EX_METAL On Mac OS X, frames with this style will be shown with a metallic look.
%% This is an extra style.
%%
%% The default frame style is for normal, resizeable frames.
%% To create a frame which can not be resized by user, you may use the following
%% combination of styles: wxDEFAULT_FRAME_STYLE & ~ (wxRESIZE_BORDER | wxRESIZE_BOX | wxMAXIMIZE_BOX).
%% See also window styles overview.
%%
%%
%% FRAME STYLES
%% ––––––––————
%% wxFrame processes the following events:
%%
%% wxEVT_SIZE If the frame has exactly one child window, not counting the status
%% and toolbar, this child is resized to take the entire frame client area.
%% If two or more windows are present, they should be laid out explicitly
%% either by manually handling wxEVT_SIZE or using sizers
%% wxEVT_MENU_HIGHLIGHT The default implementation displays the help string associated with the
%% selected item in the first pane of the status bar, if there is one.
%%
%%
%% REMARKS
%% –––––––
%% An application should normally define an wxCloseEvent handler for the frame to respond to
%% system close events, for example so that related data and subwindows can be cleaned up.
%%
%% See Also:
%% —————————
%% wxMDIParentFrame, wxMDIChildFrame, wxMiniFrame, wxDialog
%%
%%
-module(wxFrame).
-include("wxe.hrl").
-export([
new/0,
new/3,
new/4,
create/4,
create/5,
% STATUS BAR
createStatusBar/1,
createStatusBar/2,
getStatusBarPane/1,
setStatusBarPane/2,
getStatusBar/1,
setStatusBar/2,
setStatusText/2,
setStatusText/3,
setStatusWidths/2,
% TOOL BAR
createToolBar/1,
createToolBar/2,
getToolBar/1,
setToolBar/2,
% MENU BAR
getMenuBar/1,
setMenuBar/2,
% ADDED API
sendSizeEvent/1,
processCommand/2,
getClientAreaOrigin/1,
destroy/1
]).
%% inherited exports
-export([cacheBestSize/2,captureMouse/1,center/1,center/2,centerOnParent/1,
centerOnParent/2,centerOnScreen/1,centerOnScreen/2,centre/1,centre/2,
centreOnParent/1,centreOnParent/2,centreOnScreen/1,centreOnScreen/2,
clearBackground/1,clientToScreen/2,clientToScreen/3,close/1,close/2,
connect/2,connect/3,convertDialogToPixels/2,convertPixelsToDialog/2,
destroyChildren/1,disable/1,disconnect/1,disconnect/2,disconnect/3,
enable/1,enable/2,findWindow/2,fit/1,fitInside/1,freeze/1,getAcceleratorTable/1,
getBackgroundColour/1,getBackgroundStyle/1,getBestSize/1,getCaret/1,
getCharHeight/1,getCharWidth/1,getChildren/1,getClientSize/1,getContainingSizer/1,
getCursor/1,getDropTarget/1,getEventHandler/1,getExtraStyle/1,getFont/1,
getForegroundColour/1,getGrandParent/1,getHandle/1,getHelpText/1,
getIcon/1,getIcons/1,getId/1,getLabel/1,getMaxSize/1,getMinSize/1,getName/1,
getParent/1,getPosition/1,getRect/1,getScreenPosition/1,getScreenRect/1,
getScrollPos/2,getScrollRange/2,getScrollThumb/2,getSize/1,getSizer/1,
getTextExtent/2,getTextExtent/3,getTitle/1,getToolTip/1,getUpdateRegion/1,
getVirtualSize/1,getWindowStyleFlag/1,getWindowVariant/1,hasCapture/1,
hasScrollbar/2,hasTransparentBackground/1,hide/1,iconize/1,iconize/2,
inheritAttributes/1,initDialog/1,invalidateBestSize/1,isActive/1,
isEnabled/1,isExposed/2,isExposed/3,isExposed/5,isFullScreen/1,isIconized/1,
isMaximized/1,isRetained/1,isShown/1,isTopLevel/1,layout/1,lineDown/1,
lineUp/1,lower/1,makeModal/1,makeModal/2,maximize/1,maximize/2,move/2,
move/3,move/4,moveAfterInTabOrder/2,moveBeforeInTabOrder/2,navigate/1,
navigate/2,pageDown/1,pageUp/1,parent_class/1,popEventHandler/1,popEventHandler/2,
popupMenu/2,popupMenu/3,popupMenu/4,raise/1,refresh/1,refresh/2,refreshRect/2,
refreshRect/3,releaseMouse/1,removeChild/2,reparent/2,requestUserAttention/1,
requestUserAttention/2,screenToClient/1,screenToClient/2,scrollLines/2,
scrollPages/2,scrollWindow/3,scrollWindow/4,setAcceleratorTable/2,
setAutoLayout/2,setBackgroundColour/2,setBackgroundStyle/2,setCaret/2,
setClientSize/2,setClientSize/3,setContainingSizer/2,setCursor/2,
setDropTarget/2,setExtraStyle/2,setFocus/1,setFocusFromKbd/1,setFont/2,
setForegroundColour/2,setHelpText/2,setIcon/2,setIcons/2,setId/2,setLabel/2,
setMaxSize/2,setMinSize/2,setName/2,setOwnBackgroundColour/2,setOwnFont/2,
setOwnForegroundColour/2,setPalette/2,setScrollPos/3,setScrollPos/4,
setScrollbar/5,setScrollbar/6,setShape/2,setSize/2,setSize/3,setSize/5,
setSize/6,setSizeHints/2,setSizeHints/3,setSizeHints/4,setSizer/2,
setSizer/3,setSizerAndFit/2,setSizerAndFit/3,setThemeEnabled/2,setTitle/2,
setToolTip/2,setVirtualSize/2,setVirtualSize/3,setVirtualSizeHints/2,
setVirtualSizeHints/3,setVirtualSizeHints/4,setWindowStyle/2,setWindowStyleFlag/2,
setWindowVariant/2,shouldInheritColours/1,show/1,show/2,showFullScreen/2,
showFullScreen/3,thaw/1,transferDataFromWindow/1,transferDataToWindow/1,
update/1,updateWindowUI/1,updateWindowUI/2,validate/1,warpPointer/3]).
-export_type([wxFrame/0]).
%% @hidden
parent_class(wxTopLevelWindow) -> true;
parent_class(wxWindow) -> true;
parent_class(wxEvtHandler) -> true;
parent_class(_Class) -> erlang:error({badtype, ?MODULE}).
-type wxFrame() :: wx:wx_object().
%·%% NEW /0 %%·%
%%
%% Default Constructor
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec new() -> wxFrame().
new() ->
wxe_util:construct(?wxFrame_new_0,
<<>>).
%·%% NEW /3 %%·%
%%
%% See below...
%% @equiv new(Parent,Id,Title, [])
-spec new(Parent, Id, Title) -> wxFrame()
when
Parent :: wxWindow:wxWindow(),
Id :: integer(),
Title :: unicode:chardata().
new(Parent,Id,Title)
when
is_record(Parent, wx_ref),
is_integer(Id),
is_list(Title) -> new(Parent,Id,Title, []).
%·%% NEW /4 %%·%
%%
%% Constructor, creating a window
%%
%% parent The window parent. This may be NULL. If it is non-NULL, the frame will
%% always be displayed on top of the parent window on Windows.
%%
%% id The window identifier. It may take a value of -1 to indicate a default value.
%%
%% title The caption to be displayed on the frame's title bar.
%%
%% pos The window position. A value of (-1, -1) indicates a default position,
%% chosen by either the windowing system or wxWidgets, depending on platform.
%%
%% size The window size. A value of (-1, -1) indicates a default size,
%% chosen by either the windowing system or wxWidgets, depending on platform.
%%
%% style The window style. See top. Integers in wxMacros document.
%%
%% -define(wxTOPLEVEL_EX_DIALOG, 8).
%% -define(wxDEFAULT_FRAME_STYLE, (?wxSYSTEM_MENU bor ?wxRESIZE_BORDER bor ?wxMINIMIZE_BOX bor ?wxMAXIMIZE_BOX bor ?wxCLOSE_BOX bor ?wxCAPTION bor ?wxCLIP_CHILDREN)).
%% -define(wxRESIZE_BORDER, 64).
%% -define(wxTINY_CAPTION_VERT, 128).
%% -define(wxTINY_CAPTION_HORIZ, 256).
%% -define(wxMAXIMIZE_BOX, 512).
%% -define(wxMINIMIZE_BOX, 1024).
%% -define(wxSYSTEM_MENU, 2048).
%% -define(wxCLOSE_BOX, 4096).
%% -define(wxMAXIMIZE, 8192).
%% -define(wxMINIMIZE, ?wxICONIZE).
%% -define(wxICONIZE, 16384).
%% -define(wxSTAY_ON_TOP, 32768).
%%
%%
%% NOTE:
%% For Motif, MWM (the Motif Window Manager) should be running for any
%% window styles to work (otherwise all styles take effect).
%%
%% Return Value:
%% See Also: wxFrame::Create
%%*%%*%%
-spec new(Parent, Id, Title, [Option]) -> wxFrame()
when
Parent :: wxWindow:wxWindow(),
Id :: integer(),
Title :: unicode:chardata(),
Option :: {pos, {X :: integer(), Y :: integer()}}
| {size, {W :: integer(), H :: integer()}}
| {style, integer()}.
new(#wx_ref{type=ParentT,ref=ParentRef},Id,Title, Options)
when
is_integer(Id),
is_list(Title),
is_list(Options) ->
?CLASS(ParentT,wxWindow),
Title_UC = unicode:characters_to_binary([Title,0]),
MOpts = fun({pos, {PosX, PosY}}, Acc) -> [<<1:32/?UI,PosX:32/?UI,PosY:32/?UI,0:32>>|Acc];
({size, {SizeW,SizeH}}, Acc) -> [<<2:32/?UI,SizeW:32/?UI,SizeH:32/?UI,0:32>>|Acc];
({style, Style}, Acc) -> [<<3:32/?UI,Style:32/?UI>>|Acc];
(BadOpt, _) -> erlang:error({badoption, BadOpt})
end,
BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)),
wxe_util:construct(?wxFrame_new_4,
<<ParentRef:32/?UI,Id:32/?UI,(byte_size(Title_UC)):32/?UI,(Title_UC)/binary,
0:(((8- ((4+byte_size(Title_UC)) band 16#7)) band 16#7))/unit:8, BinOpt/binary>>).
%·%% CREATE / 4 %%·%
%% See below...
%% @equiv create(This,Parent,Id,Title, [])
-spec create(This, Parent, Id, Title) -> boolean()
when
This :: wxFrame(),
Parent :: wxWindow:wxWindow(),
Id :: integer(),
Title :: unicode:chardata().
create(This, Parent, Id, Title)
when
is_record(This, wx_ref),
is_record(Parent, wx_ref),
is_integer(Id),
is_list(Title) -> create(This,Parent,Id,Title, []).
%·%% CREATE / 5 %%·%
%%
%% Used in two-step frame construction. See wxFrame::wxFrame for further details.
%%
%% See NEW/ 4 for parameter descriptions.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec create(This, Parent, Id, Title, [Option]) -> boolean()
when
This :: wxFrame(),
Parent :: wxWindow:wxWindow(),
Id :: integer(),
Title :: unicode:chardata(),
Option :: {pos, {X :: integer(), Y :: integer()}}
| {size, {W :: integer(), H :: integer()}}
| {style, integer()}.
create(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=ParentT,ref=ParentRef}, Id, Title, Options)
when
is_integer(Id),
is_list(Title),
is_list(Options) ->
?CLASS(ThisT,wxFrame),
?CLASS(ParentT,wxWindow),
Title_UC = unicode:characters_to_binary([Title,0]),
MOpts = fun({pos, {PosX, PosY}}, Acc) -> [<<1:32/?UI,PosX:32/?UI,PosY:32/?UI,0:32>>|Acc];
({size, {SizeW,SizeH}}, Acc) -> [<<2:32/?UI,SizeW:32/?UI,SizeH:32/?UI,0:32>>|Acc];
({style, Style}, Acc) -> [<<3:32/?UI,Style:32/?UI>>|Acc];
(BadOpt, _) -> erlang:error({badoption, BadOpt})
end,
BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)),
wxe_util:call(?wxFrame_Create,
<<ThisRef:32/?UI,ParentRef:32/?UI,Id:32/?UI,(byte_size(Title_UC)):32/?UI,(Title_UC)/binary,
0:(((8- ((0+byte_size(Title_UC)) band 16#7)) band 16#7))/unit:8, BinOpt/binary>>).
% ________________________________________ ___ _________ __________ _____ __________
% / _____/\__ ___/ _ \__ ___/ | \/ _____/ \______ \ / _ \\______ \
% \_____ \ | | / /_\ \| | | | /\_____ \ | | _/ / /_\ \| _/
% / \ | |/ | \ | | | / / \ | | \/ | \ | \
% /_______ / |____|\____|__ /____| |______/ /_______ / |______ /\____|__ /____|_ /
% ————————\/—————————————————\/—————————————————————————\/——————————\/—————————\/———————\/——————————————
%·%% CREATE STATUS BAR %%·%
%%
%% See below...
%% @equiv createStatusBar(This, [])
-spec createStatusBar(This) -> wxStatusBar:wxStatusBar()
when
This :: wxFrame().
createStatusBar(This)
when
is_record(This, wx_ref) -> createStatusBar(This, []).
%%
%% Creates a status bar at the bottom of the frame.
%%
%% The width of the status bar is the whole width of the frame (adjusted automatically
%% when resizing), and the height and text size are chosen by the host windowing system.
%%
%% By default, the status bar is an instance of wxStatusBar.
%% To use a different class, override wxFrame::OnCreateStatusBar.
%%
%% Note that you can put controls and other windows on the status bar if you wish.
%%
%% number The number of fields to create.
%% Specify a value greater than 1 to create a multi-field status bar.
%%
%% style The status bar style. See wxStatusBar for a list of valid styles.
%%
%% id The status bar window identifier.
%% If -1, an identifier will be chosen by wxWidgets.
%%
%% Return Value: A pointer to the status bar if it was created successfully, NULL otherwise.
%% See Also: wxFrame::SetStatusText, wxFrame::OnCreateStatusBar, wxFrame::GetStatusBar
%%*%%*%%
-spec createStatusBar(This, [Option]) -> wxStatusBar:wxStatusBar()
when
This :: wxFrame(),
Option :: {number, integer()}
| {style, integer()}
| {id, integer()}.
createStatusBar(#wx_ref{type=ThisT,ref=ThisRef}, Options)
when
is_list(Options) ->
?CLASS(ThisT,wxFrame),
MOpts = fun({number, Number}, Acc) -> [<<1:32/?UI,Number:32/?UI>>|Acc];
({style, Style}, Acc) -> [<<2:32/?UI,Style:32/?UI>>|Acc];
({id, Id}, Acc) -> [<<3:32/?UI,Id:32/?UI>>|Acc];
(BadOpt, _) -> erlang:error({badoption, BadOpt})
end,
BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)),
wxe_util:call(?wxFrame_CreateStatusBar,
<<ThisRef:32/?UI, 0:32,BinOpt/binary>>).
%·%% GET STATUS BAR %%·%
%%
%% Returns a pointer to the status bar currently associated with the frame (if any).
%%
%% Return Value:
%% See Also: wxFrame::CreateStatusBar, wxStatusBar
%%*%%*%%
-spec getStatusBar(This) -> wxStatusBar:wxStatusBar()
when
This :: wxFrame().
getStatusBar(#wx_ref{type=ThisT,ref=ThisRef}) ->
?CLASS(ThisT,wxFrame),
wxe_util:call(?wxFrame_GetStatusBar,
<<ThisRef:32/?UI>>).
%·%% SET STATUS BAR %%·%
%%
%% Associates a status bar with the frame.
%%
%% Return Value:
%% See Also: wxFrame::CreateStatusBar, wxStatusBar, wxFrame::GetStatusBar
%%*%%*%%
-spec setStatusBar(This, Statbar) -> ok
when
This :: wxFrame(),
Statbar :: wxStatusBar:wxStatusBar().
setStatusBar(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=StatbarT,ref=StatbarRef}) ->
?CLASS(ThisT,wxFrame),
?CLASS(StatbarT,wxStatusBar),
wxe_util:cast(?wxFrame_SetStatusBar,
<<ThisRef:32/?UI,StatbarRef:32/?UI>>).
%·%% GET STATUS BAR PANE %%·%
%%
%% Returns the status bar pane used to display menu and toolbar help.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec getStatusBarPane(This) -> integer()
when
This :: wxFrame().
getStatusBarPane(#wx_ref{type=ThisT,ref=ThisRef}) ->
?CLASS(ThisT,wxFrame),
wxe_util:call(?wxFrame_GetStatusBarPane,
<<ThisRef:32/?UI>>).
%·%% SET STATUS BAR PANE %%·%
%%
%% Set the status bar pane used to display menu and toolbar help. Using -1 disables help display.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec setStatusBarPane(This, N) -> ok
when
This :: wxFrame(),
N :: integer().
setStatusBarPane(#wx_ref{type=ThisT,ref=ThisRef}, N)
when
is_integer(N) ->
?CLASS(ThisT,wxFrame),
wxe_util:cast(?wxFrame_SetStatusBarPane,
<<ThisRef:32/?UI,N:32/?UI>>).
%·%% SET STATUS TEXT / 2 %%·%
%%
%% See below...
%% @equiv setStatusText(This,Text, [])
-spec setStatusText(This, Text) -> ok
when
This :: wxFrame(),
Text :: unicode:chardata(). %% The text for the status field.
setStatusText(This,Text)
when
is_record(This, wx_ref),
is_list(Text) -> setStatusText(This,Text, []).
%·%% SET STATUS TEXT / 3 %%·%
%%
%%
%%
%% Sets the status bar text and redraws the status bar.
%%
%% Note: Use an empty string to clear the status bar.
%%
%%
%%
%% Return Value:
%% See Also: wxFrame::CreateStatusBar, wxStatusBar
%%*%%*%%
-spec setStatusText(This, Text, [Option]) -> ok
when
This :: wxFrame(),
Text :: unicode:chardata(), %% The text for the status field.
Option :: {number, integer()}. %% The status field (starting from zero).
setStatusText(#wx_ref{type=ThisT,ref=ThisRef},Text, Options)
when
is_list(Text),
is_list(Options) ->
?CLASS(ThisT,wxFrame),
Text_UC = unicode:characters_to_binary([Text,0]),
MOpts = fun({number, Number}, Acc) -> [<<1:32/?UI,Number:32/?UI>>|Acc];
(BadOpt, _) -> erlang:error({badoption, BadOpt})
end,
BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)),
wxe_util:cast(?wxFrame_SetStatusText,
<<ThisRef:32/?UI,(byte_size(Text_UC)):32/?UI,(Text_UC)/binary,
0:(((8- ((0+byte_size(Text_UC)) band 16#7)) band 16#7))/unit:8, BinOpt/binary>>).
%·%% SET STATUS WIDTHS %%·%
%%
%% Sets the widths of the fields in the status bar.
%%
%% The widths of the variable fields are calculated from the
%%
%% total width of all fields,
%%
%% minus
%%
%% the sum of widths of the non-variable fields,
%%
%% divided by the number of variable fields.
%%
%% lists:sum( [ ALL FIELDS ]) - lists:sum( [ STATIC FIELDS ]) / length( [ # VARIABEL FIELDS ] )
%%
%% This function also exists under wxStatusBar, Better explanation there.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec setStatusWidths(This, Widths_field) -> ok
when
This :: wxFrame() ,
Widths_field :: [ integer() ]. %% Must contain an array of n integers,
%% each of which is a status field width in pixels.
%% A value of -1 indicates that the field is variable width;
%% at least one field must be -1.
%%
%% You should delete this array after calling SetStatusWidths.
%%
%% [ -1 , FirstRightAlignedStaticField, SecondRASField ]
setStatusWidths(#wx_ref{type=ThisT,ref=ThisRef}, Widths_field)
when
is_list(Widths_field) ->
?CLASS(ThisT,wxFrame),
wxe_util:cast(?wxFrame_SetStatusWidths,
<<ThisRef:32/?UI,(length(Widths_field)):32/?UI,
(<< <<C:32/?I>> ||C <- Widths_field>>)/binary,
0:(((0+length(Widths_field)) rem 2)*32)>>).
%
% ___________________ ________ ____ __________ _____ __________
% \__ ___/\_____ \ \_____ \ | | \______ \ / _ \\______ \
% | | / | \ / | \| | | | _/ / /_\ \| _/
% | | / | \/ | \ |___| | \/ | \ | \
% |____| \_______ /\_______ /_______ \______ /\____|__ /____|_ /
% —————————————————————\/—————————\/————————\/——————\/—————————\/———————\/——————————————
%·%% CREATE TOOL BAR %%·%
%%
%% See below...
%% @equiv createToolBar(This, [])
-spec createToolBar(This) -> wxToolBar:wxToolBar()
when
This :: wxFrame().
createToolBar(This)
when
is_record(This, wx_ref) -> createToolBar(This, []).
%% Creates a toolbar at the top or left of the frame.
%%
%% By default, the toolbar is an instance of wxToolBar (which is defined to be a
%% suitable toolbar class on each platform, such as wxToolBar95).
%% To use a different class, override wxFrame::OnCreateToolBar.
%%
%% When a toolbar has been created with this function, or made known to the frame
%% with wxFrame::SetToolBar, the frame will manage the toolbar position and adjust
%% the return value from wxWindow::GetClientSize to reflect the available space for
%% application windows.
%%
%% Under Pocket PC, you should always use this function for creating the toolbar
%% to be managed by the frame, so that wxWidgets can use a combined menubar and toolbar.
%% Where you manage your own toolbars, create a wxToolBar as usual.
%%
%% style The toolbar style.
%%
%% wxTB_FLAT Gives the toolbar a flat look (Windows and GTK only).
%% wxTB_DOCKABLE Makes the toolbar floatable and dockable (GTK only).
%% wxTB_VERTICAL Specifies vertical layout.
%% wxTB_BOTTOM Align the toolbar at the bottom of parent window.
%% wxTB_RIGHT Align the toolbar at the right side of parent window.
%% wxTB_HORIZONTAL Specifies horizontal layout (default).
%% wxTB_TEXT Shows the text in the toolbar buttons; by default only icons are shown.
%% wxTB_HORZ_TEXT Combination of wxTB_HORZ_LAYOUT and wxTB_TEXT.
%% wxTB_HORZ_LAYOUT Shows the text and the icons alongside,
%% not vertically stacked (Windows and GTK 2 only).
%% This style must be used with wxTB_TEXT.
%%
%% wxTB_NOICONS Specifies no icons in the toolbar buttons; by default they are shown.
%% wxTB_NODIVIDER Specifies no divider (border) above the toolbar (Windows only).
%% wxTB_NOALIGN Specifies no alignment with the parent window (Windows only, not very useful).
%% wxTB_NO_TOOLTIPS Don't show the short help tooltips for the tools when the mouse hovers over them.
%%
%% id The toolbar window identifier. If -1, an identifier will be chosen by wxWidgets.
%%
%% name The toolbar window name.
%%
%% Return Value: A pointer to the toolbar if it was created successfully, NULL otherwise.
%% See Also: wxFrame::CreateStatusBar, wxFrame::OnCreateToolBar, wxFrame::SetToolBar, wxFrame::GetToolBar
%%*%%*%%
-spec createToolBar(This, [Option]) -> wxToolBar:wxToolBar()
when
This :: wxFrame(),
Option :: {style, integer()}
| {id, integer()}.
createToolBar(#wx_ref{type=ThisT,ref=ThisRef}, Options)
when
is_list(Options) ->
?CLASS(ThisT,wxFrame),
MOpts = fun({style, Style}, Acc) -> [<<1:32/?UI,Style:32/?UI>>|Acc];
({id, Id}, Acc) -> [<<2:32/?UI,Id:32/?UI>>|Acc];
(BadOpt, _) -> erlang:error({badoption, BadOpt})
end,
BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)),
wxe_util:call(?wxFrame_CreateToolBar,
<<ThisRef:32/?UI, 0:32,BinOpt/binary>>).
%·%% GET TOOL BAR %%·%
%%
%% Returns a pointer to the toolbar currently associated with the frame (if any).
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec getToolBar(This) -> wxToolBar:wxToolBar()
when
This :: wxFrame().
getToolBar(#wx_ref{type=ThisT,ref=ThisRef}) ->
?CLASS(ThisT,wxFrame),
wxe_util:call(?wxFrame_GetToolBar,
<<ThisRef:32/?UI>>).
%·%% SET TOOL BAR %%·%
%%
%% Associates a toolbar with the frame.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec setToolBar(This, Toolbar) -> ok
when
This :: wxFrame(),
Toolbar :: wxToolBar:wxToolBar().
setToolBar(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=ToolbarT,ref=ToolbarRef}) ->
?CLASS(ThisT,wxFrame),
?CLASS(ToolbarT,wxToolBar),
wxe_util:cast(?wxFrame_SetToolBar,
<<ThisRef:32/?UI,ToolbarRef:32/?UI>>).
%
% _____ ___________ _______ ____ _____________ _____ __________
% / \ \_ _____/ \ \ | | \______ \ / _ \\______ \
% / \ / \ | __)_ / | \| | /| | _/ / /_\ \| _/
% / Y \| \/ | \ | / | | \/ | \ | \
% \____|__ /_______ /\____|__ /______/ |______ /\____|__ /____|_ /
%———————————————\/-———————\/—————————\/—————————————————\/—————————\/———————\/
%
%·%% GET MENU BAR %%·%
%%
%% Returns a pointer to the menubar currently associated with the frame (if any).
%%
%% Return Value:
%% See Also: wxFrame::SetMenuBar, wxMenuBar, wxMenu
%%*%%*%%
-spec getMenuBar(This) -> wxMenuBar:wxMenuBar()
when
This :: wxFrame().
getMenuBar(#wx_ref{type=ThisT,ref=ThisRef}) ->
?CLASS(ThisT,wxFrame),
wxe_util:call(?wxFrame_GetMenuBar,
<<ThisRef:32/?UI>>).
%·%% SET MENU BAR %%·%
%%
%% Tells the frame to show the given menu bar.
%%
%% If the frame is destroyed, the menu bar and its menus will be destroyed also,
%% so do not delete the menu bar explicitly (except by resetting
%% the frame's menu bar to another frame or NULL).
%%
%% Under Windows, a size event is generated, so be sure to
%% initialize data members properly before calling SetMenuBar.
%%
%% Note that on some platforms, it is not possible to
%% call this function twice for the same frame object.
%%
%% Return Value:
%% See Also: wxFrame::GetMenuBar, wxMenuBar, wxMenu
%%*%%*%%
-spec setMenuBar(This, Menubar) -> ok
when
This :: wxFrame(),
Menubar :: wxMenuBar:wxMenuBar(). %% The menu bar to associate with the frame.
setMenuBar(#wx_ref{type=ThisT,ref=ThisRef},
#wx_ref{type=MenubarT,ref=MenubarRef}) ->
?CLASS(ThisT,wxFrame),
?CLASS(MenubarT,wxMenuBar),
wxe_util:cast(?wxFrame_SetMenuBar,
<<ThisRef:32/?UI,MenubarRef:32/?UI>>).
%% _____ .___ .___ .___ _____ __________.___
%% / _ \ __| _/__| _/____ __| _/ / _ \\______ \ |
%% / /_\ \ / __ |/ __ |/ __ \ / __ | / /_\ \| ___/ |
%% / | \/ /_/ / /_/ \ ___// /_/ | / | \ | | |
%% \____|__ /\____ \____ |\___ >____ | \____|__ /____| |___|
%%______________\/______\/____\_____\/_____\/__________\/_______________________________
%·%% SEND SIZE EVENT %%·%
%%
%% This function sends a dummy size event to the frame
%%
%% - forcing it to reevaluate its children positions-
%%
%% It is sometimes useful to call this function:
%% after adding or deleting a child/children
%% after the frame creation
%% or
%% if a child size changes.
%%
%% Note that:
%% if the frame is using either
%% sizers or constraints
%% for the children layout,
%% it is enough to call wxWindow:layout directly and this function
%% should not be used
%% in this case.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec sendSizeEvent(This) -> ok
when
This :: wxFrame().
sendSizeEvent(#wx_ref{type=ThisT,ref=ThisRef}) ->
?CLASS(ThisT,wxFrame),
wxe_util:cast(?wxFrame_SendSizeEvent,
<<ThisRef:32/?UI>>).
%·%% PROCESS COMMAND %%·%
%%
%% Simulate a menu command.
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec processCommand(This, Winid) -> boolean()
when
This :: wxFrame(),
Winid :: integer(). %% The identifier for a menu item.
processCommand(#wx_ref{type=ThisT,ref=ThisRef}, Winid)
when
is_integer(Winid) ->
?CLASS(ThisT,wxFrame),
wxe_util:call(?wxFrame_ProcessCommand,
<<ThisRef:32/?UI,Winid:32/?UI>>).
%·%% GET CLIENT AREA ORIGIN %%·%
%% Origin
%% ._________________________________
%% |
%% | Returns the origin of the frame client area (in client coordinates).
%% |
%% | It may be different from (0, 0) if the frame has a toolbar.
%% |
%% | You want the top left coord to base drawings off of.
%% |
%%
%% Return Value:
%% See Also:
%%*%%*%%
-spec getClientAreaOrigin(This) -> { X :: integer(),
Y :: integer() }
when
This :: wxFrame().
getClientAreaOrigin(#wx_ref{type=ThisT,ref=ThisRef}) ->
?CLASS(ThisT,wxFrame),
wxe_util:call(?wxFrame_GetClientAreaOrigin,
<<ThisRef:32/?UI>>).
%·%% DESTROY %%·%
%% Desconstructor
%%
%% @doc Destroys this object, do not use object again
-spec destroy(This :: wxFrame()) -> ok.
destroy(Obj=#wx_ref{type=Type}) ->
?CLASS(Type,wxFrame),
wxe_util:destroy(?DESTROY_OBJECT,Obj),
ok.
%% From wxTopLevelWindow
%% @hidden
showFullScreen(This,Show, Options) -> wxTopLevelWindow:showFullScreen(This,Show, Options).
%% @hidden
showFullScreen(This,Show) -> wxTopLevelWindow:showFullScreen(This,Show).
%% @hidden
setTitle(This,Title) -> wxTopLevelWindow:setTitle(This,Title).
%% @hidden
setShape(This,Region) -> wxTopLevelWindow:setShape(This,Region).
%% @hidden
centreOnScreen(This, Options) -> wxTopLevelWindow:centreOnScreen(This, Options).
%% @hidden
centreOnScreen(This) -> wxTopLevelWindow:centreOnScreen(This).
%% @hidden
centerOnScreen(This, Options) -> wxTopLevelWindow:centerOnScreen(This, Options).
%% @hidden
centerOnScreen(This) -> wxTopLevelWindow:centerOnScreen(This).
%% @hidden
setIcons(This,Icons) -> wxTopLevelWindow:setIcons(This,Icons).
%% @hidden
setIcon(This,Icon) -> wxTopLevelWindow:setIcon(This,Icon).
%% @hidden
requestUserAttention(This, Options) -> wxTopLevelWindow:requestUserAttention(This, Options).
%% @hidden
requestUserAttention(This) -> wxTopLevelWindow:requestUserAttention(This).
%% @hidden
maximize(This, Options) -> wxTopLevelWindow:maximize(This, Options).
%% @hidden
maximize(This) -> wxTopLevelWindow:maximize(This).
%% @hidden
isMaximized(This) -> wxTopLevelWindow:isMaximized(This).
%% @hidden
isIconized(This) -> wxTopLevelWindow:isIconized(This).
%% @hidden
isFullScreen(This) -> wxTopLevelWindow:isFullScreen(This).
%% @hidden
iconize(This, Options) -> wxTopLevelWindow:iconize(This, Options).
%% @hidden
iconize(This) -> wxTopLevelWindow:iconize(This).
%% @hidden
isActive(This) -> wxTopLevelWindow:isActive(This).
%% @hidden
getTitle(This) -> wxTopLevelWindow:getTitle(This).
%% @hidden
getIcons(This) -> wxTopLevelWindow:getIcons(This).
%% @hidden
getIcon(This) -> wxTopLevelWindow:getIcon(This).
%% From wxWindow
%% @hidden
warpPointer(This,X,Y) -> wxWindow:warpPointer(This,X,Y).
%% @hidden
validate(This) -> wxWindow:validate(This).
%% @hidden
updateWindowUI(This, Options) -> wxWindow:updateWindowUI(This, Options).
%% @hidden
updateWindowUI(This) -> wxWindow:updateWindowUI(This).
%% @hidden
update(This) -> wxWindow:update(This).
%% @hidden
transferDataToWindow(This) -> wxWindow:transferDataToWindow(This).
%% @hidden
transferDataFromWindow(This) -> wxWindow:transferDataFromWindow(This).
%% @hidden
thaw(This) -> wxWindow:thaw(This).
%% @hidden
show(This, Options) -> wxWindow:show(This, Options).
%% @hidden
show(This) -> wxWindow:show(This).
%% @hidden
shouldInheritColours(This) -> wxWindow:shouldInheritColours(This).
%% @hidden
setWindowVariant(This,Variant) -> wxWindow:setWindowVariant(This,Variant).
%% @hidden
setWindowStyleFlag(This,Style) -> wxWindow:setWindowStyleFlag(This,Style).
%% @hidden
setWindowStyle(This,Style) -> wxWindow:setWindowStyle(This,Style).
%% @hidden
setVirtualSizeHints(This,MinW,MinH, Options) -> wxWindow:setVirtualSizeHints(This,MinW,MinH, Options).
%% @hidden
setVirtualSizeHints(This,MinW,MinH) -> wxWindow:setVirtualSizeHints(This,MinW,MinH).
%% @hidden
setVirtualSizeHints(This,MinSize) -> wxWindow:setVirtualSizeHints(This,MinSize).
%% @hidden
setVirtualSize(This,X,Y) -> wxWindow:setVirtualSize(This,X,Y).
%% @hidden
setVirtualSize(This,Size) -> wxWindow:setVirtualSize(This,Size).
%% @hidden
setToolTip(This,Tip) -> wxWindow:setToolTip(This,Tip).
%% @hidden
setThemeEnabled(This,EnableTheme) -> wxWindow:setThemeEnabled(This,EnableTheme).
%% @hidden
setSizerAndFit(This,Sizer, Options) -> wxWindow:setSizerAndFit(This,Sizer, Options).
%% @hidden
setSizerAndFit(This,Sizer) -> wxWindow:setSizerAndFit(This,Sizer).
%% @hidden
setSizer(This,Sizer, Options) -> wxWindow:setSizer(This,Sizer, Options).
%% @hidden
setSizer(This,Sizer) -> wxWindow:setSizer(This,Sizer).
%% @hidden
setSizeHints(This,MinW,MinH, Options) -> wxWindow:setSizeHints(This,MinW,MinH, Options).
%% @hidden
setSizeHints(This,MinW,MinH) -> wxWindow:setSizeHints(This,MinW,MinH).
%% @hidden
setSizeHints(This,MinSize) -> wxWindow:setSizeHints(This,MinSize).
%% @hidden
setSize(This,X,Y,Width,Height, Options) -> wxWindow:setSize(This,X,Y,Width,Height, Options).
%% @hidden
setSize(This,X,Y,Width,Height) -> wxWindow:setSize(This,X,Y,Width,Height).
%% @hidden
setSize(This,Width,Height) -> wxWindow:setSize(This,Width,Height).
%% @hidden
setSize(This,Rect) -> wxWindow:setSize(This,Rect).
%% @hidden
setScrollPos(This,Orient,Pos, Options) -> wxWindow:setScrollPos(This,Orient,Pos, Options).
%% @hidden
setScrollPos(This,Orient,Pos) -> wxWindow:setScrollPos(This,Orient,Pos).
%% @hidden
setScrollbar(This,Orient,Pos,ThumbVisible,Range, Options) -> wxWindow:setScrollbar(This,Orient,Pos,ThumbVisible,Range, Options).
%% @hidden
setScrollbar(This,Orient,Pos,ThumbVisible,Range) -> wxWindow:setScrollbar(This,Orient,Pos,ThumbVisible,Range).
%% @hidden
setPalette(This,Pal) -> wxWindow:setPalette(This,Pal).
%% @hidden
setName(This,Name) -> wxWindow:setName(This,Name).
%% @hidden
setLabel(This,Label) -> wxWindow:setLabel(This,Label).
%% @hidden
setId(This,Winid) -> wxWindow:setId(This,Winid).
%% @hidden
setHelpText(This,Text) -> wxWindow:setHelpText(This,Text).
%% @hidden
setForegroundColour(This,Colour) -> wxWindow:setForegroundColour(This,Colour).
%% @hidden
setFont(This,Font) -> wxWindow:setFont(This,Font).
%% @hidden
setFocusFromKbd(This) -> wxWindow:setFocusFromKbd(This).
%% @hidden
setFocus(This) -> wxWindow:setFocus(This).
%% @hidden
setExtraStyle(This,ExStyle) -> wxWindow:setExtraStyle(This,ExStyle).
%% @hidden
setDropTarget(This,DropTarget) -> wxWindow:setDropTarget(This,DropTarget).
%% @hidden
setOwnForegroundColour(This,Colour) -> wxWindow:setOwnForegroundColour(This,Colour).
%% @hidden
setOwnFont(This,Font) -> wxWindow:setOwnFont(This,Font).
%% @hidden
setOwnBackgroundColour(This,Colour) -> wxWindow:setOwnBackgroundColour(This,Colour).
%% @hidden
setMinSize(This,MinSize) -> wxWindow:setMinSize(This,MinSize).
%% @hidden
setMaxSize(This,MaxSize) -> wxWindow:setMaxSize(This,MaxSize).
%% @hidden
setCursor(This,Cursor) -> wxWindow:setCursor(This,Cursor).
%% @hidden
setContainingSizer(This,Sizer) -> wxWindow:setContainingSizer(This,Sizer).
%% @hidden
setClientSize(This,Width,Height) -> wxWindow:setClientSize(This,Width,Height).
%% @hidden
setClientSize(This,Size) -> wxWindow:setClientSize(This,Size).
%% @hidden
setCaret(This,Caret) -> wxWindow:setCaret(This,Caret).
%% @hidden
setBackgroundStyle(This,Style) -> wxWindow:setBackgroundStyle(This,Style).
%% @hidden
setBackgroundColour(This,Colour) -> wxWindow:setBackgroundColour(This,Colour).
%% @hidden
setAutoLayout(This,AutoLayout) -> wxWindow:setAutoLayout(This,AutoLayout).
%% @hidden
setAcceleratorTable(This,Accel) -> wxWindow:setAcceleratorTable(This,Accel).
%% @hidden
scrollWindow(This,Dx,Dy, Options) -> wxWindow:scrollWindow(This,Dx,Dy, Options).
%% @hidden
scrollWindow(This,Dx,Dy) -> wxWindow:scrollWindow(This,Dx,Dy).
%% @hidden
scrollPages(This,Pages) -> wxWindow:scrollPages(This,Pages).
%% @hidden
scrollLines(This,Lines) -> wxWindow:scrollLines(This,Lines).
%% @hidden
screenToClient(This,Pt) -> wxWindow:screenToClient(This,Pt).
%% @hidden
screenToClient(This) -> wxWindow:screenToClient(This).
%% @hidden
reparent(This,NewParent) -> wxWindow:reparent(This,NewParent).
%% @hidden
removeChild(This,Child) -> wxWindow:removeChild(This,Child).
%% @hidden
releaseMouse(This) -> wxWindow:releaseMouse(This).
%% @hidden
refreshRect(This,Rect, Options) -> wxWindow:refreshRect(This,Rect, Options).
%% @hidden
refreshRect(This,Rect) -> wxWindow:refreshRect(This,Rect).
%% @hidden
refresh(This, Options) -> wxWindow:refresh(This, Options).
%% @hidden
refresh(This) -> wxWindow:refresh(This).
%% @hidden
raise(This) -> wxWindow:raise(This).
%% @hidden
popupMenu(This,Menu,X,Y) -> wxWindow:popupMenu(This,Menu,X,Y).
%% @hidden
popupMenu(This,Menu, Options) -> wxWindow:popupMenu(This,Menu, Options).
%% @hidden
popupMenu(This,Menu) -> wxWindow:popupMenu(This,Menu).
%% @hidden
popEventHandler(This, Options) -> wxWindow:popEventHandler(This, Options).
%% @hidden
popEventHandler(This) -> wxWindow:popEventHandler(This).
%% @hidden
pageUp(This) -> wxWindow:pageUp(This).
%% @hidden
pageDown(This) -> wxWindow:pageDown(This).
%% @hidden
navigate(This, Options) -> wxWindow:navigate(This, Options).
%% @hidden
navigate(This) -> wxWindow:navigate(This).
%% @hidden
moveBeforeInTabOrder(This,Win) -> wxWindow:moveBeforeInTabOrder(This,Win).
%% @hidden
moveAfterInTabOrder(This,Win) -> wxWindow:moveAfterInTabOrder(This,Win).
%% @hidden
move(This,X,Y, Options) -> wxWindow:move(This,X,Y, Options).
%% @hidden
move(This,X,Y) -> wxWindow:move(This,X,Y).
%% @hidden
move(This,Pt) -> wxWindow:move(This,Pt).
%% @hidden
makeModal(This, Options) -> wxWindow:makeModal(This, Options).
%% @hidden
makeModal(This) -> wxWindow:makeModal(This).
%% @hidden
lower(This) -> wxWindow:lower(This).
%% @hidden
lineUp(This) -> wxWindow:lineUp(This).
%% @hidden
lineDown(This) -> wxWindow:lineDown(This).
%% @hidden
layout(This) -> wxWindow:layout(This).
%% @hidden
isTopLevel(This) -> wxWindow:isTopLevel(This).
%% @hidden
isShown(This) -> wxWindow:isShown(This).
%% @hidden
isRetained(This) -> wxWindow:isRetained(This).
%% @hidden
isExposed(This,X,Y,W,H) -> wxWindow:isExposed(This,X,Y,W,H).
%% @hidden
isExposed(This,X,Y) -> wxWindow:isExposed(This,X,Y).
%% @hidden
isExposed(This,Pt) -> wxWindow:isExposed(This,Pt).
%% @hidden
isEnabled(This) -> wxWindow:isEnabled(This).
%% @hidden
invalidateBestSize(This) -> wxWindow:invalidateBestSize(This).
%% @hidden
initDialog(This) -> wxWindow:initDialog(This).
%% @hidden
inheritAttributes(This) -> wxWindow:inheritAttributes(This).
%% @hidden
hide(This) -> wxWindow:hide(This).
%% @hidden
hasTransparentBackground(This) -> wxWindow:hasTransparentBackground(This).
%% @hidden
hasScrollbar(This,Orient) -> wxWindow:hasScrollbar(This,Orient).
%% @hidden
hasCapture(This) -> wxWindow:hasCapture(This).
%% @hidden
getWindowVariant(This) -> wxWindow:getWindowVariant(This).
%% @hidden
getWindowStyleFlag(This) -> wxWindow:getWindowStyleFlag(This).
%% @hidden
getVirtualSize(This) -> wxWindow:getVirtualSize(This).
%% @hidden
getUpdateRegion(This) -> wxWindow:getUpdateRegion(This).
%% @hidden
getToolTip(This) -> wxWindow:getToolTip(This).
%% @hidden
getTextExtent(This,String, Options) -> wxWindow:getTextExtent(This,String, Options).
%% @hidden
getTextExtent(This,String) -> wxWindow:getTextExtent(This,String).
%% @hidden
getSizer(This) -> wxWindow:getSizer(This).
%% @hidden
getSize(This) -> wxWindow:getSize(This).
%% @hidden
getScrollThumb(This,Orient) -> wxWindow:getScrollThumb(This,Orient).
%% @hidden
getScrollRange(This,Orient) -> wxWindow:getScrollRange(This,Orient).
%% @hidden
getScrollPos(This,Orient) -> wxWindow:getScrollPos(This,Orient).
%% @hidden
getScreenRect(This) -> wxWindow:getScreenRect(This).
%% @hidden
getScreenPosition(This) -> wxWindow:getScreenPosition(This).
%% @hidden
getRect(This) -> wxWindow:getRect(This).
%% @hidden
getPosition(This) -> wxWindow:getPosition(This).
%% @hidden
getParent(This) -> wxWindow:getParent(This).
%% @hidden
getName(This) -> wxWindow:getName(This).
%% @hidden
getMinSize(This) -> wxWindow:getMinSize(This).
%% @hidden
getMaxSize(This) -> wxWindow:getMaxSize(This).
%% @hidden
getLabel(This) -> wxWindow:getLabel(This).
%% @hidden
getId(This) -> wxWindow:getId(This).
%% @hidden
getHelpText(This) -> wxWindow:getHelpText(This).
%% @hidden
getHandle(This) -> wxWindow:getHandle(This).
%% @hidden
getGrandParent(This) -> wxWindow:getGrandParent(This).
%% @hidden
getForegroundColour(This) -> wxWindow:getForegroundColour(This).
%% @hidden
getFont(This) -> wxWindow:getFont(This).
%% @hidden
getExtraStyle(This) -> wxWindow:getExtraStyle(This).
%% @hidden
getEventHandler(This) -> wxWindow:getEventHandler(This).
%% @hidden
getDropTarget(This) -> wxWindow:getDropTarget(This).
%% @hidden
getCursor(This) -> wxWindow:getCursor(This).
%% @hidden
getContainingSizer(This) -> wxWindow:getContainingSizer(This).
%% @hidden
getClientSize(This) -> wxWindow:getClientSize(This).
%% @hidden
getChildren(This) -> wxWindow:getChildren(This).
%% @hidden
getCharWidth(This) -> wxWindow:getCharWidth(This).
%% @hidden
getCharHeight(This) -> wxWindow:getCharHeight(This).
%% @hidden
getCaret(This) -> wxWindow:getCaret(This).
%% @hidden
getBestSize(This) -> wxWindow:getBestSize(This).
%% @hidden
getBackgroundStyle(This) -> wxWindow:getBackgroundStyle(This).
%% @hidden
getBackgroundColour(This) -> wxWindow:getBackgroundColour(This).
%% @hidden
getAcceleratorTable(This) -> wxWindow:getAcceleratorTable(This).
%% @hidden
freeze(This) -> wxWindow:freeze(This).
%% @hidden
fitInside(This) -> wxWindow:fitInside(This).
%% @hidden
fit(This) -> wxWindow:fit(This).
%% @hidden
findWindow(This,Winid) -> wxWindow:findWindow(This,Winid).
%% @hidden
enable(This, Options) -> wxWindow:enable(This, Options).
%% @hidden
enable(This) -> wxWindow:enable(This).
%% @hidden
disable(This) -> wxWindow:disable(This).
%% @hidden
destroyChildren(This) -> wxWindow:destroyChildren(This).
%% @hidden
convertPixelsToDialog(This,Sz) -> wxWindow:convertPixelsToDialog(This,Sz).
%% @hidden
convertDialogToPixels(This,Sz) -> wxWindow:convertDialogToPixels(This,Sz).
%% @hidden
close(This, Options) -> wxWindow:close(This, Options).
%% @hidden
close(This) -> wxWindow:close(This).
%% @hidden
clientToScreen(This,X,Y) -> wxWindow:clientToScreen(This,X,Y).
%% @hidden
clientToScreen(This,Pt) -> wxWindow:clientToScreen(This,Pt).
%% @hidden
clearBackground(This) -> wxWindow:clearBackground(This).
%% @hidden
centreOnParent(This, Options) -> wxWindow:centreOnParent(This, Options).
%% @hidden
centreOnParent(This) -> wxWindow:centreOnParent(This).
%% @hidden
centre(This, Options) -> wxWindow:centre(This, Options).
%% @hidden
centre(This) -> wxWindow:centre(This).
%% @hidden
centerOnParent(This, Options) -> wxWindow:centerOnParent(This, Options).
%% @hidden
centerOnParent(This) -> wxWindow:centerOnParent(This).
%% @hidden
center(This, Options) -> wxWindow:center(This, Options).
%% @hidden
center(This) -> wxWindow:center(This).
%% @hidden
captureMouse(This) -> wxWindow:captureMouse(This).
%% @hidden
cacheBestSize(This,Size) -> wxWindow:cacheBestSize(This,Size).
%% From wxEvtHandler
%% @hidden
disconnect(This,EventType, Options) -> wxEvtHandler:disconnect(This,EventType, Options).
%% @hidden
disconnect(This,EventType) -> wxEvtHandler:disconnect(This,EventType).
%% @hidden
disconnect(This) -> wxEvtHandler:disconnect(This).
%% @hidden
connect(This,EventType, Options) -> wxEvtHandler:connect(This,EventType, Options).
%% @hidden
connect(This,EventType) -> wxEvtHandler:connect(This,EventType).
|