Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Hunger
qt-creator
Commits
0f3d8b65
Commit
0f3d8b65
authored
15 years ago
by
Friedemann Kleint
Browse files
Options
Downloads
Patches
Plain Diff
CustomWizard: Implement validatePage() for CustomWizardPage
checking the validation line edits as a last resort.
parent
292db7a5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/projectexplorer/customwizard/customwizardpage.cpp
+18
-0
18 additions, 0 deletions
...plugins/projectexplorer/customwizard/customwizardpage.cpp
src/plugins/projectexplorer/customwizard/customwizardpage.h
+6
-0
6 additions, 0 deletions
src/plugins/projectexplorer/customwizard/customwizardpage.h
with
24 additions
and
0 deletions
src/plugins/projectexplorer/customwizard/customwizardpage.cpp
+
18
−
0
View file @
0f3d8b65
...
...
@@ -31,6 +31,7 @@
#include
"customwizardparameters.h"
#include
<utils/pathchooser.h>
#include
<utils/qtcassert.h>
#include
<QtCore/QRegExp>
#include
<QtCore/QDebug>
...
...
@@ -119,6 +120,7 @@ QWidget *CustomWizardFieldPage::registerControl(const CustomWizardField &field)
}
else
{
qWarning
(
"Invalid custom wizard field validator regular expression %s."
,
qPrintable
(
validationRegExp
));
}
m_validatorLineEdits
.
push_back
(
lineEdit
);
}
lineEdit
->
setText
(
field
.
controlAttributes
.
value
(
QLatin1String
(
"defaulttext"
)));
registerField
(
fieldName
,
lineEdit
,
"text"
,
SIGNAL
(
textEdited
(
QString
)));
...
...
@@ -130,6 +132,22 @@ void CustomWizardFieldPage::addField(const CustomWizardField &field)
addRow
(
field
.
description
,
registerControl
(
field
));
}
bool
CustomWizardFieldPage
::
validatePage
()
{
// Check line edits with validators
foreach
(
QLineEdit
*
le
,
m_validatorLineEdits
)
{
int
pos
=
0
;
const
QValidator
*
val
=
le
->
validator
();
QTC_ASSERT
(
val
,
return
false
);
QString
text
=
le
->
text
();
if
(
val
->
validate
(
text
,
pos
)
!=
QValidator
::
Acceptable
)
{
le
->
setFocus
();
return
false
;
}
}
return
true
;
}
// --------------- CustomWizardPage
CustomWizardPage
::
CustomWizardPage
(
const
FieldList
&
f
,
...
...
This diff is collapsed.
Click to expand it.
src/plugins/projectexplorer/customwizard/customwizardpage.h
+
6
−
0
View file @
0f3d8b65
...
...
@@ -36,6 +36,7 @@
QT_BEGIN_NAMESPACE
class
QFormLayout
;
class
QLineEdit
;
QT_END_NAMESPACE
namespace
Utils
{
...
...
@@ -66,6 +67,8 @@ signals:
// A simple custom wizard page presenting the fields to be used
// as page 2 of a BaseProjectWizardDialog if there are any fields.
// Uses the 'field' functionality of QWizard.
// Implements validatePage() as the field logic cannot be tied up
// with additional validation.
class
CustomWizardFieldPage
:
public
QWizardPage
{
Q_OBJECT
public:
...
...
@@ -73,6 +76,8 @@ public:
explicit
CustomWizardFieldPage
(
const
FieldList
&
f
,
QWidget
*
parent
=
0
);
virtual
bool
validatePage
();
protected:
inline
void
addRow
(
const
QString
&
name
,
QWidget
*
w
);
...
...
@@ -81,6 +86,7 @@ private:
void
addField
(
const
CustomWizardField
&
f
);
QFormLayout
*
m_formLayout
;
QList
<
QLineEdit
*>
m_validatorLineEdits
;
};
// A custom wizard page presenting the fields to be used and a path chooser
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment