[2] | 1 | /****************************************************************************
|
---|
| 2 | **
|
---|
[846] | 3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
[561] | 4 | ** All rights reserved.
|
---|
| 5 | ** Contact: Nokia Corporation ([email protected])
|
---|
[2] | 6 | **
|
---|
| 7 | ** This file is part of the examples of the Qt Toolkit.
|
---|
| 8 | **
|
---|
[846] | 9 | ** $QT_BEGIN_LICENSE:BSD$
|
---|
| 10 | ** You may use this file under the terms of the BSD license as follows:
|
---|
[2] | 11 | **
|
---|
[846] | 12 | ** "Redistribution and use in source and binary forms, with or without
|
---|
| 13 | ** modification, are permitted provided that the following conditions are
|
---|
| 14 | ** met:
|
---|
| 15 | ** * Redistributions of source code must retain the above copyright
|
---|
| 16 | ** notice, this list of conditions and the following disclaimer.
|
---|
| 17 | ** * Redistributions in binary form must reproduce the above copyright
|
---|
| 18 | ** notice, this list of conditions and the following disclaimer in
|
---|
| 19 | ** the documentation and/or other materials provided with the
|
---|
| 20 | ** distribution.
|
---|
| 21 | ** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
|
---|
| 22 | ** the names of its contributors may be used to endorse or promote
|
---|
| 23 | ** products derived from this software without specific prior written
|
---|
| 24 | ** permission.
|
---|
[2] | 25 | **
|
---|
[846] | 26 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
---|
| 27 | ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
---|
| 28 | ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
---|
| 29 | ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
---|
| 30 | ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
---|
| 31 | ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
---|
| 32 | ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 33 | ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 34 | ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 35 | ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
---|
| 36 | ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
---|
[2] | 37 | ** $QT_END_LICENSE$
|
---|
| 38 | **
|
---|
| 39 | ****************************************************************************/
|
---|
| 40 |
|
---|
| 41 | #include <QtGui>
|
---|
| 42 |
|
---|
| 43 | #include "window.h"
|
---|
| 44 |
|
---|
| 45 | //! [0]
|
---|
| 46 | Window::Window(QWidget *parent)
|
---|
| 47 | : QWidget(parent)
|
---|
| 48 | {
|
---|
| 49 | QGridLayout *grid = new QGridLayout;
|
---|
| 50 | grid->addWidget(createFirstExclusiveGroup(), 0, 0);
|
---|
| 51 | grid->addWidget(createSecondExclusiveGroup(), 1, 0);
|
---|
| 52 | grid->addWidget(createNonExclusiveGroup(), 0, 1);
|
---|
| 53 | grid->addWidget(createPushButtonGroup(), 1, 1);
|
---|
| 54 | setLayout(grid);
|
---|
| 55 |
|
---|
| 56 | setWindowTitle(tr("Group Boxes"));
|
---|
| 57 | resize(480, 320);
|
---|
| 58 | }
|
---|
| 59 | //! [0]
|
---|
| 60 |
|
---|
| 61 | //! [1]
|
---|
| 62 | QGroupBox *Window::createFirstExclusiveGroup()
|
---|
| 63 | {
|
---|
| 64 | //! [2]
|
---|
| 65 | QGroupBox *groupBox = new QGroupBox(tr("Exclusive Radio Buttons"));
|
---|
| 66 |
|
---|
| 67 | QRadioButton *radio1 = new QRadioButton(tr("&Radio button 1"));
|
---|
| 68 | QRadioButton *radio2 = new QRadioButton(tr("R&adio button 2"));
|
---|
| 69 | QRadioButton *radio3 = new QRadioButton(tr("Ra&dio button 3"));
|
---|
| 70 |
|
---|
| 71 | radio1->setChecked(true);
|
---|
| 72 | //! [1] //! [3]
|
---|
| 73 |
|
---|
| 74 | QVBoxLayout *vbox = new QVBoxLayout;
|
---|
| 75 | vbox->addWidget(radio1);
|
---|
| 76 | vbox->addWidget(radio2);
|
---|
| 77 | vbox->addWidget(radio3);
|
---|
| 78 | vbox->addStretch(1);
|
---|
| 79 | groupBox->setLayout(vbox);
|
---|
| 80 | //! [2]
|
---|
| 81 |
|
---|
| 82 | return groupBox;
|
---|
| 83 | }
|
---|
| 84 | //! [3]
|
---|
| 85 |
|
---|
| 86 | //! [4]
|
---|
| 87 | QGroupBox *Window::createSecondExclusiveGroup()
|
---|
| 88 | {
|
---|
| 89 | QGroupBox *groupBox = new QGroupBox(tr("E&xclusive Radio Buttons"));
|
---|
| 90 | groupBox->setCheckable(true);
|
---|
| 91 | groupBox->setChecked(false);
|
---|
| 92 | //! [4]
|
---|
| 93 |
|
---|
| 94 | //! [5]
|
---|
| 95 | QRadioButton *radio1 = new QRadioButton(tr("Rad&io button 1"));
|
---|
| 96 | QRadioButton *radio2 = new QRadioButton(tr("Radi&o button 2"));
|
---|
| 97 | QRadioButton *radio3 = new QRadioButton(tr("Radio &button 3"));
|
---|
| 98 | radio1->setChecked(true);
|
---|
| 99 | QCheckBox *checkBox = new QCheckBox(tr("Ind&ependent checkbox"));
|
---|
| 100 | checkBox->setChecked(true);
|
---|
| 101 | //! [5]
|
---|
| 102 |
|
---|
| 103 | //! [6]
|
---|
| 104 | QVBoxLayout *vbox = new QVBoxLayout;
|
---|
| 105 | vbox->addWidget(radio1);
|
---|
| 106 | vbox->addWidget(radio2);
|
---|
| 107 | vbox->addWidget(radio3);
|
---|
| 108 | vbox->addWidget(checkBox);
|
---|
| 109 | vbox->addStretch(1);
|
---|
| 110 | groupBox->setLayout(vbox);
|
---|
| 111 |
|
---|
| 112 | return groupBox;
|
---|
| 113 | }
|
---|
| 114 | //! [6]
|
---|
| 115 |
|
---|
| 116 | //! [7]
|
---|
| 117 | QGroupBox *Window::createNonExclusiveGroup()
|
---|
| 118 | {
|
---|
| 119 | QGroupBox *groupBox = new QGroupBox(tr("Non-Exclusive Checkboxes"));
|
---|
| 120 | groupBox->setFlat(true);
|
---|
| 121 | //! [7]
|
---|
| 122 |
|
---|
| 123 | //! [8]
|
---|
| 124 | QCheckBox *checkBox1 = new QCheckBox(tr("&Checkbox 1"));
|
---|
| 125 | QCheckBox *checkBox2 = new QCheckBox(tr("C&heckbox 2"));
|
---|
| 126 | checkBox2->setChecked(true);
|
---|
| 127 | QCheckBox *tristateBox = new QCheckBox(tr("Tri-&state button"));
|
---|
| 128 | tristateBox->setTristate(true);
|
---|
| 129 | //! [8]
|
---|
| 130 | tristateBox->setCheckState(Qt::PartiallyChecked);
|
---|
| 131 |
|
---|
| 132 | //! [9]
|
---|
| 133 | QVBoxLayout *vbox = new QVBoxLayout;
|
---|
| 134 | vbox->addWidget(checkBox1);
|
---|
| 135 | vbox->addWidget(checkBox2);
|
---|
| 136 | vbox->addWidget(tristateBox);
|
---|
| 137 | vbox->addStretch(1);
|
---|
| 138 | groupBox->setLayout(vbox);
|
---|
| 139 |
|
---|
| 140 | return groupBox;
|
---|
| 141 | }
|
---|
| 142 | //! [9]
|
---|
| 143 |
|
---|
| 144 | //! [10]
|
---|
| 145 | QGroupBox *Window::createPushButtonGroup()
|
---|
| 146 | {
|
---|
| 147 | QGroupBox *groupBox = new QGroupBox(tr("&Push Buttons"));
|
---|
| 148 | groupBox->setCheckable(true);
|
---|
| 149 | groupBox->setChecked(true);
|
---|
| 150 | //! [10]
|
---|
| 151 |
|
---|
| 152 | //! [11]
|
---|
| 153 | QPushButton *pushButton = new QPushButton(tr("&Normal Button"));
|
---|
| 154 | QPushButton *toggleButton = new QPushButton(tr("&Toggle Button"));
|
---|
| 155 | toggleButton->setCheckable(true);
|
---|
| 156 | toggleButton->setChecked(true);
|
---|
| 157 | QPushButton *flatButton = new QPushButton(tr("&Flat Button"));
|
---|
| 158 | flatButton->setFlat(true);
|
---|
| 159 | //! [11]
|
---|
| 160 |
|
---|
| 161 | //! [12]
|
---|
| 162 | QPushButton *popupButton = new QPushButton(tr("Pop&up Button"));
|
---|
| 163 | QMenu *menu = new QMenu(this);
|
---|
| 164 | menu->addAction(tr("&First Item"));
|
---|
| 165 | menu->addAction(tr("&Second Item"));
|
---|
| 166 | menu->addAction(tr("&Third Item"));
|
---|
| 167 | menu->addAction(tr("F&ourth Item"));
|
---|
| 168 | popupButton->setMenu(menu);
|
---|
| 169 | //! [12]
|
---|
| 170 |
|
---|
| 171 | QAction *newAction = menu->addAction(tr("Submenu"));
|
---|
| 172 | QMenu *subMenu = new QMenu(tr("Popup Submenu"));
|
---|
| 173 | subMenu->addAction(tr("Item 1"));
|
---|
| 174 | subMenu->addAction(tr("Item 2"));
|
---|
| 175 | subMenu->addAction(tr("Item 3"));
|
---|
| 176 | newAction->setMenu(subMenu);
|
---|
| 177 |
|
---|
| 178 | //! [13]
|
---|
| 179 | QVBoxLayout *vbox = new QVBoxLayout;
|
---|
| 180 | vbox->addWidget(pushButton);
|
---|
| 181 | vbox->addWidget(toggleButton);
|
---|
| 182 | vbox->addWidget(flatButton);
|
---|
| 183 | vbox->addWidget(popupButton);
|
---|
| 184 | vbox->addStretch(1);
|
---|
| 185 | groupBox->setLayout(vbox);
|
---|
| 186 |
|
---|
| 187 | return groupBox;
|
---|
| 188 | }
|
---|
| 189 | //! [13]
|
---|