File: qwsdecoration.html

package info (click to toggle)
qt-embedded 2.3.2-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 68,608 kB
  • ctags: 45,998
  • sloc: cpp: 276,654; ansic: 71,987; makefile: 29,074; sh: 12,305; yacc: 2,465; python: 1,863; perl: 481; lex: 480; xml: 68; lisp: 15
file content (126 lines) | stat: -rw-r--r-- 8,304 bytes parent folder | download
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 PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Qt Toolkit - QWSDecoration Class</title><style type="text/css"><!--
h3.fn,span.fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }body { background: white; color: black; }
--></style>
</head><body bgcolor="#ffffff">

<table width="100%">
<tr><td><a href="index.html">
<img width="100" height="100" src="qtlogo.png"
alt="Home" border="0"><img width="100"
height="100" src="face.png" alt="Home" border="0">
</a><td valign=top><div align=right><img src="dochead.png" width="472" height="27"><br>
<a href="classes.html"><b>Classes</b></a>
-<a href="annotated.html">Annotated</a>
- <a href="hierarchy.html">Tree</a>
-<a href="functions.html">Functions</a>
-<a href="index.html">Home</a>
-<a href="topicals.html"><b>Structure</b></a>
</div>
</table>

<h1 align=center>QWSDecoration Class Reference</h1><br clear="all">
<p>
The QWSDecoration class allows the appearance of the Qt/Embedded Window Manager to be customized.
<a href="#details">More...</a>
<p>
<code>#include &lt;<a href="qwsdecoration_qws-h.html">qwsdecoration_qws.h</a>&gt;</code>
<p><a href="qwsdecoration-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
<li><div class="fn"><a href="#2b1662"><b>QWSDecoration</b></a>()</div>
<li><div class="fn">virtual<a href="#cfb58b"><b>~QWSDecoration</b></a>()</div>
<li><div class="fn">enum<a href="#Region"><b>Region</b></a>{None=0, All=1, Title=2, Top=3, Bottom=4, Left=5, Right=6, TopLeft=7, TopRight=8, BottomLeft=9, BottomRight=10, Close=11, Minimize=12, Maximize=13, Normalize=14, Menu=15, LastRegion=Menu}</div>
<li><div class="fn">virtualQRegion<a href="#b59a78"><b>region</b></a>(constQWidget*, constQRect&amp;rect, Regionr=All)</div>
<li><div class="fn">virtualvoid<a href="#3ea650"><b>close</b></a>(QWidget*)</div>
<li><div class="fn">virtualvoid<a href="#3f35e8"><b>minimize</b></a>(QWidget*)</div>
<li><div class="fn">virtualvoid<a href="#20273e"><b>maximize</b></a>(QWidget*)</div>
<li><div class="fn">virtualQPopupMenu*<a href="#23a481"><b>menu</b></a>(constQWidget*, constQPoint&amp;)</div>
<li><div class="fn">virtualvoid<a href="#f1b482"><b>paint</b></a>(QPainter*, constQWidget*)</div>
<li><div class="fn">virtualvoid<a href="#62aafd"><b>paintButton</b></a>(QPainter*, constQWidget*, Region, intstate)</div>
</ul>
<hr><h2><a name="details"></a>Detailed Description</h2>
The QWSDecoration class allows the appearance of the Qt/Embedded Window Manager to be customized.
<p>
Qt/Embedded provides window management to top level windows.  The
appearance of the borders and buttons (the decoration) around the
managed windows can be customized by creating your own class derived
from QWSDecoration and overriding a few methods.
<p>This class is non-portable.  It is available <em>only</em> in Qt/Embedded.
<p>See also  <a href="qapplication.html#07233c">QApplication::qwsSetDecoration</a>().

<hr><h2>Member Type Documentation</h2>
<h3 class="fn"><a name="Region">QWSDecoration::Region</a></h3>
This enum describes the regions in the window decorations.
<p><ul>
<li> <code>None</code> - used internally.
<li> <code>All</code> - the entire region used by the window decoration.
<li> <code>Title</code> - Displays the window title and allows the window to be
moved by dragging.
<li> <code>Top</code> - allows the top of the window to be resized.
<li> <code>Bottom</code> - allows the bottom of the window to be resized.
<li> <code>Left</code> - allows the left edge of the window to be resized.
<li> <code>Right</code> - allows the right edge of the window to be resized.
<li> <code>TopLeft</code> - allows the top-left of the window to be resized.
<li> <code>TopRight</code> - allows the top-right of the window to be resized.
<li> <code>BottomLeft</code> - allows the bottom-left of the window to be resized.
<li> <code>BottomRight</code> - allows the bottom-right of the window to be resized.
<li> <code>Close</code> - clicking in this region closes the window.
<li> <code>Minimize</code> - clicking in this region minimizes the window.
<li> <code>Maximize</code> - clicking in this region maximizes the window.
<li> <code>Normalize</code> - returns a maximized window to previous size.
<li> <code>Menu</code> - clicking in this region opens the window operations menu.
</ul>
<hr><h2>Member Function Documentation</h2>
<h3 class="fn"><a name="2b1662"></a>QWSDecoration::QWSDecoration()</h3>
<p>Constructs a decorator.
<h3 class="fn"><a name="cfb58b"></a>QWSDecoration::~QWSDecoration() <code>[virtual]</code></h3>
<p>Destructs a decorator.
<h3 class="fn">void<a name="3ea650"></a>QWSDecoration::close(<a href="qwidget.html">QWidget</a>*widget) <code>[virtual]</code></h3>
<p>Called when the user clicks in the <code>Close</code> region.
<p><em>widget</em> is the <a href="qwidget.html">QWidget</a> to be closed.
<p>The default behaviour is to close the widget.
<h3 class="fn">void<a name="20273e"></a>QWSDecoration::maximize(<a href="qwidget.html">QWidget</a>*widget) <code>[virtual]</code></h3>
<p>Called when the user clicks in the <code>Maximize</code> region.
<p><em>widget</em> is the <a href="qwidget.html">QWidget</a> to be maximized.
<p>The default behaviour is to resize the widget to be full-screen.
This method can be overridden to, e.g. avoid launch panels.
<h3 class="fn"><a href="qpopupmenu.html">QPopupMenu</a>*<a name="23a481"></a>QWSDecoration::menu(const<a href="qwidget.html">QWidget</a>*, const<a href="qpoint.html">QPoint</a>&amp;) <code>[virtual]</code></h3>
<p>Called to create a <a href="qpopupmenu.html">QPopupMenu</a> containing the valid menu operations.
<p>The default implementation adds all possible window operations.
<h3 class="fn">void<a name="3f35e8"></a>QWSDecoration::minimize(<a href="qwidget.html">QWidget</a>*) <code>[virtual]</code></h3>
<p>Called when the user clicks in the <code>Minimize</code> region.
<p><em>widget</em> is the <a href="qwidget.html">QWidget</a> to be minimized.
<p>The default behaviour is to ignore this action.
<h3 class="fn">void<a name="f1b482"></a>QWSDecoration::paint(<a href="qpainter.html">QPainter</a>*painter, const<a href="qwidget.html">QWidget</a>*widget) <code>[virtual]</code></h3>
<p>Override to paint the border and title decoration around <em>widget</em> using
<em>painter.</em>
<h3 class="fn">void<a name="62aafd"></a>QWSDecoration::paintButton(<a href="qpainter.html">QPainter</a>*painter, const<a href="qwidget.html">QWidget</a>*widget, <a href="qwsdecoration.html#Region">Region</a>type, intstate)</h3>
<p>Override to paint a button <em>type</em> using <em>painter.</em>
<p><em>widget</em> is the widget whose button is to be drawn.
<em>state</em> is the state of the button.  It can be a combination of the
following ORed together:
<ul>
<li> <code>QWSButton::MouseOver</code>
<li> <code>QWSButton::Clicked</code>
<li> <code>QWSButton::On</code>
</ul>
<h3 class="fn"><a href="qregion.html">QRegion</a><a name="b59a78"></a>QWSDecoration::region(const<a href="qwidget.html">QWidget</a>*widget, const<a href="qrect.html">QRect</a>&amp;rect, <a href="qwsdecoration.html#Region">Region</a>type=All)</h3>
<p>Returns the requested region <em>type</em> which will contain <em>widget</em>
with geometry <em>rect.</em>
<hr><p>
Search the documentation, FAQ, qt-interest archive and more (uses
<a href="http://www.trolltech.com">www.trolltech.com</a>):<br>
<form method=post action="http://www.trolltech.com/search.cgi">
<input type=hidden name="version" value="2.3.2"><nobr>
<input size="50" name="search"><input type=submit value="Search">
</nobr></form><hr><p>
This file is part of the <a href="index.html">Qt toolkit</a>,
copyright &copy; 1995-2001
<a href="http://www.trolltech.com">Trolltech</a>, all rights reserved.<p><address><hr><div align="center">
<table width="100%" cellspacing="0" border="0"><tr>
<td>Copyright  2001 Trolltech<td><a href="http://www.trolltech.com/trademarks.html">Trademarks</a>
<td align="right"><div align="right">Qt version 2.3.2</div>
</table></div></address></body></html>