Changeset 4364 in vbox for trunk/src/VBox/Frontends/VirtualBox/include
- Timestamp:
- Aug 24, 2007 6:34:50 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23911
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/QIWidgetValidator.h
r4326 r4364 24 24 #include <qobject.h> 25 25 #include <qvalidator.h> 26 #include <qvaluelist.h> 26 27 27 28 class QIWidgetValidator : public QObject … … 30 31 31 32 public: 32 QIWidgetValidator( QWidget *widget, QObject *parent = 0, const char *name = 0 ); 33 34 QIWidgetValidator (QWidget *aWidget, QObject *aParent = 0, 35 const char *aName = 0); 36 QIWidgetValidator (const QString &aCaption, 37 QWidget *aWidget, QObject *aParent = 0, 38 const char *aName = 0); 33 39 ~QIWidgetValidator(); 34 40 35 QWidget *widget() const { return wgt; }41 QWidget *widget() const { return mWidget; } 36 42 bool isValid() const; 37 43 void rescan(); 38 44 39 void setOtherValid( bool valid ) { otherValid = valid; } 40 bool isOtherValid() const { return otherValid; } 45 QString warningText() const; 46 47 void setOtherValid (bool aValid) { mOtherValid = aValid; } 48 bool isOtherValid() const { return mOtherValid; } 41 49 42 50 signals: 43 void validityChanged( const QIWidgetValidator *wval ); 44 void isValidRequested( QIWidgetValidator *wval ); 51 52 void validityChanged (const QIWidgetValidator *aValidator); 53 void isValidRequested (QIWidgetValidator *aValidator); 45 54 46 55 public slots: 56 47 57 void revalidate() { doRevalidate(); } 48 58 49 59 private: 50 QWidget *wgt; 51 bool otherValid; 60 61 QString mCaption; 62 QWidget *mWidget; 63 bool mOtherValid; 64 65 struct Watched 66 { 67 Watched() 68 : widget (NULL), buddy (NULL) 69 , state (QValidator::Acceptable) {} 70 71 QWidget *widget; 72 QWidget *buddy; 73 QValidator::State state; 74 }; 75 76 QValueList <Watched> mWatched; 77 Watched mLastInvalid; 52 78 53 79 private slots: 54 void doRevalidate() { emit validityChanged( this ); } 80 81 void doRevalidate() { emit validityChanged (this); } 55 82 }; 56 83
Note:
See TracChangeset
for help on using the changeset viewer.