Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F10615340
qvalidatedlineedit.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
qvalidatedlineedit.cpp
View Options
// Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include
"qvalidatedlineedit.h"
#include
"bitcoinaddressvalidator.h"
#include
"guiconstants.h"
QValidatedLineEdit
::
QValidatedLineEdit
(
QWidget
*
parent
)
:
QLineEdit
(
parent
),
valid
(
true
),
checkValidator
(
0
)
{
connect
(
this
,
SIGNAL
(
textChanged
(
QString
)),
this
,
SLOT
(
markValid
()));
}
void
QValidatedLineEdit
::
setValid
(
bool
valid
)
{
if
(
valid
==
this
->
valid
)
{
return
;
}
if
(
valid
)
{
setStyleSheet
(
""
);
}
else
{
setStyleSheet
(
STYLE_INVALID
);
}
this
->
valid
=
valid
;
}
void
QValidatedLineEdit
::
focusInEvent
(
QFocusEvent
*
evt
)
{
// Clear invalid flag on focus
setValid
(
true
);
QLineEdit
::
focusInEvent
(
evt
);
}
void
QValidatedLineEdit
::
focusOutEvent
(
QFocusEvent
*
evt
)
{
checkValidity
();
QLineEdit
::
focusOutEvent
(
evt
);
}
void
QValidatedLineEdit
::
markValid
()
{
// As long as a user is typing ensure we display state as valid
setValid
(
true
);
}
void
QValidatedLineEdit
::
clear
()
{
setValid
(
true
);
QLineEdit
::
clear
();
}
void
QValidatedLineEdit
::
setEnabled
(
bool
enabled
)
{
if
(
!
enabled
)
{
// A disabled QValidatedLineEdit should be marked valid
setValid
(
true
);
}
else
{
// Recheck validity when QValidatedLineEdit gets enabled
checkValidity
();
}
QLineEdit
::
setEnabled
(
enabled
);
}
void
QValidatedLineEdit
::
checkValidity
()
{
if
(
text
().
isEmpty
())
{
setValid
(
true
);
}
else
if
(
hasAcceptableInput
())
{
setValid
(
true
);
// Check contents on focus out
if
(
checkValidator
)
{
QString
address
=
text
();
int
pos
=
0
;
if
(
checkValidator
->
validate
(
address
,
pos
)
==
QValidator
::
Acceptable
)
setValid
(
true
);
else
setValid
(
false
);
}
}
else
setValid
(
false
);
}
void
QValidatedLineEdit
::
setCheckValidator
(
const
QValidator
*
v
)
{
checkValidator
=
v
;
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Sat, Nov 23, 10:05 (1 d, 4 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4513912
Default Alt Text
qvalidatedlineedit.cpp (2 KB)
Attached To
rSTAGING Bitcoin ABC staging
Event Timeline
Log In to Comment