This repository has been archived on 2020-09-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
libs/qad/widgets/mathvectoredit.h
Бычков Андрей 350240cdfc QAD_EXPORT
git-svn-id: svn://db.shs.com.ru/libs@719 a8b55f48-bf90-11e4-a774-851b48703e85
2020-02-28 10:05:11 +00:00

43 lines
776 B
C++

#ifndef MATH_VECTOR_EDIT_H
#define MATH_VECTOR_EDIT_H
#include <QWidget>
#include "qad_types.h"
class MatrixEdit;
class QAD_EXPORT MathVectorEdit: public QWidget {
Q_OBJECT
Q_PROPERTY(QVariant value READ value WRITE setValue NOTIFY valueChanged)
Q_PROPERTY(bool readOnly READ isReadOnly WRITE setReadOnly)
public:
explicit MathVectorEdit(QWidget * parent = 0);
~MathVectorEdit();
QVariant value() const;
bool isReadOnly() const;
private:
MatrixEdit * edit;
public slots:
void setValue(const QVariant & v);
void setReadOnly(bool yes);
signals:
void valueChanged();
};
class __MathVectorEditRegistrator__ {
public:
__MathVectorEditRegistrator__();
};
static __MathVectorEditRegistrator__ __mathvectoreditregistrator__;
#endif // MATH_VECTOR_EDIT_H