source: trunk/examples/sql/drilldown/informationwindow.cpp

Last change on this file was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 5.3 KB
Line 
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 "informationwindow.h"
42
43//! [0]
44InformationWindow::InformationWindow(int id, QSqlRelationalTableModel *offices,
45 QWidget *parent)
46 : QDialog(parent)
47{
48//! [0] //! [1]
49 QLabel *locationLabel = new QLabel(tr("Location: "));
50 QLabel *countryLabel = new QLabel(tr("Country: "));
51 QLabel *descriptionLabel = new QLabel(tr("Description: "));
52 QLabel *imageFileLabel = new QLabel(tr("Image file: "));
53
54 createButtons();
55
56 locationText = new QLabel;
57 countryText = new QLabel;
58 descriptionEditor = new QTextEdit;
59//! [1]
60
61//! [2]
62 imageFileEditor = new QComboBox;
63 imageFileEditor->setModel(offices->relationModel(1));
64 imageFileEditor->setModelColumn(offices->relationModel(1)->fieldIndex("file"));
65//! [2]
66
67//! [3]
68 mapper = new QDataWidgetMapper(this);
69 mapper->setModel(offices);
70 mapper->setSubmitPolicy(QDataWidgetMapper::ManualSubmit);
71 mapper->setItemDelegate(new QSqlRelationalDelegate(mapper));
72 mapper->addMapping(imageFileEditor, 1);
73 mapper->addMapping(locationText, 2, "text");
74 mapper->addMapping(countryText, 3, "text");
75 mapper->addMapping(descriptionEditor, 4);
76 mapper->setCurrentIndex(id);
77//! [3]
78
79//! [4]
80 connect(descriptionEditor, SIGNAL(textChanged()),
81 this, SLOT(enableButtons()));
82 connect(imageFileEditor, SIGNAL(currentIndexChanged(int)),
83 this, SLOT(enableButtons()));
84
85 QFormLayout *formLayout = new QFormLayout;
86 formLayout->addRow(locationLabel, locationText);
87 formLayout->addRow(countryLabel, countryText);
88 formLayout->addRow(imageFileLabel, imageFileEditor);
89 formLayout->addRow(descriptionLabel, descriptionEditor);
90
91 QVBoxLayout *layout = new QVBoxLayout;
92 layout->addLayout(formLayout);
93 layout->addWidget(buttonBox);
94 setLayout(layout);
95
96 locationId = id;
97 displayedImage = imageFileEditor->currentText();
98
99 setWindowFlags(Qt::Window);
100 enableButtons(false);
101 setWindowTitle(tr("Office: %1").arg(locationText->text()));
102}
103//! [4]
104
105//! [5]
106int InformationWindow::id()
107{
108 return locationId;
109}
110//! [5]
111
112//! [6]
113void InformationWindow::revert()
114{
115 mapper->revert();
116 enableButtons(false);
117}
118//! [6]
119
120//! [7]
121void InformationWindow::submit()
122{
123 QString newImage(imageFileEditor->currentText());
124
125 if (displayedImage != newImage) {
126 displayedImage = newImage;
127 emit imageChanged(locationId, newImage);
128 }
129
130 mapper->submit();
131 mapper->setCurrentIndex(locationId);
132
133 enableButtons(false);
134}
135//! [7]
136
137//! [8]
138void InformationWindow::createButtons()
139{
140 closeButton = new QPushButton(tr("&Close"));
141 revertButton = new QPushButton(tr("&Revert"));
142 submitButton = new QPushButton(tr("&Submit"));
143
144 closeButton->setDefault(true);
145
146 connect(closeButton, SIGNAL(clicked()), this, SLOT(close()));
147 connect(revertButton, SIGNAL(clicked()), this, SLOT(revert()));
148 connect(submitButton, SIGNAL(clicked()), this, SLOT(submit()));
149//! [8]
150
151//! [9]
152 buttonBox = new QDialogButtonBox(this);
153 buttonBox->addButton(submitButton, QDialogButtonBox::AcceptRole);
154 buttonBox->addButton(revertButton, QDialogButtonBox::ResetRole);
155 buttonBox->addButton(closeButton, QDialogButtonBox::RejectRole);
156}
157//! [9]
158
159//! [10]
160void InformationWindow::enableButtons(bool enable)
161{
162 revertButton->setEnabled(enable);
163 submitButton->setEnabled(enable);
164}
165//! [10]
166
167
Note: See TracBrowser for help on using the repository browser.