aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-pdf/mainUI.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-03-14 11:27:53 -0400
committerKen Moore <ken@ixsystems.com>2017-03-14 11:27:53 -0400
commit672e26a24a9f86364afe9bc3c7ed440c73b670d5 (patch)
tree75580c26a602c9008cb08c5c73665fdf5c38ac5e /src-qt5/desktop-utils/lumina-pdf/mainUI.h
parentUpdate the new lumina-pdf to work as a QMainWindow with a QPrintPreviewWidget... (diff)
downloadlumina-672e26a24a9f86364afe9bc3c7ed440c73b670d5.tar.gz
lumina-672e26a24a9f86364afe9bc3c7ed440c73b670d5.tar.bz2
lumina-672e26a24a9f86364afe9bc3c7ed440c73b670d5.zip
Fix up the loading of multuple files within the same session. Move the progress bar to the top toolbar instead of a bottom one.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-pdf/mainUI.h')
-rw-r--r--src-qt5/desktop-utils/lumina-pdf/mainUI.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.h b/src-qt5/desktop-utils/lumina-pdf/mainUI.h
index e25eab2b..d7de8485 100644
--- a/src-qt5/desktop-utils/lumina-pdf/mainUI.h
+++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.h
@@ -32,13 +32,14 @@ private:
Poppler::Document *DOC;
QPrintPreviewWidget *WIDGET;
Ui::MainUI *ui;
- QPrinter* PRINTER;
+ QPrinter* Printer;
QPrintDialog *PrintDLG;
QString lastdir;
//Other Interface elements
QProgressBar *progress;
+ QAction *progAct; //action associated with the progressbar
private slots:
void paintOnWidget(QPrinter *PRINTER);
bgstack15