mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-17 20:50:34 +01:00
Revamp GUI dialog for new diagram configuration. git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2749 bfdf4180-ca20-0410-9c96-a3a8aa849046
28 lines
541 B
C++
28 lines
541 B
C++
#ifndef REPORTPROPERTIEWIDGET_H
|
|
#define REPORTPROPERTIEWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include <QSettings>
|
|
|
|
|
|
namespace Ui {
|
|
class ReportPropertieWidget;
|
|
}
|
|
|
|
class ReportPropertieWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ReportPropertieWidget(QString value, QWidget *parent = 0);
|
|
~ReportPropertieWidget();
|
|
void toSettings (QSettings &settings, const QString &prefix);
|
|
void setReportProperties (QString label);
|
|
QString ReportProperties () const;
|
|
|
|
private:
|
|
Ui::ReportPropertieWidget *ui;
|
|
};
|
|
|
|
#endif // REPORTPROPERTIEWIDGET_H
|