2013-12-28 13:28:27 +00:00
|
|
|
#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();
|
2013-12-29 18:09:25 +00:00
|
|
|
void BuildRadioList();
|
|
|
|
void Apply();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void linkToElement(const int i) {element_to_link = element_list.at(i);}
|
2013-12-28 13:28:27 +00:00
|
|
|
|
|
|
|
private:
|
2013-12-29 18:09:25 +00:00
|
|
|
Element *element_, *element_to_link;
|
|
|
|
QList <Element *> element_list;
|
2013-12-28 13:28:27 +00:00
|
|
|
Ui::FolioReportProperties *ui;
|
2013-12-29 18:09:25 +00:00
|
|
|
QSignalMapper *sm_;
|
|
|
|
|
|
|
|
|
2013-12-28 13:28:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FOLIOREPORTPROPERTIES_H
|