FactDev  0.1
checkemail.h
1 #ifndef CHECKEMAIL_H
2 #define CHECKEMAIL_H
3 
4 #include "checkqlineedit.h"
5 
6 namespace Gui {
7 namespace Widgets {
8 namespace CheckFields {
9 
13 class CheckEmail : public CheckQLineEdit
14 {
15 public:
20  CheckEmail(QWidget* w = 0, QPushButton* btn=0);
21 
35  bool check(const QString text);
36 };
37 }
38 }
39 }
40 #endif // CHECKEMAIL_H
CheckEmail(QWidget *w=0, QPushButton *btn=0)
CheckEmail::CheckEmail Construct a CheckMail.
Definition: checkemail.cpp:7
bool check(const QString text)
CheckEmail::check Check if the field email is valid. To be valid, an email address should be under th...
Definition: checkemail.cpp:12
The CheckEmail class Line Edit of email with a check icon.
Definition: checkemail.h:13
The CheckQLineEdit class LineEdit custom with a check of text inputed.
Definition: checkqlineedit.h:15