~ubuntu-branches/debian/sid/qpdfview/sid

« back to all changes in this revision

Viewing changes to sources/mainwindow.h

  • Committer: Package Import Robot
  • Author(s): Benjamin Eltzner
  • Date: 2013-05-26 13:52:50 UTC
  • mfrom: (1.2.8)
  • Revision ID: package-import@ubuntu.com-20130526135250-s1rhw935iqd8fcfs
Tags: 0.4.3-1
* New upstream release.
* Added menu file and fetch xpm icon file in debian folder.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
class ComboBox;
55
55
class SpinBox;
56
56
class ProgressLineEdit;
57
 
class Settings;
58
 
class ShortcutHandler;
59
57
class RecentlyUsedMenu;
60
58
class BookmarkMenu;
61
59
 
70
68
    QMenu* createPopupMenu();
71
69
 
72
70
public slots:
73
 
    bool open(const QString& filePath, int page = -1, const QRectF& highlight = QRectF());
74
 
    bool openInNewTab(const QString& filePath, int page = -1, const QRectF& highlight = QRectF());
 
71
    bool open(const QString& filePath, int page = -1, const QRectF& highlight = QRectF(), bool quiet = false);
 
72
    bool openInNewTab(const QString& filePath, int page = -1, const QRectF& highlight = QRectF(), bool quiet = false);
75
73
 
76
 
    bool jumpToPageOrOpenInNewTab(const QString& filePath, int page = -1, bool refreshBeforeJump = false, const QRectF& highlight = QRectF());
 
74
    bool jumpToPageOrOpenInNewTab(const QString& filePath, int page = -1, bool refreshBeforeJump = false, const QRectF& highlight = QRectF(), bool quiet = false);
77
75
 
78
76
    void startSearch(const QString& text);
79
77
 
187
185
 
188
186
    void on_highlightAll_clicked(bool checked);
189
187
 
 
188
    void on_model_reset();
 
189
 
190
190
    void on_outline_clicked(const QModelIndex& index);
191
191
 
192
192
    void on_thumbnails_verticalScrollBar_valueChanged(int value);
200
200
private:
201
201
    static Settings* s_settings;
202
202
 
203
 
    ShortcutHandler* m_shortcutHandler;
204
 
 
205
203
    TabWidget* m_tabWidget;
206
204
 
207
205
    DocumentView* currentTab() const;
363
361
    explicit MainWindowAdaptor(MainWindow* mainWindow);
364
362
 
365
363
public slots:
366
 
    bool open(const QString& filePath, int page = -1, const QRectF& highlight = QRectF());
367
 
    bool openInNewTab(const QString& filePath, int page = -1, const QRectF& highlight = QRectF());
 
364
    bool open(const QString& filePath, int page = -1, const QRectF& highlight = QRectF(), bool quiet = false);
 
365
    bool openInNewTab(const QString& filePath, int page = -1, const QRectF& highlight = QRectF(), bool quiet = false);
368
366
 
369
 
    bool jumpToPageOrOpenInNewTab(const QString& filePath, int page = -1, bool refreshBeforeJump = false, const QRectF& highlight = QRectF());
 
367
    bool jumpToPageOrOpenInNewTab(const QString& filePath, int page = -1, bool refreshBeforeJump = false, const QRectF& highlight = QRectF(), bool quiet = false);
370
368
 
371
369
    Q_NOREPLY void startSearch(const QString& text);
372
370