Print: add the support to store margins and printer options

All the print options will be stored after the user closes
or "cancels" the print dialog.

There seems to be no good way to store the last
selected page size, because print dialogs are different and
some just list them as strings - A4, A3, etc.

The patch also applies the following changes:
- renames display.h's 'struct options' to 'struct print_options'
as these were really just for the print dialog
- the print_options dialog now stores more options as 'bool'
- demote PrintDialog's 'printOptions' to 'private'

Fixes #653

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Lubomir I. Ivanov 2014-11-14 00:57:42 +02:00 committed by Dirk Hohndel
parent b2077dc9c0
commit 7ea728e95f
7 changed files with 83 additions and 30 deletions

View file

@ -14,7 +14,6 @@ class PrintDialog : public QDialog {
Q_OBJECT
public:
struct options printOptions;
explicit PrintDialog(QWidget *parent = 0, Qt::WindowFlags f = 0);
private:
@ -22,9 +21,11 @@ private:
PrintLayout *printLayout;
QProgressBar *progressBar;
QPrinter printer;
struct print_options printOptions;
private
slots:
void onFinished();
void previewClicked();
void printClicked();
void onPaintRequested(QPrinter *);