add class ElementProvider and build small ui for the properties of folio report element

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2672 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
blacksun
2013-12-28 13:28:27 +00:00
parent c44f8704f9
commit 38e3e26ff8
10 changed files with 250 additions and 3 deletions

View File

@@ -0,0 +1,24 @@
#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