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/mathmatrixedit.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_MATRIX_EDIT_H
#define MATH_MATRIX_EDIT_H
#include <QWidget>
#include "qad_types.h"
class MatrixEdit;
class QAD_EXPORT MathMatrixEdit: public QWidget {
Q_OBJECT
Q_PROPERTY(QVariant value READ value WRITE setValue NOTIFY valueChanged)
Q_PROPERTY(bool readOnly READ isReadOnly WRITE setReadOnly)
public:
explicit MathMatrixEdit(QWidget * parent = 0);
~MathMatrixEdit();
QVariant value() const;
bool isReadOnly() const;
private:
MatrixEdit * edit;
public slots:
void setValue(const QVariant & v);
void setReadOnly(bool yes);
signals:
void valueChanged();
};
class __MathMatrixEditRegistrator__ {
public:
__MathMatrixEditRegistrator__();
};
static __MathMatrixEditRegistrator__ __mathmatrixeditregistrator__;
#endif // MATH_MATRIX_EDIT_H