mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-18 05:00:33 +01:00
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2672 bfdf4180-ca20-0410-9c96-a3a8aa849046
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
|