source: branches/4.5.1/examples/ipc/localfortuneclient/client.cpp

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

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 5.4 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** Contact: Qt Software Information (qt-info@nokia.com)
5**
6** This file is part of the examples of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial Usage
10** Licensees holding valid Qt Commercial licenses may use this file in
11** accordance with the Qt Commercial License Agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and Nokia.
14**
15** GNU Lesser General Public License Usage
16** Alternatively, this file may be used under the terms of the GNU Lesser
17** General Public License version 2.1 as published by the Free Software
18** Foundation and appearing in the file LICENSE.LGPL included in the
19** packaging of this file. Please review the following information to
20** ensure the GNU Lesser General Public License version 2.1 requirements
21** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22**
23** In addition, as a special exception, Nokia gives you certain
24** additional rights. These rights are described in the Nokia Qt LGPL
25** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
26** package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you are unsure which license is appropriate for your use, please
37** contact the sales department at qt-sales@nokia.com.
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include <QtGui>
43#include <QtNetwork>
44
45#include "client.h"
46
47Client::Client(QWidget *parent)
48 : QDialog(parent)
49{
50 hostLabel = new QLabel(tr("&Server name:"));
51 hostLineEdit = new QLineEdit("fortune");
52
53 hostLabel->setBuddy(hostLineEdit);
54
55 statusLabel = new QLabel(tr("This examples requires that you run the "
56 "Fortune Server example as well."));
57
58 getFortuneButton = new QPushButton(tr("Get Fortune"));
59 getFortuneButton->setDefault(true);
60
61 quitButton = new QPushButton(tr("Quit"));
62
63 buttonBox = new QDialogButtonBox;
64 buttonBox->addButton(getFortuneButton, QDialogButtonBox::ActionRole);
65 buttonBox->addButton(quitButton, QDialogButtonBox::RejectRole);
66
67 socket = new QLocalSocket(this);
68
69 connect(hostLineEdit, SIGNAL(textChanged(const QString &)),
70 this, SLOT(enableGetFortuneButton()));
71 connect(getFortuneButton, SIGNAL(clicked()),
72 this, SLOT(requestNewFortune()));
73 connect(quitButton, SIGNAL(clicked()), this, SLOT(close()));
74 connect(socket, SIGNAL(readyRead()), this, SLOT(readFortune()));
75 connect(socket, SIGNAL(error(QLocalSocket::LocalSocketError)),
76 this, SLOT(displayError(QLocalSocket::LocalSocketError)));
77
78 QGridLayout *mainLayout = new QGridLayout;
79 mainLayout->addWidget(hostLabel, 0, 0);
80 mainLayout->addWidget(hostLineEdit, 0, 1);
81 mainLayout->addWidget(statusLabel, 2, 0, 1, 2);
82 mainLayout->addWidget(buttonBox, 3, 0, 1, 2);
83 setLayout(mainLayout);
84
85 setWindowTitle(tr("Fortune Client"));
86 hostLineEdit->setFocus();
87}
88
89void Client::requestNewFortune()
90{
91 getFortuneButton->setEnabled(false);
92 blockSize = 0;
93 socket->abort();
94 socket->connectToServer(hostLineEdit->text());
95}
96
97void Client::readFortune()
98{
99 QDataStream in(socket);
100 in.setVersion(QDataStream::Qt_4_0);
101
102 if (blockSize == 0) {
103 if (socket->bytesAvailable() < (int)sizeof(quint16))
104 return;
105 in >> blockSize;
106 }
107
108 if (in.atEnd())
109 return;
110
111 QString nextFortune;
112 in >> nextFortune;
113
114 if (nextFortune == currentFortune) {
115 QTimer::singleShot(0, this, SLOT(requestNewFortune()));
116 return;
117 }
118
119 currentFortune = nextFortune;
120 statusLabel->setText(currentFortune);
121 getFortuneButton->setEnabled(true);
122}
123
124void Client::displayError(QLocalSocket::LocalSocketError socketError)
125{
126 switch (socketError) {
127 case QLocalSocket::ServerNotFoundError:
128 QMessageBox::information(this, tr("Fortune Client"),
129 tr("The host was not found. Please check the "
130 "host name and port settings."));
131 break;
132 case QLocalSocket::ConnectionRefusedError:
133 QMessageBox::information(this, tr("Fortune Client"),
134 tr("The connection was refused by the peer. "
135 "Make sure the fortune server is running, "
136 "and check that the host name and port "
137 "settings are correct."));
138 break;
139 case QLocalSocket::PeerClosedError:
140 break;
141 default:
142 QMessageBox::information(this, tr("Fortune Client"),
143 tr("The following error occurred: %1.")
144 .arg(socket->errorString()));
145 }
146
147 getFortuneButton->setEnabled(true);
148}
149
150void Client::enableGetFortuneButton()
151{
152 getFortuneButton->setEnabled(!hostLineEdit->text().isEmpty());
153}
Note: See TracBrowser for help on using the repository browser.