LimeReport/limereport/lrsettingdialog.h

31 lines
573 B
C
Raw Normal View History

#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();
void setHorizontalGridStep(int value);
void setVerticalGridStep(int value);
void setDefaultFont(const QFont& value);
private:
Ui::SettingDialog *ui;
};
} // namespace LimeReport
#endif // LRSETTINGDIALOG_H