FactDev  0.1
checkipaddress.h
1 #ifndef CHECKIPADDRESS_H
2 #define CHECKIPADDRESS_H
3 
4 #include "gui/widgets/checkfields/checkuntilfield.h"
5 
6 namespace Gui {
7 namespace Widgets {
8 namespace CheckFields {
9 
17 {
18 public:
23  CheckIpAddress(QWidget* w = 0, QPushButton* btn=0);
24 
31  bool check(QString text);
32 };
33 
34 }
35 }
36 }
37 #endif // CHECKIPADDRESS_H
bool check(QString text)
CheckIpAddress::check Check if the field contains an IP address or domain name valid.
Definition: checkipaddress.cpp:13
The CheckIpAddress class Line Edit of IP address with a check icon.
Definition: checkipaddress.h:16
The CheckUntilField class.
Definition: checkuntilfield.h:12
CheckIpAddress(QWidget *w=0, QPushButton *btn=0)
CheckIpAddress::CheckIpAddress Construct a CheckIpAddress.
Definition: checkipaddress.cpp:8