0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-26 01:24:39 +03:00
LimeReport/limereport/lrsettingdialog.h
Arin Alex 779eefcab5 Setting dialog has been modified to edit report settings
Setting dialog has been modified to edit report settings
2016-06-24 23:22:17 +03:00

33 lines
682 B
C++

#ifndef LRSETTINGDIALOG_H
#define LRSETTINGDIALOG_H
#include <QDialog>
namespace LimeReport{
namespace Ui {
class SettingDialog;
}
class SettingDialog : public QDialog
{
Q_OBJECT
public:
explicit SettingDialog(QWidget *parent = 0);
~SettingDialog();
int verticalGridStep();
int horizontalGridStep();
QFont defaultFont();
bool suppressAbsentFieldsAndVarsWarnings();
void setSuppressAbsentFieldsAndVarsWarnings(bool value);
void setHorizontalGridStep(int value);
void setVerticalGridStep(int value);
void setDefaultFont(const QFont& value);
private:
Ui::SettingDialog *ui;
};
} // namespace LimeReport
#endif // LRSETTINGDIALOG_H