mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-18 05:00:33 +01:00
folio report: add user able to make custom label.
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
This commit is contained in:
27
sources/ui/reportpropertiewidget.h
Normal file
27
sources/ui/reportpropertiewidget.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user