This repository has been archived by the owner on May 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdtk-widget-dfloatingmessage.html
126 lines (126 loc) · 7.89 KB
/
dtk-widget-dfloatingmessage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- dfloatingmessage.cpp -->
<title>DFloatingMessage Class | Dtk Reference Documentation 1.0.0</title>
<link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
<script type="text/javascript">
document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");
// loading style sheet breaks anchors that were jumped to before
// so force jumping to anchor again
setTimeout(function() {
var anchor = location.hash;
// need to jump to different anchor first (e.g. none)
location.hash = "#";
setTimeout(function() {
location.hash = anchor;
}, 0);
}, 0);
</script>
</head>
<body>
<div class="header" id="qtdocheader">
<div class="main">
<div class="main-rounded">
<div class="navigationbar">
<ul>
<li><a href="index.html">Dtk Doc</a></li>
<li><a href="index.html">Dtk Reference Documentation</a></li>
<li>DFloatingMessage</li>
<li id="buildversion"><a href="index.html">Qt 5.15.2 Reference Documentation</a></li>
</ul>
</div>
</div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#public-types">Public Types</a></li>
<li class="level1"><a href="#public-functions">Public Functions</a></li>
<li class="level1"><a href="#details">Detailed Description</a></li>
</ul>
</div>
<div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">DFloatingMessage Class</h1>
<span class="small-subtitle">class <a href="dtk.html">Dtk</a>::<a href="dtk-widget.html">Widget</a>::DFloatingMessage</span>
<!-- $$$DFloatingMessage-brief -->
<p>一个浮动消息的类. <a href="#details">More...</a></p>
<!-- @@@DFloatingMessage -->
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <DFloatingMessage></span>
</td></tr><tr><td class="memItemLeft rightAlign topAlign"> Inherits:</td><td class="memItemRight bottomAlign"> Dtk::Widget::DFloatingWidget</td></tr></table></div><ul>
<li><a href="dtk-widget-dfloatingmessage-members.html">List of all members, including inherited members</a></li>
</ul>
<a name="public-types"></a>
<h2 id="public-types">Public Types</h2>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> enum </td><td class="memItemRight bottomAlign"><b><a href="dtk-widget-dfloatingmessage.html#MessageType-enum">MessageType</a></b> { TransientType, ResidentType }</td></tr>
</table></div>
<a name="public-functions"></a>
<h2 id="public-functions">Public Functions</h2>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="dtk-widget-dfloatingmessage.html#setDuration">setDuration</a></b>(int <i>msec</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="dtk-widget-dfloatingmessage.html#setMessage">setMessage</a></b>(const QString &<i>str</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="dtk-widget-dfloatingmessage.html#setWidget">setWidget</a></b>(QWidget *<i>w</i>)</td></tr>
</table></div>
<a name="details"></a>
<!-- $$$DFloatingMessage-description -->
<div class="descr">
<h2 id="details">Detailed Description</h2>
<p>类似于 ios 的通知栏消息, 然后有每一个新的消息对象, 就添加到一个竖直布局里面, 然后一个消息的其布局模式是: icon (图标) + Message (消息) + <a href="http://doc.qt.io/qt-5/qwidget.html">QWidget</a> (存放如控件按钮,可选) + closeButton (关闭按钮,可选) 多个消息均是以竖直布局存放在一个 DMessageManager (消息管理类) 里面的</p>
<pre style="font-family: FreeMono, Consolas, Menlo, 'Noto Mono', 'Courier New', Courier, monospace;line-height: 100%;">
=============================================================================================
= =
= ========== ======================= ========= ========== =
= = icon = = message = =QWidget= = quit = =
= ========== ======================= ========= ========== =
= (必选) (必选) (永驻:可选) (永驻:可选) =
=============================================================================================
</pre>
<p>消息通知一共有两种类型,临时停留几秒和手动清除的永驻消息</p>
</div>
<!-- @@@DFloatingMessage -->
<div class="types">
<h2>Member Type Documentation</h2>
<!-- $$$MessageType$$$TransientType$$$ResidentType -->
<h3 class="fn" id="MessageType-enum"><a name="MessageType-enum"></a>enum DFloatingMessage::<span class="name">MessageType</span></h3>
<p>DFloatingMessage::MessageType 定义了 <a href="dtk-widget-dfloatingmessage.html">DFloatingMessage</a> 通知类型</p>
<div class="table"><table class="valuelist"><tr valign="top" class="odd"><th class="tblConst">Constant</th><th class="tblval">Value</th><th class="tbldscr">Description</th></tr>
<tr><td class="topAlign"><code>Dtk::Widget::DFloatingMessage::TransientType</code></td><td class="topAlign tblval"><code>0</code></td><td class="topAlign">临时的消息</td></tr>
<tr><td class="topAlign"><code>Dtk::Widget::DFloatingMessage::ResidentType</code></td><td class="topAlign tblval"><code>1</code></td><td class="topAlign">常驻的消息</td></tr>
</table></div>
<!-- @@@MessageType -->
</div>
<div class="func">
<h2>Member Function Documentation</h2>
<!-- $$$setDuration[overload1]$$$setDurationint -->
<h3 class="fn" id="setDuration"><a name="setDuration"></a><span class="type">void</span> DFloatingMessage::<span class="name">setDuration</span>(<span class="type">int</span> <i>msec</i>)</h3>
<p>若是为临时消息,则设置时间(毫秒)后会自动消失 <i>msec</i> 消息显示的毫秒数, 默认是4000毫秒</p>
<!-- @@@setDuration -->
<!-- $$$setMessage[overload1]$$$setMessageconstQString& -->
<h3 class="fn" id="setMessage"><a name="setMessage"></a><span class="type">void</span> DFloatingMessage::<span class="name">setMessage</span>(const <span class="type"><a href="http://doc.qt.io/qt-5/qstring.html">QString</a></span> &<i>str</i>)</h3>
<p>设置显示的文本消息(文字) <i>str</i> 消息文本的具体文字内容</p>
<!-- @@@setMessage -->
<!-- $$$setWidget[overload1]$$$setWidgetQWidget* -->
<h3 class="fn" id="setWidget"><a name="setWidget"></a><span class="type">void</span> DFloatingMessage::<span class="name">setWidget</span>(<span class="type"><a href="http://doc.qt.io/qt-5/qwidget.html">QWidget</a></span> *<i>w</i>)</h3>
<p>消息里面的,水平布局里面的第三个位置, 用来存放一些自定义控件, 比如一个确定按钮 <i>w</i> 插入的具体控件, 若之前此处已经有其他的控件, 先删除挪出空位子, 在将 w 控件放到这个上面</p>
<!-- @@@setWidget -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2020 The Qt Company Ltd.
Documentation contributions included herein are the copyrights of
their respective owners.<br/> The documentation provided herein is licensed under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.<br/> Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. </p>
</div>
</body>
</html>