1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the examples of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:BSD$
|
---|
10 | ** You may use this file under the terms of the BSD license as follows:
|
---|
11 | **
|
---|
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.
|
---|
25 | **
|
---|
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."
|
---|
37 | ** $QT_END_LICENSE$
|
---|
38 | **
|
---|
39 | ****************************************************************************/
|
---|
40 |
|
---|
41 | #include <QtGui>
|
---|
42 | #include "window.h"
|
---|
43 |
|
---|
44 | //! [Set up widgets]
|
---|
45 | Window::Window(QWidget *parent)
|
---|
46 | : QWidget(parent)
|
---|
47 | {
|
---|
48 | setupModel();
|
---|
49 |
|
---|
50 | nameLabel = new QLabel(tr("Na&me:"));
|
---|
51 | nameEdit = new QLineEdit();
|
---|
52 | addressLabel = new QLabel(tr("&Address:"));
|
---|
53 | addressEdit = new QTextEdit();
|
---|
54 | typeLabel = new QLabel(tr("&Type:"));
|
---|
55 | typeComboBox = new QComboBox();
|
---|
56 | nextButton = new QPushButton(tr("&Next"));
|
---|
57 | previousButton = new QPushButton(tr("&Previous"));
|
---|
58 |
|
---|
59 | nameLabel->setBuddy(nameEdit);
|
---|
60 | addressLabel->setBuddy(addressEdit);
|
---|
61 | typeLabel->setBuddy(typeComboBox);
|
---|
62 |
|
---|
63 | typeComboBox->setModel(typeModel);
|
---|
64 | //! [Set up widgets]
|
---|
65 |
|
---|
66 | //! [Set up the mapper]
|
---|
67 | mapper = new QDataWidgetMapper(this);
|
---|
68 | mapper->setModel(model);
|
---|
69 | mapper->addMapping(nameEdit, 0);
|
---|
70 | mapper->addMapping(addressEdit, 1);
|
---|
71 | mapper->addMapping(typeComboBox, 2, "currentIndex");
|
---|
72 | //! [Set up the mapper]
|
---|
73 |
|
---|
74 | //! [Set up connections and layouts]
|
---|
75 | connect(previousButton, SIGNAL(clicked()),
|
---|
76 | mapper, SLOT(toPrevious()));
|
---|
77 | connect(nextButton, SIGNAL(clicked()),
|
---|
78 | mapper, SLOT(toNext()));
|
---|
79 | connect(mapper, SIGNAL(currentIndexChanged(int)),
|
---|
80 | this, SLOT(updateButtons(int)));
|
---|
81 |
|
---|
82 | QGridLayout *layout = new QGridLayout();
|
---|
83 | layout->addWidget(nameLabel, 0, 0, 1, 1);
|
---|
84 | layout->addWidget(nameEdit, 0, 1, 1, 1);
|
---|
85 | layout->addWidget(previousButton, 0, 2, 1, 1);
|
---|
86 | layout->addWidget(addressLabel, 1, 0, 1, 1);
|
---|
87 | layout->addWidget(addressEdit, 1, 1, 2, 1);
|
---|
88 | layout->addWidget(nextButton, 1, 2, 1, 1);
|
---|
89 | layout->addWidget(typeLabel, 3, 0, 1, 1);
|
---|
90 | layout->addWidget(typeComboBox, 3, 1, 1, 1);
|
---|
91 | setLayout(layout);
|
---|
92 |
|
---|
93 | setWindowTitle(tr("Delegate Widget Mapper"));
|
---|
94 | mapper->toFirst();
|
---|
95 | }
|
---|
96 | //! [Set up connections and layouts]
|
---|
97 |
|
---|
98 | //! [Set up the model]
|
---|
99 | void Window::setupModel()
|
---|
100 | {
|
---|
101 | QStringList items;
|
---|
102 | items << tr("Home") << tr("Work") << tr("Other");
|
---|
103 | typeModel = new QStringListModel(items, this);
|
---|
104 |
|
---|
105 | model = new QStandardItemModel(5, 3, this);
|
---|
106 | QStringList names;
|
---|
107 | names << "Alice" << "Bob" << "Carol" << "Donald" << "Emma";
|
---|
108 | QStringList addresses;
|
---|
109 | addresses << "<qt>123 Main Street<br/>Market Town</qt>"
|
---|
110 | << "<qt>PO Box 32<br/>Mail Handling Service"
|
---|
111 | "<br/>Service City</qt>"
|
---|
112 | << "<qt>The Lighthouse<br/>Remote Island</qt>"
|
---|
113 | << "<qt>47338 Park Avenue<br/>Big City</qt>"
|
---|
114 | << "<qt>Research Station<br/>Base Camp<br/>Big Mountain</qt>";
|
---|
115 |
|
---|
116 | QStringList types;
|
---|
117 | types << "0" << "1" << "2" << "0" << "2";
|
---|
118 |
|
---|
119 | for (int row = 0; row < 5; ++row) {
|
---|
120 | QStandardItem *item = new QStandardItem(names[row]);
|
---|
121 | model->setItem(row, 0, item);
|
---|
122 | item = new QStandardItem(addresses[row]);
|
---|
123 | model->setItem(row, 1, item);
|
---|
124 | item = new QStandardItem(types[row]);
|
---|
125 | model->setItem(row, 2, item);
|
---|
126 | }
|
---|
127 | }
|
---|
128 | //! [Set up the model]
|
---|
129 |
|
---|
130 | //! [Slot for updating the buttons]
|
---|
131 | void Window::updateButtons(int row)
|
---|
132 | {
|
---|
133 | previousButton->setEnabled(row > 0);
|
---|
134 | nextButton->setEnabled(row < model->rowCount() - 1);
|
---|
135 | }
|
---|
136 | //! [Slot for updating the buttons]
|
---|