-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit_log.html
More file actions
964 lines (569 loc) · 81.5 KB
/
Copy pathgit_log.html
File metadata and controls
964 lines (569 loc) · 81.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><title>Python: module git_log</title>
<meta charset="utf-8">
</head><body bgcolor="#f0f0f8">
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
<tr bgcolor="#7799ee">
<td valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong>git_log</strong></big></big></font></td
><td align=right valign=bottom
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/Karthik/Documents/Internships&Jobs/Tesla/git_history/git_log.py">/Users/Karthik/Documents/Internships&Jobs/Tesla/git_history/git_log.py</a></font></td></tr></table>
<p></p>
<p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#aa55cc">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Modules</strong></big></font></td></tr>
<tr><td bgcolor="#aa55cc"><tt> </tt></td><td> </td>
<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="PyQt4.QtCore.html">PyQt4.QtCore</a><br>
<a href="PyQt4.QtGui.html">PyQt4.QtGui</a><br>
</td><td width="25%" valign=top><a href="git_log_ui.html">git_log_ui</a><br>
<a href="os.html">os</a><br>
</td><td width="25%" valign=top><a href="subprocess.html">subprocess</a><br>
<a href="sys.html">sys</a><br>
</td><td width="25%" valign=top></td></tr></table></td></tr></table><p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ee77aa">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
<tr><td bgcolor="#ee77aa"><tt> </tt></td><td> </td>
<td width="100%"><dl>
<dt><font face="helvetica, arial"><a href="PyQt4.QtGui.html#QMainWindow">PyQt4.QtGui.QMainWindow</a>(<a href="PyQt4.QtGui.html#QWidget">PyQt4.QtGui.QWidget</a>)
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial"><a href="git_log.html#GitLog">GitLog</a>(<a href="PyQt4.QtGui.html#QMainWindow">PyQt4.QtGui.QMainWindow</a>, <a href="git_log_ui.html#Ui_MainWindow">git_log_ui.Ui_MainWindow</a>)
</font></dt></dl>
</dd>
<dt><font face="helvetica, arial"><a href="git_log_ui.html#Ui_MainWindow">git_log_ui.Ui_MainWindow</a>(<a href="__builtin__.html#object">__builtin__.object</a>)
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial"><a href="git_log.html#GitLog">GitLog</a>(<a href="PyQt4.QtGui.html#QMainWindow">PyQt4.QtGui.QMainWindow</a>, <a href="git_log_ui.html#Ui_MainWindow">git_log_ui.Ui_MainWindow</a>)
</font></dt></dl>
</dd>
</dl>
<p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="GitLog">class <strong>GitLog</strong></a>(<a href="PyQt4.QtGui.html#QMainWindow">PyQt4.QtGui.QMainWindow</a>, <a href="git_log_ui.html#Ui_MainWindow">git_log_ui.Ui_MainWindow</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>Class <a href="#GitLog">GitLog</a> inherits the QtGui.<a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a> and git_log_ui.<a href="git_log_ui.html#Ui_MainWindow">Ui_MainWindow</a> classes.<br>
It uses them to provide the UI for this application.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="git_log.html#GitLog">GitLog</a></dd>
<dd><a href="PyQt4.QtGui.html#QMainWindow">PyQt4.QtGui.QMainWindow</a></dd>
<dd><a href="PyQt4.QtGui.html#QWidget">PyQt4.QtGui.QWidget</a></dd>
<dd><a href="PyQt4.QtCore.html#QObject">PyQt4.QtCore.QObject</a></dd>
<dd><a href="sip.html#wrapper">sip.wrapper</a></dd>
<dd><a href="PyQt4.QtGui.html#QPaintDevice">PyQt4.QtGui.QPaintDevice</a></dd>
<dd><a href="sip.html#simplewrapper">sip.simplewrapper</a></dd>
<dd><a href="git_log_ui.html#Ui_MainWindow">git_log_ui.Ui_MainWindow</a></dd>
<dd><a href="__builtin__.html#object">__builtin__.object</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="GitLog-__init__"><strong>__init__</strong></a>(self)</dt></dl>
<dl><dt><a name="GitLog-close_application"><strong>close_application</strong></a>(self)</dt><dd><tt>Function to close the application</tt></dd></dl>
<dl><dt><a name="GitLog-create_comment_tree"><strong>create_comment_tree</strong></a>(self)</dt><dd><tt>Function to add the logs in the tree widget using comments as each item in the tree.</tt></dd></dl>
<dl><dt><a name="GitLog-display_path"><strong>display_path</strong></a>(self, path)</dt><dd><tt>Function to display the path of file/directory in the text box.<br>
<br>
Parameters:<br>
-----------<br>
path: String. The path to be displayed in the text box</tt></dd></dl>
<dl><dt><a name="GitLog-get_directory_path"><strong>get_directory_path</strong></a>(self)</dt><dd><tt>Function to get the full path of the selected directory.</tt></dd></dl>
<dl><dt><a name="GitLog-get_file_path"><strong>get_file_path</strong></a>(self)</dt><dd><tt>Function to get the full path of the selected file.</tt></dd></dl>
<dl><dt><a name="GitLog-get_git_log_using_revisions"><strong>get_git_log_using_revisions</strong></a>(self, revs)</dt><dd><tt>Function to get the output of the 'git log' command for the given SHA revisions.<br>
<br>
Parameters:<br>
-----------<br>
revs: String. The revision(s) entered in the text box</tt></dd></dl>
<dl><dt><a name="GitLog-get_git_log_using_timeline"><strong>get_git_log_using_timeline</strong></a>(self, time)</dt><dd><tt>Function to get the output of the 'git log' command for the selected file/directory<br>
over the selected time duration.<br>
<br>
Parameters:<br>
-----------<br>
time: String. The time duration selected from the time line combo box.</tt></dd></dl>
<dl><dt><a name="GitLog-reset_all_fields"><strong>reset_all_fields</strong></a>(self)</dt><dd><tt>Function to reset all the fields in the application UI</tt></dd></dl>
<dl><dt><a name="GitLog-select_file_or_directory"><strong>select_file_or_directory</strong></a>(self, fileOrDir)</dt><dd><tt>Function to check what option was selected (File/Directory) and call the appropriate<br>
function to get the file/directory path.<br>
<br>
Parameters:<br>
-----------<br>
fileOrDir: String. Will have the value selected in the "Select File/Directory" combo box</tt></dd></dl>
<hr>
Methods inherited from <a href="PyQt4.QtGui.html#QMainWindow">PyQt4.QtGui.QMainWindow</a>:<br>
<dl><dt><a name="GitLog-addDockWidget"><strong>addDockWidget</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-addDockWidget">addDockWidget</a>(Qt.DockWidgetArea, QDockWidget)<br>
<a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-addDockWidget">addDockWidget</a>(Qt.DockWidgetArea, QDockWidget, Qt.Orientation)</tt></dd></dl>
<dl><dt><a name="GitLog-addToolBar"><strong>addToolBar</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-addToolBar">addToolBar</a>(Qt.ToolBarArea, QToolBar)<br>
<a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-addToolBar">addToolBar</a>(QToolBar)<br>
<a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-addToolBar">addToolBar</a>(QString) -> QToolBar</tt></dd></dl>
<dl><dt><a name="GitLog-addToolBarBreak"><strong>addToolBarBreak</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-addToolBarBreak">addToolBarBreak</a>(Qt.ToolBarArea area=Qt.TopToolBarArea)</tt></dd></dl>
<dl><dt><a name="GitLog-centralWidget"><strong>centralWidget</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-centralWidget">centralWidget</a>() -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-contextMenuEvent"><strong>contextMenuEvent</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-contextMenuEvent">contextMenuEvent</a>(QContextMenuEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-corner"><strong>corner</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-corner">corner</a>(Qt.Corner) -> Qt.DockWidgetArea</tt></dd></dl>
<dl><dt><a name="GitLog-createPopupMenu"><strong>createPopupMenu</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-createPopupMenu">createPopupMenu</a>() -> QMenu</tt></dd></dl>
<dl><dt><a name="GitLog-dockOptions"><strong>dockOptions</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-dockOptions">dockOptions</a>() -> <a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.DockOptions</tt></dd></dl>
<dl><dt><a name="GitLog-dockWidgetArea"><strong>dockWidgetArea</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-dockWidgetArea">dockWidgetArea</a>(QDockWidget) -> Qt.DockWidgetArea</tt></dd></dl>
<dl><dt><a name="GitLog-documentMode"><strong>documentMode</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-documentMode">documentMode</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-event"><strong>event</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-event">event</a>(QEvent) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-iconSize"><strong>iconSize</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-iconSize">iconSize</a>() -> QSize</tt></dd></dl>
<strong>iconSizeChanged</strong> = <unbound signal iconSizeChanged>
<dl><dt><a name="GitLog-insertToolBar"><strong>insertToolBar</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-insertToolBar">insertToolBar</a>(QToolBar, QToolBar)</tt></dd></dl>
<dl><dt><a name="GitLog-insertToolBarBreak"><strong>insertToolBarBreak</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-insertToolBarBreak">insertToolBarBreak</a>(QToolBar)</tt></dd></dl>
<dl><dt><a name="GitLog-isAnimated"><strong>isAnimated</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-isAnimated">isAnimated</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isDockNestingEnabled"><strong>isDockNestingEnabled</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-isDockNestingEnabled">isDockNestingEnabled</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isSeparator"><strong>isSeparator</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-isSeparator">isSeparator</a>(QPoint) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-menuBar"><strong>menuBar</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-menuBar">menuBar</a>() -> QMenuBar</tt></dd></dl>
<dl><dt><a name="GitLog-menuWidget"><strong>menuWidget</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-menuWidget">menuWidget</a>() -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-removeDockWidget"><strong>removeDockWidget</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-removeDockWidget">removeDockWidget</a>(QDockWidget)</tt></dd></dl>
<dl><dt><a name="GitLog-removeToolBar"><strong>removeToolBar</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-removeToolBar">removeToolBar</a>(QToolBar)</tt></dd></dl>
<dl><dt><a name="GitLog-removeToolBarBreak"><strong>removeToolBarBreak</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-removeToolBarBreak">removeToolBarBreak</a>(QToolBar)</tt></dd></dl>
<dl><dt><a name="GitLog-restoreDockWidget"><strong>restoreDockWidget</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-restoreDockWidget">restoreDockWidget</a>(QDockWidget) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-restoreState"><strong>restoreState</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-restoreState">restoreState</a>(QByteArray, int version=0) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-saveState"><strong>saveState</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-saveState">saveState</a>(int version=0) -> QByteArray</tt></dd></dl>
<dl><dt><a name="GitLog-setAnimated"><strong>setAnimated</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setAnimated">setAnimated</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setCentralWidget"><strong>setCentralWidget</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setCentralWidget">setCentralWidget</a>(QWidget)</tt></dd></dl>
<dl><dt><a name="GitLog-setCorner"><strong>setCorner</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setCorner">setCorner</a>(Qt.Corner, Qt.DockWidgetArea)</tt></dd></dl>
<dl><dt><a name="GitLog-setDockNestingEnabled"><strong>setDockNestingEnabled</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setDockNestingEnabled">setDockNestingEnabled</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setDockOptions"><strong>setDockOptions</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setDockOptions">setDockOptions</a>(<a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.DockOptions)</tt></dd></dl>
<dl><dt><a name="GitLog-setDocumentMode"><strong>setDocumentMode</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setDocumentMode">setDocumentMode</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setIconSize"><strong>setIconSize</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setIconSize">setIconSize</a>(QSize)</tt></dd></dl>
<dl><dt><a name="GitLog-setMenuBar"><strong>setMenuBar</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setMenuBar">setMenuBar</a>(QMenuBar)</tt></dd></dl>
<dl><dt><a name="GitLog-setMenuWidget"><strong>setMenuWidget</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setMenuWidget">setMenuWidget</a>(QWidget)</tt></dd></dl>
<dl><dt><a name="GitLog-setStatusBar"><strong>setStatusBar</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setStatusBar">setStatusBar</a>(QStatusBar)</tt></dd></dl>
<dl><dt><a name="GitLog-setTabPosition"><strong>setTabPosition</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setTabPosition">setTabPosition</a>(Qt.DockWidgetAreas, QTabWidget.TabPosition)</tt></dd></dl>
<dl><dt><a name="GitLog-setTabShape"><strong>setTabShape</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setTabShape">setTabShape</a>(QTabWidget.TabShape)</tt></dd></dl>
<dl><dt><a name="GitLog-setToolButtonStyle"><strong>setToolButtonStyle</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setToolButtonStyle">setToolButtonStyle</a>(Qt.ToolButtonStyle)</tt></dd></dl>
<dl><dt><a name="GitLog-setUnifiedTitleAndToolBarOnMac"><strong>setUnifiedTitleAndToolBarOnMac</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-setUnifiedTitleAndToolBarOnMac">setUnifiedTitleAndToolBarOnMac</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-splitDockWidget"><strong>splitDockWidget</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-splitDockWidget">splitDockWidget</a>(QDockWidget, QDockWidget, Qt.Orientation)</tt></dd></dl>
<dl><dt><a name="GitLog-statusBar"><strong>statusBar</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-statusBar">statusBar</a>() -> QStatusBar</tt></dd></dl>
<dl><dt><a name="GitLog-tabPosition"><strong>tabPosition</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-tabPosition">tabPosition</a>(Qt.DockWidgetArea) -> QTabWidget.TabPosition</tt></dd></dl>
<dl><dt><a name="GitLog-tabShape"><strong>tabShape</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-tabShape">tabShape</a>() -> QTabWidget.TabShape</tt></dd></dl>
<dl><dt><a name="GitLog-tabifiedDockWidgets"><strong>tabifiedDockWidgets</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-tabifiedDockWidgets">tabifiedDockWidgets</a>(QDockWidget) -> list-of-QDockWidget</tt></dd></dl>
<dl><dt><a name="GitLog-tabifyDockWidget"><strong>tabifyDockWidget</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-tabifyDockWidget">tabifyDockWidget</a>(QDockWidget, QDockWidget)</tt></dd></dl>
<dl><dt><a name="GitLog-toolBarArea"><strong>toolBarArea</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-toolBarArea">toolBarArea</a>(QToolBar) -> Qt.ToolBarArea</tt></dd></dl>
<dl><dt><a name="GitLog-toolBarBreak"><strong>toolBarBreak</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-toolBarBreak">toolBarBreak</a>(QToolBar) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-toolButtonStyle"><strong>toolButtonStyle</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-toolButtonStyle">toolButtonStyle</a>() -> Qt.ToolButtonStyle</tt></dd></dl>
<strong>toolButtonStyleChanged</strong> = <unbound signal toolButtonStyleChanged>
<dl><dt><a name="GitLog-unifiedTitleAndToolBarOnMac"><strong>unifiedTitleAndToolBarOnMac</strong></a>(...)</dt><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-unifiedTitleAndToolBarOnMac">unifiedTitleAndToolBarOnMac</a>() -> bool</tt></dd></dl>
<hr>
Data and other attributes inherited from <a href="PyQt4.QtGui.html#QMainWindow">PyQt4.QtGui.QMainWindow</a>:<br>
<dl><dt><strong>AllowNestedDocks</strong> = 2</dl>
<dl><dt><strong>AllowTabbedDocks</strong> = 4</dl>
<dl><dt><strong>AnimatedDocks</strong> = 1</dl>
<dl><dt><strong>DockOption</strong> = <class 'PyQt4.QtGui.DockOption'></dl>
<dl><dt><strong>DockOptions</strong> = <class 'PyQt4.QtGui.DockOptions'><dd><tt><a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-DockOptions">DockOptions</a>(<a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.DockOptions)<br>
<a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-DockOptions">DockOptions</a>(int)<br>
<a href="PyQt4.QtGui.html#QMainWindow">QMainWindow</a>.<a href="#GitLog-DockOptions">DockOptions</a>()</tt></dl>
<dl><dt><strong>ForceTabbedDocks</strong> = 8</dl>
<dl><dt><strong>VerticalTabs</strong> = 16</dl>
<hr>
Methods inherited from <a href="PyQt4.QtGui.html#QWidget">PyQt4.QtGui.QWidget</a>:<br>
<dl><dt><a name="GitLog-acceptDrops"><strong>acceptDrops</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-acceptDrops">acceptDrops</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-accessibleDescription"><strong>accessibleDescription</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-accessibleDescription">accessibleDescription</a>() -> QString</tt></dd></dl>
<dl><dt><a name="GitLog-accessibleName"><strong>accessibleName</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-accessibleName">accessibleName</a>() -> QString</tt></dd></dl>
<dl><dt><a name="GitLog-actionEvent"><strong>actionEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-actionEvent">actionEvent</a>(QActionEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-actions"><strong>actions</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-actions">actions</a>() -> list-of-QAction</tt></dd></dl>
<dl><dt><a name="GitLog-activateWindow"><strong>activateWindow</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-activateWindow">activateWindow</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-addAction"><strong>addAction</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-addAction">addAction</a>(QAction)</tt></dd></dl>
<dl><dt><a name="GitLog-addActions"><strong>addActions</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-addActions">addActions</a>(list-of-QAction)</tt></dd></dl>
<dl><dt><a name="GitLog-adjustSize"><strong>adjustSize</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-adjustSize">adjustSize</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-autoFillBackground"><strong>autoFillBackground</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-autoFillBackground">autoFillBackground</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-backgroundRole"><strong>backgroundRole</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-backgroundRole">backgroundRole</a>() -> QPalette.ColorRole</tt></dd></dl>
<dl><dt><a name="GitLog-baseSize"><strong>baseSize</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-baseSize">baseSize</a>() -> QSize</tt></dd></dl>
<dl><dt><a name="GitLog-changeEvent"><strong>changeEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-changeEvent">changeEvent</a>(QEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-childAt"><strong>childAt</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-childAt">childAt</a>(QPoint) -> QWidget<br>
QWidget.<a href="#GitLog-childAt">childAt</a>(int, int) -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-childrenRect"><strong>childrenRect</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-childrenRect">childrenRect</a>() -> QRect</tt></dd></dl>
<dl><dt><a name="GitLog-childrenRegion"><strong>childrenRegion</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-childrenRegion">childrenRegion</a>() -> QRegion</tt></dd></dl>
<dl><dt><a name="GitLog-clearFocus"><strong>clearFocus</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-clearFocus">clearFocus</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-clearMask"><strong>clearMask</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-clearMask">clearMask</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-close"><strong>close</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-close">close</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-closeEvent"><strong>closeEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-closeEvent">closeEvent</a>(QCloseEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-contentsMargins"><strong>contentsMargins</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-contentsMargins">contentsMargins</a>() -> QMargins</tt></dd></dl>
<dl><dt><a name="GitLog-contentsRect"><strong>contentsRect</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-contentsRect">contentsRect</a>() -> QRect</tt></dd></dl>
<dl><dt><a name="GitLog-contextMenuPolicy"><strong>contextMenuPolicy</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-contextMenuPolicy">contextMenuPolicy</a>() -> Qt.ContextMenuPolicy</tt></dd></dl>
<dl><dt><a name="GitLog-create"><strong>create</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-create">create</a>(int window=0, bool initializeWindow=True, bool destroyOldWindow=True)</tt></dd></dl>
<dl><dt><a name="GitLog-cursor"><strong>cursor</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-cursor">cursor</a>() -> QCursor</tt></dd></dl>
<strong>customContextMenuRequested</strong> = <unbound signal customContextMenuRequested>
<dl><dt><a name="GitLog-destroy"><strong>destroy</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-destroy">destroy</a>(bool destroyWindow=True, bool destroySubWindows=True)</tt></dd></dl>
<dl><dt><a name="GitLog-devType"><strong>devType</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-devType">devType</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-dragEnterEvent"><strong>dragEnterEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-dragEnterEvent">dragEnterEvent</a>(QDragEnterEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-dragLeaveEvent"><strong>dragLeaveEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-dragLeaveEvent">dragLeaveEvent</a>(QDragLeaveEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-dragMoveEvent"><strong>dragMoveEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-dragMoveEvent">dragMoveEvent</a>(QDragMoveEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-dropEvent"><strong>dropEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-dropEvent">dropEvent</a>(QDropEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-effectiveWinId"><strong>effectiveWinId</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-effectiveWinId">effectiveWinId</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-enabledChange"><strong>enabledChange</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-enabledChange">enabledChange</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-ensurePolished"><strong>ensurePolished</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-ensurePolished">ensurePolished</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-enterEvent"><strong>enterEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-enterEvent">enterEvent</a>(QEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-find"><strong>find</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-find">find</a>(int) -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-focusInEvent"><strong>focusInEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-focusInEvent">focusInEvent</a>(QFocusEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-focusNextChild"><strong>focusNextChild</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-focusNextChild">focusNextChild</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-focusNextPrevChild"><strong>focusNextPrevChild</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-focusNextPrevChild">focusNextPrevChild</a>(bool) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-focusOutEvent"><strong>focusOutEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-focusOutEvent">focusOutEvent</a>(QFocusEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-focusPolicy"><strong>focusPolicy</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-focusPolicy">focusPolicy</a>() -> Qt.FocusPolicy</tt></dd></dl>
<dl><dt><a name="GitLog-focusPreviousChild"><strong>focusPreviousChild</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-focusPreviousChild">focusPreviousChild</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-focusProxy"><strong>focusProxy</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-focusProxy">focusProxy</a>() -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-focusWidget"><strong>focusWidget</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-focusWidget">focusWidget</a>() -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-font"><strong>font</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-font">font</a>() -> QFont</tt></dd></dl>
<dl><dt><a name="GitLog-fontChange"><strong>fontChange</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-fontChange">fontChange</a>(QFont)</tt></dd></dl>
<dl><dt><a name="GitLog-fontInfo"><strong>fontInfo</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-fontInfo">fontInfo</a>() -> QFontInfo</tt></dd></dl>
<dl><dt><a name="GitLog-fontMetrics"><strong>fontMetrics</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-fontMetrics">fontMetrics</a>() -> QFontMetrics</tt></dd></dl>
<dl><dt><a name="GitLog-foregroundRole"><strong>foregroundRole</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-foregroundRole">foregroundRole</a>() -> QPalette.ColorRole</tt></dd></dl>
<dl><dt><a name="GitLog-frameGeometry"><strong>frameGeometry</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-frameGeometry">frameGeometry</a>() -> QRect</tt></dd></dl>
<dl><dt><a name="GitLog-frameSize"><strong>frameSize</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-frameSize">frameSize</a>() -> QSize</tt></dd></dl>
<dl><dt><a name="GitLog-geometry"><strong>geometry</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-geometry">geometry</a>() -> QRect</tt></dd></dl>
<dl><dt><a name="GitLog-getContentsMargins"><strong>getContentsMargins</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-getContentsMargins">getContentsMargins</a>() -> (int, int, int, int)</tt></dd></dl>
<dl><dt><a name="GitLog-grabGesture"><strong>grabGesture</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-grabGesture">grabGesture</a>(Qt.GestureType, Qt.GestureFlags flags=Qt.GestureFlags(0))</tt></dd></dl>
<dl><dt><a name="GitLog-grabKeyboard"><strong>grabKeyboard</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-grabKeyboard">grabKeyboard</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-grabMouse"><strong>grabMouse</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-grabMouse">grabMouse</a>()<br>
QWidget.<a href="#GitLog-grabMouse">grabMouse</a>(QCursor)</tt></dd></dl>
<dl><dt><a name="GitLog-grabShortcut"><strong>grabShortcut</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-grabShortcut">grabShortcut</a>(QKeySequence, Qt.ShortcutContext context=Qt.WindowShortcut) -> int</tt></dd></dl>
<dl><dt><a name="GitLog-graphicsEffect"><strong>graphicsEffect</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-graphicsEffect">graphicsEffect</a>() -> QGraphicsEffect</tt></dd></dl>
<dl><dt><a name="GitLog-graphicsProxyWidget"><strong>graphicsProxyWidget</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-graphicsProxyWidget">graphicsProxyWidget</a>() -> QGraphicsProxyWidget</tt></dd></dl>
<dl><dt><a name="GitLog-handle"><strong>handle</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-handle">handle</a>() -> sip.voidptr</tt></dd></dl>
<dl><dt><a name="GitLog-hasFocus"><strong>hasFocus</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-hasFocus">hasFocus</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-hasMouseTracking"><strong>hasMouseTracking</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-hasMouseTracking">hasMouseTracking</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-height"><strong>height</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-height">height</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-heightForWidth"><strong>heightForWidth</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-heightForWidth">heightForWidth</a>(int) -> int</tt></dd></dl>
<dl><dt><a name="GitLog-hide"><strong>hide</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-hide">hide</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-hideEvent"><strong>hideEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-hideEvent">hideEvent</a>(QHideEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-inputContext"><strong>inputContext</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-inputContext">inputContext</a>() -> QInputContext</tt></dd></dl>
<dl><dt><a name="GitLog-inputMethodEvent"><strong>inputMethodEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-inputMethodEvent">inputMethodEvent</a>(QInputMethodEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-inputMethodHints"><strong>inputMethodHints</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-inputMethodHints">inputMethodHints</a>() -> Qt.InputMethodHints</tt></dd></dl>
<dl><dt><a name="GitLog-inputMethodQuery"><strong>inputMethodQuery</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-inputMethodQuery">inputMethodQuery</a>(Qt.InputMethodQuery) -> QVariant</tt></dd></dl>
<dl><dt><a name="GitLog-insertAction"><strong>insertAction</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-insertAction">insertAction</a>(QAction, QAction)</tt></dd></dl>
<dl><dt><a name="GitLog-insertActions"><strong>insertActions</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-insertActions">insertActions</a>(QAction, list-of-QAction)</tt></dd></dl>
<dl><dt><a name="GitLog-isActiveWindow"><strong>isActiveWindow</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isActiveWindow">isActiveWindow</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isAncestorOf"><strong>isAncestorOf</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isAncestorOf">isAncestorOf</a>(QWidget) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isEnabled"><strong>isEnabled</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isEnabled">isEnabled</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isEnabledTo"><strong>isEnabledTo</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isEnabledTo">isEnabledTo</a>(QWidget) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isEnabledToTLW"><strong>isEnabledToTLW</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isEnabledToTLW">isEnabledToTLW</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isFullScreen"><strong>isFullScreen</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isFullScreen">isFullScreen</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isHidden"><strong>isHidden</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isHidden">isHidden</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isLeftToRight"><strong>isLeftToRight</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isLeftToRight">isLeftToRight</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isMaximized"><strong>isMaximized</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isMaximized">isMaximized</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isMinimized"><strong>isMinimized</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isMinimized">isMinimized</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isModal"><strong>isModal</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isModal">isModal</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isRightToLeft"><strong>isRightToLeft</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isRightToLeft">isRightToLeft</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isTopLevel"><strong>isTopLevel</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isTopLevel">isTopLevel</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isVisible"><strong>isVisible</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isVisible">isVisible</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isVisibleTo"><strong>isVisibleTo</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isVisibleTo">isVisibleTo</a>(QWidget) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isWindow"><strong>isWindow</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isWindow">isWindow</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-isWindowModified"><strong>isWindowModified</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-isWindowModified">isWindowModified</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-keyPressEvent"><strong>keyPressEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-keyPressEvent">keyPressEvent</a>(QKeyEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-keyReleaseEvent"><strong>keyReleaseEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-keyReleaseEvent">keyReleaseEvent</a>(QKeyEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-keyboardGrabber"><strong>keyboardGrabber</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-keyboardGrabber">keyboardGrabber</a>() -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-languageChange"><strong>languageChange</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-languageChange">languageChange</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-layout"><strong>layout</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-layout">layout</a>() -> QLayout</tt></dd></dl>
<dl><dt><a name="GitLog-layoutDirection"><strong>layoutDirection</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-layoutDirection">layoutDirection</a>() -> Qt.LayoutDirection</tt></dd></dl>
<dl><dt><a name="GitLog-leaveEvent"><strong>leaveEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-leaveEvent">leaveEvent</a>(QEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-locale"><strong>locale</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-locale">locale</a>() -> QLocale</tt></dd></dl>
<dl><dt><a name="GitLog-lower"><strong>lower</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-lower">lower</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-mapFrom"><strong>mapFrom</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-mapFrom">mapFrom</a>(QWidget, QPoint) -> QPoint</tt></dd></dl>
<dl><dt><a name="GitLog-mapFromGlobal"><strong>mapFromGlobal</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-mapFromGlobal">mapFromGlobal</a>(QPoint) -> QPoint</tt></dd></dl>
<dl><dt><a name="GitLog-mapFromParent"><strong>mapFromParent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-mapFromParent">mapFromParent</a>(QPoint) -> QPoint</tt></dd></dl>
<dl><dt><a name="GitLog-mapTo"><strong>mapTo</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-mapTo">mapTo</a>(QWidget, QPoint) -> QPoint</tt></dd></dl>
<dl><dt><a name="GitLog-mapToGlobal"><strong>mapToGlobal</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-mapToGlobal">mapToGlobal</a>(QPoint) -> QPoint</tt></dd></dl>
<dl><dt><a name="GitLog-mapToParent"><strong>mapToParent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-mapToParent">mapToParent</a>(QPoint) -> QPoint</tt></dd></dl>
<dl><dt><a name="GitLog-mask"><strong>mask</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-mask">mask</a>() -> QRegion</tt></dd></dl>
<dl><dt><a name="GitLog-maximumHeight"><strong>maximumHeight</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-maximumHeight">maximumHeight</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-maximumSize"><strong>maximumSize</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-maximumSize">maximumSize</a>() -> QSize</tt></dd></dl>
<dl><dt><a name="GitLog-maximumWidth"><strong>maximumWidth</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-maximumWidth">maximumWidth</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-metric"><strong>metric</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-metric">metric</a>(QPaintDevice.PaintDeviceMetric) -> int</tt></dd></dl>
<dl><dt><a name="GitLog-minimumHeight"><strong>minimumHeight</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-minimumHeight">minimumHeight</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-minimumSize"><strong>minimumSize</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-minimumSize">minimumSize</a>() -> QSize</tt></dd></dl>
<dl><dt><a name="GitLog-minimumSizeHint"><strong>minimumSizeHint</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-minimumSizeHint">minimumSizeHint</a>() -> QSize</tt></dd></dl>
<dl><dt><a name="GitLog-minimumWidth"><strong>minimumWidth</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-minimumWidth">minimumWidth</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-mouseDoubleClickEvent"><strong>mouseDoubleClickEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-mouseDoubleClickEvent">mouseDoubleClickEvent</a>(QMouseEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-mouseGrabber"><strong>mouseGrabber</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-mouseGrabber">mouseGrabber</a>() -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-mouseMoveEvent"><strong>mouseMoveEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-mouseMoveEvent">mouseMoveEvent</a>(QMouseEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-mousePressEvent"><strong>mousePressEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-mousePressEvent">mousePressEvent</a>(QMouseEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-mouseReleaseEvent"><strong>mouseReleaseEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-mouseReleaseEvent">mouseReleaseEvent</a>(QMouseEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-move"><strong>move</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-move">move</a>(QPoint)<br>
QWidget.<a href="#GitLog-move">move</a>(int, int)</tt></dd></dl>
<dl><dt><a name="GitLog-moveEvent"><strong>moveEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-moveEvent">moveEvent</a>(QMoveEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-nativeParentWidget"><strong>nativeParentWidget</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-nativeParentWidget">nativeParentWidget</a>() -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-nextInFocusChain"><strong>nextInFocusChain</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-nextInFocusChain">nextInFocusChain</a>() -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-normalGeometry"><strong>normalGeometry</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-normalGeometry">normalGeometry</a>() -> QRect</tt></dd></dl>
<dl><dt><a name="GitLog-overrideWindowFlags"><strong>overrideWindowFlags</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-overrideWindowFlags">overrideWindowFlags</a>(Qt.WindowFlags)</tt></dd></dl>
<dl><dt><a name="GitLog-overrideWindowState"><strong>overrideWindowState</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-overrideWindowState">overrideWindowState</a>(Qt.WindowStates)</tt></dd></dl>
<dl><dt><a name="GitLog-paintEngine"><strong>paintEngine</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-paintEngine">paintEngine</a>() -> QPaintEngine</tt></dd></dl>
<dl><dt><a name="GitLog-paintEvent"><strong>paintEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-paintEvent">paintEvent</a>(QPaintEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-palette"><strong>palette</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-palette">palette</a>() -> QPalette</tt></dd></dl>
<dl><dt><a name="GitLog-paletteChange"><strong>paletteChange</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-paletteChange">paletteChange</a>(QPalette)</tt></dd></dl>
<dl><dt><a name="GitLog-parentWidget"><strong>parentWidget</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-parentWidget">parentWidget</a>() -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-pos"><strong>pos</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-pos">pos</a>() -> QPoint</tt></dd></dl>
<dl><dt><a name="GitLog-previousInFocusChain"><strong>previousInFocusChain</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-previousInFocusChain">previousInFocusChain</a>() -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-raise_"><strong>raise_</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-raise_">raise_</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-rect"><strong>rect</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-rect">rect</a>() -> QRect</tt></dd></dl>
<dl><dt><a name="GitLog-releaseKeyboard"><strong>releaseKeyboard</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-releaseKeyboard">releaseKeyboard</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-releaseMouse"><strong>releaseMouse</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-releaseMouse">releaseMouse</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-releaseShortcut"><strong>releaseShortcut</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-releaseShortcut">releaseShortcut</a>(int)</tt></dd></dl>
<dl><dt><a name="GitLog-removeAction"><strong>removeAction</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-removeAction">removeAction</a>(QAction)</tt></dd></dl>
<dl><dt><a name="GitLog-render"><strong>render</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-render">render</a>(QPaintDevice, QPoint targetOffset=QPoint(), QRegion sourceRegion=QRegion(), QWidget.RenderFlags flags=QWidget.DrawWindowBackground|QWidget.DrawChildren)<br>
QWidget.<a href="#GitLog-render">render</a>(QPainter, QPoint targetOffset=QPoint(), QRegion sourceRegion=QRegion(), QWidget.RenderFlags flags=QWidget.DrawWindowBackground|QWidget.DrawChildren)</tt></dd></dl>
<dl><dt><a name="GitLog-repaint"><strong>repaint</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-repaint">repaint</a>()<br>
QWidget.<a href="#GitLog-repaint">repaint</a>(int, int, int, int)<br>
QWidget.<a href="#GitLog-repaint">repaint</a>(QRect)<br>
QWidget.<a href="#GitLog-repaint">repaint</a>(QRegion)</tt></dd></dl>
<dl><dt><a name="GitLog-resetInputContext"><strong>resetInputContext</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-resetInputContext">resetInputContext</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-resize"><strong>resize</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-resize">resize</a>(QSize)<br>
QWidget.<a href="#GitLog-resize">resize</a>(int, int)</tt></dd></dl>
<dl><dt><a name="GitLog-resizeEvent"><strong>resizeEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-resizeEvent">resizeEvent</a>(QResizeEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-restoreGeometry"><strong>restoreGeometry</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-restoreGeometry">restoreGeometry</a>(QByteArray) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-saveGeometry"><strong>saveGeometry</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-saveGeometry">saveGeometry</a>() -> QByteArray</tt></dd></dl>
<dl><dt><a name="GitLog-scroll"><strong>scroll</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-scroll">scroll</a>(int, int)<br>
QWidget.<a href="#GitLog-scroll">scroll</a>(int, int, QRect)</tt></dd></dl>
<dl><dt><a name="GitLog-setAcceptDrops"><strong>setAcceptDrops</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setAcceptDrops">setAcceptDrops</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setAccessibleDescription"><strong>setAccessibleDescription</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setAccessibleDescription">setAccessibleDescription</a>(QString)</tt></dd></dl>
<dl><dt><a name="GitLog-setAccessibleName"><strong>setAccessibleName</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setAccessibleName">setAccessibleName</a>(QString)</tt></dd></dl>
<dl><dt><a name="GitLog-setAttribute"><strong>setAttribute</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setAttribute">setAttribute</a>(Qt.WidgetAttribute, bool on=True)</tt></dd></dl>
<dl><dt><a name="GitLog-setAutoFillBackground"><strong>setAutoFillBackground</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setAutoFillBackground">setAutoFillBackground</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setBackgroundRole"><strong>setBackgroundRole</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setBackgroundRole">setBackgroundRole</a>(QPalette.ColorRole)</tt></dd></dl>
<dl><dt><a name="GitLog-setBaseSize"><strong>setBaseSize</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setBaseSize">setBaseSize</a>(int, int)<br>
QWidget.<a href="#GitLog-setBaseSize">setBaseSize</a>(QSize)</tt></dd></dl>
<dl><dt><a name="GitLog-setContentsMargins"><strong>setContentsMargins</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setContentsMargins">setContentsMargins</a>(int, int, int, int)<br>
QWidget.<a href="#GitLog-setContentsMargins">setContentsMargins</a>(QMargins)</tt></dd></dl>
<dl><dt><a name="GitLog-setContextMenuPolicy"><strong>setContextMenuPolicy</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setContextMenuPolicy">setContextMenuPolicy</a>(Qt.ContextMenuPolicy)</tt></dd></dl>
<dl><dt><a name="GitLog-setCursor"><strong>setCursor</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setCursor">setCursor</a>(QCursor)</tt></dd></dl>
<dl><dt><a name="GitLog-setDisabled"><strong>setDisabled</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setDisabled">setDisabled</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setEnabled"><strong>setEnabled</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setEnabled">setEnabled</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setFixedHeight"><strong>setFixedHeight</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setFixedHeight">setFixedHeight</a>(int)</tt></dd></dl>
<dl><dt><a name="GitLog-setFixedSize"><strong>setFixedSize</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setFixedSize">setFixedSize</a>(QSize)<br>
QWidget.<a href="#GitLog-setFixedSize">setFixedSize</a>(int, int)</tt></dd></dl>
<dl><dt><a name="GitLog-setFixedWidth"><strong>setFixedWidth</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setFixedWidth">setFixedWidth</a>(int)</tt></dd></dl>
<dl><dt><a name="GitLog-setFocus"><strong>setFocus</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setFocus">setFocus</a>()<br>
QWidget.<a href="#GitLog-setFocus">setFocus</a>(Qt.FocusReason)</tt></dd></dl>
<dl><dt><a name="GitLog-setFocusPolicy"><strong>setFocusPolicy</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setFocusPolicy">setFocusPolicy</a>(Qt.FocusPolicy)</tt></dd></dl>
<dl><dt><a name="GitLog-setFocusProxy"><strong>setFocusProxy</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setFocusProxy">setFocusProxy</a>(QWidget)</tt></dd></dl>
<dl><dt><a name="GitLog-setFont"><strong>setFont</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setFont">setFont</a>(QFont)</tt></dd></dl>
<dl><dt><a name="GitLog-setForegroundRole"><strong>setForegroundRole</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setForegroundRole">setForegroundRole</a>(QPalette.ColorRole)</tt></dd></dl>
<dl><dt><a name="GitLog-setGeometry"><strong>setGeometry</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setGeometry">setGeometry</a>(QRect)<br>
QWidget.<a href="#GitLog-setGeometry">setGeometry</a>(int, int, int, int)</tt></dd></dl>
<dl><dt><a name="GitLog-setGraphicsEffect"><strong>setGraphicsEffect</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setGraphicsEffect">setGraphicsEffect</a>(QGraphicsEffect)</tt></dd></dl>
<dl><dt><a name="GitLog-setHidden"><strong>setHidden</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setHidden">setHidden</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setInputContext"><strong>setInputContext</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setInputContext">setInputContext</a>(QInputContext)</tt></dd></dl>
<dl><dt><a name="GitLog-setInputMethodHints"><strong>setInputMethodHints</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setInputMethodHints">setInputMethodHints</a>(Qt.InputMethodHints)</tt></dd></dl>
<dl><dt><a name="GitLog-setLayout"><strong>setLayout</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setLayout">setLayout</a>(QLayout)</tt></dd></dl>
<dl><dt><a name="GitLog-setLayoutDirection"><strong>setLayoutDirection</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setLayoutDirection">setLayoutDirection</a>(Qt.LayoutDirection)</tt></dd></dl>
<dl><dt><a name="GitLog-setLocale"><strong>setLocale</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setLocale">setLocale</a>(QLocale)</tt></dd></dl>
<dl><dt><a name="GitLog-setMask"><strong>setMask</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setMask">setMask</a>(QBitmap)<br>
QWidget.<a href="#GitLog-setMask">setMask</a>(QRegion)</tt></dd></dl>
<dl><dt><a name="GitLog-setMaximumHeight"><strong>setMaximumHeight</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setMaximumHeight">setMaximumHeight</a>(int)</tt></dd></dl>
<dl><dt><a name="GitLog-setMaximumSize"><strong>setMaximumSize</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setMaximumSize">setMaximumSize</a>(int, int)<br>
QWidget.<a href="#GitLog-setMaximumSize">setMaximumSize</a>(QSize)</tt></dd></dl>
<dl><dt><a name="GitLog-setMaximumWidth"><strong>setMaximumWidth</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setMaximumWidth">setMaximumWidth</a>(int)</tt></dd></dl>
<dl><dt><a name="GitLog-setMinimumHeight"><strong>setMinimumHeight</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setMinimumHeight">setMinimumHeight</a>(int)</tt></dd></dl>
<dl><dt><a name="GitLog-setMinimumSize"><strong>setMinimumSize</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setMinimumSize">setMinimumSize</a>(int, int)<br>
QWidget.<a href="#GitLog-setMinimumSize">setMinimumSize</a>(QSize)</tt></dd></dl>
<dl><dt><a name="GitLog-setMinimumWidth"><strong>setMinimumWidth</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setMinimumWidth">setMinimumWidth</a>(int)</tt></dd></dl>
<dl><dt><a name="GitLog-setMouseTracking"><strong>setMouseTracking</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setMouseTracking">setMouseTracking</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setPalette"><strong>setPalette</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setPalette">setPalette</a>(QPalette)</tt></dd></dl>
<dl><dt><a name="GitLog-setParent"><strong>setParent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setParent">setParent</a>(QWidget)<br>
QWidget.<a href="#GitLog-setParent">setParent</a>(QWidget, Qt.WindowFlags)</tt></dd></dl>
<dl><dt><a name="GitLog-setShortcutAutoRepeat"><strong>setShortcutAutoRepeat</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setShortcutAutoRepeat">setShortcutAutoRepeat</a>(int, bool enabled=True)</tt></dd></dl>
<dl><dt><a name="GitLog-setShortcutEnabled"><strong>setShortcutEnabled</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setShortcutEnabled">setShortcutEnabled</a>(int, bool enabled=True)</tt></dd></dl>
<dl><dt><a name="GitLog-setShown"><strong>setShown</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setShown">setShown</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setSizeIncrement"><strong>setSizeIncrement</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setSizeIncrement">setSizeIncrement</a>(int, int)<br>
QWidget.<a href="#GitLog-setSizeIncrement">setSizeIncrement</a>(QSize)</tt></dd></dl>
<dl><dt><a name="GitLog-setSizePolicy"><strong>setSizePolicy</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setSizePolicy">setSizePolicy</a>(QSizePolicy)<br>
QWidget.<a href="#GitLog-setSizePolicy">setSizePolicy</a>(QSizePolicy.Policy, QSizePolicy.Policy)</tt></dd></dl>
<dl><dt><a name="GitLog-setStatusTip"><strong>setStatusTip</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setStatusTip">setStatusTip</a>(QString)</tt></dd></dl>
<dl><dt><a name="GitLog-setStyle"><strong>setStyle</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setStyle">setStyle</a>(QStyle)</tt></dd></dl>
<dl><dt><a name="GitLog-setStyleSheet"><strong>setStyleSheet</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setStyleSheet">setStyleSheet</a>(QString)</tt></dd></dl>
<dl><dt><a name="GitLog-setTabOrder"><strong>setTabOrder</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setTabOrder">setTabOrder</a>(QWidget, QWidget)</tt></dd></dl>
<dl><dt><a name="GitLog-setToolTip"><strong>setToolTip</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setToolTip">setToolTip</a>(QString)</tt></dd></dl>
<dl><dt><a name="GitLog-setUpdatesEnabled"><strong>setUpdatesEnabled</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setUpdatesEnabled">setUpdatesEnabled</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setVisible"><strong>setVisible</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setVisible">setVisible</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setWhatsThis"><strong>setWhatsThis</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setWhatsThis">setWhatsThis</a>(QString)</tt></dd></dl>
<dl><dt><a name="GitLog-setWindowFilePath"><strong>setWindowFilePath</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setWindowFilePath">setWindowFilePath</a>(QString)</tt></dd></dl>
<dl><dt><a name="GitLog-setWindowFlags"><strong>setWindowFlags</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setWindowFlags">setWindowFlags</a>(Qt.WindowFlags)</tt></dd></dl>
<dl><dt><a name="GitLog-setWindowIcon"><strong>setWindowIcon</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setWindowIcon">setWindowIcon</a>(QIcon)</tt></dd></dl>
<dl><dt><a name="GitLog-setWindowIconText"><strong>setWindowIconText</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setWindowIconText">setWindowIconText</a>(QString)</tt></dd></dl>
<dl><dt><a name="GitLog-setWindowModality"><strong>setWindowModality</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setWindowModality">setWindowModality</a>(Qt.WindowModality)</tt></dd></dl>
<dl><dt><a name="GitLog-setWindowModified"><strong>setWindowModified</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setWindowModified">setWindowModified</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-setWindowOpacity"><strong>setWindowOpacity</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setWindowOpacity">setWindowOpacity</a>(float)</tt></dd></dl>
<dl><dt><a name="GitLog-setWindowRole"><strong>setWindowRole</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setWindowRole">setWindowRole</a>(QString)</tt></dd></dl>
<dl><dt><a name="GitLog-setWindowState"><strong>setWindowState</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setWindowState">setWindowState</a>(Qt.WindowStates)</tt></dd></dl>
<dl><dt><a name="GitLog-setWindowTitle"><strong>setWindowTitle</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-setWindowTitle">setWindowTitle</a>(QString)</tt></dd></dl>
<dl><dt><a name="GitLog-show"><strong>show</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-show">show</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-showEvent"><strong>showEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-showEvent">showEvent</a>(QShowEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-showFullScreen"><strong>showFullScreen</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-showFullScreen">showFullScreen</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-showMaximized"><strong>showMaximized</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-showMaximized">showMaximized</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-showMinimized"><strong>showMinimized</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-showMinimized">showMinimized</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-showNormal"><strong>showNormal</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-showNormal">showNormal</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-size"><strong>size</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-size">size</a>() -> QSize</tt></dd></dl>
<dl><dt><a name="GitLog-sizeHint"><strong>sizeHint</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-sizeHint">sizeHint</a>() -> QSize</tt></dd></dl>
<dl><dt><a name="GitLog-sizeIncrement"><strong>sizeIncrement</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-sizeIncrement">sizeIncrement</a>() -> QSize</tt></dd></dl>
<dl><dt><a name="GitLog-sizePolicy"><strong>sizePolicy</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-sizePolicy">sizePolicy</a>() -> QSizePolicy</tt></dd></dl>
<dl><dt><a name="GitLog-stackUnder"><strong>stackUnder</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-stackUnder">stackUnder</a>(QWidget)</tt></dd></dl>
<dl><dt><a name="GitLog-statusTip"><strong>statusTip</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-statusTip">statusTip</a>() -> QString</tt></dd></dl>
<dl><dt><a name="GitLog-style"><strong>style</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-style">style</a>() -> QStyle</tt></dd></dl>
<dl><dt><a name="GitLog-styleSheet"><strong>styleSheet</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-styleSheet">styleSheet</a>() -> QString</tt></dd></dl>
<dl><dt><a name="GitLog-tabletEvent"><strong>tabletEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-tabletEvent">tabletEvent</a>(QTabletEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-testAttribute"><strong>testAttribute</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-testAttribute">testAttribute</a>(Qt.WidgetAttribute) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-toolTip"><strong>toolTip</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-toolTip">toolTip</a>() -> QString</tt></dd></dl>
<dl><dt><a name="GitLog-topLevelWidget"><strong>topLevelWidget</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-topLevelWidget">topLevelWidget</a>() -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-underMouse"><strong>underMouse</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-underMouse">underMouse</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-ungrabGesture"><strong>ungrabGesture</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-ungrabGesture">ungrabGesture</a>(Qt.GestureType)</tt></dd></dl>
<dl><dt><a name="GitLog-unsetCursor"><strong>unsetCursor</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-unsetCursor">unsetCursor</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-unsetLayoutDirection"><strong>unsetLayoutDirection</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-unsetLayoutDirection">unsetLayoutDirection</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-unsetLocale"><strong>unsetLocale</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-unsetLocale">unsetLocale</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-update"><strong>update</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-update">update</a>()<br>
QWidget.<a href="#GitLog-update">update</a>(QRect)<br>
QWidget.<a href="#GitLog-update">update</a>(QRegion)<br>
QWidget.<a href="#GitLog-update">update</a>(int, int, int, int)</tt></dd></dl>
<dl><dt><a name="GitLog-updateGeometry"><strong>updateGeometry</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-updateGeometry">updateGeometry</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-updateMicroFocus"><strong>updateMicroFocus</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-updateMicroFocus">updateMicroFocus</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-updatesEnabled"><strong>updatesEnabled</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-updatesEnabled">updatesEnabled</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-visibleRegion"><strong>visibleRegion</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-visibleRegion">visibleRegion</a>() -> QRegion</tt></dd></dl>
<dl><dt><a name="GitLog-whatsThis"><strong>whatsThis</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-whatsThis">whatsThis</a>() -> QString</tt></dd></dl>
<dl><dt><a name="GitLog-wheelEvent"><strong>wheelEvent</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-wheelEvent">wheelEvent</a>(QWheelEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-width"><strong>width</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-width">width</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-winId"><strong>winId</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-winId">winId</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-window"><strong>window</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-window">window</a>() -> QWidget</tt></dd></dl>
<dl><dt><a name="GitLog-windowActivationChange"><strong>windowActivationChange</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-windowActivationChange">windowActivationChange</a>(bool)</tt></dd></dl>
<dl><dt><a name="GitLog-windowFilePath"><strong>windowFilePath</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-windowFilePath">windowFilePath</a>() -> QString</tt></dd></dl>
<dl><dt><a name="GitLog-windowFlags"><strong>windowFlags</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-windowFlags">windowFlags</a>() -> Qt.WindowFlags</tt></dd></dl>
<dl><dt><a name="GitLog-windowIcon"><strong>windowIcon</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-windowIcon">windowIcon</a>() -> QIcon</tt></dd></dl>
<dl><dt><a name="GitLog-windowIconText"><strong>windowIconText</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-windowIconText">windowIconText</a>() -> QString</tt></dd></dl>
<dl><dt><a name="GitLog-windowModality"><strong>windowModality</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-windowModality">windowModality</a>() -> Qt.WindowModality</tt></dd></dl>
<dl><dt><a name="GitLog-windowOpacity"><strong>windowOpacity</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-windowOpacity">windowOpacity</a>() -> float</tt></dd></dl>
<dl><dt><a name="GitLog-windowRole"><strong>windowRole</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-windowRole">windowRole</a>() -> QString</tt></dd></dl>
<dl><dt><a name="GitLog-windowState"><strong>windowState</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-windowState">windowState</a>() -> Qt.WindowStates</tt></dd></dl>
<dl><dt><a name="GitLog-windowTitle"><strong>windowTitle</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-windowTitle">windowTitle</a>() -> QString</tt></dd></dl>
<dl><dt><a name="GitLog-windowType"><strong>windowType</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-windowType">windowType</a>() -> Qt.WindowType</tt></dd></dl>
<dl><dt><a name="GitLog-x"><strong>x</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-x">x</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-y"><strong>y</strong></a>(...)</dt><dd><tt>QWidget.<a href="#GitLog-y">y</a>() -> int</tt></dd></dl>
<hr>
Data and other attributes inherited from <a href="PyQt4.QtGui.html#QWidget">PyQt4.QtGui.QWidget</a>:<br>
<dl><dt><strong>DrawChildren</strong> = 2</dl>
<dl><dt><strong>DrawWindowBackground</strong> = 1</dl>
<dl><dt><strong>IgnoreMask</strong> = 4</dl>
<dl><dt><strong>RenderFlag</strong> = <class 'PyQt4.QtGui.RenderFlag'></dl>
<dl><dt><strong>RenderFlags</strong> = <class 'PyQt4.QtGui.RenderFlags'><dd><tt>QWidget.<a href="#GitLog-RenderFlags">RenderFlags</a>(QWidget.RenderFlags)<br>
QWidget.<a href="#GitLog-RenderFlags">RenderFlags</a>(int)<br>
QWidget.<a href="#GitLog-RenderFlags">RenderFlags</a>()</tt></dl>
<hr>
Methods inherited from <a href="PyQt4.QtCore.html#QObject">PyQt4.QtCore.QObject</a>:<br>
<dl><dt><a name="GitLog-__getattr__"><strong>__getattr__</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-__getattr__">__getattr__</a>(str) -> object</tt></dd></dl>
<dl><dt><a name="GitLog-blockSignals"><strong>blockSignals</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-blockSignals">blockSignals</a>(bool) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-childEvent"><strong>childEvent</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-childEvent">childEvent</a>(QChildEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-children"><strong>children</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-children">children</a>() -> list-of-QObject</tt></dd></dl>
<dl><dt><a name="GitLog-connect"><strong>connect</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-connect">connect</a>(QObject, <a href="#-SIGNAL">SIGNAL</a>(), QObject, <a href="#-SLOT">SLOT</a>(), Qt.ConnectionType=Qt.AutoConnection) -> bool<br>
QObject.<a href="#GitLog-connect">connect</a>(QObject, <a href="#-SIGNAL">SIGNAL</a>(), callable, Qt.ConnectionType=Qt.AutoConnection) -> bool<br>
QObject.<a href="#GitLog-connect">connect</a>(QObject, <a href="#-SIGNAL">SIGNAL</a>(), <a href="#-SLOT">SLOT</a>(), Qt.ConnectionType=Qt.AutoConnection) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-connectNotify"><strong>connectNotify</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-connectNotify">connectNotify</a>(<a href="#-SIGNAL">SIGNAL</a>())</tt></dd></dl>
<dl><dt><a name="GitLog-customEvent"><strong>customEvent</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-customEvent">customEvent</a>(QEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-deleteLater"><strong>deleteLater</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-deleteLater">deleteLater</a>()</tt></dd></dl>
<strong>destroyed</strong> = <unbound signal destroyed>
<dl><dt><a name="GitLog-disconnect"><strong>disconnect</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-disconnect">disconnect</a>(QObject, <a href="#-SIGNAL">SIGNAL</a>(), QObject, <a href="#-SLOT">SLOT</a>()) -> bool<br>
QObject.<a href="#GitLog-disconnect">disconnect</a>(QObject, <a href="#-SIGNAL">SIGNAL</a>(), callable) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-disconnectNotify"><strong>disconnectNotify</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-disconnectNotify">disconnectNotify</a>(<a href="#-SIGNAL">SIGNAL</a>())</tt></dd></dl>
<dl><dt><a name="GitLog-dumpObjectInfo"><strong>dumpObjectInfo</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-dumpObjectInfo">dumpObjectInfo</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-dumpObjectTree"><strong>dumpObjectTree</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-dumpObjectTree">dumpObjectTree</a>()</tt></dd></dl>
<dl><dt><a name="GitLog-dynamicPropertyNames"><strong>dynamicPropertyNames</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-dynamicPropertyNames">dynamicPropertyNames</a>() -> list-of-QByteArray</tt></dd></dl>
<dl><dt><a name="GitLog-emit"><strong>emit</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-emit">emit</a>(<a href="#-SIGNAL">SIGNAL</a>(), ...)</tt></dd></dl>
<dl><dt><a name="GitLog-eventFilter"><strong>eventFilter</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-eventFilter">eventFilter</a>(QObject, QEvent) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-findChild"><strong>findChild</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-findChild">findChild</a>(type, QString name=QString()) -> QObject<br>
QObject.<a href="#GitLog-findChild">findChild</a>(tuple, QString name=QString()) -> QObject</tt></dd></dl>
<dl><dt><a name="GitLog-findChildren"><strong>findChildren</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-findChildren">findChildren</a>(type, QString name=QString()) -> list-of-QObject<br>
QObject.<a href="#GitLog-findChildren">findChildren</a>(tuple, QString name=QString()) -> list-of-QObject<br>
QObject.<a href="#GitLog-findChildren">findChildren</a>(type, QRegExp) -> list-of-QObject<br>
QObject.<a href="#GitLog-findChildren">findChildren</a>(tuple, QRegExp) -> list-of-QObject</tt></dd></dl>
<dl><dt><a name="GitLog-inherits"><strong>inherits</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-inherits">inherits</a>(str) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-installEventFilter"><strong>installEventFilter</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-installEventFilter">installEventFilter</a>(QObject)</tt></dd></dl>
<dl><dt><a name="GitLog-isWidgetType"><strong>isWidgetType</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-isWidgetType">isWidgetType</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-killTimer"><strong>killTimer</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-killTimer">killTimer</a>(int)</tt></dd></dl>
<dl><dt><a name="GitLog-metaObject"><strong>metaObject</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-metaObject">metaObject</a>() -> QMetaObject</tt></dd></dl>
<dl><dt><a name="GitLog-moveToThread"><strong>moveToThread</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-moveToThread">moveToThread</a>(QThread)</tt></dd></dl>
<dl><dt><a name="GitLog-objectName"><strong>objectName</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-objectName">objectName</a>() -> QString</tt></dd></dl>
<dl><dt><a name="GitLog-parent"><strong>parent</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-parent">parent</a>() -> QObject</tt></dd></dl>
<dl><dt><a name="GitLog-property"><strong>property</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-property">property</a>(str) -> QVariant</tt></dd></dl>
<dl><dt><a name="GitLog-pyqtConfigure"><strong>pyqtConfigure</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-pyqtConfigure">pyqtConfigure</a>(...)<br>
<br>
Each keyword argument is either the name of a Qt property or a Qt signal.<br>
For properties the property is set to the given value which should be of an<br>
appropriate type.<br>
For signals the signal is connected to the given value which should be a<br>
callable.</tt></dd></dl>
<dl><dt><a name="GitLog-receivers"><strong>receivers</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-receivers">receivers</a>(<a href="#-SIGNAL">SIGNAL</a>()) -> int</tt></dd></dl>
<dl><dt><a name="GitLog-removeEventFilter"><strong>removeEventFilter</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-removeEventFilter">removeEventFilter</a>(QObject)</tt></dd></dl>
<dl><dt><a name="GitLog-sender"><strong>sender</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-sender">sender</a>() -> QObject</tt></dd></dl>
<dl><dt><a name="GitLog-senderSignalIndex"><strong>senderSignalIndex</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-senderSignalIndex">senderSignalIndex</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-setObjectName"><strong>setObjectName</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-setObjectName">setObjectName</a>(QString)</tt></dd></dl>
<dl><dt><a name="GitLog-setProperty"><strong>setProperty</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-setProperty">setProperty</a>(str, QVariant) -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-signalsBlocked"><strong>signalsBlocked</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-signalsBlocked">signalsBlocked</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-startTimer"><strong>startTimer</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-startTimer">startTimer</a>(int) -> int</tt></dd></dl>
<dl><dt><a name="GitLog-thread"><strong>thread</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-thread">thread</a>() -> QThread</tt></dd></dl>
<dl><dt><a name="GitLog-timerEvent"><strong>timerEvent</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-timerEvent">timerEvent</a>(QTimerEvent)</tt></dd></dl>
<dl><dt><a name="GitLog-tr"><strong>tr</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-tr">tr</a>(str, str disambiguation=None, int n=-1) -> QString</tt></dd></dl>
<dl><dt><a name="GitLog-trUtf8"><strong>trUtf8</strong></a>(...)</dt><dd><tt>QObject.<a href="#GitLog-trUtf8">trUtf8</a>(str, str disambiguation=None, int n=-1) -> QString</tt></dd></dl>
<hr>
Data descriptors inherited from <a href="PyQt4.QtCore.html#QObject">PyQt4.QtCore.QObject</a>:<br>
<dl><dt><strong>__weakref__</strong></dt>
<dd><tt>list of weak references to the object (if defined)</tt></dd>
</dl>
<dl><dt><strong>staticMetaObject</strong></dt>
</dl>
<hr>
Methods inherited from <a href="PyQt4.QtGui.html#QPaintDevice">PyQt4.QtGui.QPaintDevice</a>:<br>
<dl><dt><a name="GitLog-colorCount"><strong>colorCount</strong></a>(...)</dt><dd><tt>QPaintDevice.<a href="#GitLog-colorCount">colorCount</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-depth"><strong>depth</strong></a>(...)</dt><dd><tt>QPaintDevice.<a href="#GitLog-depth">depth</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-heightMM"><strong>heightMM</strong></a>(...)</dt><dd><tt>QPaintDevice.<a href="#GitLog-heightMM">heightMM</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-logicalDpiX"><strong>logicalDpiX</strong></a>(...)</dt><dd><tt>QPaintDevice.<a href="#GitLog-logicalDpiX">logicalDpiX</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-logicalDpiY"><strong>logicalDpiY</strong></a>(...)</dt><dd><tt>QPaintDevice.<a href="#GitLog-logicalDpiY">logicalDpiY</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-numColors"><strong>numColors</strong></a>(...)</dt><dd><tt>QPaintDevice.<a href="#GitLog-numColors">numColors</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-paintingActive"><strong>paintingActive</strong></a>(...)</dt><dd><tt>QPaintDevice.<a href="#GitLog-paintingActive">paintingActive</a>() -> bool</tt></dd></dl>
<dl><dt><a name="GitLog-physicalDpiX"><strong>physicalDpiX</strong></a>(...)</dt><dd><tt>QPaintDevice.<a href="#GitLog-physicalDpiX">physicalDpiX</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-physicalDpiY"><strong>physicalDpiY</strong></a>(...)</dt><dd><tt>QPaintDevice.<a href="#GitLog-physicalDpiY">physicalDpiY</a>() -> int</tt></dd></dl>
<dl><dt><a name="GitLog-widthMM"><strong>widthMM</strong></a>(...)</dt><dd><tt>QPaintDevice.<a href="#GitLog-widthMM">widthMM</a>() -> int</tt></dd></dl>
<hr>
Data and other attributes inherited from <a href="PyQt4.QtGui.html#QPaintDevice">PyQt4.QtGui.QPaintDevice</a>:<br>
<dl><dt><strong>PaintDeviceMetric</strong> = <class 'PyQt4.QtGui.PaintDeviceMetric'></dl>
<dl><dt><strong>PdmDepth</strong> = 6</dl>
<dl><dt><strong>PdmDpiX</strong> = 7</dl>
<dl><dt><strong>PdmDpiY</strong> = 8</dl>
<dl><dt><strong>PdmHeight</strong> = 2</dl>
<dl><dt><strong>PdmHeightMM</strong> = 4</dl>
<dl><dt><strong>PdmNumColors</strong> = 5</dl>
<dl><dt><strong>PdmPhysicalDpiX</strong> = 9</dl>
<dl><dt><strong>PdmPhysicalDpiY</strong> = 10</dl>
<dl><dt><strong>PdmWidth</strong> = 1</dl>
<dl><dt><strong>PdmWidthMM</strong> = 3</dl>
<hr>
Data descriptors inherited from <a href="sip.html#simplewrapper">sip.simplewrapper</a>:<br>
<dl><dt><strong>__dict__</strong></dt>
</dl>
<hr>
Data and other attributes inherited from <a href="sip.html#simplewrapper">sip.simplewrapper</a>:<br>
<dl><dt><strong>__new__</strong> = <built-in method __new__ of sip.wrappertype object><dd><tt>T.<a href="#GitLog-__new__">__new__</a>(S, ...) -> a new object with type S, a subtype of T</tt></dl>
<hr>
Methods inherited from <a href="git_log_ui.html#Ui_MainWindow">git_log_ui.Ui_MainWindow</a>:<br>
<dl><dt><a name="GitLog-retranslateUi"><strong>retranslateUi</strong></a>(self, MainWindow)</dt></dl>
<dl><dt><a name="GitLog-setupUi"><strong>setupUi</strong></a>(self, MainWindow)</dt></dl>
</td></tr></table></td></tr></table><p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#eeaa77">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Functions</strong></big></font></td></tr>
<tr><td bgcolor="#eeaa77"><tt> </tt></td><td> </td>
<td width="100%"><dl><dt><a name="-SIGNAL"><strong>SIGNAL</strong></a>(...)</dt><dd><tt><a href="#-SIGNAL">SIGNAL</a>(str) -> str</tt></dd></dl>
<dl><dt><a name="-SLOT"><strong>SLOT</strong></a>(...)</dt><dd><tt><a href="#-SLOT">SLOT</a>(str) -> str</tt></dd></dl>
<dl><dt><a name="-main"><strong>main</strong></a>()</dt></dl>
</td></tr></table><p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#55aa55">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
<td width="100%"><strong>__author__</strong> = 'Karthik Ashok Arjunagi'</td></tr></table><p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#7799ee">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Author</strong></big></font></td></tr>
<tr><td bgcolor="#7799ee"><tt> </tt></td><td> </td>
<td width="100%">Karthik Ashok Arjunagi</td></tr></table>
</body></html>