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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
|
/*
This is part of TeXworks, an environment for working with TeX documents
Copyright (C) 2007-2010 Jonathan Kew
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, see <http://www.gnu.org/licenses/>.
For links to further information, or to contact the author,
see <http://texworks.org/>.
*/
#ifndef PDFDOCKS_H
#define PDFDOCKS_H
#ifndef NO_POPPLER_PREVIEW
#include <QDockWidget>
#include <QTreeWidget>
#include <QListWidget>
#include <QScrollArea>
#include <QDateTime>
#if QT_VERSION < 0x050000
#include "poppler-qt4.h"
#else
#include "poppler-qt5.h"
#endif
#include "pdfrendermanager.h"
class PDFDocument;
class QListWidget;
class QTableWidget;
class QTreeWidgetItem;
class MessageFrame : public QFrame
{
Q_OBJECT
public:
explicit MessageFrame(QWidget *parent = 0);
void showText(const QString &text, QList<QAction *> actions = QList<QAction *>());
private:
QLabel *label;
QList<QPushButton *> buttons;
};
class PDFDock : public QDockWidget
{
Q_OBJECT
public:
explicit PDFDock(PDFDocument *doc = 0);
virtual ~PDFDock();
void setPage(int page);
public slots:
virtual void documentLoaded();
virtual void documentClosed();
virtual void pageChanged(int page);
protected:
virtual void fillInfo() = 0;
virtual QString getTitle() = 0;
PDFDocument *document;
bool filled;
private slots:
void myVisibilityChanged(bool visible);
protected slots:
virtual void changeLanguage();
};
class PDFOutlineDock : public PDFDock
{
Q_OBJECT
public:
explicit PDFOutlineDock(PDFDocument *doc = 0);
virtual ~PDFOutlineDock();
public slots:
virtual void documentClosed();
protected:
virtual void fillInfo();
virtual QString getTitle()
{
return tr("Contents");
}
protected slots:
virtual void changeLanguage();
void followTocSelection();
private:
QTreeWidget *tree;
};
class PDFDockTreeWidget : public QTreeWidget
{
Q_OBJECT
public:
explicit PDFDockTreeWidget(QWidget *parent);
virtual ~PDFDockTreeWidget();
virtual QSize sizeHint() const;
};
class PDFInfoDock : public PDFDock
{
Q_OBJECT
public:
explicit PDFInfoDock(PDFDocument *doc = 0);
~PDFInfoDock();
public slots:
virtual void documentClosed();
protected:
virtual void fillInfo();
virtual QString getTitle()
{
return tr("PDF Info");
}
private:
QListWidget *list;
};
class PDFDockListView : public QListView
{
Q_OBJECT
public:
explicit PDFDockListView(QWidget *parent = 0);
virtual QSize sizeHint() const;
};
class PDFDockListWidget : public QListWidget
{
Q_OBJECT
public:
explicit PDFDockListWidget(QWidget *parent = 0);
virtual QSize sizeHint() const;
};
class PDFOverviewModel: public QAbstractListModel
{
Q_OBJECT
public:
explicit PDFOverviewModel(QObject *parent = 0);
int rowCount ( const QModelIndex &parent = QModelIndex() ) const;
QVariant data ( const QModelIndex &index, int role = Qt::DisplayRole ) const;
void setDocument(PDFDocument *doc);
public slots:
void updateImage(const QPixmap &pm, int page);
private:
PDFDocument *document;
mutable QList<QPixmap> cache;
};
class PDFFontsDock : public PDFDock
{
Q_OBJECT
public:
explicit PDFFontsDock(PDFDocument *doc = 0);
~PDFFontsDock();
public slots:
virtual void documentClosed();
virtual void documentLoaded();
protected:
virtual void fillInfo();
virtual QString getTitle() { return tr("Fonts"); }
void setHorizontalHeaderLabels();
protected slots:
virtual void changeLanguage();
private:
QTableWidget *table;
QList<Poppler::FontInfo> fonts;
bool scannedFonts;
};
class QToolButton;
class QGridLayout;
class QCheckBox;
class PDFBaseSearchDock : public QDockWidget
{
Q_OBJECT
//TODO: some how merge this with the qce search panel
public:
explicit PDFBaseSearchDock(PDFDocument *doc = 0);
QString getSearchText() const;
void setSearchText(QString text);
bool hasFlagCaseSensitive() const;
virtual void setFocus();
signals:
void search(bool backward, bool incremental);
protected:
virtual void resizeEvent(QResizeEvent *e);
virtual bool eventFilter(QObject *o, QEvent *e);
QList<QWidget *> listOfWidget;
QGridLayout *gridLayout1;
private slots:
void on_leFind_textEdited(const QString &text);
void on_bNext_clicked();
void on_bPrevious_clicked();
private:
PDFDocument *document;
int minimum_width;
//QToolButton *bClose;
QLineEdit *leFind;
QToolButton *bNext, *bPrevious, *bCount;
QCheckBox *cbCase;
/*QCheckBox *cbWords;
QCheckBox *cbRegExp;*/
/* QCheckBox *cbHighlight;
QCheckBox *cbCursor;
QCheckBox *cbSelection;*/
};
class PDFSearchDock : public PDFBaseSearchDock
{
Q_OBJECT
public:
explicit PDFSearchDock(PDFDocument *doc = 0);
bool hasFlagSync() const;
private:
QCheckBox *cbSync;
};
class PDFWidget;
class PDFScrollArea : public QAbstractScrollArea
{
Q_OBJECT
public:
explicit PDFScrollArea(QWidget *parent = NULL);
virtual ~PDFScrollArea();
void setPDFWidget(PDFWidget *widget);
void ensureVisible(int x, int y, int xmargin = 50, int ymargin = 50);
void setVerticalScrollBarPolicy(Qt::ScrollBarPolicy policy);
bool getContinuous() { return continuous; }
void updateScrollBars();
public slots:
void setContinuous(bool cont);
void goToPage(int page, bool sync = true);
void ensureVisiblePageAbsolutePos(int page, const QPointF &pos, int xmargin = 50, int ymargin = 50);
protected:
bool event(QEvent *);
bool eventFilter(QObject *, QEvent *);
void wheelEvent(QWheelEvent *);
void resizeEvent(QResizeEvent *event);
void scrollContentsBy(int dx, int dy);
signals:
void resized();
private:
void updateWidgetPosition();
bool continuous;
PDFWidget *pdf;
int updateWidgetPositionStackWatch, onResizeStackWatch;
};
class PDFOverviewDock : public PDFDock
{
Q_OBJECT
public:
explicit PDFOverviewDock(PDFDocument *doc = 0);
virtual ~PDFOverviewDock();
public slots:
virtual void documentClosed();
virtual void pageChanged(int page);
protected:
virtual void fillInfo();
virtual QString getTitle() { return tr("Overview"); }
protected slots:
virtual void changeLanguage();
private slots:
void followTocSelection();
private:
QListView *list;
int toGenerate;
bool dontFollow;
};
class PDFClockDock: public PDFDock
{
Q_OBJECT
public:
explicit PDFClockDock(PDFDocument *parent = 0);
virtual ~PDFClockDock();
protected slots:
void onTimer();
void restart();
void setInterval();
void setInterval(int interval);
protected:
//virtual void pageChanged(int page);
virtual void fillInfo();
virtual QString getTitle();
virtual void paintEvent(QPaintEvent *event);
QDateTime start, end;
QTimer *timer;
};
#endif
#endif
|