mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-24 04:33:03 +03:00
28 lines
524 B
C
28 lines
524 B
C
|
#ifndef LRSETTINGDIALOG_H
|
||
|
#define LRSETTINGDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
|
||
|
#endif // LRSETTINGDIALOG_H
|