~ubuntu-branches/debian/jessie/qpdfview/jessie

« back to all changes in this revision

Viewing changes to sources/pdfmodel.h

  • Committer: Package Import Robot
  • Author(s): Benjamin Eltzner
  • Date: 2013-10-13 10:56:55 UTC
  • mfrom: (1.2.10)
  • Revision ID: package-import@ubuntu.com-20131013105655-zngu1nmdro6y6b5s
Tags: 0.4.6-1
* New upstream release.
* Translations are now fetched in the separate package qpdfview-translations.
* qpdfview-translations "Replaces: qpdfview-languages" for compatibility with
  Ubuntu PPAs.
* Qt5 support implemented upstream is unused in this package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
        QDialog* showDialog(const QPoint& screenPos);
57
57
 
58
58
    private:
 
59
        Q_DISABLE_COPY(PdfAnnotation)
 
60
 
59
61
        PdfAnnotation(QMutex* mutex, Poppler::Annotation* annotation);
60
62
 
61
63
        mutable QMutex* m_mutex;
74
76
        QDialog* showDialog(const QPoint& screenPos);
75
77
 
76
78
    private:
 
79
        Q_DISABLE_COPY(PdfFormField)
 
80
 
77
81
        PdfFormField(QMutex* mutex, Poppler::FormField* formField);
78
82
 
79
83
        mutable QMutex* m_mutex;
109
113
        QList< FormField* > formFields() const;
110
114
 
111
115
    private:
 
116
        Q_DISABLE_COPY(PdfPage)
 
117
 
112
118
        PdfPage(QMutex* mutex, Poppler::Page* page);
113
119
 
114
120
        mutable QMutex* m_mutex;
146
152
        void loadFonts(QStandardItemModel* fontsModel) const;
147
153
 
148
154
    private:
 
155
        Q_DISABLE_COPY(PdfDocument)
 
156
 
149
157
        PdfDocument(Poppler::Document* document);
150
158
 
151
159
        mutable QMutex m_mutex;
165
173
    void reset();
166
174
 
167
175
private:
 
176
    Q_DISABLE_COPY(PdfSettingsWidget)
 
177
 
168
178
    QSettings* m_settings;
169
179
 
170
180
    QFormLayout* m_layout;
215
225
    SettingsWidget* createSettingsWidget(QWidget* parent) const;
216
226
 
217
227
private:
 
228
    Q_DISABLE_COPY(PdfPlugin)
 
229
 
218
230
    QSettings* m_settings;
219
231
 
220
232
};