1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*
dspdfviewer - Dual Screen PDF Viewer for LaTeX-Beamer
Copyright (C) 2012 Danny Edel <mail@danny-edel.de>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef PDFVIEWERWINDOW_H
#define PDFVIEWERWINDOW_H
#include "renderedpage.h"
#include "pdfrenderfactory.h"
#include "runtimeconfiguration.h"
#include "hyperlinkarea.h"
#include "windowrole.h"
#include "ui_pdfviewerwindow.h"
/** Shared base class for both windows (primary and secondary)
*
*/
class PDFViewerWindow : public QWidget
{
Q_OBJECT
private:
Ui::Form ui;
bool m_enabled;
unsigned int m_monitor;
QImage currentImage;
bool blank;
bool informationLineVisible;
uint currentPageNumber;
uint minimumPageNumber;
uint maximumPageNumber;
bool correctImageRendered;
PagePart myPart;
const WindowRole windowRole;
// Reference to the runtime configuration object.
const RuntimeConfiguration& runtimeConfiguration;
/** Display this image
*/
void displayImage(QImage image);
virtual void wheelEvent(QWheelEvent* e) override;
virtual void keyPressEvent(QKeyEvent* e) override;
virtual void mousePressEvent(QMouseEvent* e) override;
void addThumbnail(uint pageNumber, QImage thumbnail);
QString timeToString(const QTime& time) const;
QString timeToString(int milliseconds) const;
void keybindingsPopup();
void changePageNumberDialog();
void parseLinks( QList< AdjustedLink > links);
QList< HyperlinkArea* > linkAreas;
public:
/** Standard constructor
* @param monitor monitor to start on (usually 0 for primary)
*/
explicit PDFViewerWindow(unsigned int monitor, PagePart myPart, bool showInformationLine, const RuntimeConfiguration& r, const WindowRole& windowRole, bool enabled=true);
/** Sets the monitor to display this window on
* Automatically calls reposition
*/
void setMonitor(const unsigned int monitor);
/** Gets the current monitor setting
*/
unsigned int getMonitor() const;
/** Reposition the window (for example after a monitor change)
*/
void reposition();
QSize getTargetImageSize() const;
QSize getPreviewImageSize();
PagePart getMyPagePart() const;
void showInformationLine();
void hideInformationLine();
bool isInformationLineVisible() const;
bool isBlank() const;
void showLoadingScreen(uint pageNumberToWaitFor);
public slots:
void renderedPageIncoming( QSharedPointer<RenderedPage> renderedPage);
void resizeEvent(QResizeEvent* resizeEvent) override;
void updateWallClock(const QTime& wallClock);
void updateSlideClock(const QTime& slideClock);
void updatePresentationClock(const QTime& presentationClock);
void setPageNumberLimits(uint minimumPageNumber, uint maximumPageNumber);
void setBlank(const bool blank);
void setMyPagePart(const PagePart& newPagePart);
signals:
void nextPageRequested();
void previousPageRequested();
void pageRequested(unsigned requestedPageNumber);
void restartRequested();
void screenSwapRequested();
void rerenderRequested();
void quitRequested();
void secondScreenFunctionToggleRequested();
void secondScreenDuplicateRequested();
void blankToggleRequested();
private slots:
void linkClicked(uint targetNumber);
};
#endif // PDFVIEWERWINDOW_H
|