You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
809 B
44 lines
809 B
9 years ago
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
/**
|
||
|
* \file layerrecord.h
|
||
|
* \version v1.0
|
||
|
* \author Ing. Dominik Malcik
|
||
|
*/
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef LAYERRECORD_H
|
||
|
#define LAYERRECORD_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QCheckBox>
|
||
|
|
||
|
class LayerRecord : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit LayerRecord(QObject *parent = 0);
|
||
|
explicit LayerRecord(bool b, QString s1, QString s2);
|
||
|
|
||
|
void setCheckBox (bool b);
|
||
|
bool getCheckBox (void);
|
||
|
|
||
|
void setName (QString s);
|
||
|
QString getName (void);
|
||
|
|
||
|
void setOpacity (QString s);
|
||
|
QString getOpacity (void);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
private:
|
||
|
bool checkBox;
|
||
|
QString name;
|
||
|
QString opacity;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // LAYERRECORD_H
|