FactValidator.h 1.41 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

Don Gagne's avatar
Don Gagne committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

/// @file
///     @author Don Gagne <don@thegagnes.com>

#ifndef FactValidator_H
#define FactValidator_H

#include <QValidator>

class Fact;

/// QML Validator for Facts (Work In Progress)
///
/// The validator uses the FactMetaData to impose restrictions on the input. It is used as follows:
/// @code{.unparsed}
///     TextInput {
26
///         validator: FactValidator { fact: parameters["RC_MAP_THROTTLE"]; }
Don Gagne's avatar
Don Gagne committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
///     }
/// @endcode
class FactValidator : public QValidator
{
    Q_OBJECT
    
    Q_PROPERTY(Fact* fact READ fact WRITE setFact)
    
public:
    FactValidator(QObject* parent = NULL);
    
    // Property system methods
    
    /// Read accessor for fact property
    Fact* fact(void) { return _fact; }
    
    /// Write accessor for fact property
    void setFact(Fact* fact) { _fact = fact; }
    
    /// Override from QValidator
    virtual void fixup(QString& input) const;
    
    /// Override from QValidator
    virtual State validate(QString& input, int& pos) const;
    
private:
    Fact* _fact;    ///< Fact that the validator is working on
};

#endif