mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-14 20:33:05 +02:00
25 lines
434 B
C
25 lines
434 B
C
|
#ifndef FOLIOREPORTPROPERTIES_H
|
||
|
#define FOLIOREPORTPROPERTIES_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <qetgraphicsitem/element.h>
|
||
|
|
||
|
namespace Ui {
|
||
|
class FolioReportProperties;
|
||
|
}
|
||
|
|
||
|
class FolioReportProperties : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit FolioReportProperties(Element *elmt, QWidget *parent = 0);
|
||
|
~FolioReportProperties();
|
||
|
|
||
|
private:
|
||
|
Element *element_;
|
||
|
Ui::FolioReportProperties *ui;
|
||
|
};
|
||
|
|
||
|
#endif // FOLIOREPORTPROPERTIES_H
|