mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 05:34:47 +01:00
40 lines
651 B
C++
40 lines
651 B
C++
#ifndef EXPORTDIALOG_H
|
|
#define EXPORTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QPrinter>
|
|
|
|
class QComboBox;
|
|
class QRadioButton;
|
|
class FileSelectWidget;
|
|
class QDoubleSpinBox;
|
|
|
|
class ExportDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ExportDialog(QPrinter *printer, QWidget *parent = 0);
|
|
|
|
public slots:
|
|
void accept();
|
|
|
|
private:
|
|
bool checkFile();
|
|
|
|
QPrinter *_printer;
|
|
|
|
QPrinter::Unit _units;
|
|
|
|
FileSelectWidget *_fileSelect;
|
|
QComboBox *_paperSize;
|
|
QRadioButton *_portrait;
|
|
QRadioButton *_landscape;
|
|
QDoubleSpinBox *_topMargin;
|
|
QDoubleSpinBox *_bottomMargin;
|
|
QDoubleSpinBox *_leftMargin;
|
|
QDoubleSpinBox *_rightMargin;
|
|
};
|
|
|
|
#endif // EXPORTDIALOG_H
|