2016-02-18 21:11:59 +03:00
|
|
|
#ifndef LRSETTINGDIALOG_H
|
|
|
|
#define LRSETTINGDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2016-03-04 04:53:34 +03:00
|
|
|
namespace LimeReport{
|
|
|
|
|
2016-02-18 21:11:59 +03:00
|
|
|
namespace Ui {
|
|
|
|
class SettingDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class SettingDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit SettingDialog(QWidget *parent = 0);
|
|
|
|
~SettingDialog();
|
|
|
|
int verticalGridStep();
|
|
|
|
int horizontalGridStep();
|
|
|
|
QFont defaultFont();
|
|
|
|
void setHorizontalGridStep(int value);
|
|
|
|
void setVerticalGridStep(int value);
|
|
|
|
void setDefaultFont(const QFont& value);
|
|
|
|
private:
|
|
|
|
Ui::SettingDialog *ui;
|
|
|
|
};
|
2016-03-03 03:08:36 +03:00
|
|
|
} // namespace LimeReport
|
2016-02-18 21:11:59 +03:00
|
|
|
|
|
|
|
#endif // LRSETTINGDIALOG_H
|