~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to doc/html/activeqt-menus-menus-cpp.html

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-11-02 18:30:08 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (15.2.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20091102183008-b6a4gcs128mvfb3m
Tags: upstream-4.6.0~beta1
ImportĀ upstreamĀ versionĀ 4.6.0~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="iso-8859-1"?>
 
2
<!DOCTYPE html
 
3
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
 
4
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
5
<head>
 
6
  <title>Qt 4.6: menus.cpp Example File (activeqt/menus/menus.cpp)</title>
 
7
  <link href="classic.css" rel="stylesheet" type="text/css" />
 
8
</head>
 
9
<body>
 
10
<table border="0" cellpadding="0" cellspacing="0" width="100%">
 
11
<tr>
 
12
<td align="left" valign="top" width="32"><a href="http://qt.nokia.com/"><img src="images/qt-logo.png" align="left" border="0" /></a></td>
 
13
<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">All&nbsp;Functions</font></a>&nbsp;&middot; <a href="overviews.html"><font color="#004faf">Overviews</font></a></td><td class="searchBar" align="right" valign="center"><form action="http://www.google.com/cse" id="cse-search-box"><div><input type="hidden" name="cx" value="000136343326384750312:dhbxnqlakyu" /><input type="hidden" name="ie" value="UTF-8" /><input type="text" name="q" size="31" /><input type="submit" name="sa" value="Search" /></div></form></td>
 
14
</tr></table><h1 class="title">menus.cpp Example File<br /><span class="small-subtitle">activeqt/menus/menus.cpp</span>
 
15
</h1>
 
16
<pre><span class="comment"> /****************************************************************************
 
17
 **
 
18
 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
 
19
 ** All rights reserved.
 
20
 ** Contact: Nokia Corporation (qt-info@nokia.com)
 
21
 **
 
22
 ** This file is part of the examples of the Qt Toolkit.
 
23
 **
 
24
 ** $QT_BEGIN_LICENSE:LGPL$
 
25
 ** No Commercial Usage
 
26
 ** This file contains pre-release code and may not be distributed.
 
27
 ** You may use this file in accordance with the terms and conditions
 
28
 ** contained in the Technology Preview License Agreement accompanying
 
29
 ** this package.
 
30
 **
 
31
 ** GNU Lesser General Public License Usage
 
32
 ** Alternatively, this file may be used under the terms of the GNU Lesser
 
33
 ** General Public License version 2.1 as published by the Free Software
 
34
 ** Foundation and appearing in the file LICENSE.LGPL included in the
 
35
 ** packaging of this file.  Please review the following information to
 
36
 ** ensure the GNU Lesser General Public License version 2.1 requirements
 
37
 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 
38
 **
 
39
 ** In addition, as a special exception, Nokia gives you certain additional
 
40
 ** rights.  These rights are described in the Nokia Qt LGPL Exception
 
41
 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
42
 **
 
43
 ** If you have questions regarding the use of this file, please contact
 
44
 ** Nokia at qt-info@nokia.com.
 
45
 **
 
46
 **
 
47
 **
 
48
 **
 
49
 **
 
50
 **
 
51
 **
 
52
 **
 
53
 ** $QT_END_LICENSE$
 
54
 **
 
55
 ****************************************************************************/</span>
 
56
 
 
57
 #include &quot;menus.h&quot;
 
58
 #include &lt;QAction&gt;
 
59
 #include &lt;QAxFactory&gt;
 
60
 #include &lt;QMenuBar&gt;
 
61
 #include &lt;QMessageBox&gt;
 
62
 #include &lt;QTextEdit&gt;
 
63
 #include &lt;QPixmap&gt;
 
64
 
 
65
 #include &quot;fileopen.xpm&quot;
 
66
 #include &quot;filesave.xpm&quot;
 
67
 
 
68
 QMenus::QMenus(QWidget *parent)
 
69
     : QMainWindow(parent, 0) <span class="comment">// QMainWindow's default flag is WType_TopLevel</span>
 
70
 {
 
71
     QAction *action;
 
72
 
 
73
     QMenu *file = new QMenu(this);
 
74
 
 
75
     action = new QAction(QPixmap((const char**)fileopen), &quot;&amp;Open&quot;, this);
 
76
     action-&gt;setShortcut(tr(&quot;CTRL+O&quot;));
 
77
     connect(action, SIGNAL(triggered()), this, SLOT(fileOpen()));
 
78
     file-&gt;addAction(action);
 
79
 
 
80
     action = new QAction(QPixmap((const char**)filesave),&quot;&amp;Save&quot;, this);
 
81
     action-&gt;setShortcut(tr(&quot;CTRL+S&quot;));
 
82
     connect(action, SIGNAL(triggered()), this, SLOT(fileSave()));
 
83
     file-&gt;addAction(action);
 
84
 
 
85
     QMenu *edit = new QMenu(this);
 
86
 
 
87
     action = new QAction(&quot;&amp;Normal&quot;, this);
 
88
     action-&gt;setShortcut(tr(&quot;CTRL+N&quot;));
 
89
     action-&gt;setToolTip(&quot;Normal&quot;);
 
90
     action-&gt;setStatusTip(&quot;Toggles Normal&quot;);
 
91
     action-&gt;setCheckable(true);
 
92
     connect(action, SIGNAL(triggered()), this, SLOT(editNormal()));
 
93
     edit-&gt;addAction(action);
 
94
 
 
95
     action = new QAction(&quot;&amp;Bold&quot;, this);
 
96
     action-&gt;setShortcut(tr(&quot;CTRL+B&quot;));
 
97
     action-&gt;setCheckable(true);
 
98
     connect(action, SIGNAL(triggered()), this, SLOT(editBold()));
 
99
     edit-&gt;addAction(action);
 
100
 
 
101
     action = new QAction(&quot;&amp;Underline&quot;, this);
 
102
     action-&gt;setShortcut(tr(&quot;CTRL+U&quot;));
 
103
     action-&gt;setCheckable(true);
 
104
     connect(action, SIGNAL(triggered()), this, SLOT(editUnderline()));
 
105
     edit-&gt;addAction(action);
 
106
 
 
107
     QMenu *advanced = new QMenu(this);
 
108
     action = new QAction(&quot;&amp;Font...&quot;, this);
 
109
     connect(action, SIGNAL(triggered()), this, SLOT(editAdvancedFont()));
 
110
     advanced-&gt;addAction(action);
 
111
 
 
112
     action = new QAction(&quot;&amp;Style...&quot;, this);
 
113
     connect(action, SIGNAL(triggered()), this, SLOT(editAdvancedStyle()));
 
114
     advanced-&gt;addAction(action);
 
115
 
 
116
     edit-&gt;addMenu(advanced)-&gt;setText(&quot;&amp;Advanced&quot;);
 
117
 
 
118
     edit-&gt;addSeparator();
 
119
 
 
120
     action = new QAction(&quot;Una&amp;vailable&quot;, this);
 
121
     action-&gt;setShortcut(tr(&quot;CTRL+V&quot;));
 
122
     action-&gt;setCheckable(true);
 
123
     action-&gt;setEnabled(false);
 
124
     connect(action, SIGNAL(triggered()), this, SLOT(editUnderline()));
 
125
     edit-&gt;addAction(action);
 
126
 
 
127
     QMenu *help = new QMenu(this);
 
128
 
 
129
     action = new QAction(&quot;&amp;About...&quot;, this);
 
130
     action-&gt;setShortcut(tr(&quot;F1&quot;));
 
131
     connect(action, SIGNAL(triggered()), this, SLOT(helpAbout()));
 
132
     help-&gt;addAction(action);
 
133
 
 
134
     action = new QAction(&quot;&amp;About Qt...&quot;, this);
 
135
     connect(action, SIGNAL(triggered()), this, SLOT(helpAboutQt()));
 
136
     help-&gt;addAction(action);
 
137
 
 
138
     if (!QAxFactory::isServer())
 
139
         menuBar()-&gt;addMenu(file)-&gt;setText(&quot;&amp;File&quot;);
 
140
     menuBar()-&gt;addMenu(edit)-&gt;setText(&quot;&amp;Edit&quot;);
 
141
     menuBar()-&gt;addMenu(help)-&gt;setText(&quot;&amp;Help&quot;);
 
142
 
 
143
     editor = new QTextEdit(this);
 
144
     setCentralWidget(editor);
 
145
 
 
146
     statusBar();
 
147
 }
 
148
 
 
149
 void QMenus::fileOpen()
 
150
 {
 
151
     editor-&gt;append(&quot;File Open selected.&quot;);
 
152
 }
 
153
 
 
154
 void QMenus::fileSave()
 
155
 {
 
156
     editor-&gt;append(&quot;File Save selected.&quot;);
 
157
 }
 
158
 
 
159
 void QMenus::editNormal()
 
160
 {
 
161
     editor-&gt;append(&quot;Edit Normal selected.&quot;);
 
162
 }
 
163
 
 
164
 void QMenus::editBold()
 
165
 {
 
166
     editor-&gt;append(&quot;Edit Bold selected.&quot;);
 
167
 }
 
168
 
 
169
 void QMenus::editUnderline()
 
170
 {
 
171
     editor-&gt;append(&quot;Edit Underline selected.&quot;);
 
172
 }
 
173
 
 
174
 void QMenus::editAdvancedFont()
 
175
 {
 
176
     editor-&gt;append(&quot;Edit Advanced Font selected.&quot;);
 
177
 }
 
178
 
 
179
 void QMenus::editAdvancedStyle()
 
180
 {
 
181
     editor-&gt;append(&quot;Edit Advanced Style selected.&quot;);
 
182
 }
 
183
 
 
184
 void QMenus::helpAbout()
 
185
 {
 
186
     QMessageBox::about(this, &quot;About QMenus&quot;,
 
187
                         &quot;This example implements an in-place ActiveX control with menus and status messages.&quot;);
 
188
 }
 
189
 
 
190
 void QMenus::helpAboutQt()
 
191
 {
 
192
     QMessageBox::aboutQt(this);
 
193
 }</pre>
 
194
<p /><address><hr /><div align="center">
 
195
<table width="100%" cellspacing="0" border="0"><tr class="address">
 
196
<td width="40%" align="left">Copyright &copy; 2009 Nokia Corporation and/or its subsidiary(-ies)</td>
 
197
<td width="20%" align="center"><a href="trademarks.html">Trademarks</a></td>
 
198
<td width="40%" align="right"><div align="right">Qt 4.6.0</div></td>
 
199
<script type="text/javascript" src="http://www.google.com/jsapi"></script><script type="text/javascript">google.load("elements", "1", {packages: "transliteration"});</script><script type="text/javascript" src="http://www.google.com/coop/cse/t13n?form=cse-search-box&t13n_langs=en"></script><script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script></tr></table></div></address></body>
 
200
</html>