VirtualBox

Ignore:
Timestamp:
Aug 24, 2007 6:34:50 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
23911
Message:

FE/Qt: Settings Dialogs: Automatically show the detailed message in the whatsthis pane pointing to the page and field that contain invalid input -- for all fields with validation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/include/QIWidgetValidator.h

    r4326 r4364  
    2424#include <qobject.h>
    2525#include <qvalidator.h>
     26#include <qvaluelist.h>
    2627
    2728class QIWidgetValidator : public QObject
     
    3031
    3132public:
    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);
    3339    ~QIWidgetValidator();
    3440
    35     QWidget *widget() const { return wgt; }
     41    QWidget *widget() const { return mWidget; }
    3642    bool isValid() const;
    3743    void rescan();
    3844
    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; }
    4149
    4250signals:
    43     void validityChanged( const QIWidgetValidator *wval );
    44     void isValidRequested( QIWidgetValidator *wval );
     51
     52    void validityChanged (const QIWidgetValidator *aValidator);
     53    void isValidRequested (QIWidgetValidator *aValidator);
    4554
    4655public slots:
     56
    4757    void revalidate() { doRevalidate(); }
    4858
    4959private:
    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;
    5278
    5379private slots:
    54     void doRevalidate() { emit validityChanged( this ); }
     80
     81    void doRevalidate() { emit validityChanged (this); }
    5582};
    5683
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette