VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIWidgetValidator.h@ 52727

Last change on this file since 52727 was 52727, checked in by vboxsync, 11 years ago

FE/Qt: file header cleanups.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.7 KB
Line 
1/** @file
2 * VBox Qt GUI - Qt extensions: QIWidgetValidator class declaration.
3 */
4
5/*
6 * Copyright (C) 2006-2013 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 */
16
17#ifndef __QIWidgetValidator_h__
18#define __QIWidgetValidator_h__
19
20/* Qt includes: */
21#include <QValidator>
22#include <QPixmap>
23#include <QMap>
24
25/* External includes: */
26#ifdef Q_WS_X11
27#include <limits.h>
28#endif /* Q_WS_X11 */
29
30/* Forward declarations: */
31class UISettingsPage;
32
33/** QObject reimplementation,
34 * providing passed QObject with validation routine. */
35class QObjectValidator : public QObject
36{
37 Q_OBJECT;
38
39signals:
40
41 /** Notifies listener(s) about validity change. */
42 void sigValidityChange(QValidator::State state);
43
44public:
45
46 /** Constructor.
47 * @param pParent is passed on to the QObject constructor,
48 * @param pValidator is passed on to the OObject children
49 * and used to perform validation itself. */
50 QObjectValidator(QValidator *pValidator, QObject *pParent = 0);
51
52 /** Returns last validation state. */
53 QValidator::State state() const { return m_state; }
54
55private slots:
56
57 /** Performs validation: */
58 void sltValidate(QString strInput = QString());
59
60private:
61
62 /** Prepare routine. */
63 void prepare();
64
65 /** Holds validator. */
66 QValidator *m_pValidator;
67 /** Holds validation state. */
68 QValidator::State m_state;
69};
70
71/** QObject reimplementation,
72 * which can group various QObjectValidator instances to operate on. */
73class QObjectValidatorGroup : public QObject
74{
75 Q_OBJECT;
76
77signals:
78
79 /** Notifies listener(s) about validity change. */
80 void sigValidityChange(bool fValid);
81
82public:
83
84 /** Constructor.
85 * @param pParent is passed on to the QObject constructor. */
86 QObjectValidatorGroup(QObject *pParent);
87
88 /** Adds object-validator.
89 * @note The ownership of @a pObjectValidator is transferred to the group,
90 * and it's the group's responsibility to delete it. */
91 void addObjectValidator(QObjectValidator *pObjectValidator);
92
93 /** Returns last validation result. */
94 bool result() const { return m_fResult; }
95
96private slots:
97
98 /** Performs validation: */
99 void sltValidate(QValidator::State state);
100
101private:
102
103 /** Converts QValidator::State to bool result. */
104 static bool toResult(QValidator::State state);
105
106 /** Holds object-validators and their states. */
107 QMap<QObjectValidator*, bool> m_group;
108 /** Holds validation result. */
109 bool m_fResult;
110};
111
112/* Page validator prototype: */
113class UIPageValidator : public QObject
114{
115 Q_OBJECT;
116
117signals:
118
119 /* Notifier: Validation stuff: */
120 void sigValidityChanged(UIPageValidator *pValidator);
121
122 /* Notifiers: Warning stuff: */
123 void sigShowWarningIcon();
124 void sigHideWarningIcon();
125
126public:
127
128 /* Constructor: */
129 UIPageValidator(QObject *pParent, UISettingsPage *pPage);
130
131 /* API: Page stuff: */
132 UISettingsPage* page() const { return m_pPage; }
133 QPixmap warningPixmap() const;
134 QString internalName() const;
135
136 /* API: Validity stuff: */
137 bool isValid() const { return m_fIsValid; }
138 void setValid(bool fIsValid) { m_fIsValid = fIsValid; }
139
140 /* API: Message stuff: */
141 QString lastMessage() const { return m_strLastMessage; }
142 void setLastMessage(const QString &strLastMessage);
143
144public slots:
145
146 /* API/Handler: Validation stuff: */
147 void revalidate();
148
149private:
150
151 /* Variables: */
152 UISettingsPage *m_pPage;
153 bool m_fIsValid;
154 QString m_strLastMessage;
155};
156
157class QIULongValidator : public QValidator
158{
159public:
160
161 QIULongValidator (QObject *aParent)
162 : QValidator (aParent)
163 , mBottom (0), mTop (ULONG_MAX) {}
164
165 QIULongValidator (ulong aMinimum, ulong aMaximum,
166 QObject *aParent)
167 : QValidator (aParent)
168 , mBottom (aMinimum), mTop (aMaximum) {}
169
170 ~QIULongValidator() {}
171
172 State validate (QString &aInput, int &aPos) const;
173 void setBottom (ulong aBottom) { setRange (aBottom, mTop); }
174 void setTop (ulong aTop) { setRange (mBottom, aTop); }
175 void setRange (ulong aBottom, ulong aTop) { mBottom = aBottom; mTop = aTop; }
176 ulong bottom() const { return mBottom; }
177 ulong top() const { return mTop; }
178
179private:
180
181 ulong mBottom;
182 ulong mTop;
183};
184
185#endif // __QIWidgetValidator_h__
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette