~ubuntu-branches/ubuntu/vivid/qpdfview/vivid

« back to all changes in this revision

Viewing changes to sources/settingsdialog.h

  • Committer: Package Import Robot
  • Author(s): Benjamin Eltzner
  • Date: 2014-10-22 21:49:15 UTC
  • mfrom: (1.2.15)
  • Revision ID: package-import@ubuntu.com-20141022214915-agqeoe318lzs2s4d
Tags: 0.4.12-1
* New upstream release.
* Fixed option to zoom to selection and implemented tiled rendering
  (Closes: #739554)
* Enable support for qt5 and poppler-qt5.
* Explicit dependence on hicolor-icon-theme.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
public:
49
49
    SettingsDialog(QWidget* parent = 0);
 
50
    ~SettingsDialog();
50
51
 
51
52
public slots:
52
53
    void accept();
88
89
    QCheckBox* m_restoreTabsCheckBox;
89
90
    QCheckBox* m_restoreBookmarksCheckBox;
90
91
    QCheckBox* m_restorePerFileSettingsCheckBox;
 
92
    QSpinBox* m_saveDatabaseInterval;
91
93
 
92
94
    QCheckBox* m_synchronizePresentationCheckBox;
93
95
    QSpinBox* m_presentationScreenSpinBox;
94
96
 
 
97
    QCheckBox* m_synchronizeOutlineViewCheckBox;
 
98
 
 
99
    QDoubleSpinBox* m_zoomFactorSpinBox;
 
100
 
95
101
    QSpinBox* m_highlightDurationSpinBox;
96
102
    QComboBox* m_highlightColorComboBox;
97
103
    QComboBox* m_annotationColorComboBox;
104
110
 
105
111
    // graphics
106
112
 
 
113
    QCheckBox* m_useTilingCheckBox;
107
114
    QCheckBox* m_keepObsoletePixmapsCheckBox;
108
115
 
109
116
#if QT_VERSION >= QT_VERSION_CHECK(5,1,0)
112
119
 
113
120
#endif // QT_VERSION
114
121
 
 
122
    QCheckBox* m_trimMarginsCheckBox;
 
123
 
115
124
    QCheckBox* m_decoratePagesCheckBox;
116
125
    QCheckBox* m_decorateLinksCheckBox;
117
126
    QCheckBox* m_decorateFormFieldsCheckBox;
146
155
    QSpinBox* m_recentlyUsedCountSpinBox;
147
156
    QSpinBox* m_recentlyClosedCountSpinBox;
148
157
 
 
158
    QCheckBox* m_toggleToolAndMenuBarsWithFullscreenCheckBox;
 
159
 
149
160
    QLineEdit* m_fileToolBarLineEdit;
150
161
    QLineEdit* m_editToolBarLineEdit;
151
162
    QLineEdit* m_viewToolBarLineEdit;
152
163
 
 
164
    QCheckBox* m_usePageLabelCheckBox;
153
165
    QCheckBox* m_documentTitleAsTabTitleCheckBox;
154
166
 
155
167
    QCheckBox* m_currentPageInWindowTitleCheckBox;
156
168
    QCheckBox* m_instanceNameInWindowTitleCheckBox;
157
169
 
158
 
    QCheckBox* m_synchronizeOutlineViewCheckBox;
159
 
 
160
170
    QCheckBox* m_highlightCurrentThumbnailCheckBox;
161
171
    QCheckBox* m_limitThumbnailsToResultsCheckBox;
162
172