-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathTD框架使用手册.html
3553 lines (3544 loc) · 225 KB
/
TD框架使用手册.html
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>TD框架使用手册</title>
<style type="text/css">
body{
font-family:Aril,'微软雅黑';
font-size:17px;
}
.contents{
font-size:22px;
background:#e5e5e5 ;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
padding-left:10px;
padding-top:5px;
height:30px;
box-shadow: 0px 5px 5px #d9d9d9;
}
.main_class{
width: 1100px;
background: #ffffff;
margin: 0 auto;
-webkit-box-shadow:0 0 15px #ff0000;
-moz-box-shadow:0 0 15px #ff0000;
box-shadow:0 0 25px #000000;
}
#copy_right{
height: 20px;
border-bottom:1px solid #cecece;
margin: 0px ;
background: #f2f2f2;
margin-bottom: 20px;
padding-left: 830px;
padding-top: 5px;
}
.myh2{
height: 50px;
border-top:1px solid #cecece;
border-bottom:1px solid #cecece;
margin: 0px ;
background: #e6e6e6;
padding-left:20px;
}
.myh1{
height: 60px;
border-top:2px solid #cecece;
border-bottom:2px solid #cecece;
margin: 0px ;
background: #e6e6e6;
padding-top:10px;
}
.myh3{
height:30px;
border-top:1px solid #cecece;
border-bottom:1px solid #cecece;
background: #f2f2f2;
font-size:20px;
font-weight:bold;
margin-top:30px;
padding-left: 10px;
}
.return-top{
position: fixed;
right: 20px;
bottom: 20px;
width:60px;
height:60px;
background:#44a51c;
font-size: 22px;
font-weight: bold;
color:#ffffff;
text-align: center;
}
a:link {
text-decoration: none;
color:#007330;
}
a:visited {
text-decoration: none;
color:#007330;
}
a:hover {
text-decoration: none;
color:#44a51c;
}
a:active {
text-decoration: none;
color:#007330;
}
</style>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<a href = "#head"><div id = "return" class = "return-top">
返回顶部
</div></a>
<div id = "whole" style = "background:#dadada;">
<div id = "main" class = "main_class">
<div id = "head" class = "myh1">
<h1 style ="margin-top:0px;" align = "center">TD框架使用手册</h1>
</div>
<div id = "copy_right">
<div style = "font-size:13px; color: #555555" >Copyright © 2017 Powered by <a href = "https://github.com/TheThreeDog/TD-FrameWork">ThreeDog</a></div>
</div>
<div class = "myh3">
框架简介
</div>
<div id = "introduction" style = "margin : 20px">
<div style = "margin-left: 65px; border:1px solid #cecece;padding:10px;border-radius:10px;width:900px; height:260px; background:#f2f2f2" >
<b><font color = "#333333" size ="4">
此框架提供基于QtC++的常用基本控件的封装,目的在于提高开发效率,尽可能的将UI设计与软件开发的工作分
<hr style=" margin-top : 4px; margin-bottom:4px;height:1px;border:none;border-top:1px dotted #cecece;">
离。使用此框架可以方便的构建动态反馈的交互式界面,绝大部分的控件都提供以图片路径为参数的构造方法,直
<hr style=" margin-top : 4px; margin-bottom:4px;height:1px;border:none;border-top:1px dotted #cecece;">
接生成可响应鼠标事件的动态控件。UI设计人员只需提供软件中需要用到的各种图片资源(如按钮的三态图片)
<hr style=" margin-top : 4px; margin-bottom:4px;height:1px;border:none;border-top:1px dotted #cecece;">
开发人员只需将图片路径作为参数构造控件或窗体(如TDPushButton),控件会自动根据鼠标按下或经过的状
<hr style=" margin-top : 4px; margin-bottom:4px;height:1px;border:none;border-top:1px dotted #cecece;">
态进行图片切换,通过框架内现有的控件组合,就可以构建出非常漂亮的软件界面。此框架尚在完善阶段,最新源
<hr style=" margin-top : 4px; margin-bottom:4px;height:1px;border:none;border-top:1px dotted #cecece;">
码及API可访问作者<a href = "https://github.com/TheThreeDog/TD-FrameWork">三级狗(ThreeDog)</a>的GitHub主页进行下载。此框架采用
<a href="http://baike.baidu.com/link?url=B6xceaSfrjJnVirEug8yr4Rm2K8IUuy30TM8kkHggaesPO73hJgEdDTIok5LkSs2YPDA7f7Fr2_HYDciFC94IK" target = "_black">
MIT开源协议
</a>,使用此框架进行
<hr style=" margin-top : 4px; margin-bottom:4px;height:1px;border:none;border-top:1px dotted #cecece;">
产品开发或基于框架进行二次开发,请自觉遵守协议规范。关于此框架的任何疑问、BUG、建议、批评指正等可
<hr style=" margin-top : 4px; margin-bottom:4px;height:1px;border:none;border-top:1px dotted #cecece;">
以至信作者邮箱<a href = "mailto:qiugeyafang@gmail.com">qiugeyafang@gmail.com</a>。欢迎提出宝贵意见。
<hr style=" margin-top : 4px; margin-bottom:4px;height:1px;border:none;border-top:1px dotted #cecece;">
</font>
</b>
</div>
</div>
<div class = "myh3">
索引
</div>
<div id = "index" style = "margin : 20px">
<div style = "margin-left:65px;border:1px solid #cecece;padding:10px;border-radius:10px;width:900px; height:240px; background:#f2f2f2" >
<div style = "float:left; margin-left:">
<ul>
<li><a href="#TDAbstractButton">TDAbstractButton</a></li><hr style=" margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDCheckbox">TDCheckbox</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><font color = "#555555">TDComboBox</font></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDFadeoutWidget">TDFadeoutWidget</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDListWidgetItem">TDListWidgetItem</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDListWidget">TDListWidget</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><font color = "#555555">TDMessageBox</font></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDMenuButton">TDMenuButton</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDPushButton">TDPushButton</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
</ul>
</div>
<div style = "float:left; margin-left:400px">
<ul>
<li><a href="#TDRadioButton">TDRadioButton</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDRadioButtonGroup">TDRadioButtonGroup</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDScrollArea">TDScrollArea</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDScrollBar">TDScrollBar</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDSlider">TDSlider</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDStackButton">TDStackButton</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDToolbar">TDToolbar</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
<li><a href="#TDWidget">TDWidget</a></li><hr style="margin-top : 0px; margin-bottom:0px;height:1px;border:none;border-top:1px dotted #cecece;">
</ul>
</div>
</div>
</div>
<div id = "TDAbstractButton">
<div class = "myh2">
<div style = "font-size:26px;margin-top:10px;" ><b>TDAbstractButton Class</b></div>
</div>
<div id = "copy_right">
<div style = "font-size:13px; color: #555555 " >Copyright © 2017 Powered by <a href = "https://github.com/TheThreeDog/TD-FrameWork">ThreeDog</a></div>
</div>
<div id = "sub-contenx" style = "width: 1040px; margin-left :30px;maigin-right:30px; overflow:hidden">
<div id = "left-contenx" style = "width:720px;float:left;">
<font color = "#007330">TDAbstractButton</font>自定义抽象按钮类,所有的自定义按钮都继承
自这个类,重写<font color = "#007330">mouseReleaseEvent</font>实现按钮点击触发的效果。
通过函数指针和调用者的指针实现回调函数。也可以用信号和槽。<br><br>
<div style = "border:1px solid #cecece;padding:10px;border-radius:10px;width:500px;background:#f2f2f2" >
头文件 :#include "ThreeDog/tdabstractbutton.h"<hr style="height:1px;border:none;border-top:1px dotted #cecece;">
qmake:QT += widgets<hr style="height:1px;border:none;border-top:1px dotted #cecece;">
继承自 :<a href="#QLabel">QLabel</a><hr style="height:1px;border:none;border-top:1px dotted #cecece;">
被继承 :<a href = "#TDPushButton">TDPushButton</a>、<a href = "#TDCheckbox">TDCheckbox</a>
</div>
</div>
<div id ="right-contenx" style = "border:1px solid #e5e5e5;border-radius:10px;margin-left: 750px;width :280px;">
<div class = "contents">
Contents
</div>
<div id = contents style = "font-size:20px; margin-left:0 px ;margin-top:0 px; margin-right:0 px;margin-bottom:0 px;">
<ul>
<li><font color = "#007330"><a href = "#TDAbstractButton-Properties">Properties</a></font></li>
<li><font color = "#007330"><a href = "#TDAbstractButton-Public-Functions">Public Functions</a></font></li>
<li><font color = "#007330"><a href = "#TDAbstractButton-Reimplemented-Protected-Functions">Reimplemented Protected Functions</a></font></li>
<li><font color = "#007330"><a href = "#TDAbstractButton-Signals">Signals</a></font></li>
</ul>
</div>
</div>
<div id = "TDAbstractButton-Properties" >
<div class="myh3"style = "margin-top:80px;">
Properties
</div>
<ul>
<li>
<font color = "#007330">
<strong>func_ptr</strong>
</font> : FUNC_PTR
<font color = "#555555">
//回调函数指针,设置回调函数时将此指针指向被调用的函数,在鼠标点击时进行,调用默认初始化为NULL。
</font>
</li>
<li>
<font color = "#007330">
<strong>caller</strong>
</font> : QObject*
<font color = "#555555">
//回调函数的调用者,指定由谁来调用回调函数,相当于指定调用函数时的this指针
</font>
</li>
<li>
<font color = "#007330">
<strong>old_pos</strong>
</font> : QPoint
<font color = "#555555">
//鼠标按下时的位置坐标,用于鼠标移动时计算相对位置实现拖动控件可移动的效果
</font>
</li>
<li>
<font color = "#007330">
<strong>move_enable</strong>
</font> : bool
<font color = "#555555">
//记录控件是否可移动的标识
</font>
</li>
<li>
<font color = "#007330">
<strong>is_press</strong>
</font> : bool
<font color = "#555555">
//记录鼠标是否按下,在鼠标移动时通过自变量判断是否进行移动
</font>
</li>
<li>其他由父类继承的成员约60+个</li>
</ul>
</div>
<div id = "TDAbstractButton-Public-Functions">
<div class = "myh3">
Public Functions
</div>
<ul>
<li>
<font color = "#007330">
<strong>TDAbstractButton(QWidget *parent)</strong><br>
</font>
<font color = "#555555">
//抽象按钮的构造函数
</font>
</li>
<li>
<font color = "#007330">
<strong>~TDAbstractButton()</strong><br>
</font>
<font color = "#555555">
//抽象按钮的析构函数
</font>
</li>
<li>
<font color = "#007330">
<strong>void setCallback(QObject * obj,FUNC_PTR func)</strong><br>
</font>
<font color = "#555555">
//设置回调,参数为(调用者指针,调用者调用的函数指针)按钮点击时触发回调函数,
类似于<font color = "#007330">QObject::connect()</font>函数的最后两个参数
</font>
</li>
<li>
<font color = "#007330">
<strong>virtual void setAutoMask()</strong><br>
</font>
<font color = "#555555">
//设置自动遮罩,用于控绘制的此控件可选区域,在此类中只有控方法体,在子类中按需求各自实现。
</font>
</li>
<li>
<font color = "#007330">
<strong>void setMoveEnable(const bool can_move)</strong><br>
</font>
<font color = "#555555">
//设置此控件是否可拖动,设置为true时,程序中鼠标可以拖动控件移动。
</font>
</li>
<li>
<font color = "#007330">
<strong>bool moveEnable() const</strong><br>
</font>
<font color = "#555555">
//返回此控件是否可拖动的状态。
</font>
</li>
</ul>
</div>
<div id = "TDAbstractButton-Reimplemented-Protected-Functions">
<div class = "myh3">
Reimplemented Protected Functions
</div>
<ul>
<li>
<font color = "#007330">
<strong>virtual void mousePressEvent(QMouseEvent *e)</strong><br>
</font>
<font color = "#555555">
//按钮按下事件触发函数,记录鼠标点击的位置和本窗体当前位置
</font>
</li>
<li>
<font color = "#007330">
<strong>virtual void mouseMoveEvent(QMouseEvent *e)</strong><br>
</font>
<font color = "#555555">
//鼠标移动事件,通过移动的坐标减去之前的坐标计算相对位置,实现窗体的拖动。
</font>
</li>
<li>
<font color = "#007330">
<strong>virtual void mouseReleaseEvent(QMouseEvent *e)</strong><br>
</font>
<font color = "#555555">
//鼠标离开时间,在此事件中停止移动,并且发送clicked信号和触发回调函数。
</font>
</li>
</ul>
</div>
<div id = "TDAbstractButton-Signals">
<div class = "myh3">
Signals
</div>
<ul>
<li>
<font color = "#007330">
<strong>void clicked()</strong><br>
</font>
<font color = "#555555">
//点击信号,在鼠标离开时发送此信号。
</font>
</li>
</ul>
</div>
</div>
</div>
<div id = "TDCheckbox">
<div class = "myh2">
<div style = "font-size:26px;margin-top:10px;" ><b>TDCheckBox Class</b></div>
</div>
<div id = "copy_right">
<div style = "font-size:13px; color: #555555 " >Copyright © 2017 Powered by <a href = "https://github.com/TheThreeDog/TD-FrameWork">ThreeDog</a></div>
</div>
<div id = "sub-contenx" style = "width: 1040px; margin-left :30px;maigin-right:30px; overflow:hidden">
<div id = "left-contenx" style = "width:720px;float:left;">
<font color = "#007330">TDCheckbox</font>自定义复选框类,可选在初始化时传入绑定的变量指针,
也可以在后期手动绑定,通过按钮点击切换不同的选中状态,提供默认接口和图片接口,默认接口采用颜色
填充矩形实现,可以通过<font color = "#007330">setColor</font>函数切换颜色。图片接口则程序会在
两个图片之间替换显示达到选中和未选中的效果。此控件包含两部分,左侧的显示图标和右侧的显示文字<br><br>
<div style = "border:1px solid #cecece;padding:10px;border-radius:10px;width:500px;background:#f2f2f2" >
头文件 :#include "ThreeDog/tdcheckbox.h"<hr style="height:1px;border:none;border-top:1px dotted #cecece;">
qmake:QT += widgets<hr style="height:1px;border:none;border-top:1px dotted #cecece;">
继承自 :<a href="#TDAbstractButton">TDAbstractButton<a><hr style="height:1px;border:none;border-top:1px dotted #cecece;">
被继承 :<a href="#TDRadioButton">TDRadioButton</a>,<a href="#TDToolbar">TDToolbar</a>
</div>
</div>
<div id ="right-contenx" style = "border:1px solid #e5e5e5;border-radius:10px;margin-left: 750px;width :280px;">
<div class = "contents">
Contents
</div>
<div id = contents style = "font-size:20px; margin-left:0 px ;margin-top:0 px; margin-right:0 px;margin-bottom:0 px;">
<ul>
<li><font color = "#007330"><a href = "#TDCheckBox-Properties">Properties</a></font></li>
<li><font color = "#007330"><a href = "#TDCheckBox-Public-Functions">Public Functions</a></font></li>
<li><font color = "#007330"><a href = "#TDCheckBox-Reimplemented-Public-Functions">Reimplemented Public Functions</a></font></li>
<li><font color = "#007330"><a href = "#TDCheckBox-Reimplemented-Protected-Functions">Reimplemented Protected Functions</a></font></li>
<li><font color = "#007330"><a href = "#TDCheckBox-Private-Functions">Private Functions</a></font></li>
</ul>
</div>
</div>
<div id = "TDCheckBox-Properties" >
<div class="myh3">
Properties
</div>
<ul>
<li>
<font color = "#007330">
<strong>is_default</strong>
</font> : bool
<font color = "#555555">
//是否是默认形式,如果使用默认接口构造,is_default则被初始化为true,如果使用图
片接口初始化,is_default则被初始化为false
</font>
</li>
<li>
<font color = "#007330">
<strong>is_selected</strong>
</font> : bool
<font color = "#555555">
//是否被选中,记录当前复选框的选中状态。默认初始化为false,如果绑定了布尔变量,则以绑定的变量值为准。
</font>
</li>
<li>
<font color = "#007330">
<strong>con_bool</strong>
</font> : bool *
<font color = "#555555">
//指向关联的布尔变量的指针,复选框通过这个指针可以绑定一个布尔变量,之后再点击此复选框,就可以改变关联变量的真假值。
</font>
</li>
<li>
<font color = "#007330">
<strong>left</strong>
</font> : QLabel *
<font color = "#555555">
//此控件的左侧图标部分,默认为填充矩形,非默认情况显示用户传入的图片。
</font>
</li>
<li>
<font color = "#007330">
<strong>right</strong>
</font> : QLabel *
<font color = "#555555">
//控件的右侧部分,显示文字,若被指定为 "" ,则右控件不显示。
</font>
</li>
<li>
<font color = "#007330">
<strong>col_checked</strong>
</font> : QColor
<font color = "#555555">
//控件被选中时的颜色,用于默认情况初始化的情况。
</font>
</li>
<li>
<font color = "#007330">
<strong>col_non_checked</strong>
</font> : QColor
<font color = "#555555">
//控件没有被选中是的颜色,用于默认情况初始化的情况。
</font>
</li>
<li>
<font color = "#007330">
<strong>pic_checked</strong>
</font> : QPixmap
<font color = "#555555">
//控件被选中时显示的图片,用户图片接口初始化的情况。
</font>
</li>
<li>
<font color = "#007330">
<strong>pic_non_checked</strong>
</font> : QPixmap
<font color = "#555555">
//控件没有被选中时显示的图片,用于图片接口初始化的情况。
</font>
</li>
<li>以及其他由父类继承的成员</li>
</ul>
</div>
<div id = "TDCheckBox-Public-Functions">
<div class="myh3">
Public Functions
</div>
<ul>
<li>
<font color = "#007330">
<strong>TDCheckbox(QWidget *parent = 0,bool* boolean = NULL);</strong><br>
</font>
<font color = "#555555">
//默认形式构造复选框,参数(父控件指针,关联bool变量指针)。默认使用红色和深空色初始化
默认显示文字TDCheckBox,若指定了关联的变量指针,则按指定的变量真假值显示颜色,并初始化
is_select变量。若未指定,则初始化为false,按深红色显示。is_default会被初始化为true;
</font>
</li>
<li>
<font color = "#007330">
<strong>TDCheckbox(const QString &text,QWidget *parent = 0,bool* boolean= NULL);</strong><br>
</font>
<font color = "#555555">
//带文字参数初始化复选框,参数(显示的文字,父控件指针,关联布尔变量的指针)。用指定的文字
text初始化控件右半部分显示的文字,其余部分和默认情况初始化一样,is_default会被初始化为true;
</font>
</li>
<li>
<font color = "#007330">
<strong>TDCheckbox(const QString pic_che,const QString pic_non,QWidget *parent = 0,bool* boolean = NULL);</strong><br>
</font>
<font color = "#555555">
//复选框的图片接口,参数(选中时显示的图片路径,未选中时显示的图片路径,父控件指针,关联的布尔变量指针);<br>
用图片的形式初始化控件,左侧显示图片而不是填充矩形,右侧显示文字。is_default会被初始化为false;
同样,若指定了关联的变量指针,则按指定的变量真假值显示图片,并初始化is_select变量。
</font>
</li>
<li>
<font color = "#007330">
<strong>~TDCheckbox();</strong><br>
</font>
<font color = "#555555">
//自定义复选框控件的析构函数
</font>
</li>
<li>
<font color = "#007330">
<strong>void setColor(const QColor &col_che,const QColor &col_non);</strong><br>
</font>
<font color = "#555555">
//使用设置接口的方式改变颜色,而不是初始化函数;参数(选中时显示的颜色,未选中时显示的颜色)
</font>
</li>
<li>
<font color = "#007330">
<strong>void connectToBool(bool* boolean);</strong><br>
</font>
<font color = "#555555">
//关联这个复选框所控制的布尔变量 传递一个bool变量的指针,关联后is_selected
会被指定成和关联变量一样的值,并且会显示的图片或颜色会切换到响应状态。
</font>
</li>
<li>
<font color = "#007330">
<strong>bool isChecked() const;</strong><br>
</font>
<font color = "#555555">
//返回是否被选中的状态
</font>
</li>
<li>
<font color = "#007330">
<strong>void setChecked(bool check);</strong><br>
</font>
<font color = "#555555">
//改变选中状态的外部接口
</font>
</li>
</ul>
</div>
<div id = "TDCheckBox-Reimplemented-Public-Functions">
<div class="myh3">
Reimplemented Public Functions
</div>
<ul>
<li>
<font color = "#007330">
<strong>virtual void setAutoMask();</strong><br>
</font>
<font color = "#555555">
//设置自动遮罩,如果是以图片形式初始化,此函数将采用选中时的图片设置遮罩区(即可选区域),否则,调用会被忽略。
</font>
</li>
<li>
<font color = "#007330">
<strong>void setText(const QString &);</strong><br>
</font>
<font color = "#555555">
//重新实现setText函数,若调用此函数,会自动设置改变右控件的文字。
</font>
</li>
</ul>
</div>
<div id = "TDCheckBox-Reimplemented-Protected-Functions">
<div class="myh3">
Reimplemented Protected Functions
</div>
<ul>
<li>
<font color = "#007330">
<strong>virtual void mousePressEvent(QMouseEvent *);</strong><br>
</font>
<font color = "#555555">
//鼠标按下时间,在此事件中改变当前的选中状态,并且执行父类的mouseReleaseEvent()事件发送clicked信号。
</font>
</li>
<li>
<font color = "#007330">
<strong>virtual void mouseReleaseEvent(QMouseEvent *);</strong><br>
</font>
<font color = "#555555">
//使用空方法体,无效化此事件,否则会自动调用父类的此方法发送clicked()信号,达不到想要的效果。
</font>
</li>
</ul>
</div>
<div id = "TDCheckBox-Private-Functions">
<div class="myh3">
Private Functions
</div>
<ul>
<li>
<font color = "#007330">
<strong>void initDefault(bool* boolean);</strong><br>
</font>
<font color = "#555555">
//按默认方式初始化控件,参数(关联的布尔变量指针)。除了以图片为接口,其他两个构造函数都会调用此函数来初始化控件。
</font>
</li>
</ul>
</div>
</div>
</div>
<div id = "TDFadeoutWidget">
<div class = "myh2">
<div style = "font-size:26px;margin-top:10px;" ><b>TDFadeoutWidget Class</b></div>
</div>
<div id = "copy_right">
<div style = "font-size:13px; color: #555555 " >Copyright © 2017 Powered by <a href = "https://github.com/TheThreeDog/TD-FrameWork">ThreeDog</a></div>
</div>
<div id = "sub-contenx" style = "width: 1040px; margin-left :30px;maigin-right:30px; overflow:hidden">
<div id = "left-contenx" style = "width:720px;float:left;">
<font color = "#007330">TDFadeoutWidget</font>渐隐渐显窗体,利用timer定时器事件设置窗体的透明度来实现
淡入淡出的效果,定时器时间可由用户指定。在窗体显示和窗体关闭或隐藏时会有淡入淡出效果,其他和普通窗体没有区别
如果传入图片参数构造,则会使用图片的选区作为默认遮罩区<font color = "red"><br>暂时存在问题!只能在单独窗体状态时实现透明渐变,如果是子窗体,则渐变失效</font><br><br>
<div style = "border:1px solid #cecece;padding:10px;border-radius:10px;width:500px;background:#f2f2f2" >
头文件 :#include "ThreeDog/tdfadeoutwidget.h"<hr style="height:1px;border:none;border-top:1px dotted #cecece;">
qmake:QT += widgets<hr style="height:1px;border:none;border-top:1px dotted #cecece;">
继承自 :<a href="#TDWidget">TDWidget</a><hr style="height:1px;border:none;border-top:1px dotted #cecece;">
被继承 :<font color = "gray">无</font>
</div>
</div>
<div id ="right-contenx" style = "border:1px solid #e5e5e5;border-radius:10px;margin-left: 750px;width :280px;">
<div class = "contents">
Contents
</div>
<div id = contents style = "font-size:20px; margin-left:0 px ;margin-top:0 px; margin-right:0 px;margin-bottom:0 px;">
<ul>
<li><font color = "#007330"><a href = "#TDFadeoutWidget-Properties">Properties</a></font></li>
<li><font color = "#007330"><a href = "#TDFadeoutWidget-Public-Functions">Public Functions</a></font></li>
<li><font color = "#007330"><a href = "#TDFadeoutWidget-Public-Slots">Public Slots</a></font></li>
<li><font color = "#007330"><a href = "#TDFadeoutWidget-Reimplemented-Protected-Functions">Reimplemented Protected Functions</a></font></li>
</ul>
</div>
</div>
<div id = "TDFadeoutWidget-Properties" style = "margin-top:100px;">
<div class="myh3">
Properties
</div>
<ul>
<li>
<font color = "#007330">
<strong>opacity_inc</strong>
</font> : double
<font color = "#555555">
//透明度的增长值,每经过设置好的时间间隔,透明度以这个值累加或累减。
透明度最大值默认为1代表不透明,增长值默认0.01。
</font>
</li>
<li>
<font color = "#007330">
<strong>max_opacity</strong>
</font> : double
<font color = "#555555">
//最大透明度,默认为1.0表示不透明,可设置为小于1的值,窗体显示完全时也可处于半透明状态。
</font>
</li>
<li>
<font color = "#007330">
<strong>is_display</strong>
</font> : bool
<font color = "#555555">
//记录窗体是否显示。
</font>
</li>
<li>
<font color = "#007330">
<strong>timer_interval</strong>
</font> : double
<font color = "#555555">
//定时器时间间隔,窗体淡入或淡出时,定时器每过<font color = "green">timer_interval</font>毫秒触发一次,改变一次透明度。
</font>
</li>
<li>
<font color = "#007330">
<strong>is_hide</strong>
</font> : bool
<font color = "#555555">
//是否隐藏,关闭此窗体时,通过此变量判断窗体是 关闭还是隐藏。
</font>
</li>
<li>
<font color = "#007330">
<strong>is_close</strong>
</font> : bool
<font color = "#555555">
//是否关闭,关闭此窗体时,通过此变量判断窗体是 关闭还是隐藏。
</font>
</li>
<li>
<font color = "#007330">
<strong>timer</strong>
</font> : QTimer *
<font color = "#555555">
//控件的定时器,没过固定的时间间隔,定时器触发改变本窗体的透明度。
</font>
</li>
<li>以及其他由父类继承的成员</li>
</ul>
</div>
<div id = "TDFadeoutWidget-Public-Functions">
<div class="myh3">
Public Functions
</div>
<ul>
<li>
<font color = "#007330">
<strong>TDFadeoutWidget(TDWidget* parent = 0);</strong><br>
</font>
<font color = "#555555">
//默认的构造函数,参数是指定的父控件,在构造器中启动定时器,并初始化成员变量。默认情况下0.2秒,窗体从透明显示完全。
默认初始化当前窗体透明度为0,透明度增长值为0.01,最大透明度1.0,is_display默认为false
</font>
</li>
<li>
<font color = "#007330">
<strong>TDFadeoutWidget(const QString &img_path,TDWidget *parent = 0);</strong><br>
</font>
<font color = "#555555">
//传入图片的初始化接口,参数(窗体的图片路径,父控件指针),用传入的参数作为窗体的显示图像。
自动使用此图片的选区为遮罩区。
</font>
</li>
<li>
<font color = "#007330">
<strong>TDFadeoutWidget(const QString &img_path,TDWidget *parent,bool show_window);</strong><br>
</font>
<font color = "#555555">
//与上一个函数基本相同,多出一个参数,指定此窗体的边框是否显示。
</font>
</li>
<li>
<font color = "#007330">
<strong>~TDFadeoutWidget();</strong><br>
</font>
<font color = "#555555">
//渐隐窗体控件的析构函数
</font>
</li>
<li>
<font color = "#007330">
<strong>void init();</strong><br>
</font>
<font color = "#555555">
//默认初始化函数,以上几个构造函数中均调用此函数进行窗体的初始化和构造。
</font>
</li>
<li>
<font color = "#007330">
<strong>double getFadeoutTime(); </strong><br>
</font>
<font color = "#555555">
//获取当前设置的,从不透明到全透明需要的时间,单位是秒
</font>
</li>
<li>
<font color = "#007330">
<strong>void setFadeoutTime(const double second);</strong><br>
</font>
<font color = "#555555">
//设置从不透明到全透明需要用的时间
</font>
</li>
</ul>
</div>
<div id = "TDFadeoutWidget-Public-Slots">
<div class="myh3">
Public Slots
</div>
<ul>
<li>
<font color = "#007330">
<strong>void timeout();</strong><br>
</font>
<font color = "#555555">
//定时器触发的槽函数,在此槽函数中改变窗体的透明度,并且通过is_hide和is_close检测决定,在此窗体透明度为0后执行什么操作。
</font>
</li>
<li>
<font color = "#007330">
<strong>void hide();</strong><br>
</font>
<font color = "#555555">
//需求的情况在hideEvent()中无法实现,所以手动重写hide函数,实现同样的功能。
</font>
</li>
<li>
<font color = "#007330">
<strong>void close();</strong><br>
</font>
<font color = "#555555">
//同样的需求的情况在closeEvent()中无法实现,所以手动重写close函数,实现同样的功能。但是用户手动调用close可以实现,
点击窗体的关闭按钮则不会触发淡出效果。
</font>
</li>
</ul>
</div>
<div id = "TDFadeoutWidget-Reimplemented-Protected-Functions">
<div class="myh3">
Reimplemented Protected Functions
</div>
<ul>
<li>
<font color = "#007330">
<strong>virtual void showEvent(QShowEvent *);</strong><br>
</font>
<font color = "#555555">
//重写显示事件,在事件中启动定时器,定时改变透明度值,实现淡入的效果。
</font>
</li>
</ul>
</div>
</div>
</div>
<div id = "TDListWidgetItem">
<div class = "myh2">
<div style = "font-size:26px;margin-top:10px;" ><b>TDListWidgetItem Class</b></div>
</div>
<div id = "copy_right">
<div style = "font-size:13px; color: #555555 " >Copyright © 2017 Powered by <a href = "https://github.com/TheThreeDog/TD-FrameWork">ThreeDog</a></div>
</div>
<div id = "sub-contenx" style = "width: 1040px; margin-left :30px;maigin-right:30px; overflow:hidden">
<div id = "left-contenx" style = "width:720px;float:left;">
<font color = "#007330">TDListWidgetItem</font>列表窗体条目类,列表窗体的条目,应用于需要列表显示的内容,比如播
放器的播放列表。继承自<font color = "007330">TDMenuButton</font>类,实现鼠标经过和鼠标按下时的动态效果。也可用于实现
菜单按钮,按钮点击时会发送信号传递点击的index值。使用时建议继承此类进行二次开发,也实现更加偏个性化的效果,也可直接
实例化此类对象。参数和TDMenuButton,TDPushButton实例化接口保持一致。<br><br>
<div style = "border:1px solid #cecece;padding:10px;border-radius:10px;width:500px;background:#f2f2f2" >
头文件 :#include "ThreeDog/tdlistwidget.h"<hr style="height:1px;border:none;border-top:1px dotted #cecece;">
qmake:QT += widgets<hr style="height:1px;border:none;border-top:1px dotted #cecece;">
继承自 :<a href="#TDMenuButton">TDMenuButton</a><hr style="height:1px;border:none;border-top:1px dotted #cecece;">
被继承 :<font color = "gray">无</font>
</div>
</div>
<div id ="right-contenx" style = "border:1px solid #e5e5e5;border-radius:10px;margin-left: 750px;width :280px;">
<div class = "contents">
Contents
</div>
<div id = contents style = "font-size:20px; margin-left:0 px ;margin-top:0 px; margin-right:0 px;margin-bottom:0 px;">
<ul>
<li><font color = "#007330"><a href = "#TDListWidgetItem-Properties">Properties</a></font></li>
<li><font color = "#007330"><a href = "#TDListWidgetItem-Public-Functions">Public Functions</a></font></li>
<li><font color = "#007330"><a href = "#TDListWidgetItem-Signals">Signals</a></font></li>
<li><font color = "#007330"><a href = "#TDListWidgetItem-Reimplemented-Protected-Functions">Reimplemented Protected Functions</a></font></li>
</ul>
</div>
</div>
<div id = "TDListWidgetItem-Properties" style = "margin-top:120px;">
<div class="myh3">
Properties
</div>
<ul>
<li>
<font color = "#007330">
<strong>index</strong>
</font> : int
<font color = "#555555">
//下标,每一个条目的唯一标识,在初始化或加入每一个条目的时候写入。
</font>
</li>
<li>以及其他由父类继承的成员</li>
</ul>
</div>
<div id = "TDListWidgetItem-Public-Functions">
<div class="myh3">
Public Functions
</div>
<ul>
<li>
<font color = "#007330">
<strong>TDListWidgetItem(QWidget *parent = 0,Qt::Orientation ot = Qt::Vertical);</strong><br>
</font>
<font color = "#555555">
//默认的构造函数,参数(父控件指针,控件方向默认为垂直),以默认的方式初始化,正常显示灰色矩形按钮,鼠标经过时显示浅灰色,鼠标
按下时显示深灰色,按照指定的方向设置文字方向并设置控件大小,默认(100*30 或30*100)。设置对齐方式为居中。默认显示文字是TDMenuButton
</font>
</li>
<li>
<font color = "#007330">
<strong>TDListWidgetItem(const QString text,QWidget *parent = 0,Qt::Orientation ot = Qt::Vertical);</strong><br>
</font>
<font color = "#555555">
//初始化时传入文字,控件显示的文字会以text初始化,其余和默认参数一致。
</font>
</li>
<li>
<font color = "#007330">
<strong>TDListWidgetItem(const QString &pic_nor,const QString &pic_hov,const QString &pic_sel,QWidget *parent = 0);</strong><br>
</font>
<font color = "#555555">
//以三张图片进行控件的初始化。参数(正常显示的图片路径,鼠标经过时显示的图片路径,鼠标按下时显示的图片的路径,父控件指针)初始化时传入
三个图片路径,控件以图片进行初始化,并且在鼠标经过或按下时,自动实现图片的切换。可以通过<font color = "#007330">setAutoMask()</font>
自动以鼠标经过时的图片选区为遮罩,也可以手动重新实现遮罩。
</font>
</li>
<li>
<font color = "#007330">
<strong>~TDListWidgetItem();</strong><br>
</font>
<font color = "#555555">
//列表窗体条目控件的析构函数
</font>
</li>
<li>
<font color = "#007330">
<strong>void setColor(const QColor &col_nor,const QColor &col_hov,const QColor &col_pre);</strong><br>
</font>
<font color = "#555555">
//设置控件的颜色,三个参数分别为(正常颜色,鼠标经过时的颜色,鼠标点击时的颜色),用户可以自定义和式风格的颜色来代替默认的灰色。
注意只有在控件is_default属性为true时,此函数设置才有效。也就是说以图片参数初始化的控件使用此函数设置后无效。
</font>
</li>
<li>
<font color = "#007330">
<strong>void init(Qt::Orientation ot);</strong><br>
</font>
<font color = "#555555">
//以默认方式进行初始化时,构造函数都会调用init函数来进行初始化,参数为方向(水平,垂直)。
</font>
</li>
<li>
<font color = "#007330">
<strong>int getIndex() const;</strong><br>
</font>
<font color = "#555555">
//获取当前控件的下标或索引,有时候也是其在父控件中的位序。
</font>
</li>
<li>
<font color = "#007330">
<strong>void setIndex(const int i);</strong><br>
</font>
<font color = "#555555">
//设置当前控件的索引值。
</font>
</li>
<li>
<font color = "#007330">
<strong>virtual void setText(const QString &text);</strong><br>
</font>
<font color = "#555555">
//重新实现的setText()函数,用于设置当前控件上显示的文字。同样,当is_default属性为true时,设置才有效。
</font>
</li>
</ul>
</div>
<div id = "TDListWidgetItem-Signals">
<div class="myh3">
Signals
</div>
<ul>
<li>
<font color = "#007330">
<strong>void doubleClicked(int index);</strong><br>
</font>
<font color = "#555555">
//按钮双击信号,传递此控件的index值。
</font>
</li>
<li>
<font color = "#007330">
<strong>void clicked(int index);</strong><br>
</font>
<font color = "#555555">
//点击信号,传递此控件的index值。在鼠标按下的那一刻触发。
</font>
</li>
</ul>
</div>
<div id = "TDListWidgetItem-Reimplemented-Protected-Functions">
<div class="myh3">
Reimplemented Protected Functions
</div>
<ul>
<li>
<font color = "#007330">
<strong>virtual void mouseDoubleClickEvent(QMouseEvent *);</strong><br>
</font>
<font color = "#555555">
//鼠标双击事件,在此事件中,发送<font color = "$007330">doubleClicked</font>信号。
</font>
</li>
<li>
<font color = "#007330">
<strong>virtual void mouseReleaseEvent(QMouseEvent *);</strong><br>
</font>
<font color = "#555555">
//鼠标离开时间,在此事件中发送<font color = "$007330">clicked</font>信号。并且执行父类的此函数。
</font>