FactDev  0.1
checkuntilfield.h
1 #ifndef CHECKCUNTILFIELD_H
2 #define CHECKCUNTILFIELD_H
3 
4 #include "checkqlineedit.h"
5 
6 namespace Gui {
7 namespace Widgets {
8 namespace CheckFields {
13 
14 public:
19  CheckUntilField(QWidget* w = 0, QPushButton* btn = 0);
20 
27  bool check (QString text);
28 };
29 }
30 }
31 }
32 #endif // CHECKUNTILFIELD_H
CheckUntilField(QWidget *w=0, QPushButton *btn=0)
CheckUntilField::CheckUntilField Construct a CheckUntilField.
Definition: checkuntilfield.cpp:7
The CheckUntilField class.
Definition: checkuntilfield.h:12
The CheckQLineEdit class LineEdit custom with a check of text inputed.
Definition: checkqlineedit.h:15
bool check(QString text)
CheckUntilField::check Check if the field is valid. To be valid, a name should be composed of a chara...
Definition: checkuntilfield.cpp:11