OSDN Git Service

e85d59d9e2a90ceea7ae2b326e2b8ca117ddc046
[qt-creator-jp/qt-creator-jp.git] / src / libs / utils / ipaddresslineedit.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include "ipaddresslineedit.h"
35
36 #include <QtGui/QRegExpValidator>
37
38 /*!
39   \class Utils::IpAddressLineEdit
40
41   \brief A QLineEdit widget that validates the IP address inserted.
42
43   The valid address example is 192.168.1.12 or 192.168.1.12:8080.
44 */
45
46 namespace Utils {
47
48 // ------------------ IpAddressLineEditPrivate
49
50 class IpAddressLineEditPrivate
51 {
52 public:
53     IpAddressLineEditPrivate();
54
55     QValidator *m_ipAddressValidator;
56     QColor m_validColor;
57 };
58
59 IpAddressLineEditPrivate::IpAddressLineEditPrivate()
60 {
61 }
62
63 IpAddressLineEdit::IpAddressLineEdit(QWidget* parent) :
64     BaseValidatingLineEdit(parent),
65     m_d(new IpAddressLineEditPrivate())
66 {
67     const char * ipAddressRegExpPattern = "^\\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\."
68             "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\."
69             "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\."
70             "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\b"
71             "((:)(6553[0-5]|655[0-2]\\d|65[0-4]\\d\\d|6[0-4]\\d{3}|[1-5]\\d{4}|[1-9]\\d{0,3}|0))?$";
72
73     QRegExp ipAddressRegExp(ipAddressRegExpPattern);
74     m_d->m_ipAddressValidator = new QRegExpValidator(ipAddressRegExp, this);
75 }
76
77 IpAddressLineEdit::~IpAddressLineEdit()
78 {
79     delete m_d;
80 }
81
82 bool IpAddressLineEdit::validate(const QString &value, QString *errorMessage) const
83 {
84     QString copy = value;
85     int offset = 0;
86     bool isValid = m_d->m_ipAddressValidator->validate(copy, offset) == QValidator::Acceptable;
87     if (!isValid) {
88         *errorMessage =  tr("The IP address is not valid.");
89         return false;
90     }
91     return true;
92 }
93
94 void IpAddressLineEdit::slotChanged(const QString &t)
95 {
96     Utils::BaseValidatingLineEdit::slotChanged(t);
97     if (isValid())
98         emit validAddressChanged(t);
99     else
100         emit invalidAddressChanged();
101 }
102
103 } // namespace Utils