ronnie
2022-10-14 1504bb53e29d3d46222c0b3ea994fc494b48e153
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
N\¬Qc@sîdZdZddlZejdkr6ddlZnddlZeZejZddlTddl    Tddl
Z
dZ e ej ƒZe ejƒZejZejZejZy ejWnek
r×ee_nXy ejWnek
rÿee_nXe
jdƒZe
jdƒZd    „Zd
„Zd „Zy ejZWnek
rYnXd „Zy ejZWnek
rƒnXd fd„ƒYZda ea!d„Z"d„Z#dd„Z$da%dfd„ƒYZ&de&fd„ƒYZ'de&fd„ƒYZ(de&fd„ƒYZ)de&fd„ƒYZ*dd„Z+e,Z-e Z.d„Z/dfd „ƒYZ0d!fd"„ƒYZ1d#fd$„ƒYZ2d%fd&„ƒYZ3d'fd(„ƒYZ4d)e0e4fd*„ƒYZ5eed)dd+„Z6d,fd-„ƒYZ7d.fd/„ƒYZ8d0fd1„ƒYZ9d2e0fd3„ƒYZ:d4e:e7e8e9fd5„ƒYZ;d6e:e4fd7„ƒYZ<d8e;fd9„ƒYZ=d:„Z>d;„Z?d<„Z@d=„ZAed>„ZBd?e;e2e3fd@„ƒYZCdAe;fdB„ƒYZDdCe;e2fdD„ƒYZEdEe;fdF„ƒYZFdGe;fdH„ƒYZGdIe;e2e3fdJ„ƒYZHdKe;fdL„ƒYZIdMe;fdN„ƒYZJdOe;fdP„ƒYZKdQe;fdR„ƒYZLdSe;fdT„ƒYZMdUe;fdV„ƒYZNdWe;e2e3fdX„ƒYZOdYfdZ„ƒYZPd[eJfd\„ƒYZQd]fd^„ƒYZRd_eRfd`„ƒYZSdaeRfdb„ƒYZTdc„ZUdd„ZVdee;e2fdf„ƒYZWdge;fdh„ƒYZXdie;fdj„ƒYZYdke=fdl„ƒYZZdme=fdn„ƒYZ[do„Z\e]dpkrêe\ƒndS(qs2Wrapper functions for Tcl/Tk.
 
Tkinter provides classes which allow the display, positioning and
control of widgets. Toplevel widgets are Tk and Toplevel. Other
widgets are Frame, Label, Entry, Text, Canvas, Button, Radiobutton,
Checkbutton, Scale, Listbox, Scrollbar, OptionMenu, Spinbox
LabelFrame and PanedWindow.
 
Properties of the widgets are specified with keyword arguments.
Keyword arguments have the same name as the corresponding resource
under Tk.
 
Widgets are positioned with one of the geometry managers Place, Pack
or Grid. These managers can be called with methods place, pack, grid
available in every Widget.
 
Actions are bound to events by resources (e.g. keyword argument
command) or with the method bind.
 
Example (Hello, World):
import Tkinter
from Tkconstants import *
tk = Tkinter.Tk()
frame = Tkinter.Frame(tk, relief=RIDGE, borderwidth=2)
frame.pack(fill=BOTH,expand=1)
label = Tkinter.Label(frame, text="Hello, World")
label.pack(fill=X, expand=1)
button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
button.pack(side=BOTTOM)
tk.mainloop()
s$Revision: 81008 $iÿÿÿÿNtwin32(t*is([\\{}])s([\s])cCsdjtt|ƒƒS(sInternal function.t (tjointmapt
_stringify(tvalue((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt_joinAscCs    t|ttfƒrjt|ƒdkrWt|dƒ}|ddkrgd|}qgqdt|ƒ}n›t|tƒrˆt|ƒ}n t|ƒ}|s£d}nbt    j
|ƒrÙt    j d|ƒ}t j d|ƒ}n,|ddksøt j
|ƒrd|}n|S(sInternal function.iit{s{%s}s{}s\\\1t"( t
isinstancetlistttupletlenRRt
basestringtunicodetstrt    _magic_retsearchtsubt    _space_re(R((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyREs"      cCsbd}xU|D]M}t|ƒttfkr>|t|ƒ}q |dk    r ||f}q q W|S(sInternal function.(N(ttypet    TupleTypetListTypet_flattentNone(R trestitem((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR]s  cCs´t|ƒtkr|St|ƒttfkr2|Si}xqt|ƒD]c}y|j|ƒWqEttfk
r§}dG|GHx(|jƒD]\}}|||<qŠWqEXqEW|SdS(sInternal function.s_cnfmerge: fallback due to:N(    RtDictionaryTypetNoneTypet
StringTypeRtupdatetAttributeErrort    TypeErrortitems(tcnfstcnftctmsgtktv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    _cnfmergejs    tEventcBseZdZRS(sÊContainer for the properties of an event.
 
    Instances of this type are generated if one of the following events occurs:
 
    KeyPress, KeyRelease - for keyboard events
    ButtonPress, ButtonRelease, Motion, Enter, Leave, MouseWheel - for mouse events
    Visibility, Unmap, Map, Expose, FocusIn, FocusOut, Circulate,
    Colormap, Gravity, Reparent, Property, Destroy, Activate,
    Deactivate - for window events.
 
    If a callback function for one of these events is registered
    using bind, bind_all, bind_class, or tag_bind, the callback is
    called with an Event as first argument. It will have the
    following attributes (in braces are the event types for which
    the attribute is valid):
 
        serial - serial number of event
    num - mouse button pressed (ButtonPress, ButtonRelease)
    focus - whether the window has the focus (Enter, Leave)
    height - height of the exposed window (Configure, Expose)
    width - width of the exposed window (Configure, Expose)
    keycode - keycode of the pressed key (KeyPress, KeyRelease)
    state - state of the event as a number (ButtonPress, ButtonRelease,
                            Enter, KeyPress, KeyRelease,
                            Leave, Motion)
    state - state as a string (Visibility)
    time - when the event occurred
    x - x-position of the mouse
    y - y-position of the mouse
    x_root - x-position of the mouse on the screen
             (ButtonPress, ButtonRelease, KeyPress, KeyRelease, Motion)
    y_root - y-position of the mouse on the screen
             (ButtonPress, ButtonRelease, KeyPress, KeyRelease, Motion)
    char - pressed character (KeyPress, KeyRelease)
    send_event - see X/Windows documentation
    keysym - keysym of the event as a string (KeyPress, KeyRelease)
    keysym_num - keysym of the event as a number (KeyPress, KeyRelease)
    type - type of the event as a number
    widget - widget in which the event occurred
    delta - delta of wheel movement (MouseWheel)
    (t__name__t
__module__t__doc__(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR*~s)cCsdadabdS(s¨Inhibit setting of default root window.
 
    Call this function to inhibit that the first instance of
    Tk is used for windows without an explicit parent window.
    iN(t_support_default_rootRt _default_root(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt NoDefaultRoot­scCsdS(sInternal function.N((terr((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt_tkerror¹sicCs1yt|ƒ}Wntk
r#nXt|‚dS(sBInternal function. Calling it will raise the exception SystemExit.N(tintt
ValueErrort
SystemExit(tcode((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt_exit½s
 tVariablecBsteZdZdZd d d d„Zd„Zd„Zd„Zd„Z    d„Z
e
Z d„Z d    „Z d
„ZRS( sºClass to define value holders for e.g. buttons.
 
    Subclasses StringVar, IntVar, DoubleVar, BooleanVar are specializations
    that constrain the type of the value returned from get().tcCs¡|st}n||_|j|_|r6||_ndttƒ|_td7a|dk    ro|j|ƒn.|jj    dd|jƒs|j|j
ƒndS(s.Construct a variable
 
        MASTER can be given as master widget.
        VALUE is an optional value (defaults to "")
        NAME is an optional Tcl name (defaults to PY_VARnum).
 
        If NAME matches an existing variable and VALUE is omitted
        then the existing value is retained.
        tPY_VARitinfotexistsN( R/t_masterttkt_tkt_nametreprt_varnumRtsettcallt_default(tselftmasterRtname((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt__init__Ìs           
 cCs|jj|jƒdS(sUnset the variable in Tcl.N(R?tglobalunsetvarR@(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt__del__äscCs|jS(s'Return the name of the variable in Tcl.(R@(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt__str__çscCs|jj|j|ƒS(sSet the variable to VALUE.(R?t globalsetvarR@(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRCêscCs|jj|jƒS(sReturn value of variable.(R?t globalgetvarR@(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytgetíscCs5|jj|ƒ}|jjdd|j||ƒ|S(s
Define a trace callback for the variable.
 
        MODE is one of "r", "w", "u" for read, write, undefine.
        CALLBACK must be a function which is called when
        the variable is read, written or undefined.
 
        Return the name of the callback.
        ttracetvariable(R=t    _registerR?RDR@(RFtmodetcallbacktcbname((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyttrace_variableðs    cCs3|jjdd|j||ƒ|jj|ƒdS(sÅDelete the trace callback for a variable.
 
        MODE is one of "r", "w", "u" for read, write, undefine.
        CBNAME is the name of the callback returned from trace_variable or trace.
        RPtvdeleteN(R?RDR@R=t deletecommand(RFRSRU((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt trace_vdeleteýscCs4t|jj|jj|jjdd|jƒƒƒS(s&Return all trace callback information.RPtvinfo(RR?tsplitt    splitlistRDR@(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt trace_vinfoscCs(|jj|jjko'|j|jkS(s•Comparison for equality (==).
 
        Note: if the Variable's master matters to behavior
        also compare self._master == other._master
        (t    __class__R+R@(RFtother((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt__eq__    sN(R+R,R-RERRIRKRLRCRORVRPRYR]R`(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR8Æs                             t    StringVarcBs/eZdZdZdddd„Zd„ZRS(s#Value holder for strings variables.R9cCstj||||ƒdS(s6Construct a string variable.
 
        MASTER can be given as master widget.
        VALUE is an optional value (defaults to "")
        NAME is an optional Tcl name (defaults to PY_VARnum).
 
        If NAME matches an existing variable and VALUE is omitted
        then the existing value is retained.
        N(R8RI(RFRGRRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIs
cCs2|jj|jƒ}t|tƒr(|St|ƒS(s#Return value of variable as string.(R?RNR@R
RR(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRO!sN(R+R,R-RERRIRO(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRas tIntVarcBs8eZdZdZdddd„Zd„Zd„ZRS(s#Value holder for integer variables.icCstj||||ƒdS(s7Construct an integer variable.
 
        MASTER can be given as master widget.
        VALUE is an optional value (defaults to 0)
        NAME is an optional Tcl name (defaults to PY_VARnum).
 
        If NAME matches an existing variable and VALUE is omitted
        then the existing value is retained.
        N(R8RI(RFRGRRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI+s
cCs.t|tƒrt|ƒ}ntj||ƒS(s;Set the variable to value, converting booleans to integers.(R
tboolR3R8RC(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRC7scCst|jj|jƒƒS(s/Return the value of the variable as an integer.(tgetintR?RNR@(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRO=sN(R+R,R-RERRIRCRO(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRb(s
    t    DoubleVarcBs/eZdZdZdddd„Zd„ZRS(s!Value holder for float variables.gcCstj||||ƒdS(s6Construct a float variable.
 
        MASTER can be given as master widget.
        VALUE is an optional value (defaults to 0.0)
        NAME is an optional Tcl name (defaults to PY_VARnum).
 
        If NAME matches an existing variable and VALUE is omitted
        then the existing value is retained.
        N(R8RI(RFRGRRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIDs
cCst|jj|jƒƒS(s,Return the value of the variable as a float.(t    getdoubleR?RNR@(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyROPsN(R+R,R-RERRIRO(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyReAs t
BooleanVarcBs/eZdZeZdddd„Zd„ZRS(s#Value holder for boolean variables.cCstj||||ƒdS(s:Construct a boolean variable.
 
        MASTER can be given as master widget.
        VALUE is an optional value (defaults to False)
        NAME is an optional Tcl name (defaults to PY_VARnum).
 
        If NAME matches an existing variable and VALUE is omitted
        then the existing value is retained.
        N(R8RI(RFRGRRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIWs
cCs|jj|jj|jƒƒS(s+Return the value of the variable as a bool.(R?t
getbooleanRNR@(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyROcsN(R+R,R-tFalseRERRIRO(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRgTs cCstjj|ƒdS(sRun the main loop of Tcl.N(R/R>tmainloop(tn((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRjgscCstjj|ƒS(s1Convert true and false to integer values 1 and 0.(R/R>Rh(ts((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRhostMisccBs)eZdZd©Zd„Zd„Zd©d„Zd„Zd„Z    d„Z
dd„Z e Z d©d    „Z d©d
„Zdd d „Zdd „ZeZeZd„Zd„ZeZd„Zd„Zd„Zd„Zd„Zd„Zd„Zd©d„Zd„Z d„Z!dd„Z"d„Z#d„Z$d„Z%d„Z&d „Z'd!„Z(d"„Z)d#„Z*d©d$„Z+d%„Z,d&„Z-d©d'„Z.d(„Z/d)„Z0d*„Z1d+„Z2d,„Z3d-„Z4d©d.„Z5d©d/„Z6e6Z7d©d0„Z8dd1„Z9dd2„Z:d3„Z;d4„Z<d5„Z=d6„Z>dd7„Z?d8„Z@d9„ZAd:„ZBd;„ZCd<„ZDd=„ZEdd>„ZFd?„ZGd@„ZHdA„ZIdB„ZJddC„ZKdD„ZLdE„ZMdF„ZNdG„ZOdH„ZPdI„ZQdJ„ZRdK„ZSdL„ZTdM„ZUdN„ZVdO„ZWdP„ZXdQ„ZYdR„ZZdS„Z[dT„Z\dU„Z]dV„Z^dW„Z_dX„Z`dY„ZaddZ„Zbd[„Zcd\„Zdd]„Zed^„Zfd_„Zgd`„Zhda„Zidb„Zjdc„Zkdd„Zlde„Zmd©df„Zndgdh„Zod©d©d©di„Zpd©dj„Zqd©d©d©dk„Zrdl„Zsd©d©d©dm„Ztdn„Zuddo„Zvdp„Zwdq„Zxdr„Zyds„Zzdt„Z{e|du„ƒZ}d©dv„Z~dw„ZeZ€d©dgdx„ZeZ‚dy„ZƒdªZ„dj…e„ƒZ†dŽ„Z‡d„Zˆd„Z‰d©d‘„ZŠeŠZ‹d’„ZŒeŒZd“„ZŽd”„Zd•„Zd–„Z‘d—gZ’e’d˜„Z“e“Z”d™„Z•e•Z–dš„Z—d©d©d©d©d›„Z˜e˜Z™dœ„Zšid„Z›e›Zœdž„Ze’dŸ„Zžid „ZŸeŸZ d¡„Z¡e¡Z¢d©d©d¢„Z£d£„Z¤d¤„Z¥d¥„Z¦d©d¦„Z§d§„Z¨d¨„Z©RS(«sRInternal class.
 
    Base class which defines methods common for interior widgets.cCsC|jdk    r?x!|jD]}|jj|ƒqWd|_ndS(skInternal function.
 
        Delete all Tcl commands created for
        this widget in the Tcl interpreter.N(t _tclCommandsRR>RX(RFRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytdestroy{scCs<|jj|ƒy|jj|ƒWntk
r7nXdS(sDInternal function.
 
        Delete the Tcl command provided in NAME.N(R>RXRntremoveR4(RFRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRX…s
 cCs"|jj|jjdd|ƒƒS(sßSet Tcl internal variable, whether the look and feel
        should adhere to Motif.
 
        A parameter of 1 means adhere to Motif (e.g. no color
        change if mouse passes over slider).
        Returns the set value.RCttk_strictMotif(R>RhRD(RFtboolean((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRqscCs|jjdƒdS(sDChange the color scheme to light brown as used in Tk 3.6 and before.t    tk_bisqueN(R>RD(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRs˜scOs.|jjdt|ƒt|jƒƒƒdS(s Set a new color scheme for all widget elements.
 
        A single color as argument will cause that all colors of Tk
        widget elements are derived from this.
        Alternatively several keyword parameters and its associated
        colors can be given. The following keywords are valid:
        activeBackground, foreground, selectColor,
        activeForeground, highlightBackground, selectBackground,
        background, highlightColor, selectForeground,
        disabledForeground, insertBackground, troughColor.t tk_setPaletteN(s tk_setPalette(R>RDRR"(RFtargstkw((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRt›s    cGsdS(s)Do not use. Needed in Tk 3.6 and earlier.N((RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
tk_menuBar¨sR:cCs|jjdd|ƒdS(sƒWait until the variable is modified.
 
        A parameter of type IntVar, StringVar, DoubleVar or
        BooleanVar must be given.ttkwaitRQN(R>RD(RFRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wait_variable«scCs2|dkr|}n|jjdd|jƒdS(sQWait until a WIDGET is destroyed.
 
        If no parameter is given self is used.RxtwindowN(RR>RDt_w(RFRz((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wait_window²s     cCs2|dkr|}n|jjdd|jƒdS(sxWait until the visibility of a WIDGET changes
        (e.g. it appears).
 
        If no parameter is given self is used.Rxt
visibilityN(RR>RDR{(RFRz((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwait_visibility¹s     t1cCs|jj||ƒdS(sSet Tcl variable NAME to VALUE.N(R>tsetvar(RFRHR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR€ÁscCs|jj|ƒS(s"Return value of Tcl variable NAME.(R>tgetvar(RFRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÄscCs|jj|ƒS(sPReturn a boolean value for Tcl boolean values true and false given as parameter.(R>Rh(RFRl((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRhÉscCs|jjd|jƒdS(sÍDirect input focus to this widget.
 
        If the application currently does not have the focus
        this widget will get the focus if the application gets
        the focus through the window manager.tfocusN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    focus_setÌscCs|jjdd|jƒdS(stDirect input focus to this widget even if the
        application does not have the focus. Use with
        caution!R‚s-forceN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt focus_forceÔscCs6|jjdƒ}|dks%| r)dS|j|ƒS(sÔReturn the widget which has currently the focus in the
        application.
 
        Use focus_displayof to allow working with several
        displays. Return None if application does not have
        the focus.R‚tnoneN(R>RDRt _nametowidget(RFRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    focus_getÙscCs?|jjdd|jƒ}|dks.| r2dS|j|ƒS(s¥Return the widget which has currently the focus on the
        display where this widget is located.
 
        Return None if the application does not have the focus.R‚s
-displayofR…N(R>RDR{RR†(RFRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytfocus_displayofãscCs?|jjdd|jƒ}|dks.| r2dS|j|ƒS(syReturn the widget which would have the focus if top level
        for this widget gets the focus from the window manager.R‚s-lastforR…N(R>RDR{RR†(RFRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt focus_lastforëscCs|jjdƒdS(sXThe widget under mouse will get automatically focus. Can not
        be disabled easily.ttk_focusFollowsMouseN(R>RD(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRŠñscCs/|jjd|jƒ}|s"dS|j|ƒS(snReturn the next widget in the focus order which follows
        widget which has currently the focus.
 
        The focus order first goes to the next child, then to
        the children of the child recursively and then to the
        next sibling which is higher in the stacking order.  A
        widget is omitted if it has the takefocus resource set
        to 0.t tk_focusNextN(R>RDR{RR†(RFRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR‹õs    cCs/|jjd|jƒ}|s"dS|j|ƒS(sHReturn previous widget in the focus order. See tk_focusNext for details.t tk_focusPrevN(R>RDR{RR†(RFRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRŒscs]ˆsˆjjd|ƒn=‡‡‡‡fd†}ˆj|ƒ‰ˆjjd|ˆƒSdS(sCall function once after given time.
 
        MS specifies the time in milliseconds. FUNC gives the
        function which shall be called. Additional parameters
        are given as parameters to the function call.  Return
        identifier to cancel scheduling with after_cancel.taftercs;zˆˆŒWdyˆjˆƒWntk
r5nXXdS(N(RXtTclError((RutfuncRHRF(sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytcallits  N(R>RDRR(RFtmsRRuR((RuRRHRFsV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRs
cGs|jd||ŒS(s–Call FUNC once if the Tcl main loop has no event to
        process.
 
        Return an identifier to cancel the scheduling with
        after_cancel.tidle(R(RFRRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
after_idlescCsmy?|jjdd|ƒ}|jj|ƒd}|j|ƒWntk
rRnX|jjdd|ƒdS(sCancel scheduling of function identified with ID.
 
        Identifier returned by after or after_idle must be
        given as first parameter.RR;itcancelN(R>RDR\RXRŽ(RFtidtdatatscript((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt after_cancel"s icCs!|jjd|j|ƒƒdS(sRing a display's bell.tbellN(sbell(R>RDt
_displayof(RFt    displayof((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR™0scKsd|krd|jdkrdy+d|d<|jjd|j|ƒƒSWqdtk
r`|d=qdXn|jjd|j|ƒƒS(sïRetrieve data from the clipboard on window's display.
 
        The window keyword defaults to the root window of the Tkinter
        application.
 
        The type keyword specifies the form in which the data is
        to be returned and should be an atom name such as STRING
        or FILE_NAME.  Type defaults to STRING, except on X11, where the default
        is to try UTF8_STRING and fall back to STRING.
 
        This command is equivalent to:
 
        selection_get(CLIPBOARD)
        Rtx11t UTF8_STRINGt    clipboardRO(Ržsget(Ržsget(t_windowingsystemR>RDt_optionsRŽ(RFRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt clipboard_get5s
! cKs=d|kr|j|d<n|jjd|j|ƒƒdS(s‘Clear the data in the Tk clipboard.
 
        A widget specified for the optional displayof keyword
        argument specifies the target display.R›RžtclearN(s    clipboardsclear(R{R>RDR (RFRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytclipboard_clearLs cKsGd|kr|j|d<n|jjd|j|ƒd|fƒdS(sÊAppend STRING to the Tk clipboard.
 
        A widget specified at the optional displayof keyword
        argument specifies the target display. The clipboard
        can be retrieved with selection_get.R›Ržtappends--N(s    clipboardsappend(R{R>RDR (RFtstringRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytclipboard_appendSs     cCs2|jjdd|jƒ}|s%dS|j|ƒS(sOReturn widget which has currently the grab in this application
        or None.tgrabtcurrentN(R>RDR{RR†(RFRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt grab_current]scCs|jjdd|jƒdS(s.Release grab for this widget if currently set.R§treleaseN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt grab_releasecscCs|jjdd|jƒdS(swSet grab for this widget.
 
        A grab directs all events to this and descendant
        widgets in the application.R§RCN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytgrab_setfscCs |jjddd|jƒdS(sÊSet global grab for this widget.
 
        A global grab directs all events to this and
        descendant widgets on the display. Use with caution -
        other applications do not get events anymore.R§RCs-globalN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytgrab_set_globallscCs4|jjdd|jƒ}|dkr0d}n|S(sYReturn None, "local" or "global" if this widget has
        no, a local or a global grab.R§tstatusR…N(R>RDR{R(RFR®((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt grab_statusss    cCs |jjdd|||ƒdS(s©Set a VALUE (second parameter) for an option
        PATTERN (first parameter).
 
        An optional third parameter gives the numeric priority
        (defaults to 80).toptiontaddN(R>RD(RFtpatternRtpriority((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
option_addyscCs|jjddƒdS(sPClear the option database.
 
        It will be reloaded if option_add is called.R°R¢N(R>RD(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt option_clear€scCs|jjdd|j||ƒS(s‡Return the value for an option NAME for this widget
        with CLASSNAME.
 
        Values with higher priority override lower values.R°RO(R>RDR{(RFRHt    className((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
option_get…scCs|jjdd||ƒdS(svRead file FILENAME into the option database.
 
        An optional second parameter gives the numeric
        priority.R°treadfileN(R>RD(RFtfileNameR³((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytoption_readfile‹scKs=d|kr|j|d<n|jjd|j|ƒƒdS(sClear the current X selection.R›t    selectionR¢N(s    selectionsclear(R{R>RDR (RFRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytselection_clear‘s cKsd|kr|j|d<nd|kr€|jdkr€y+d|d<|jjd|j|ƒƒSWq€tk
r||d=q€Xn|jjd|j|ƒƒS(    s•Return the contents of the current X selection.
 
        A keyword parameter selection specifies the name of
        the selection and defaults to PRIMARY.  A keyword
        parameter displayof specifies a widget on the display
        to use. A keyword parameter type specifies the form of data to be
        fetched, defaulting to STRING except on X11, where UTF8_STRING is tried
        before STRING.R›RRœRR»RO(s    selectionsget(s    selectionsget(R{RŸR>RDR RŽ(RFRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt selection_get•s     
! cKs=|j|ƒ}|jjd|j|ƒ|j|fƒdS(sSpecify a function COMMAND to call if the X
        selection owned by this widget is queried by another
        application.
 
        This function must return the contents of the
        selection. The function will be called with the
        arguments OFFSET and LENGTH which allows the chunking
        of very long selections. The following keyword
        parameters can be provided:
        selection - name of the selection (default PRIMARY),
        type - type of the selection (e.g. STRING, FILE_NAME).R»thandleN(s    selectionR¾(RRR>RDR R{(RFtcommandRvRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytselection_handle¦s     cKs+|jjd|j|ƒ|jfƒdS(s‚Become owner of X selection.
 
        A keyword parameter selection specifies the name of
        the selection (default PRIMARY).R»townN(s    selectionRÁ(R>RDR R{(RFRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt selection_ownµs    cKsRd|kr|j|d<n|jjd|j|ƒƒ}|sEdS|j|ƒS(sÚReturn owner of X selection.
 
        The following keyword parameter can
        be provided:
        selection - name of the selection (default PRIMARY),
        type - type of the selection (e.g. STRING, FILE_NAME).R›R»RÁ(s    selectionsownN(R{R>RDR RR†(RFRvRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytselection_own_get¼s  cGs|jjd||f|ƒS(sDSend Tcl command CMD to different interpreter INTERP to be executed.tsend(R>RD(RFtinterptcmdRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÄÇscCs|jjd|j|ƒdS(s(Lower this widget in the stacking order.tlowerN(R>RDR{(RFt    belowThis((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÇÊscCs|jjd|j|ƒdS(s(Raise this widget in the stacking order.traiseN(R>RDR{(RFt    aboveThis((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyttkraiseÍscCs|jjdd|j|ƒS(sUseless. Not implemented in Tk.R>t
colormodel(R>RDR{(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÌÑscCs0d|j|ƒ|f}t|jj|ƒƒS(s*Return integer which represents atom NAME.twinfotatom(RÍRÎ(RšRdR>RD(RFRHR›Ru((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
winfo_atomÔscCs*d|j|ƒ|f}|jj|ƒS(s'Return name of atom with identifier ID.RÍtatomname(swinfoRÐ(RšR>RD(RFR•R›Ru((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_atomnameØscCst|jjdd|jƒƒS(s7Return number of cells in the colormap for this widget.RÍtcells(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_cellsÝscCsjg}x]|jj|jjdd|jƒƒD]4}y|j|j|ƒƒWq.tk
raq.Xq.W|S(s?Return a list of all widgets which are children of this widget.RÍtchildren(R>R\RDR{R¤R†tKeyError(RFtresulttchild((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_childrenás " cCs|jjdd|jƒS(s(Return window class name of this widget.RÍtclass(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_classîscCs%|jj|jjdd|jƒƒS(s?Return true if at the last color request the colormap was full.RÍt colormapfull(R>RhRDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_colormapfullñs    cCsFd|j|ƒ||f}|jj|ƒ}|s9dS|j|ƒS(s@Return the widget which is at the root coordinates ROOTX, ROOTY.RÍt
containing(swinfoRÝN(RšR>RDRR†(RFtrootXtrootYR›RuRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_containingõs
cCst|jjdd|jƒƒS(s$Return the number of bits per pixel.RÍtdepth(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_depthüscCst|jjdd|jƒƒS(s"Return true if this widget exists.RÍR<(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_existsÿscCs"t|jjdd|j|ƒƒS(sWReturn the number of pixels for the given distance NUMBER
        (e.g. "3c") as float.RÍtfpixels(RfR>RDR{(RFtnumber((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_fpixelss cCs|jjdd|jƒS(sFReturn geometry string for this widget in the form "widthxheight+X+Y".RÍtgeometry(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_geometryscCst|jjdd|jƒƒS(sReturn height of this widget.RÍtheight(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_height scCs%|jj|jjdd|jƒƒS(s%Return identifier ID for this widget.RÍR•(R>RdRDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_ids    cCs/d|j|ƒ}|jj|jj|ƒƒS(s9Return the name of all Tcl interpreters for this display.RÍtinterps(swinfoRì(RšR>R\RD(RFR›Ru((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_interpsscCst|jjdd|jƒƒS(s%Return true if this widget is mapped.RÍtismapped(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_ismappedscCs|jjdd|jƒS(s0Return the window mananger name for this widget.RÍtmanager(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_managerscCs|jjdd|jƒS(sReturn the name of this widget.RÍRH(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
winfo_namescCs|jjdd|jƒS(s-Return the name of the parent of this widget.RÍtparent(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_parent!scCs*d|j|ƒ|f}|jj|ƒS(s.Return the pathname of the widget given by ID.RÍtpathname(swinfoRõ(RšR>RD(RFR•R›Ru((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_pathname$scCs"t|jjdd|j|ƒƒS(s'Rounded integer value of winfo_fpixels.RÍtpixels(RdR>RDR{(RFRå((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_pixels)scCst|jjdd|jƒƒS(s:Return the x coordinate of the pointer on the root window.RÍtpointerx(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_pointerx-scCs"|j|jjdd|jƒƒS(sHReturn a tuple of x and y coordinates of the pointer on the root window.RÍt    pointerxy(t_getintsR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_pointerxy1scCst|jjdd|jƒƒS(s:Return the y coordinate of the pointer on the root window.RÍtpointery(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_pointery5scCst|jjdd|jƒƒS(s'Return requested height of this widget.RÍt    reqheight(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_reqheight9scCst|jjdd|jƒƒS(s&Return requested width of this widget.RÍtreqwidth(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_reqwidth=scCs%|j|jjdd|j|ƒƒS(sUReturn tuple of decimal values for red, green, blue for
        COLOR in this widget.RÍtrgb(RüR>RDR{(RFtcolor((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    winfo_rgbAscCst|jjdd|jƒƒS(sSReturn x coordinate of upper left corner of this widget on the
        root window.RÍtrootx(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_rootxFscCst|jjdd|jƒƒS(sSReturn y coordinate of upper left corner of this widget on the
        root window.RÍtrooty(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_rootyKscCs|jjdd|jƒS(s&Return the screen name of this widget.RÍtscreen(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_screenPscCst|jjdd|jƒƒS(sTReturn the number of the cells in the colormap of the screen
        of this widget.RÍt screencells(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_screencellsSscCst|jjdd|jƒƒS(s\Return the number of bits per pixel of the root window of the
        screen of this widget.RÍt screendepth(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_screendepthXscCst|jjdd|jƒƒS(sXReturn the number of pixels of the height of the screen of this widget
        in pixel.RÍt screenheight(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_screenheight]scCst|jjdd|jƒƒS(sUReturn the number of pixels of the height of the screen of
        this widget in mm.RÍtscreenmmheight(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_screenmmheightbscCst|jjdd|jƒƒS(sTReturn the number of pixels of the width of the screen of
        this widget in mm.RÍt screenmmwidth(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_screenmmwidthgscCs|jjdd|jƒS(sŸReturn one of the strings directcolor, grayscale, pseudocolor,
        staticcolor, staticgray, or truecolor for the default
        colormodel of this screen.RÍt screenvisual(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_screenvisuallscCst|jjdd|jƒƒS(sWReturn the number of pixels of the width of the screen of
        this widget in pixel.RÍt screenwidth(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_screenwidthqscCs|jjdd|jƒS(sxReturn information of the X-Server of the screen of this widget in
        the form "XmajorRminor vendor vendorVersion".RÍtserver(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_servervscCs"|j|jjdd|jƒƒS(s*Return the toplevel widget of this widget.RÍttoplevel(R†R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_toplevelzscCst|jjdd|jƒƒS(sBReturn true if the widget and all its higher ancestors are mapped.RÍtviewable(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_viewable~scCs|jjdd|jƒS(s—Return one of the strings directcolor, grayscale, pseudocolor,
        staticcolor, staticgray, or truecolor for the
        colormodel of this widget.RÍtvisual(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_visual‚scCs|jjdd|jƒS(s7Return the X identifier for the visual for this widget.RÍtvisualid(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_visualid‡scCsp|jj|jjdd|j|r*dp-dƒƒ}t|ƒtkr`|jj|ƒg}nt|j|ƒS(sÞReturn a list of all visuals available for the screen
        of this widget.
 
        Each item in the list consists of a visual name (see winfo_visual), a
        depth and if INCLUDEIDS=1 is given also the X identifier.RÍtvisualsavailablet
includeidsN(    R>R[RDR{RRRRt_Misc__winfo_parseitem(RFR&R–((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_visualsavailableŠs     cCs"|d tt|j|dƒƒS(sInternal function.i(R Rt_Misc__winfo_getint(RFtt((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt__winfo_parseitem–scCs t|dƒS(sInternal function.i(R3(RFtx((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt__winfo_getint™scCst|jjdd|jƒƒS(s§Return the height of the virtual root window associated with this
        widget in pixels. If there is no virtual root window return the
        height of the screen.RÍt vrootheight(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_vrootheightœscCst|jjdd|jƒƒS(s¤Return the width of the virtual root window associated with this
        widget in pixel. If there is no virtual root window return the
        width of the screen.RÍt
vrootwidth(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_vrootwidth¢scCst|jjdd|jƒƒS(siReturn the x offset of the virtual root relative to the root
        window of the screen of this widget.RÍtvrootx(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_vrootx¨scCst|jjdd|jƒƒS(siReturn the y offset of the virtual root relative to the root
        window of the screen of this widget.RÍtvrooty(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_vrooty­scCst|jjdd|jƒƒS(s Return the width of this widget.RÍtwidth(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt winfo_width²scCst|jjdd|jƒƒS(sVReturn the x coordinate of the upper left corner of this widget
        in the parent.RÍR,(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_x¶scCst|jjdd|jƒƒS(sVReturn the y coordinate of the upper left corner of this widget
        in the parent.RÍty(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwinfo_y»scCs|jjdƒdS(sEEnter event loop until all pending events have been processed by Tcl.RN(R>RD(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÀscCs|jjddƒdS(sžEnter event loop until all idle callbacks have been called. This
        will update the display of windows but not process events caused by
        the user.Rt    idletasksN(R>RD(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytupdate_idletasksÃscCsK|dkr.|jj|jjd|jƒƒS|jjd|j|ƒdS(s,Set or get the list of bindtags for this widget.
 
        With no argument return the list of all bindtags associated with
        this widget. With a list of strings as argument the bindtags are
        set to this list. The bindtags determine in which order events are
        processed (see bind).tbindtagsN(RR>R\RDR{(RFttagList((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR=Ès     icCsÊt|ƒtkr/|jj|||fƒn—|r|j||j|ƒ}d|r\dp_d||jf}|jj|||fƒ|S|rª|jj||fƒS|jj|jj|ƒƒSdS(sInternal function.s"%sif {"[%s %s]" == "break"} break
t+R9N(RRR>RDRRt _substitutet_subst_format_strR\(RFtwhattsequenceRR±t needcleanuptfuncidRÆ((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt_bindÔs    cCs|jd|jf|||ƒS(sOBind to this widget at event SEQUENCE a call to function FUNC.
 
        SEQUENCE is a string of concatenated event
        patterns. An event pattern is of the form
        <MODIFIER-MODIFIER-TYPE-DETAIL> where MODIFIER is one
        of Control, Mod2, M2, Shift, Mod3, M3, Lock, Mod4, M4,
        Button1, B1, Mod5, M5 Button2, B2, Meta, M, Button3,
        B3, Alt, Button4, B4, Double, Button5, B5 Triple,
        Mod1, M1. TYPE is one of Activate, Enter, Map,
        ButtonPress, Button, Expose, Motion, ButtonRelease
        FocusIn, MouseWheel, Circulate, FocusOut, Property,
        Colormap, Gravity Reparent, Configure, KeyPress, Key,
        Unmap, Deactivate, KeyRelease Visibility, Destroy,
        Leave and DETAIL is the button number for ButtonPress,
        ButtonRelease and DETAIL is the Keysym for KeyPress and
        KeyRelease. Examples are
        <Control-Button-1> for pressing Control and mouse button 1 or
        <Alt-A> for pressing A and the Alt key (KeyPress can be omitted).
        An event pattern can also be a virtual event of the form
        <<AString>> where AString can be arbitrary. This
        event can be generated by event_generate.
        If events are concatenated they must appear shortly
        after each other.
 
        FUNC will be called if the event sequence occurs with an
        instance of Event as argument. If the return value of FUNC is
        "break" no further bound function is invoked.
 
        An additional boolean parameter ADD specifies whether FUNC will
        be called additionally to the other bound function or whether
        it will replace the previous function.
 
        Bind will return an identifier to allow deletion of the bound function with
        unbind without memory leak.
 
        If FUNC or SEQUENCE is omitted the bound function or list
        of bound events are returned.tbind(RFR{(RFRCRR±((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRGås'cCs6|jjd|j|dƒ|r2|j|ƒndS(sWUnbind for this widget for event SEQUENCE  the
        function identified with FUNCID.RGR9N(R>RDR{RX(RFRCRE((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytunbind scCs|jd|||dƒS(sBind to all widgets at an event SEQUENCE a call to function FUNC.
        An additional boolean parameter ADD specifies whether FUNC will
        be called additionally to the other bound function or whether
        it will replace the previous function. See bind for the return value.RGtalli(sbindsall(RF(RFRCRR±((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytbind_allscCs|jjdd|dƒdS(s8Unbind for all widgets for event SEQUENCE all functions.RGRIR9N(R>RD(RFRC((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
unbind_allscCs|jd|f|||dƒS(s=Bind to widgets with bindtag CLASSNAME at event
        SEQUENCE a call of function FUNC. An additional
        boolean parameter ADD specifies whether FUNC will be
        called additionally to the other bound function or
        whether it will replace the previous function. See bind for
        the return value.RGi(RF(RFR¶RCRR±((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
bind_classs    cCs|jjd||dƒdS(sYUnbind for a all widgets with bindtag CLASSNAME for event SEQUENCE
        all functions.RGR9N(R>RD(RFR¶RC((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt unbind_class&scCs|jj|ƒdS(sCall the mainloop of Tk.N(R>Rj(RFRk((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRj*scCs|jjƒdS(s8Quit the Tcl interpreter. All widgets will be destroyed.N(R>tquit(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRN-scCs)|r%ttt|jj|ƒƒƒSdS(sInternal function.N(R RRdR>R\(RFR¥((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRü0scCs)|r%ttt|jj|ƒƒƒSdS(sInternal function.N(R RRfR>R\(RFR¥((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt _getdoubles4scCs|r|jj|ƒSdS(sInternal function.N(R>Rh(RFR¥((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt _getboolean8scCs-|rd|fS|dkr)d|jfSdS(sInternal function.s
-displayofN((RR{(RFR›((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRš<s
 
  cCsLy|jƒjSWn4tk
rG|jjddƒ}|jƒ_|SXdS(sInternal function.R>twindowingsystemN(t_roott_windowingsystem_cachedR R>RD(RFtws((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRŸCs
 "cCs<|rt||fƒ}n t|ƒ}d}x|jƒD]ú\}}|dk    r:|ddkro|d }nt|dƒr|j|ƒ}nt|ttfƒrg}xo|D]U}t|tt    fƒsÑPq²t|t    ƒrô|j
d|ƒq²|j
t |ƒƒq²Wdj |ƒ}n|d||f}q:q:W|S(    sInternal function.iÿÿÿÿt_t__call__s%dRt-(N( R)R"RthasattrRRR
R R RR3R¤RR(RFR$RvRR'R(tnvR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR Ls*    cCsjt|ƒjdƒ}|}|ds>|jƒ}|d}nx%|D]}|sUPn|j|}qEW|S(sPReturn the Tkinter instance of a widget identified by
        its Tcl name NAME.t.ii(RR[RRRÔ(RFRHtwRk((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt nametowidgetfs
   cCs¸t|||ƒj}tt|ƒƒ}y |j}Wntk
rGnXy||j}Wntk
rlnX|jj||ƒ|r´|j    dkr¡g|_    n|j    j |ƒn|S(sÏReturn a newly created Tcl function. If this
        function is called, the Python function FUNC will
        be executed. An optional function SUBST can
        be given which will be executed before FUNC.N( t CallWrapperRVRAR•tim_funcR R+R>t createcommandRnRR¤(RFRtsubstRDtfRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRRws     cCs#|}x|jr|j}q    W|S(sInternal function.(RG(RFR[((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRRs s%#s%bs%fs%hs%ks%ss%ts%ws%xs%ys%As%Es%Ks%Ns%Ws%Ts%Xs%Ys%DRcGs    t|ƒt|jƒkr|S|jj}t}d„}|\}}}}}    }
} } } }}}}}}}}}}tƒ}||ƒ|_||ƒ|_y||ƒ|_Wnt    k
rÆnX||ƒ|_
||    ƒ|_ ||
ƒ|_ || ƒ|_ || ƒ|_|| ƒ|_||ƒ|_||_y||ƒ|_Wnt    k
r_nX||_||ƒ|_||_y|j|ƒ|_Wntk
r³||_nX||ƒ|_||ƒ|_y||ƒ|_Wntk
rd|_nX|fS(sInternal function.cSs'yt|ƒSWntk
r"|SXdS(s?Tk changed behavior in 8.4.2, returning "??" rather more often.N(R3R4(Rl((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt getint_eventœs i(R t _subst_formatR>RhR3R*tserialtnumR‚RŽRétkeycodetstatettimeR6R,R9tchart
send_eventtkeysymt
keysym_numRR†twidgetRÕtx_rootty_roottdeltaR4(RFRuRhRdRbtnsigntbRathR'RlR*R[R,R9tAtEtKtNtWtTtXtYtDte((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR@–sN     ?                      cCsLddl}|j|j|j}}}|jƒ}|j|||ƒdS(sInternal function.iÿÿÿÿN(tsystexc_typet    exc_valuet exc_tracebackRRtreport_callback_exception(RFR~texctvalttbtroot((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt_report_exceptionÏs  cCs0|rt||fƒ}n|r0t|ƒ}n|dkr£i}xZ|jj|jjt|j|fƒƒƒD]+}|ddf|d||dd<qpW|St|ƒtkr|jj|jjt|j|d|fƒƒƒ}|ddf|dS|jjt|j|fƒ|j    |ƒƒdS(sInternal function.iiRWN(
R)RR>R[RDRR{RRR (RFRÆR$RvR,((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
_configureÕs  ()    +cKs|jd||ƒS(sÌConfigure resources of a widget.
 
        The values for resources are specified as keyword
        arguments. To get an overview about
        the allowed keyword arguments call the method keys.
        t    configure(Rˆ(RFR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR‰çscCs|jj|jdd|ƒS(s4Return the resource value for a KEY given as string.tcgetRW(R>RDR{(RFtkey((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRŠðscCs|ji||6ƒdS(N(R‰(RFR‹R((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt __setitem__ôscCstdƒ‚dS(Ns)Tkinter objects don't support 'in' tests.(R!(RFR‹((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt __contains__öscCs.td„|jj|jj|jdƒƒƒS(s3Return a list of all resource names of this widget.cSs |ddS(Nii((R,((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt<lambda>úsR‰(RR>R[RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytkeysøs    cCs|jS(s+Return the window path name of this widget.(R{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRLüst_noarg_cCsQ|tjkr1|j|jjdd|jƒƒS|jjdd|j|ƒdS(sSet or get the status for propagation of geometry information.
 
        A boolean argument specifies whether the geometry information
        of the slaves will determine the size of this widget. If no argument
        is given the current setting will be returned.
        tpackt    propagateN(RmRRPR>RDR{(RFtflag((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytpack_propagatescCs1t|j|jj|jjdd|jƒƒƒS(sHReturn a list of all slaves of this widget
        in its packing order.R‘tslaves(RR†R>R\RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt pack_slavess        cCs1t|j|jj|jjdd|jƒƒƒS(sHReturn a list of all slaves of this widget
        in its packing order.tplaceR•(RR†R>R\RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt place_slavess            cCs‡dd|jf}|dk    r=|dk    r=|||f}n|dk    rh|dk    rh|||f}n|j|jj|Œƒp†dS(sÓReturn a tuple of integer coordinates for the bounding
        box of this widget controlled by the geometry manager grid.
 
        If COLUMN, ROW is given the bounding box applies from
        the cell with row and column 0 to the specified
        cell. If COL2 and ROW2 are given the bounding box
        starts at that cell.
 
        The returned integers specify the offset of the upper left
        corner in the master widget and the width and height.
        tgridtbboxN(R{RRüR>RD(RFtcolumntrowtcol2trow2Ru((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    grid_bboxs c Cs•t|ƒtkr_| r_|ddkr6|d }n|d dkrSd|}n|f}n|j||ƒ}|s0|jjd||j|ƒ}|jj|ƒ}i}x|tdt|ƒdƒD]b}    ||    d}
||    d} | s÷d    } n'd| krt
| ƒ} n t | ƒ} | ||
<qÆW|S|jjd||j|f|ƒ}t|ƒdkr‘|sqd    Sd|kr‡t
|ƒSt |ƒSd    S(
sInternal function.iÿÿÿÿRUiRWR™iiRZN( RRR R>RDR{R\trangeR RRfRd( RFR¿tindexR$RvtoptionsRtwordstdicttiR‹R((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt_grid_configure2s>              
 
cKs|jd|||ƒS(sãConfigure column INDEX of a grid.
 
        Valid resources are minsize (minimum size of the column),
        weight (how much does additional space propagate to this column)
        and pad (how much space to let additionally).tcolumnconfigure(R¦(RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytgrid_columnconfigureTscCs.|j|jjdd|j||ƒƒp-dS(s”Return a tuple of column and row which identify the cell
        at which the pixel at position X and Y inside the master
        widget is located.R™tlocationN(RüR>RDR{R(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt grid_location\s    cCsQ|tjkr1|j|jjdd|jƒƒS|jjdd|j|ƒdS(sSet or get the status for propagation of geometry information.
 
        A boolean argument specifies whether the geometry information
        of the slaves will determine the size of this widget. If no argument
        is given, the current setting will be returned.
        R™R’N(RmRRPR>RDR{(RFR“((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytgrid_propagatecscKs|jd|||ƒS(sÚConfigure row INDEX of a grid.
 
        Valid resources are minsize (minimum size of the row),
        weight (how much does additional space propagate to this row)
        and pad (how much space to let additionally).t rowconfigure(R¦(RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytgrid_rowconfigureoscCs(|j|jjdd|jƒƒp'dS(s<Return a tuple of the number of column and rows in the grid.R™tsizeN(RüR>RDR{R(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    grid_sizewscCs|d}|dk    r%|d|f}n|dk    rD|d|f}nt|j|jj|jjdd|jf|ƒƒƒS(sHReturn a list of all slaves of this widget
        in its packing order.s-rows-columnR™R•(N(RRR†R>R\RDR{(RFRœR›Ru((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt grid_slaves|s      cGs'dd|f|}|jj|ƒdS(s›Bind a virtual event VIRTUAL (of the form <<Name>>)
        to an event SEQUENCE such that the virtual event is triggered
        whenever SEQUENCE occurs.teventR±N(R>RD(RFtvirtualt    sequencesRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    event_add‹scGs'dd|f|}|jj|ƒdS(s-Unbind a virtual event VIRTUAL from SEQUENCE.R±tdeleteN(R>RD(RFR²R³Ru((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt event_delete’scKs`dd|j|f}x4|jƒD]&\}}|d|t|ƒf}q"W|jj|ƒdS(s‚Generate an event SEQUENCE. Additional
        keyword arguments specify parameter of the event
        (e.g. x, y, rootx, rooty).R±tgenerates-%sN(R{R"RR>RD(RFRCRvRuR'R(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytevent_generate—scCs"|jj|jjdd|ƒƒS(suReturn a list of all virtual events or the information
        about the SEQUENCE bound to the virtual event VIRTUAL.R±R;(R>R\RD(RFR²((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
event_info s    cCs|jjddƒS(s*Return a list of all existing image names.timagetnames(R>RD(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt image_names¨scCs|jjddƒS(s?Return a list of all available image types (e.g. phote bitmap).Rºttypes(R>RD(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt image_types¬sN(s%#s%bs%fs%hs%ks%ss%ts%ws%xs%ys%As%Es%Ks%Ns%Ws%Ts%Xs%Ys%D(ªR+R,R-RRnRoRXRqRsRtRwRytwaitvarR|R~R€RR3RdtfloatRfRhRƒR‚R„R‡RˆR‰RŠR‹RŒRR“R˜R™R¡R£R¦R©R«R¬R­R¯R´RµR·RºR¼R½RÀRÂRÃRÄRÇRËtliftRÌRÏRÑRÓRØRÚRÜRàRâRãRæRèRêRëRíRïRñRòRôRöRøRúRýRÿRRRRR
R RRRRRRRRRR R"R$R(R'R)R/R1R3R5R7R8R:RR<R=RFRGRHRJRKRLRMRjRNRüRORPRštpropertyRŸR R\R†RRtregisterRRRcRRAR@R‡RˆR‰tconfigRŠt __getitem__RŒRRRLRR”R’R–R•R˜RŸRšR¦R¨R§RªR«R­R¬R¯R®R°R´R¶R¸R¹R¼R¾(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRmtsJ    
   
                                   
                                         
                                                                                                                                                                                                                                                          (     
                                         9                                              "                               R]cBs eZdZd„Zd„ZRS(swInternal class. Stores function to call when some user
    defined Tcl function is called e.g. after an event occurred.cCs||_||_||_dS(s(Store FUNC, SUBST and WIDGET as members.N(RR`Rm(RFRR`Rm((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI´s        cGsby,|jr|j|Œ}n|j|ŒSWn/tk
rJ}t|‚n|jjƒnXdS(s3Apply first function SUBST to arguments, than FUNC.N(R`RR5RmR‡(RFRuR&((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRV¹s     (R+R,R-RIRV(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR]±s    tXViewcBs)eZdZd„Zd„Zd„ZRS(sXMix-in class for querying and changing the horizontal position
    of a widget's window.cGs2|jj|jd|Œ}|s.|j|ƒSdS(s5Query and change the horizontal position of the view.txviewN(R>RDR{RO(RFRuR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÇÉscCs |jj|jdd|ƒdS(ssAdjusts the view in the window so that FRACTION of the
        total width of the canvas is off-screen to the left.RÇtmovetoN(R>RDR{(RFtfraction((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt xview_movetoÏscCs#|jj|jdd||ƒdS(s\Shift the x-view according to NUMBER which is measured in "units"
        or "pages" (WHAT).RÇtscrollN(R>RDR{(RFRåRB((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt xview_scrollÔs(R+R,R-RÇRÊRÌ(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÆÅs        tYViewcBs)eZdZd„Zd„Zd„ZRS(sVMix-in class for querying and changing the vertical position
    of a widget's window.cGs2|jj|jd|Œ}|s.|j|ƒSdS(s3Query and change the vertical position of the view.tyviewN(R>RDR{RO(RFRuR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÎÞscCs |jj|jdd|ƒdS(ssAdjusts the view in the window so that FRACTION of the
        total height of the canvas is off-screen to the top.RÎRÈN(R>RDR{(RFRÉ((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt yview_movetoäscCs#|jj|jdd||ƒdS(s\Shift the y-view according to NUMBER which is measured in
        "units" or "pages" (WHAT).RÎRËN(R>RDR{(RFRåRB((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt yview_scrollés(R+R,R-RÎRÏRÐ(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÍÚs        tWmcBseZdZddddd„ZeZd„ZeZdd„ZeZ    d„Z
e
Z dd„Z e Z d„ZeZdd„ZeZd„ZeZdd    „ZeZddddd
„ZeZdd „ZeZddd „ZeZd „ZeZdd„ZeZdd„Z e Z!ddd„Z"e"Z#dd„Z$e$Z%ddd„Z&e&Z'ddd„Z(e(Z)dd„Z*e*Z+dd„Z,e,Z-ddd„Z.e.Z/ddd„Z0e0Z1dd„Z2e2Z3dd„Z4e4Z5dd„Z6e6Z7dd„Z8e8Z9d„Z:e:Z;RS(sAProvides functions for the communication with the window manager.c    Cs.|j|jjdd|j||||ƒƒS(sÕInstruct the window manager to set the aspect ratio (width/height)
        of this widget to be between MINNUMER/MINDENOM and MAXNUMER/MAXDENOM. Return a tuple
        of the actual values if no argument is given.twmtaspect(RüR>RDR{(RFtminNumertminDenomtmaxNumertmaxDenom((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    wm_aspectòscGs&dd|jf|}|jj|ƒS(sÅThis subcommand returns or sets platform specific attributes
 
        The first form returns a list of the platform specific flags and
        their values. The second form returns the value for the specific
        option. The third form sets one or more of the values. The values
        are as follows:
 
        On Windows, -disabled gets or sets whether the window is in a
        disabled state. -toolwindow gets or sets the style of the window
        to toolwindow (as defined in the MSDN). -topmost gets or sets
        whether this is a topmost window (displays above all other
        windows).
 
        On Macintosh, XXXXX
 
        On Unix, there are currently no special attribute values.
        RÒt
attributes(R{R>RD(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_attributesþscCs|jjdd|j|ƒS(sVStore NAME in WM_CLIENT_MACHINE property of this widget. Return
        current value.RÒtclient(R>RDR{(RFRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    wm_clientscGsPt|ƒdkr|f}ndd|jf|}t|j|jj|ƒƒS(sÛStore list of window names (WLIST) into WM_COLORMAPWINDOWS property
        of this widget. This list contains windows whose colormaps differ from their
        parents. Return current list of widgets if WLIST is empty.iRÒtcolormapwindows(R R{RR†R>RD(RFtwlistRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwm_colormapwindowss cCs|jjdd|j|ƒS(sStore VALUE in WM_COMMAND property. It is the command
        which shall be used to invoke the application. Return current
        command if VALUE is None.RÒR¿(R>RDR{(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
wm_command"scCs|jjdd|jƒS(sˆDeiconify this widget. If it was never mapped it will not be mapped.
        On Windows it will raise this widget and give it the focus.RÒt    deiconify(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_deiconify(scCs|jjdd|j|ƒS(sÑSet focus model to MODEL. "active" means that this widget will claim
        the focus itself, "passive" means that the window manager shall give
        the focus. Return current focus model if MODEL is None.RÒt
focusmodel(R>RDR{(RFtmodel((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_focusmodel-scCs|jjdd|jƒS(sAReturn identifier for decorative frame of this widget if present.RÒtframe(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwm_frame3scCs|jjdd|j|ƒS(siSet geometry to NEWGEOMETRY of the form =widthxheight+x+y. Return
        current value if None is given.RÒRç(R>RDR{(RFt newGeometry((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_geometry7sc    Cs.|j|jjdd|j||||ƒƒS(sInstruct the window manager that this widget shall only be
        resized on grid boundaries. WIDTHINC and HEIGHTINC are the width and
        height of a grid unit in pixels. BASEWIDTH and BASEHEIGHT are the
        number of grid units requested in Tk_GeometryRequest.RÒR™(RüR>RDR{(RFt    baseWidtht
baseHeighttwidthInct    heightInc((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwm_grid<s cCs|jjdd|j|ƒS(s~Set the group leader widgets for related widgets to PATHNAME. Return
        the group leader of this widget if None is given.RÒtgroup(R>RDR{(RFtpathName((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwm_groupGscCsE|r%|jjdd|jd|ƒS|jjdd|j|ƒSdS(sŸSet bitmap for the iconified widget to BITMAP. Return
        the bitmap if None is given.
 
        Under Windows, the DEFAULT parameter can be used to set the icon
        for the widget and any descendents that don't have an icon set
        explicitly.  DEFAULT can be the relative path to a .ico file
        (example: root.iconbitmap(default='myicon.ico') ).  See Tk
        documentation for more information.RÒt
iconbitmaps-defaultN(R>RDR{(RFtbitmaptdefault((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_iconbitmapLs    cCs|jjdd|jƒS(sDisplay widget as icon.RÒticonify(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
wm_iconifyZscCs|jjdd|j|ƒS(sVSet mask for the icon bitmap of this widget. Return the
        mask if None is given.RÒticonmask(R>RDR{(RFRó((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_iconmask^scCs|jjdd|j|ƒS(sSSet the name of the icon for this widget. Return the name if
        None is given.RÒticonname(R>RDR{(RFtnewName((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_iconnamecscCs(|j|jjdd|j||ƒƒS(sSet the position of the icon of this widget to X and Y. Return
        a tuple of the current values of X and X if None is given.RÒt iconposition(RüR>RDR{(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwm_iconpositionhscCs|jjdd|j|ƒS(sgSet widget PATHNAME to be displayed instead of icon. Return the current
        value if None is given.RÒt
iconwindow(R>RDR{(RFRð((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_iconwindownscCs(|j|jjdd|j||ƒƒS(s¢Set max WIDTH and HEIGHT for this widget. If the window is gridded
        the values are given in grid units. Return the current values if None
        is given.RÒtmaxsize(RüR>RDR{(RFR6Ré((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
wm_maxsizesscCs(|j|jjdd|j||ƒƒS(s¢Set min WIDTH and HEIGHT for this widget. If the window is gridded
        the values are given in grid units. Return the current values if None
        is given.RÒtminsize(RüR>RDR{(RFR6Ré((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
wm_minsizezscCs%|j|jjdd|j|ƒƒS(sˆInstruct the window manager to ignore this widget
        if BOOLEAN is given with 1. Return the current value if None
        is given.RÒtoverrideredirect(RPR>RDR{(RFRr((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwm_overrideredirectscCs|jjdd|j|ƒS(s¦Instruct the window manager that the position of this widget shall
        be defined by the user if WHO is "user", and by its own policy if WHO is
        "program".RÒt positionfrom(R>RDR{(RFtwho((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwm_positionfromˆscCsFt|dƒr!|j|ƒ}n|}|jjdd|j||ƒS(s´Bind function FUNC to command NAME for this widget.
        Return the function bound to NAME if None is given. NAME could be
        e.g. "WM_SAVE_YOURSELF" or "WM_DELETE_WINDOW".RVRÒtprotocol(RXRRR>RDR{(RFRHRR¿((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_protocolŽs
    cCs|jjdd|j||ƒS(syInstruct the window manager whether this width can be resized
        in WIDTH or HEIGHT. Both values are boolean values.RÒt    resizable(R>RDR{(RFR6Ré((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_resizable™scCs|jjdd|j|ƒS(s¢Instruct the window manager that the size of this widget shall
        be defined by the user if WHO is "user", and by its own policy if WHO is
        "program".RÒtsizefrom(R>RDR{(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_sizefromžscCs|jjdd|j|ƒS(s†Query or set the state of this widget as one of normal, icon,
        iconic (see wm_iconwindow), withdrawn, or zoomed (Windows only).RÒRg(R>RDR{(RFtnewstate((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwm_state¤scCs|jjdd|j|ƒS(sSet the title of this widget.RÒttitle(R>RDR{(RFR¥((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwm_title©scCs|jjdd|j|ƒS(s_Instruct the window manager that this widget is transient
        with regard to widget MASTER.RÒt    transient(R>RDR{(RFRG((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_transient­scCs|jjdd|jƒS(sˆWithdraw this widget from the screen such that it is unmapped
        and forgotten by the window manager. Re-draw it with wm_deiconify.RÒtwithdraw(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt wm_withdraw²sN(<R+R,R-RRØRÓRÚRÙRÜRÛRßRÝRàR¿RâRáRåRãRçRæRéRçRîR™RñRïRõRòR÷RöRùRøRüRúRþRýRRÿRRRRRRR    RR R
R R RRRRgRRRRRR(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÑïsv                               
        tTkcBseeZdZdZd d dddd d„Zd„Zd„Zd„Zd    „Z    d
„Z
d „Z RS( szToplevel widget of Tk which represents mostly the main window
    of an application. It has an associated Tcl interpreter.RZRiic    Csød|_i|_d|_d|_|dkr•ddl}ddl}|jj|j    dƒ}|jj
|ƒ\}}    |    dkr•||    }q•nd}
t j ||||
t |||ƒ|_|rÕ|jƒn|jjsô|j||ƒndS(s@Return a new Toplevel widget on screen SCREENNAME. A new Tcl interpreter will
        be created. BASENAME will be used for the identification of the profile file (see
        readprofile).
        It is constructed from sys.argv[0] without extensions if None is given. CLASSNAME
        is the name of the widget class.iiÿÿÿÿNs.pys.pycs.pyo(s.pys.pycs.pyo(RRGRÔt    _tkloadedR>R~tostpathtbasenametargvtsplitextt_tkintertcreatet wantobjectst_loadtktflagstignore_environmentt readprofile( RFt
screenNametbaseNameR¶tuseTktsynctuseR~Rtextt interactive((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI½s                   '  cCs'|js#|jjƒ|jƒndS(N(RR>tloadtkR"(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR-×s     cCs3d|_|jjdƒ}|tjkrCtdtj|f‚nt|jjdƒƒ}|tjkrƒtdtj|f‚ntdkr¥tdttƒ‚n|j    dkrÀg|_    n|jj dt ƒ|jj d    t ƒ|j    jdƒ|j    jd    ƒtrt r|an|jd
|jƒdS( Nit
tk_versions4tk.h version (%s) doesn't match libtk.a version (%s)t tcl_versions6tcl.h version (%s) doesn't match libtcl.a version (%s)g@s)Tk 4.0 or higher is required; found Tk %sttkerrortexittWM_DELETE_WINDOW(RR>RRt
TK_VERSIONt RuntimeErrorRt TCL_VERSIONt    TkVersionRnRR_R2R7R¤R.R/R
Ro(RFR.R/((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR"Ûs0           cCsfx!|jjƒD]}|jƒqW|jjd|jƒtj|ƒtrbt|krbdandS(shDestroy this and all descendants widgets. This will
        end the application of this Tcl interpreter.RoN(
RÔtvaluesRoR>RDR{RmR.R/R(RFR%((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRoús  c
BsEddl}d|jkr+|jd}n    |j}|jj|d|ƒ}|jj|d|ƒ}|jj|d|ƒ}|jj|d|ƒ}i|d6}    d|    U|jj|ƒrÕ|jjd|ƒn|jj|ƒr÷e||    ƒn|jj|ƒr|jjd|ƒn|jj|ƒrAe||    ƒndS(    sÃInternal function. It reads BASENAME.tcl and CLASSNAME.tcl into
        the Tcl Interpreter and calls execfile on BASENAME.py and CLASSNAME.py if
        such a file exists in the home directory.iÿÿÿÿNtHOMEs.%s.tcls.%s.pyRFsfrom Tkinter import *tsource(    RtenvirontcurdirRRtisfileR>RDtexecfile(
RFR'R¶Rthomet    class_tcltclass_pytbase_tcltbase_pytdir((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR%s$      cCsZddl}ddl}|jjdƒ||_||_||_|j|||ƒdS(s6Internal function. It reports exception on sys.stderr.iÿÿÿÿNsException in Tkinter callback
(t    tracebackR~tstderrtwritet    last_typet
last_valuetlast_tracebacktprint_exception(RFRƒR„R…RDR~((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR‚s             cCst|j|ƒS(s3Delegate attribute access to the interpreter object(tgetattrR>(RFtattr((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt __getattr__ sN( R+R,R-R{RRIR-R"RoR%R‚RM(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¹s                            cCst||||ƒS(N(R(R&R'R¶R(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytTcl3stPackcBs`eZdZid„ZeZZZd„ZeZd„Z    e    Z
e j Z Z e jZZRS(sQGeometry manager Pack.
 
    Base class to use the methods pack_* in every widget.cKs0|jjdd|jf|j||ƒƒdS(s(Pack a widget in the parent widget. Use as options:
        after=widget - pack it after you have packed widget
        anchor=NSEW (or subset) - position widget according to
                                  given direction
        before=widget - pack it before you will pack widget
        expand=bool - expand widget if parent size grows
        fill=NONE or X or Y or BOTH - fill widget if widget grows
        in=master - use master to contain this widget
        in_=master - see 'in' option description
        ipadx=amount - add internal padding in x direction
        ipady=amount - add internal padding in y direction
        padx=amount - add padding in x direction
        pady=amount - add padding in y direction
        side=TOP or BOTTOM or LEFT or RIGHT -  where to add this widget.
        R‘R‰N(R>RDR{R (RFR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytpack_configure:s    cCs|jjdd|jƒdS(s:Unmap this widget and do not use it for the packing order.R‘tforgetN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt pack_forgetNscCsœ|jj|jjdd|jƒƒ}i}xhtdt|ƒdƒD]N}||d}||d}|d dkrŠ|j|ƒ}n|||<qFW|S(sEReturn information about the packing options
        for this widget.R‘R;iiiRZ(R>R\RDR{R R R†(RFR£R¤R¥R‹R((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    pack_infoRs    (R+R,R-RPR‘R‰RÄRRRQRSR;RmR”R’R–R•(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRO6s           tPlacecBsSeZdZid„ZeZZZd„ZeZd„Z    e    Z
e j Z Z RS(sSGeometry manager Place.
 
    Base class to use the methods place_* in every widget.cKs0|jjdd|jf|j||ƒƒdS(s Place a widget in the parent widget. Use as options:
        in=master - master relative to which the widget is placed
        in_=master - see 'in' option description
        x=amount - locate anchor of this widget at position x of master
        y=amount - locate anchor of this widget at position y of master
        relx=amount - locate anchor of this widget between 0.0 and 1.0
                      relative to width of master (1.0 is right edge)
        rely=amount - locate anchor of this widget between 0.0 and 1.0
                      relative to height of master (1.0 is bottom edge)
        anchor=NSEW (or subset) - position anchor according to given direction
        width=amount - width of this widget in pixel
        height=amount - height of this widget in pixel
        relwidth=amount - width of this widget between 0.0 and 1.0
                          relative to width of master (1.0 is the same width
                          as the master)
        relheight=amount - height of this widget between 0.0 and 1.0
                           relative to height of master (1.0 is the same
                           height as the master)
        bordermode="inside" or "outside" - whether to take border width of
                                           master widget into account
        R—R‰N(R>RDR{R (RFR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytplace_configuregs    cCs|jjdd|jƒdS(sUnmap this widget.R—RQN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt place_forgetscCsœ|jj|jjdd|jƒƒ}i}xhtdt|ƒdƒD]N}||d}||d}|d dkrŠ|j|ƒ}n|||<qFW|S(sEReturn information about the placing options
        for this widget.R—R;iiiRZ(R>R\RDR{R R R†(RFR£R¤R¥R‹R((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
place_info…s    (R+R,R-RUR—R‰RÄRVRQRWR;RmR˜R•(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRTcs          tGridcBsªeZdZid„ZeZZZejZ    Zej
Z Z
d„Z e Z d„Zd„ZeZejZZejZZejZZejZZejZZRS(sQGeometry manager Grid.
 
    Base class to use the methods grid_* in every widget.cKs0|jjdd|jf|j||ƒƒdS(sPosition a widget in the parent widget in a grid. Use as options:
        column=number - use cell identified with given column (starting with 0)
        columnspan=number - this widget will span several columns
        in=master - use master to contain this widget
        in_=master - see 'in' option description
        ipadx=amount - add internal padding in x direction
        ipady=amount - add internal padding in y direction
        padx=amount - add padding in x direction
        pady=amount - add padding in y direction
        row=number - use cell identified with given row (starting with 0)
        rowspan=number - this widget will span several rows
        sticky=NSEW - if cell is larger on which sides will this
                      widget stick to the cell boundary
        R™R‰N(R>RDR{R (RFR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytgrid_configurešs    cCs|jjdd|jƒdS(sUnmap this widget.R™RQN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt grid_forget¯scCs|jjdd|jƒdS(s0Unmap this widget but remember the grid options.R™RpN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt grid_remove³scCsœ|jj|jjdd|jƒƒ}i}xhtdt|ƒdƒD]N}||d}||d}|d dkrŠ|j|ƒ}n|||<qFW|S(sSReturn information about the options
        for positioning this widget in a grid.R™R;iiiRZ(R>R\RDR{R R R†(RFR£R¤R¥R‹R((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    grid_info¶s    (R+R,R-RYR™R‰RÄRmRŸRšR¨R§RZRQR[R\R;RªR©R«R’R­R¬R¯R®R°R•(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRX•s                    t
BaseWidgetcBs>eZdZd„Ziidd„Zd„Zdd„ZRS(sInternal class.cCs tr*|s*tstƒant}q*n||_|j|_d}d|kre|d}|d=n|s€tt|ƒƒ}n||_|j    dkr¨d||_    n|j    d||_    i|_
|j|jj
krô|jj
|jj ƒn||jj
|j<dS(s6Internal function. Sets up information about children.RHRZN( R.R/RRGR>RRAR•R@R{RÔRo(RFRGR$RH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt_setupÌs*        
 
        c    Cs÷|rt||fƒ}n||_tj|||ƒ|jdkrRg|_ng}xG|jƒD]9}t|ƒtkre|j    |||fƒ||=qeqeW|j
j ||j f||j |ƒƒx$|D]\}}|j||ƒqÓWdS(sdConstruct a widget with the parent widget MASTER, a name WIDGETNAME
        and appropriate options.N(R)t
widgetNameR]R^RnRRRt    ClassTypeR¤R>RDR{R R‰(    RFRGR_R$RvtextratclassesR'R(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIås         !cCssx!|jjƒD]}|jƒqW|jjd|jƒ|j|jjkrb|jj|j=ntj|ƒdS(s)Destroy this and all descendants widgets.RoN(    RÔR7RoR>RDR{R@RGRm(RFR%((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRo÷s cCs|jj|j|f|ƒS(N(R>RDR{(RFRHRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt_doþs(((R+R,R-R^RIRoRc(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR]Ês
        tWidgetcBseZdZRS(sxInternal class.
 
    Base class for a widget which can be positioned with the geometry managers
    Pack, Place or Grid.(R+R,R-(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRdstToplevelcBseZdZdid„ZRS(s"Toplevel widget, e.g. for dialogs.c    Ks|rt||fƒ}nd }xxdddddgD]a}||kr7||}|ddkrtd|d }n
d|}|||f}||=q7q7Wtj||d    |i|ƒ|jƒ}|j|jƒƒ|j|jƒƒ|jd
|jƒd S( s%Construct a toplevel widget with the parent MASTER.
 
        Valid resource names: background, bd, bg, borderwidth, class,
        colormap, container, cursor, height, highlightbackground,
        highlightcolor, highlightthickness, menu, relief, screen, takefocus,
        use, visual, width.R tclass_RÙR!tcolormapiÿÿÿÿRURWRR2N((R)R]RIRRRúRR
Ro(    RFRGR$RvRatwmkeyR„toptR†((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI s"  
 
 N(R+R,R-RRI(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRe    stButtoncBs\eZdZd    id„Zd„Zd„Zd„Zd„Zd„Z    d„Z
d„Z RS(
sButton widget.cKstj||d||ƒdS(sUConstruct a button widget with the parent MASTER.
 
        STANDARD OPTIONS
 
            activebackground, activeforeground, anchor,
            background, bitmap, borderwidth, cursor,
            disabledforeground, font, foreground
            highlightbackground, highlightcolor,
            highlightthickness, image, justify,
            padx, pady, relief, repeatdelay,
            repeatinterval, takefocus, text,
            textvariable, underline, wraplength
 
        WIDGET-SPECIFIC OPTIONS
 
            command, compound, default, height,
            overrelief, state, width
        tbuttonN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI'scGs|jjd|jƒdS(Nt tkButtonEnter(R>RDR{(RFtdummy((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRl<scGs|jjd|jƒdS(Nt tkButtonLeave(R>RDR{(RFRm((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRn?scGs|jjd|jƒdS(Nt tkButtonDown(R>RDR{(RFRm((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRoBscGs|jjd|jƒdS(Nt
tkButtonUp(R>RDR{(RFRm((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRpEscGs|jjd|jƒdS(NttkButtonInvoke(R>RDR{(RFRm((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRqHscCs|jj|jdƒdS(s_Flash the button.
 
        This is accomplished by redisplaying
        the button several times, alternating between active and
        normal colors. At the end of the flash the button is left
        in the same normal/active state as when the command was
        invoked. This command is ignored if the button's state is
        disabled.
        tflashN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRrKs
cCs|jj|jdƒS(sInvoke the command associated with the button.
 
        The return value is the return value from the command,
        or an empty string if there is no command associated with
        the button. This command is ignored if the button's state
        is disabled.
        tinvoke(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRsWsN( R+R,R-RRIRlRnRoRpRqRrRs(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRj%s                         cCsdS(Ntend((((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytAtEndcscGs2d}x%|D]}|r |d|}q q W|S(NtinsertR((RuRlta((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytAtInsertes
 cCsdS(Ns    sel.first((((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
AtSelFirstjscCsdS(Nssel.last((((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    AtSelLastlscCs)|dkrd|fSd||fSdS(Ns@%rs@%r,%r(R(R,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytAtns  tCanvascBsIeZdZd:id„Zd„Zd„Zd„Zd„Zd:d:d„Z    d„Z
d„Z d    „Z d
„Z d:d „Zd:d:d:d „Zd:d „Zd:d„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Z d„Z!d„Z"d „Z#d:d:d!„Z$d"„Z%d#„Z&d$„Z'd%„Z(d&„Z)d'„Z*d(„Z+d)„Z,d*„Z-d:d+„Z.e.Z/d,„Z0e0Z1d-„Z2id.„Z3d/„Z4e4Z5Z6d0„Z7d1„Z8d2d3„Z9d4„Z:d5„Z;d6„Z<d7„Z=d8„Z>d9„Z?RS(;s?Canvas widget to display graphical elements like lines or text.cKstj||d||ƒdS(sConstruct a canvas widget with the parent MASTER.
 
        Valid resource names: background, bd, bg, borderwidth, closeenough,
        confine, cursor, height, highlightbackground, highlightcolor,
        highlightthickness, insertbackground, insertborderwidth,
        insertofftime, insertontime, insertwidth, offset, relief,
        scrollregion, selectbackground, selectborderwidth, selectforeground,
        state, takefocus, width, xscrollcommand, xscrollincrement,
        yscrollcommand, yscrollincrement.tcanvasN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIvs
cGs!|jj|jdf|ƒdS(sInternal function.taddtagN(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR~scCs|j|d|ƒdS(s*Add tag NEWTAG to all items above TAGORID.taboveN(R~(RFtnewtagttagOrId((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt addtag_above„scCs|j|dƒdS(sAdd tag NEWTAG to all items.RIN(R~(RFR€((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
addtag_all‡scCs|j|d|ƒdS(s*Add tag NEWTAG to all items below TAGORID.tbelowN(R~(RFR€R((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt addtag_belowŠscCs |j|d||||ƒdS(s÷Add tag NEWTAG to item which is closest to pixel at X, Y.
        If several match take the top-most.
        All items closer than HALO are considered overlapping (all are
        closests). If START is specified the next below this tag is taken.tclosestN(R~(RFR€R,R9thalotstart((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytaddtag_closestscCs |j|d||||ƒdS(sLAdd tag NEWTAG to all items in the rectangle defined
        by X1,Y1,X2,Y2.tenclosedN(R~(RFR€tx1ty1tx2ty2((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytaddtag_enclosed“scCs |j|d||||ƒdS(sWAdd tag NEWTAG to all items which overlap the rectangle
        defined by X1,Y1,X2,Y2.t overlappingN(R~(RFR€R‹RŒRRŽ((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytaddtag_overlapping—scCs|j|d|ƒdS(s)Add tag NEWTAG to all items with TAGORID.twithtagN(R~(RFR€R((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytaddtag_withtag›scGs,|j|jj|jdf|ƒƒp+dS(s|Return a tuple of X1,Y1,X2,Y2 coordinates for a rectangle
        which encloses all items with tags specified as arguments.RšN(RüR>RDR{R(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRšžscCs9|jj|jd||dƒ|r5|j|ƒndS(sbUnbind for all items with TAGORID for event SEQUENCE  the
        function identified with FUNCID.RGR9N(R>RDR{RX(RFRRCRE((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
tag_unbind£scCs"|j|jd|f|||ƒS(s&Bind to all items with TAGORID at event SEQUENCE a call to function FUNC.
 
        An additional boolean parameter ADD specifies whether FUNC will be
        called additionally to the other bound function or whether it will
        replace the previous function. See bind for the return value.RG(RFR{(RFRRCRR±((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyttag_bind©scCs"t|jj|jd||ƒƒS(srReturn the canvas x coordinate of pixel position SCREENX rounded
        to nearest multiple of GRIDSPACING units.tcanvasx(RfR>RDR{(RFtscreenxt gridspacing((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR–±s cCs"t|jj|jd||ƒƒS(srReturn the canvas y coordinate of pixel position SCREENY rounded
        to nearest multiple of GRIDSPACING units.tcanvasy(RfR>RDR{(RFtscreenyR˜((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR™¶s cGs2tt|jj|jj|jdf|ƒƒƒS(s8Return a list of coordinates for the item given in ARGS.tcoords(RRfR>R\RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR›»s    c    Csst|ƒ}|d}t|ƒttfkr;|d }ni}t|jj|jd|||j||ƒŒƒS(sInternal function.iÿÿÿÿR (    RRRRRdR>RDR{R (RFtitemTypeRuRvR$((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt_createÁs 
   cOs|jd||ƒS(s6Create arc shaped region with coordinates x1,y1,x2,y2.tarc(R(RFRuRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
create_arcÌscOs|jd||ƒS(s%Create bitmap with coordinates x1,y1.Ró(R(RFRuRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt create_bitmapÏscOs|jd||ƒS(s)Create image item with coordinates x1,y1.Rº(R(RFRuRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt create_imageÒscOs|jd||ƒS(s-Create line with coordinates x1,y1,...,xn,yn.tline(R(RFRuRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt create_lineÕscOs|jd||ƒS(s)Create oval with coordinates x1,y1,x2,y2.toval(R(RFRuRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt create_ovalØscOs|jd||ƒS(s0Create polygon with coordinates x1,y1,...,xn,yn.tpolygon(R(RFRuRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytcreate_polygonÛscOs|jd||ƒS(s.Create rectangle with coordinates x1,y1,x2,y2.t    rectangle(R(RFRuRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytcreate_rectangleÞscOs|jd||ƒS(s#Create text with coordinates x1,y1.ttext(R(RFRuRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt create_textáscOs|jd||ƒS(s+Create window with coordinates x1,y1,x2,y2.Rz(R(RFRuRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt create_windowäscGs!|jj|jdf|ƒdS(sŠDelete characters of text items identified by tag or id in ARGS (possibly
        several times) from FIRST to LAST character (including).tdcharsN(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR­çscGs!|jj|jdf|ƒdS(s<Delete items identified by all tag or ids contained in ARGS.RµN(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRµëscGs!|jj|jdf|ƒdS(siDelete tag or id given as last arguments in ARGS from items
        identified by first argument in ARGS.tdtagN(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR®îscGs,|j|jj|jdf|ƒƒp+dS(sInternal function.tfind((RüR>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¯òscCs|jd|ƒS(sReturn items above TAGORID.R(R¯(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
find_aboveöscCs |jdƒS(sReturn all items.RI(R¯(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytfind_allùscCs|jd|ƒS(sReturn all items below TAGORID.R„(R¯(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
find_belowüscCs|jd||||ƒS(sìReturn item which is closest to pixel at X, Y.
        If several match take the top-most.
        All items closer than HALO are considered overlapping (all are
        closests). If START is specified the next below this tag is taken.R†(R¯(RFR,R9R‡Rˆ((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt find_closestÿscCs|jd||||ƒS(s=Return all items in rectangle defined
        by X1,Y1,X2,Y2.RŠ(R¯(RFR‹RŒRRŽ((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt find_enclosed    scCs|jd||||ƒS(sLReturn all items which overlap the rectangle
        defined by X1,Y1,X2,Y2.R(R¯(RFR‹RŒRRŽ((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytfind_overlapping        scCs|jd|ƒS(sReturn all items with TAGORID.R’(R¯(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt find_withtag    scGs|jj|jdf|ƒS(s.Set focus to the first item specified in ARGS.R‚(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR‚    scGs)|jj|jj|jdf|ƒƒS(s=Return tags associated with the first item specified in ARGS.tgettags(R>R\RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR·    s    cGs!|jj|jdf|ƒdS(sdSet cursor at position POS in the item identified by TAGORID.
        In ARGS TAGORID must be first.ticursorN(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¸    scGs#t|jj|jdf|ƒƒS(s?Return position of cursor as integer in item specified in ARGS.R¡(RdR>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¡    scGs!|jj|jdf|ƒdS(sSInsert TEXT in item TAGORID at position POS. ARGS must
        be TAGORID POS TEXT.RvN(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRv    scCs'|jj|jdf|d|fƒS(s9Return the resource value for an OPTION for item TAGORID.titemcgetRW(R>RDR{(RFRR°((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¹"    s    cKs|jd|f||ƒS(sàConfigure resources of an item TAGORID.
 
        The values for resources are specified as keyword
        arguments. To get an overview about
        the allowed keyword arguments call the method without arguments.
        t itemconfigure(Rˆ(RFRR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRº&    scGs!|jj|jdf|ƒdS(sJLower an item TAGORID given in ARGS
        (optional below another item).RÇN(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    tag_lower3    scGs!|jj|jdf|ƒdS(s#Move an item TAGORID given in ARGS.tmoveN(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¼8    scKs)|jj|jdf|j||ƒƒS(sÏPrint the contents of the canvas to a postscript
        file. Valid options: colormap, colormode, file, fontmap,
        height, pageanchor, pageheight, pagewidth, pagex, pagey,
        rotate, witdh, x, y.t
postscript(R>RDR{R (RFR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR½;    scGs!|jj|jdf|ƒdS(sJRaise an item TAGORID given in ARGS
        (optional above another item).RÉN(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    tag_raiseB    scGs!|jj|jdf|ƒdS(s9Scale item TAGORID with XORIGIN, YORIGIN, XSCALE, YSCALE.tscaleN(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¿G    scCs#|jj|jdd||ƒdS(s&Remember the current X, Y coordinates.tscantmarkN(R>RDR{(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    scan_markJ    si
cCs&|jj|jdd|||ƒdS(s‚Adjust the view of the canvas to GAIN times the
        difference between X and Y and the coordinates given in
        scan_mark.RÀtdragtoN(R>RDR{(RFR,R9tgain((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt scan_dragtoM    scCs#|jj|jdd||ƒdS(sLAdjust the end of the selection near the cursor of an item TAGORID to index.tselecttadjustN(R>RDR{(RFRR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt select_adjustR    scCs|jj|jddƒdS(s,Clear the selection if it is in this widget.RÆR¢N(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt select_clearU    scCs#|jj|jdd||ƒdS(s:Set the fixed end of a selection in item TAGORID to INDEX.RÆtfromN(R>RDR{(RFRR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt select_fromX    scCs|jj|jddƒpdS(s(Return the item which has the selection.RÆRN(R>RDR{R(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt select_item[    scCs#|jj|jdd||ƒdS(s=Set the variable end of a selection in item TAGORID to INDEX.RÆttoN(R>RDR{(RFRR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    select_to^    scCs|jj|jd|ƒpdS(s$Return the type of the item TAGORID.RN(R>RDR{R(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRa    sN(@R+R,R-RRIR~R‚RƒR…R‰RR‘R“RšR”R•R–R™R›RRŸR R¡R£R¥R§R©R«R¬R­RµR®R¯R°R±R²R³R´RµR¶R‚R·R¸R¡RvR¹Rºt
itemconfigR»RÇR¼R½R¾RÁRËR¿RÂRÅRÈRÉRËRÌRÎR(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR|tsx                                                                                                                                                             
                             t CheckbuttoncBsJeZdZdid„Zd„Zd„Zd„Zd„Zd„Z    RS(s7Checkbutton widget which is either in on- or off-state.cKstj||d||ƒdS(sConstruct a checkbutton widget with the parent MASTER.
 
        Valid resource names: activebackground, activeforeground, anchor,
        background, bd, bg, bitmap, borderwidth, command, cursor,
        disabledforeground, fg, font, foreground, height,
        highlightbackground, highlightcolor, highlightthickness, image,
        indicatoron, justify, offvalue, onvalue, padx, pady, relief,
        selectcolor, selectimage, state, takefocus, text, textvariable,
        underline, variable, width, wraplength.t checkbuttonN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIg    s
cCs|jj|jdƒdS(sPut the button in off-state.tdeselectN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÒr    scCs|jj|jdƒdS(sFlash the button.RrN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRru    scCs|jj|jdƒS(s<Toggle the button and invoke a command if given as resource.Rs(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRsx    scCs|jj|jdƒdS(sPut the button in on-state.RÆN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÆ{    scCs|jj|jdƒdS(sToggle the button.ttoggleN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÓ~    sN(
R+R,R-RRIRÒRrRsRÆRÓ(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÐe    s                tEntrycBs¹eZdZdid„Zdd„Zd„Zd„Zd„Zd„Z    d„Z
d„Z d    „Z e Z d
„ZeZd „ZeZd „ZeZd „ZeZd„ZeZRS(s1Entry widget which allows to display simple text.cKstj||d||ƒdS(sConstruct an entry widget with the parent MASTER.
 
        Valid resource names: background, bd, bg, borderwidth, cursor,
        exportselection, fg, font, foreground, highlightbackground,
        highlightcolor, highlightthickness, insertbackground,
        insertborderwidth, insertofftime, insertontime, insertwidth,
        invalidcommand, invcmd, justify, relief, selectbackground,
        selectborderwidth, selectforeground, show, state, takefocus,
        textvariable, validate, validatecommand, vcmd, width,
        xscrollcommand.tentryN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI„    s cCs |jj|jd||ƒdS(s.Delete text from FIRST to LAST (not included).RµN(R>RDR{(RFtfirsttlast((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRµ    scCs|jj|jdƒS(sReturn the text.RO(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRO“    scCs|jj|jd|ƒdS(sInsert cursor at INDEX.R¸N(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¸–    scCst|jj|jd|ƒƒS(sReturn position of cursor.R¡(RdR>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¡™    s cCs |jj|jd||ƒdS(sInsert STRING at INDEX.RvN(R>RDR{(RFR¡R¥((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRv    scCs |jj|jdd|ƒdS(s&Remember the current X, Y coordinates.RÀRÁN(R>RDR{(RFR,((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR     scCs |jj|jdd|ƒdS(s€Adjust the view of the canvas to 10 times the
        difference between X and Y and the coordinates given in
        scan_mark.RÀRÃN(R>RDR{(RFR,((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÅ£    scCs |jj|jdd|ƒdS(s9Adjust the end of the selection near the cursor to INDEX.R»RÇN(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytselection_adjust¨    scCs|jj|jddƒdS(s,Clear the selection if it is in this widget.R»R¢N(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¼¬    scCs |jj|jdd|ƒdS(s*Set the fixed end of a selection to INDEX.R»RÊN(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytselection_from°    scCs%|jj|jj|jddƒƒS(sSReturn True if there are characters selected in the entry, False
        otherwise.R»tpresent(R>RhRDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytselection_present´    s    cCs#|jj|jdd||ƒdS(s3Set the selection from START to END (not included).R»R N(R>RDR{(RFRˆRt((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytselection_rangeº    scCs |jj|jdd|ƒdS(s-Set the variable end of a selection to INDEX.R»RÍN(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt selection_to¾    sN(R+R,R-RRIRµROR¸R¡RvRÂRÅRØRÈR¼RÉRÙRËRÛtselect_presentRÜt select_rangeRÝRÎ(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÔ‚    s*                                                 tFramecBseZdZdid„ZRS(sFFrame widget which may contain other widgets and can have a 3D border.cKs„t||fƒ}d}d|kr>d|df}|d=n&d|krdd|df}|d=ntj||d|i|ƒdS(sConstruct a frame widget with the parent MASTER.
 
        Valid resource names: background, bd, bg, borderwidth, class,
        colormap, container, cursor, height, highlightbackground,
        highlightcolor, highlightthickness, relief, takefocus, visual, width.Rfs-classRÙRæN((R)RdRI(RFRGR$RvRa((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIÅ    s 
 
N(R+R,R-RRI(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRàà    stLabelcBseZdZdid„ZRS(s0Label widget which can display text and bitmaps.cKstj||d||ƒdS(sùConstruct a label widget with the parent MASTER.
 
        STANDARD OPTIONS
 
            activebackground, activeforeground, anchor,
            background, bitmap, borderwidth, cursor,
            disabledforeground, font, foreground,
            highlightbackground, highlightcolor,
            highlightthickness, image, justify,
            padx, pady, relief, takefocus, text,
            textvariable, underline, wraplength
 
        WIDGET-SPECIFIC OPTIONS
 
            height, state, width
 
        tlabelN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI×    sN(R+R,R-RRI(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRáÕ    stListboxcBsìeZdZdid„Zd„Zd„Zd„Zdd„Zdd„Z    d„Z
d„Z d    „Z d
„Z d „Zd „Zd „ZeZdd„ZeZd„ZeZdd„ZeZd„Zd„Zdd„ZeZRS(s3Listbox widget which can display a list of strings.cKstj||d||ƒdS(s–Construct a listbox widget with the parent MASTER.
 
        Valid resource names: background, bd, bg, borderwidth, cursor,
        exportselection, fg, font, foreground, height, highlightbackground,
        highlightcolor, highlightthickness, relief, selectbackground,
        selectborderwidth, selectforeground, selectmode, setgrid, takefocus,
        width, xscrollcommand, yscrollcommand, listvariable.tlistboxN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIí    scCs|jj|jd|ƒdS(s"Activate item identified by INDEX.tactivateN(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRåö    scGs,|j|jj|jdf|ƒƒp+dS(svReturn a tuple of X1,Y1,X2,Y2 coordinates for a rectangle
        which encloses the item identified by index in ARGS.RšN(RüR>RDR{R(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRšù    scCs"|jj|jj|jdƒƒS(s2Return list of indices of currently selected item.t curselection(R>R\RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRæþ    scCs |jj|jd||ƒdS(s/Delete items from FIRST to LAST (not included).RµN(R>RDR{(RFRÖR×((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRµ
scCsK|r.|jj|jj|jd||ƒƒS|jj|jd|ƒSdS(s4Get list of items from FIRST to LAST (not included).RON(R>R\RDR{(RFRÖR×((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRO
scCs5|jj|jd|ƒ}|dkr+dSt|ƒS(s+Return index of item identified with INDEX.R¡R…N(R>RDR{RRd(RFR¡R¥((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¡
s cGs$|jj|jd|f|ƒdS(sInsert ELEMENTS at INDEX.RvN(R>RDR{(RFR¡telements((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRv
scCst|jj|jd|ƒƒS(s5Get index of item which is nearest to y coordinate Y.tnearest(RdR>RDR{(RFR9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRè
s cCs#|jj|jdd||ƒdS(s&Remember the current X, Y coordinates.RÀRÁN(R>RDR{(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÂ
scCs#|jj|jdd||ƒdS(sAdjust the view of the listbox to 10 times the
        difference between X and Y and the coordinates given in
        scan_mark.RÀRÃN(R>RDR{(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÅ
scCs|jj|jd|ƒdS(s"Scroll such that INDEX is visible.tseeN(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRé!
scCs |jj|jdd|ƒdS(s-Set the fixed end oft the selection to INDEX.R»tanchorN(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytselection_anchor$
scCs#|jj|jdd||ƒdS(s6Clear the selection from FIRST to LAST (not included).R»R¢N(R>RDR{(RFRÖR×((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¼(
scCs(|jj|jj|jdd|ƒƒS(s+Return 1 if INDEX is part of the selection.R»tincludes(R>RhRDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytselection_includes-
scCs#|jj|jdd||ƒdS(smSet the selection from FIRST to LAST (not included) without
        changing the currently selected elements.R»RCN(R>RDR{(RFRÖR×((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt selection_set2
scCst|jj|jdƒƒS(s-Return the number of elements in the listbox.R®(RdR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR®7
scCs'|jj|jdf|d|fƒS(s4Return the resource value for an ITEM and an OPTION.R¹RW(R>RDR{(RFR¡R°((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¹:
s    cKs|jd|f||ƒS(s9Configure resources of an ITEM.
 
        The values for resources are specified as keyword arguments.
        To get an overview about the allowed keyword arguments
        call the method without arguments.
        Valid resource names: background, bg, foreground, fg,
        selectbackground, selectforeground.Rº(Rˆ(RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRº>
sN(R+R,R-RRIRåRšRæRµROR¡RvRèRÂRÅRéRët select_anchorR¼RÉRítselect_includesRît
select_setR®R¹RºRÏ(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRãë    s2                                                                tMenucBs‚eZdZd%id„Zd„Zd„Zd„Zd„Zd„Z    d„Z
d„Z d    „Z d
„Z d „Zd „Zd d„Zd„Zid„Zid„Zid„Zid„Zid„Zid„Zid„Zid„Zid„Zid„Zid„Zid„Zd%d„Zd„Zd%d„Z e Z!d„Z"d „Z#d!„Z$d"„Z%d#„Z&d$„Z'RS(&sPMenu widget which allows to display menu bars, pull-down menus and pop-up menus.cKstj||d||ƒdS(sAConstruct menu widget with the parent MASTER.
 
        Valid resource names: activebackground, activeborderwidth,
        activeforeground, background, bd, bg, borderwidth, cursor,
        disabledforeground, fg, font, foreground, postcommand, relief,
        selectcolor, takefocus, tearoff, tearoffcommand, title, type.tmenuN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIK
scCsdS(N((RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyttk_bindForTraversalS
scCs|jjd|jƒdS(Nt    tk_mbPost(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRõU
scCs|jjdƒdS(Nt tk_mbUnpost(R>RD(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRöW
scCs|jjd|j|ƒdS(Nttk_traverseToMenu(R>RDR{(RFRi((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR÷Y
scCs|jjd|j|ƒdS(Nttk_traverseWithinMenu(R>RDR{(RFRi((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRø[
scCs|jjd|jƒS(Nttk_getMenuButtons(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRù]
scCs|jjd|ƒdS(Nt tk_nextMenu(R>RD(RFtcount((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRú_
scCs|jjd|ƒdS(Nttk_nextMenuEntry(R>RD(RFRû((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRüa
scCs|jjd|jƒdS(Nt tk_invokeMenu(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRýc
scCs|jjd|jƒdS(Nt tk_firstMenu(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRþe
scCs|jjd|jƒdS(Nttk_mbButtonDown(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÿg
sR9cCs#|jjd|j|||ƒdS(s/Post the menu at position X,Y with entry ENTRY.ttk_popupN(R>RDR{(RFR,R9RÕ((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRi
scCs|jj|jd|ƒdS(sActivate entry at INDEX.RåN(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRål
scKs0|jj|jd|f|j||ƒƒdS(sInternal function.R±N(R>RDR{R (RFRœR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR±o
scKs|jd|p|ƒdS(sAdd hierarchical menu item.tcascadeN(R±(RFR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt add_cascades
scKs|jd|p|ƒdS(sAdd checkbutton menu item.RÑN(R±(RFR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytadd_checkbuttonv
scKs|jd|p|ƒdS(sAdd command menu item.R¿N(R±(RFR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt add_commandy
scKs|jd|p|ƒdS(sAddd radio menu item.t radiobuttonN(R±(RFR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytadd_radiobutton|
scKs|jd|p|ƒdS(sAdd separator.t    separatorN(R±(RFR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt add_separator
scKs3|jj|jd||f|j||ƒƒdS(sInternal function.RvN(R>RDR{R (RFR¡RœR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRv‚
scKs|j|d|p|ƒdS(s$Add hierarchical menu item at INDEX.RN(Rv(RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytinsert_cascade†
scKs|j|d|p|ƒdS(s#Add checkbutton menu item at INDEX.RÑN(Rv(RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytinsert_checkbutton‰
scKs|j|d|p|ƒdS(sAdd command menu item at INDEX.R¿N(Rv(RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytinsert_commandŒ
scKs|j|d|p|ƒdS(sAddd radio menu item at INDEX.RN(Rv(RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytinsert_radiobutton
scKs|j|d|p|ƒdS(sAdd separator at INDEX.RN(Rv(RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytinsert_separator’
scCsß|dkr|}n|j|ƒ|j|ƒ}}|dksL|dkr[d\}}nxat||dƒD]L}d|j|ƒkrot|j|dƒƒ}|r»|j|ƒq»qoqoW|jj|j    d||ƒdS(s7Delete menu items between INDEX1 and INDEX2 (included).iiÿÿÿÿiR¿RµN(iiÿÿÿÿ(
RR¡R t entryconfigRt    entrycgetRXR>RDR{(RFtindex1tindex2t
num_index1t
num_index2R¥R%((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRµ•
s     cCs |jj|jd|d|ƒS(s>Return the resource value of an menu item for OPTION at INDEX.RRW(R>RDR{(RFR¡R°((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¤
scKs|jd|f||ƒS(sConfigure a menu item at INDEX.tentryconfigure(Rˆ(RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR§
scCs5|jj|jd|ƒ}|dkr+dSt|ƒS(s4Return the index of a menu item identified by INDEX.R¡R…N(R>RDR{RRd(RFR¡R¥((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¡«
s cCs|jj|jd|ƒS(sRInvoke a menu item identified by INDEX and execute
        the associated command.Rs(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRs°
scCs |jj|jd||ƒdS(sDisplay a menu at position X,Y.tpostN(R>RDR{(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR´
scCs|jj|jd|ƒS(s*Return the type of the menu item at INDEX.R(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR·
scCs|jj|jdƒdS(s Unmap a menu.tunpostN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRº
scCst|jj|jd|ƒƒS(sEReturn the y-position of the topmost pixel of the menu item at INDEX.t    yposition(RdR>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR½
s N((R+R,R-RRIRôRõRöR÷RøRùRúRüRýRþRÿRRåR±RRRRRRvR    R
R R R RµRRRR¡RsRRRR(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRòI
sJ                                                                                       t
MenubuttoncBseZdZdid„ZRS(s(Menubutton widget, obsolete since Tk8.0.cKstj||d||ƒdS(Nt
menubutton(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIÄ
sN(R+R,R-RRI(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÂ
stMessagecBseZdZdid„ZRS(sKMessage widget to display multiline text. Obsolete since Label does it too.cKstj||d||ƒdS(Ntmessage(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIÉ
sN(R+R,R-RRI(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÇ
st RadiobuttoncBsAeZdZdid„Zd„Zd„Zd„Zd„ZRS(sGRadiobutton widget which shows only one of several buttons in on-state.cKstj||d||ƒdS(söConstruct a radiobutton widget with the parent MASTER.
 
        Valid resource names: activebackground, activeforeground, anchor,
        background, bd, bg, bitmap, borderwidth, command, cursor,
        disabledforeground, fg, font, foreground, height,
        highlightbackground, highlightcolor, highlightthickness, image,
        indicatoron, justify, padx, pady, relief, selectcolor, selectimage,
        state, takefocus, text, textvariable, underline, value, variable,
        width, wraplength.RN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIÎ
s
cCs|jj|jdƒdS(sPut the button in off-state.RÒN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÒÙ
scCs|jj|jdƒdS(sFlash the button.RrN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRrÝ
scCs|jj|jdƒS(s<Toggle the button and invoke a command if given as resource.Rs(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRsà
scCs|jj|jdƒdS(sPut the button in on-state.RÆN(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÆã
sN(    R+R,R-RRIRÒRrRsRÆ(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÌ
s             tScalecBsDeZdZdid„Zd„Zd„Zdd„Zd„ZRS(s1Scale widget which can display a numerical scale.cKstj||d||ƒdS(s×Construct a scale widget with the parent MASTER.
 
        Valid resource names: activebackground, background, bigincrement, bd,
        bg, borderwidth, command, cursor, digits, fg, font, foreground, from,
        highlightbackground, highlightcolor, highlightthickness, label,
        length, orient, relief, repeatdelay, repeatinterval, resolution,
        showvalue, sliderlength, sliderrelief, state, takefocus,
        tickinterval, to, troughcolor, variable, width.R¿N(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIé
s    cCsE|jj|jdƒ}yt|ƒSWntk
r@t|ƒSXdS(s*Get the current value as integer or float.RON(R>RDR{RdR4Rf(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyROó
s
 cCs|jj|jd|ƒdS(sSet the value to VALUE.RCN(R>RDR{(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRCú
scCs"|j|jj|jd|ƒƒS(s•Return a tuple (X,Y) of the point along the centerline of the
        trough that corresponds to VALUE or the current value if None is
        given.R›(RüR>RDR{(RFR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR›ý
scCs|jj|jd||ƒS(scReturn where the point X,Y lies. Valid return values are "slider",
        "though1" and "though2".tidentify(R>RDR{(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR sN(    R+R,R-RRIRORCR›R(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRç
s 
        t    ScrollbarcBsSeZdZdid„Zd„Zd„Zd„Zd„Zd„Z    d„Z
RS(    s?Scrollbar widget which displays a slider at a certain position.cKstj||d||ƒdS(slConstruct a scrollbar widget with the parent MASTER.
 
        Valid resource names: activebackground, activerelief,
        background, bd, bg, borderwidth, command, cursor,
        elementborderwidth, highlightbackground,
        highlightcolor, highlightthickness, jump, orient,
        relief, repeatdelay, repeatinterval, takefocus,
        troughcolor, width.t    scrollbarN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI
s    cCs|jj|jd|ƒdS(sxDisplay the element at INDEX with activebackground and activerelief.
        INDEX can be "arrow1","slider" or "arrow2".RåN(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRå scCs"t|jj|jd||ƒƒS(snReturn the fractional change of the scrollbar setting if it
        would be moved by DELTAX or DELTAY pixels.Rp(RfR>RDR{(RFtdeltaxtdeltay((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRp scCs"t|jj|jd||ƒƒS(sRReturn the fractional value which corresponds to a slider
        position of X,Y.RÉ(RfR>RDR{(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÉ scCs|jj|jd||ƒS(sYReturn the element under position X,Y as one of
        "arrow1","slider","arrow2" or "".R(R>RDR{(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR! scCs|j|jj|jdƒƒS(sZReturn the current fractional values (upper and lower end)
        of the slider position.RO(ROR>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRO% scGs!|jj|jdf|ƒdS(siSet the fractional values of the slider position (upper and
        lower ends as value between 0 and 1).RCN(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRC) sN( R+R,R-RRIRåRpRÉRRORC(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR s
                   tTextc    BsHeZdZd5id„Zd„Zd„Zd„Zd„Zd„Z    d„Z
d5d„Z d5d    „Z d
„Z d5d5d „Zd „Zd5d „Zd„Zd„Zd„Zd„Zd5d„Zd„Zd5d„Zid„Zd„Zd„Zd„Zd5d„Zd„Zd„Zd„Zd„Z d„Z!d„Z"d „Z#d5d5d5d5d5d5d5d5d!„Z$d"„Z%d#„Z&d5d$„Z'd5d%„Z(d&„Z)d5d'„Z*e*Z+d(„Z,d5d)„Z-d5d*„Z.d5d+„Z/d5d,„Z0d5d-„Z1d.„Z2d5d/„Z3d0„Z4d5d1„Z5e5Z6id2„Z7d3„Z8d4„Z9RS(6s4Text widget which can display text in various forms.cKstj||d||ƒdS(s¼Construct a text widget with the parent MASTER.
 
        STANDARD OPTIONS
 
            background, borderwidth, cursor,
            exportselection, font, foreground,
            highlightbackground, highlightcolor,
            highlightthickness, insertbackground,
            insertborderwidth, insertofftime,
            insertontime, insertwidth, padx, pady,
            relief, selectbackground,
            selectborderwidth, selectforeground,
            setgrid, takefocus,
            xscrollcommand, yscrollcommand,
 
        WIDGET-SPECIFIC OPTIONS
 
            autoseparators, height, maxundo,
            spacing1, spacing2, spacing3,
            state, tabs, undo, width, wrap,
 
        RªN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI2 scGs,|j|jj|jdf|ƒƒp+dS(s„Return a tuple of (x,y,width,height) which gives the bounding
        box of the visible part of the character at the index in ARGS.RšN(RüR>RDR{R(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRšJ scCs|jjd|j|ƒdS(Nttk_textSelectTo(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR$O scCs|jjd|jƒdS(Nttk_textBackspace(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR%Q scCs#|jjd|j|||ƒdS(Nttk_textIndexCloser(R>RDR{(RFRwRrR%((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR&S scCs|jjd|j|ƒdS(Nttk_textResetAnchor(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR'U scCs+|jj|jj|jd|||ƒƒS(s€Return whether between index INDEX1 and index INDEX2 the
        relation OP is satisfied. OP is one of <, <=, ==, >=, >, or !=.tcompare(R>RhRDR{(RFRtopR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR(W scCs%|jj|jj|jd|ƒƒS(sjTurn on the internal consistency checks of the B-Tree inside the text
        widget according to BOOLEAN.tdebug(R>RhRDR{(RFRr((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR*\ scCs |jj|jd||ƒdS(s?Delete the characters between INDEX1 and INDEX2 (not included).RµN(R>RDR{(RFRR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRµa scCs"|j|jj|jd|ƒƒS(s©Return tuple (x,y,width,height,baseline) giving the bounding box
        and baseline position of the visible part of the line containing
        the character at INDEX.t    dlineinfo(RüR>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR+d sc
Ksùg}d}d}|s3g}|d„}|}nz¨t|tƒs[|j|ƒ}}n|d|g7}x,|D]$}    ||    rr|jd|    ƒqrqrW|j|ƒ|r½|j|ƒn|jj|jd|Œ|SWd|rô|j|ƒnXdS(sŽReturn the contents of the widget between index1 and index2.
 
        The type of contents returned in filtered based on the keyword
        parameters; if 'all', 'image', 'mark', 'tag', 'text', or 'window' are
        given and true, then the corresponding items are returned. The result
        is a list of triples of the form (key, value, index). If none of the
        keywords are true then 'all' is used by default.
 
        If the 'command' argument is given, it is called once for each element
        of the list of triples, with the values of each triple serving as the
        arguments to the function. In this case the list is not returned.cSs|j|||fƒdS(N(R¤(R‹RR¡RÖ((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt append_triple~ ss-commandRWtdumpN(    RR
RRRR¤R>RDR{RX(
RFRRR¿RvRut    func_nameRÖR,R‹((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR-i s*       
 cGs|jj|jd|ŒS(srInternal method
 
        This method controls the undo mechanism and
        the modified flag. The exact behavior of the
        command depends on the option argument that
        follows the edit argument. The following forms
        of the command are currently supported:
 
        edit_modified, edit_redo, edit_reset, edit_separator
        and edit_undo
 
        tedit(R>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR/‘ s cCs|jd|ƒS(s;Get or Set the modified flag
 
        If arg is not specified, returns the modified
        flag of the widget. The insert, delete, edit undo and
        edit redo commands or the user can set or clear the
        modified flag. If boolean is specified, sets the
        modified flag of the widget to arg.
        tmodified(R/(RFtarg((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt edit_modified  s    cCs |jdƒS(s Redo the last undone edit
 
        When the undo option is true, reapplies the last
        undone edits provided no other edits were done since
        then. Generates an error when the redo stack is empty.
        Does nothing when the undo option is false.
        tredo(R/(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    edit_redo« scCs |jdƒS(s(Clears the undo and redo stacks
        treset(R/(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
edit_resetµ scCs |jdƒS(snInserts a separator (boundary) on the undo stack.
 
        Does nothing when the undo option is false
        R(R/(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytedit_separatorº scCs |jdƒS(sDUndoes the last edit action
 
        If the undo option is true. An edit action is defined
        as all the insert and delete commands that are recorded
        on the undo stack in between two separators. Generates
        an error when the undo stack is empty. Does nothing
        when the undo option is false
        tundo(R/(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    edit_undoÁ s    cCs|jj|jd||ƒS(s5Return the text from INDEX1 to INDEX2 (not included).RO(R>RDR{(RFRR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyROÌ scCsY|d dkrd|}n|ddkr:|d }n|jj|jdd||ƒS(s9Return the value of OPTION of an embedded image at INDEX.iRWiÿÿÿÿRURºRŠ(R>RDR{(RFR¡R°((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
image_cgetÐ s
  cKs|jdd|f||ƒS(s%Configure an embedded image at INDEX.RºR‰(Rˆ(RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytimage_configure× scKs+|jj|jdd||j||ƒŒS(s"Create an embedded image at INDEX.RºR (R>RDR{R (RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt image_createÚ s    cCs|jj|jddƒS(s3Return all names of embedded images in this widget.RºR»(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¼ß scCst|jj|jd|ƒƒS(s1Return the index in the form line.char for INDEX.R¡(RR>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¡â scGs'|jj|jd||f|ƒdS(sŠInsert CHARS before the characters at INDEX. An additional
        tag can be given in ARGS. Additional CHARS and tags can follow in ARGS.RvN(R>RDR{(RFR¡tcharsRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRvå scCs"|jj|jdd||fƒS(s„Change the gravity of a mark MARKNAME to DIRECTION (LEFT or RIGHT).
        Return the current value if None is given for DIRECTION.RÁtgravity(R>RDR{(RFtmarkNamet    direction((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt mark_gravityé s    cCs%|jj|jj|jddƒƒS(sReturn all mark names.RÁR»(R>R\RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
mark_namesî scCs#|jj|jdd||ƒdS(s0Set mark MARKNAME before the character at INDEX.RÁRCN(R>RDR{(RFR?R¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytmark_setò scGs$|jj|jddf|ƒdS(sDelete all marks in MARKNAMES.RÁtunsetN(R>RDR{(RFt    markNames((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
mark_unsetõ scCs"|jj|jdd|ƒp!dS(s-Return the name of the next mark after INDEX.RÁtnextN(R>RDR{R(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    mark_nextø scCs"|jj|jdd|ƒp!dS(s2Return the name of the previous mark before INDEX.RÁtpreviousN(R>RDR{R(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt mark_previousû scCs#|jj|jdd||ƒdS(s&Remember the current X, Y coordinates.RÀRÁN(R>RDR{(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÂþ scCs#|jj|jdd||ƒdS(s~Adjust the view of the text to 10 times the
        difference between X and Y and the coordinates given in
        scan_mark.RÀRÃN(R>RDR{(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÅ sc Cs(|jdg} |r%| jdƒn|r;| jdƒn|rQ| jdƒn|rg| jdƒn|r}| jdƒn|
r“| jdƒn|    r¶| jdƒ| j|    ƒn|rÜ|d    d
krÜ| jd ƒn| j|ƒ| j|ƒ|r | j|ƒnt|jjt| ƒƒƒS( s‹Search PATTERN beginning from INDEX until STOPINDEX.
        Return the index of the first character of a match or an
        empty string.Rs    -forwardss
-backwardss-exacts-regexps-nocases-elides-countiRWs--(R{R¤RR>RDR ( RFR²R¡t    stopindextforwardst    backwardstexacttregexptnocaseRûtelideRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR s.   cCs|jj|jd|ƒdS(s3Scroll such that the character at INDEX is visible.RéN(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRé scGs*|jj|jdd||f|ƒdS(s|Add tag TAGNAME to all characters between INDEX1 and index2 in ARGS.
        Additional pairs of indices may follow in ARGS.ttagR±N(R>RDR{(RFttagNameRRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyttag_add s    cCs<|jj|jdd||dƒ|r8|j|ƒndS(sgUnbind for all characters with TAGNAME for event SEQUENCE  the
        function identified with FUNCID.RRRGR9N(R>RDR{RX(RFRSRCRE((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR”! s"cCs%|j|jdd|f|||ƒS(s+Bind to all characters with TAGNAME at event SEQUENCE a call to function FUNC.
 
        An additional boolean parameter ADD specifies whether FUNC will be
        called additionally to the other bound function or whether it will
        replace the previous function. See bind for the return value.RRRG(RFR{(RFRSRCRR±((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR•' scCsY|d dkrd|}n|ddkr:|d }n|jj|jdd||ƒS(s+Return the value of OPTION for tag TAGNAME.iRWiÿÿÿÿRURRRŠ(R>RDR{(RFRSR°((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyttag_cget/ s
  cKs|jdd|f||ƒS(sConfigure a tag TAGNAME.RRR‰(Rˆ(RFRSR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt tag_configure6 scGs$|jj|jddf|ƒdS(sDelete all tags in TAGNAMES.RRRµN(R>RDR{(RFttagNames((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
tag_delete: scCs#|jj|jdd||ƒdS(s`Change the priority of tag TAGNAME such that it is lower
        than the priority of BELOWTHIS.RRRÇN(R>RDR{(RFRSRÈ((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR»= scCs(|jj|jj|jdd|ƒƒS(sReturn a list of all tag names.RRR»(R>R\RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    tag_namesA s    cCs.|jj|jj|jdd|||ƒƒS(s¹Return a list of start and end index for the first sequence of
        characters between INDEX1 and INDEX2 which all have tag TAGNAME.
        The text is searched forward from INDEX1.RRt    nextrange(R>R\RDR{(RFRSRR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt tag_nextrangeE scCs.|jj|jj|jdd|||ƒƒS(s»Return a list of start and end index for the first sequence of
        characters between INDEX1 and INDEX2 which all have tag TAGNAME.
        The text is searched backwards from INDEX1.RRt    prevrange(R>R\RDR{(RFRSRR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt tag_prevrangeK scCs#|jj|jdd||ƒdS(saChange the priority of tag TAGNAME such that it is higher
        than the priority of ABOVETHIS.RRRÉN(R>RDR{(RFRSRÊ((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¾Q s    cCs(|jj|jj|jdd|ƒƒS(s7Return a list of ranges of text which have tag TAGNAME.RRtranges(R>R\RDR{(RFRS((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
tag_rangesV scCs&|jj|jdd|||ƒdS(sARemove tag TAGNAME from all characters between INDEX1 and INDEX2.RRRpN(R>RDR{(RFRSRR((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
tag_removeZ s    cCsY|d dkrd|}n|ddkr:|d }n|jj|jdd||ƒS(s:Return the value of OPTION of an embedded window at INDEX.iRWiÿÿÿÿRURzRŠ(R>RDR{(RFR¡R°((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt window_cget^ s
  cKs|jdd|f||ƒS(s&Configure an embedded window at INDEX.RzR‰(Rˆ(RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytwindow_configuree scKs3|jj|jdd|f|j||ƒƒdS(sCreate a window at INDEX.RzR N(R>RDR{R (RFR¡R$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt window_createi s    cCs%|jj|jj|jddƒƒS(s4Return all names of embedded windows in this widget.RzR»(R>R\RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt window_namesn s    cGs$|jj|jddf|ƒdS(sObsolete function, use see.RÎs
-pickplaceN(R>RDR{(RFRB((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytyview_pickplacer sN(:R+R,R-RRIRšR$R%R&R'R(R*RµR+R-R/R2R4R6R7R9ROR:R;R<R¼R¡RvRARBRCRFRHRJRÂRÅRRéRTR”R•RURVt
tag_configRXR»RYR[R]R¾R_R`RaRbt window_configRcRdRe(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR#0 sr                              (        
                                                                                                      t_setitcBs#eZdZdd„Zd„ZRS(s>Internal class. It wraps the command in the widget OptionMenu.cCs||_||_||_dS(N(t _setit__valuet _setit__vart_setit__callback(RFtvarRRT((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIy s        cGs6|jj|jƒ|jr2|j|j|ŒndS(N(RjRCRiRk(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRV} s    N(R+R,R-RRIRV(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRhw s t
OptionMenucBs)eZdZd„Zd„Zd„ZRS(s?OptionMenu which allows the user to select a value from a menu.c
   Os"idd6|d6dd6td6dd6dd    6}tj||d
|ƒd |_t|d d ddƒ}|_|j|_|jdƒ}d|krŸ|d=n|r¿t    d|j
ƒd‚n|j d|dt |||ƒƒx0|D](}    |j d|    dt ||    |ƒƒqèW||d <dS(sëConstruct an optionmenu widget with the parent MASTER, with
        the resource textvariable set to VARIABLE, the initially selected
        value VALUE, the other menu values VALUES and an additional
        keyword argument command.it borderwidtht textvariableit indicatorontreliefR%RêthighlightthicknessRt tk_optionMenuRHRóttearoffiR¿sunknown option -RâN( tRAISEDRdRIR_Ròt_OptionMenu__menuR{tmenunameRORŽRRRh(
RFRGRQRR7tkwargsRvRóRTR(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI„ s$
      
 cCs#|dkr|jStj||ƒS(NRó(RvRdRÅ(RFRH((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRŝ s cCstj|ƒd|_dS(s,Destroy this widget and the associated menu.N(RRoRRv(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRo¢ s (R+R,R-RIRÅRo(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRm‚ s        tImagecBsteZdZdZd id d„Zd„Zd„Zd„Zd„Z    d„Z
e
Z d„Z d    „Z d
„ZRS( sBase class for images.ic    Ks4d|_|s*t}|s*td‚q*n|j|_|stjd7_dtjf}|ddkrd|d}qn|r |r t||fƒ}n|r¯|}nd
}xO|jƒD]A\}}t    |dƒrï|j
|ƒ}n|d||f}qÂW|jj dd    ||f|ƒ||_dS( NsToo early to create imageis    pyimage%riRWRURVRºR (( RRHR/R4R>Ryt_last_idR)R"RXRRRD(    RFtimgtypeRHR$RGRvR¢R'R(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIª s,           cCs|jS(N(RH(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRLÀ scCsA|jr=y|jjdd|jƒWq=tk
r9q=XndS(NRºRµ(RHR>RDRŽ(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRKÁ s
     cCs$|jj|jdd||ƒdS(NR‰RW(R>RDRH(RFR‹R((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRŒÈ scCs|jj|jdd|ƒS(NR‰RW(R>RDRH(RFR‹((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÅÊ scKs«d}xt|ƒjƒD]m\}}|dk    r|ddkrN|d }nt|dƒro|j|ƒ}n|d||f}qqW|jj|jdf|ƒdS(sConfigure the image.iÿÿÿÿRURVRWRÄN((R)R"RRXRRR>RDRH(RFRvRR'R(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR‰Ì s  cCst|jjdd|jƒƒS(sReturn the height of the image.RºRé(RdR>RDRH(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRé× scCs|jjdd|jƒS(s8Return the type of the imgage, e.g. "photo" or "bitmap".RºR(R>RDRH(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÛ scCst|jjdd|jƒƒS(sReturn the width of the image.RºR6(RdR>RDRH(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR6Þ sN(R+R,R-RzRRIRLRKRŒRÅR‰RÄRéRR6(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRy§ s                    
        t
PhotoImagecBs€eZdZd id d„Zd„Zd„Zd„Zd„Zdd„Z    dd„Z
d    „Z d d
„Z d d d „Z RS( s?Widget which can display colored images in GIF, PPM/PGM format.cKs tj|d||||dS(stCreate an image with NAME.
 
        Valid resource names: data, format, file, gamma, height, palette,
        width.tphotoN(RyRI(RFRHR$RGRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIå scCs|jj|jdƒdS(sDisplay a transparent image.tblankN(R>RDRH(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR~ë scCs|jj|jdd|ƒS(sReturn the value of OPTION.RŠRW(R>RDRH(RFR°((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRŠî scCs|jj|jdd|ƒS(NRŠRW(R>RDRH(RFR‹((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÅò scCs&tƒ}|jj|d|jƒ|S(s;Return a new PhotoImage with the same image as this widget.tcopy(R|R>RDRH(RFt    destImage((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRõ s    R9cCsDtƒ}|dkr|}n|jj|d|jd||ƒ|S(s\Return a new PhotoImage with the same image as this widget
        but zoom it with X and Y.R9Rs-zoom(R|R>RDRH(RFR,R9R€((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytzoomú s
        "cCsDtƒ}|dkr|}n|jj|d|jd||ƒ|S(skReturn a new PhotoImage based on the same image as this widget
        but use only every Xth or Yth pixel.R9Rs
-subsample(R|R>RDRH(RFR,R9R€((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    subsample s
        "cCs|jj|jd||ƒS(s8Return the color (red, green, blue) of the pixel at X,Y.RO(R>RDRH(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRO scCs`|jd|f}|rL|ddkr5|d}n|dt|ƒ}n|jj|ƒdS(szPut row formatted colors to image starting from
        position TO, e.g. image.put("{red green} {blue yellow}", to=(4,6))tputis-toiN(s-to(RHR R>RD(RFR–RÍRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRƒ s  cCs\|jd|f}|r+|d|f}n|rH|dt|ƒ}n|jj|ƒdS(sRWrite image to file FILENAME in FORMAT starting from
        position FROM_COORDS.RFs-formats-fromN(s-from(RHR R>RD(RFtfilenametformatt from_coordsRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRF s N(R+R,R-RRIR~RŠRÅRRR‚RORƒRF(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR|ã s                      
t BitmapImagecBs eZdZdidd„ZRS(s"Widget which can display a bitmap.cKs tj|d||||dS(sqCreate a bitmap with NAME.
 
        Valid resource names: background, data, file, foreground, maskdata, maskfile.RóN(RyRI(RFRHR$RGRv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI! sN(R+R,R-RRI(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR‡ scCstjjddƒS(NRºR»(R/R>RD(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¼' scCstjjddƒS(NRºR½(R/R>RD(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¾( stSpinboxcBsªeZdZdid„Zd„Zdd„Zd„Zd„Zd„Z    d„Z
d„Z d    „Z d
„Z d „Zd „Zd „Zd„Zd„Zdd„ZRS(sspinbox widget.cKstj||d||ƒdS(s¤Construct a spinbox widget with the parent MASTER.
 
        STANDARD OPTIONS
 
            activebackground, background, borderwidth,
            cursor, exportselection, font, foreground,
            highlightbackground, highlightcolor,
            highlightthickness, insertbackground,
            insertborderwidth, insertofftime,
            insertontime, insertwidth, justify, relief,
            repeatdelay, repeatinterval,
            selectbackground, selectborderwidth
            selectforeground, takefocus, textvariable
            xscrollcommand.
 
        WIDGET-SPECIFIC OPTIONS
 
            buttonbackground, buttoncursor,
            buttondownrelief, buttonuprelief,
            command, disabledbackground,
            disabledforeground, format, from,
            invalidcommand, increment,
            readonlybackground, state, to,
            validate, validatecommand values,
            width, wrap,
        tspinboxN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI- scCs|jj|jd|ƒS(søReturn a tuple of X1,Y1,X2,Y2 coordinates for a
        rectangle which encloses the character given by index.
 
        The first two elements of the list give the x and y
        coordinates of the upper-left corner of the screen
        area covered by the character (in pixels relative
        to the widget) and the last two elements give the
        width and height of the character, in pixels. The
        bounding box may refer to a region outside the
        visible area of the window.
        Rš(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRšJ s cCs|jj|jd||ƒS(sWDelete one or more elements of the spinbox.
 
        First is the index of the first character to delete,
        and last is the index of the character just after
        the last one to delete. If last isn't specified it
        defaults to first+1, i.e. a single character is
        deleted.  This command returns an empty string.
        Rµ(R>RDR{(RFRÖR×((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRµX s    cCs|jj|jdƒS(sReturns the spinbox's stringRO(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyROc scCs|jj|jd|ƒS(s®Alter the position of the insertion cursor.
 
        The insertion cursor will be displayed just before
        the character given by index. Returns an empty string
        R¸(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¸g scCs|jj|jd||ƒS(s{Returns the name of the widget at position x, y
 
        Return value is one of: none, buttondown, buttonup, entry
        R(R>RDR{(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRo scCs|jj|jd|ƒS(s;Returns the numerical index corresponding to index
        R¡(R>RDR{(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¡v scCs|jj|jd||ƒS(sDInsert string s at index
 
         Returns an empty string.
        Rv(R>RDR{(RFR¡Rl((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRv{ scCs|jj|jd|ƒS(sšCauses the specified element to be invoked
 
        The element could be buttondown or buttonup
        triggering the action associated with it.
        Rs(R>RDR{(RFtelement((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRs‚ scGs,|j|jj|jdf|ƒƒp+dS(sInternal function.RÀ((RüR>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRÀŠ scCs|jd|ƒS(söRecords x and the current view in the spinbox window;
 
        used in conjunction with later scan dragto commands.
        Typically this command is associated with a mouse button
        press in the widget. It returns an empty string.
        RÁ(RÀ(RFR,((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR scCs|jd|ƒS(s´Compute the difference between the given x argument
        and the x argument to the last scan mark command
 
        It then adjusts the view left or right by 10 times the
        difference in x-coordinates. This command is typically
        associated with mouse motion events in the widget, to
        produce the effect of dragging the spinbox at high speed
        through the window. The return value is an empty string.
        RÃ(RÀ(RFR,((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRŘ s
cGs,|j|jj|jdf|ƒƒp+dS(sInternal function.R»((RüR>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR»¤ scCs|jd|ƒS(sLocate the end of the selection nearest to the character
        given by index,
 
        Then adjust that end of the selection to be at index
        (i.e including but not going beyond index). The other
        end of the selection is made the anchor point for future
        select to commands. If the selection isn't currently in
        the spinbox, then a new selection is created to include
        the characters between index and the most recent selection
        anchor point, inclusive. Returns an empty string.
        RÇ(R»(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRØ© s cCs |jdƒS(sŒClear the selection
 
        If the selection isn't in this widget then the
        command has no effect. Returns an empty string.
        R¢(R»(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¼· scCs|jd|ƒS(s‹Sets or gets the currently selected element.
 
        If a spinbutton element is specified, it will be
        displayed depressed
        RŠ(R»(RFRŠ((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pytselection_element¿ sN(R+R,R-RRIRšRµROR¸RR¡RvRsRÀRÂRÅR»RØR¼R‹(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRˆ+ s"                                                        t
LabelFramecBseZdZdid„ZRS(slabelframe widget.cKstj||d||ƒdS(s«Construct a labelframe widget with the parent MASTER.
 
        STANDARD OPTIONS
 
            borderwidth, cursor, font, foreground,
            highlightbackground, highlightcolor,
            highlightthickness, padx, pady, relief,
            takefocus, text
 
        WIDGET-SPECIFIC OPTIONS
 
            background, class, colormap, container,
            height, labelanchor, labelwidget,
            visual, width
        t
labelframeN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIË sN(R+R,R-RRI(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRŒÉ st PanedWindowcBsªeZdZdid„Zd„Zd„ZeZd„Zd„Z    d„Z
d„Z d„Z d    „Z d
„Zd „Zd „Zd „Zdd„ZeZd„ZRS(spanedwindow widget.cKstj||d||ƒdS(sTConstruct a panedwindow widget with the parent MASTER.
 
        STANDARD OPTIONS
 
            background, borderwidth, cursor, height,
            orient, relief, width
 
        WIDGET-SPECIFIC OPTIONS
 
            handlepad, handlesize, opaqueresize,
            sashcursor, sashpad, sashrelief,
            sashwidth, showhandle,
        t panedwindowN(RdRI(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRIá scKs-|jj|jd|f|j|ƒƒdS(s+Add a child widget to the panedwindow in a new pane.
 
        The child argument is the name of the child widget
        followed by pairs of arguments that specify how to
        manage the windows. The possible options and values
        are the ones accepted by the paneconfigure method.
        R±N(R>RDR{R (RFR×Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR±ñ scCs|jj|jd|ƒdS(s„Remove the pane containing child from the panedwindow
 
        All geometry management options for child will be forgotten.
        RQN(R>RDR{(RFR×((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRpû scCs|jj|jd||ƒS(s—Identify the panedwindow component at point x, y
 
        If the point is over a sash or a sash handle, the result
        is a two element list containing the index of the sash or
        handle, and a word indicating whether it is over a sash
        or a handle, such as {0 sash} or {2 handle}. If the point
        is over any other part of the panedwindow, the result is
        an empty list.
        R(R>RDR{(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRs
cGs,|j|jj|jdf|ƒƒp+dS(sInternal function.tproxy((RüR>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRscCs |jdƒS(sBReturn the x and y pair of the most recent proxy location
        tcoord(R(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt proxy_coordscCs |jdƒS(s+Remove the proxy from the display.
        RQ(R(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt proxy_forgetscCs|jd||ƒS(s:Place the proxy at the given x and y coordinates.
        R—(R(RFR,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt proxy_placescGs,|j|jj|jdf|ƒƒp+dS(sInternal function.tsash((RüR>RDR{(RFRu((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR•#scCs|jd|ƒS(sAReturn the current x and y pair for the sash given by index.
 
        Index must be an integer between 0 and 1 less than the
        number of panes in the panedwindow. The coordinates given are
        those of the top left corner of the region containing the sash.
        pathName sash dragto index x y This command computes the
        difference between the given coordinates and the coordinates
        given to the last sash coord command for the given sash. It then
        moves that sash the computed difference. The return value is the
        empty string.
        R‘(R•(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
sash_coord(s cCs|jd|ƒS(sRecords x and y for the sash given by index;
 
        Used in conjunction with later dragto commands to move the sash.
        RÁ(R•(RFR¡((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt    sash_mark6scCs|jd|||ƒS(s?Place the sash given by index at the given coordinates
        R—(R•(RFR¡R,R9((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt
sash_place=scCs'|jj|jdf|d|fƒS(swQuery a management option for window.
 
        Option may be any value allowed by the paneconfigure subcommand
        tpanecgetRW(R>RDR{(RFR×R°((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR™Bs    c    Ks|dkrt| rti}xT|jj|jj|jd|ƒƒD]+}|ddf|d||dd<qAW|St|ƒtkrÒ| rÒ|jj|jj|jd|d|ƒƒ}|ddf|dS|jj|jd|f|j||ƒƒdS(s˜ Query or modify the management options for window.
 
        If no option is specified, returns a list describing all
        of the available options for pathName.  If option is
        specified with no value, then the command returns a list
        describing the one named option (this list will be identical
        to the corresponding sublist of the value returned if no
        option is specified). If one or more option-value pairs are
        specified, then the command modifies the given widget
        option(s) to have the given value(s); in this case the
        command returns an empty string. The following options
        are supported:
 
        after window
            Insert the window after the window specified. window
            should be the name of a window already managed by pathName.
        before window
            Insert the window before the window specified. window
            should be the name of a window already managed by pathName.
        height size
            Specify a height for the window. The height will be the
            outer dimension of the window including its border, if
            any. If size is an empty string, or if -height is not
            specified, then the height requested internally by the
            window will be used initially; the height may later be
            adjusted by the movement of sashes in the panedwindow.
            Size may be any value accepted by Tk_GetPixels.
        minsize n
            Specifies that the size of the window cannot be made
            less than n. This constraint only affects the size of
            the widget in the paned dimension -- the x dimension
            for horizontal panedwindows, the y dimension for
            vertical panedwindows. May be any value accepted by
            Tk_GetPixels.
        padx n
            Specifies a non-negative value indicating how much
            extra space to leave on each side of the window in
            the X-direction. The value may have any of the forms
            accepted by Tk_GetPixels.
        pady n
            Specifies a non-negative value indicating how much
            extra space to leave on each side of the window in
            the Y-direction. The value may have any of the forms
            accepted by Tk_GetPixels.
        sticky style
            If a window's pane is larger than the requested
            dimensions of the window, this option may be used
            to position (or stretch) the window within its pane.
            Style is a string that contains zero or more of the
            characters n, s, e or w. The string can optionally
            contains spaces or commas, but they are ignored. Each
            letter refers to a side (north, south, east, or west)
            that the window will "stick" to. If both n and s
            (or e and w) are specified, the window will be
            stretched to fill the entire height (or width) of
            its cavity.
        width size
            Specify a width for the window. The width will be
            the outer dimension of the window including its
            border, if any. If size is an empty string, or
            if -width is not specified, then the width requested
            internally by the window will be used initially; the
            width may later be adjusted by the movement of sashes
            in the panedwindow. Size may be any value accepted by
            Tk_GetPixels.
 
        t paneconfigureiiRWN(RR>R[RDR{RRR (RFRR$RvR,((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRšJsD )cCs|jj|jdƒS(s+Returns an ordered list of the child panes.tpanes(R>RDR{(RF((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR›sN(R+R,R-RRIR±RpRQRRR’R“R”R•R–R—R˜R™Ršt
paneconfigR›(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRŽß s$    
                                            Qt
StudbuttoncBseZdid„ZRS(cKsitj||d||ƒ|jd|jƒ|jd|jƒ|jd|jƒ|jd|jƒdS(Nt
studbuttons <Any-Enter>s <Any-Leave>s<1>s<ButtonRelease-1>(RdRIRGRlRnRoRp(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI¥s
N(R+R,RRI(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyR¤st    TributtoncBseZdid„ZRS(cKs…tj||d||ƒ|jd|jƒ|jd|jƒ|jd|jƒ|jd|jƒ|d|d<|d|d<dS(    Nt    tributtons <Any-Enter>s <Any-Leave>s<1>s<ButtonRelease-1>tbgtfgtactivebackground(RdRIRGRlRnRoRp(RFRGR$Rv((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRI­sN(R+R,RRI(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRŸ¬scCsëtƒ}dt}tdkrMy|tddƒ}WqMtk
rIqMXnt|d|ƒ}|jƒt|ddd|d„ƒ}|jƒ||_t|dd    d|jƒ}|jƒ|j    ƒ|j
ƒ|j ƒ|j ƒdS(
NsThis is Tcl/Tk version %sg333333 @s
This should be a cedilla: çs
iso-8859-1Rªs    Click me!R¿cSs|jjdd|jdƒS(NRªs[%s](ttestR‰(R†((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyRŽÅs tQUIT( Rt
TclVersionRt    NameErrorRáR‘RjR¤RoRöRRáRj(R†RªRâR¤RN((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt_test¹s(    
      
 
    
 
 
 
t__main__(^R-t __version__R~tplatformtFixTkRttkinterRŽR½t TkconstantstreR!RÀR3R6R5R¦tREADABLEtWRITABLEt    EXCEPTIONtcreatefilehandlerR RtdeletefilehandlertcompileRRRRRR)R*R.R/R0R2R7RBR8RaRbReRgRjR3RdRfRhRmR]RÆRÍRÑRRNRORTRXR]RdReRjRuRxRyRzR{R|RÐRÔRàRáRãRòRRRRRR#RhRmRyR|R‡R¼R¾RˆRŒRŽRRŸR¨R+(((sV/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/lib-tk/Tkinter.pyt<module>sÔ      
 
                             
        ,         L     ÿÿÿÿAÊz-258>                 ñA^y!(ÿH %<<        žÅ