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

« back to all changes in this revision

Viewing changes to sources/settingsdialog.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:
37
37
 
38
38
class Settings;
39
39
class SettingsWidget;
40
 
class ShortcutHandler;
41
40
 
42
41
class SettingsDialog : public QDialog
43
42
{
44
43
    Q_OBJECT
45
44
 
46
45
public:
47
 
    SettingsDialog(ShortcutHandler* shortcutHandler, QWidget* parent = 0);
 
46
    SettingsDialog(QWidget* parent = 0);
48
47
 
49
48
public slots:
50
49
    void accept();
53
52
private:
54
53
    static Settings* s_settings;
55
54
 
56
 
    ShortcutHandler* m_shortcutHandler;
57
 
 
58
55
    QTabWidget* m_graphicsTabWidget;
59
56
    QFormLayout* m_graphicsLayout;
60
57
 
95
92
    QCheckBox* m_presentationSyncCheckBox;
96
93
    QSpinBox* m_presentationScreenSpinBox;
97
94
 
 
95
    QComboBox* m_highlightColorComboBox;
 
96
    QSpinBox* m_highlightDurationSpinBox;
98
97
    QComboBox* m_annotationColorComboBox;
99
98
 
100
99
    QLineEdit* m_sourceEditorLineEdit;
107
106
    QCheckBox* m_decorateLinksCheckBox;
108
107
    QCheckBox* m_decorateFormFieldsCheckBox;
109
108
 
110
 
    QSpinBox* m_highlightDurationSpinBox;
111
 
 
112
109
    QComboBox* m_backgroundColorComboBox;
113
110
    QComboBox* m_paperColorComboBox;
114
111
 
132
129
 
133
130
    QCheckBox* m_newTabNextToCurrentTabCheckBox;
134
131
 
135
 
    QCheckBox* m_currentPageInWindowTitleCheckBox;
136
 
 
137
132
    QLineEdit* m_fileToolBarLineEdit;
138
133
    QLineEdit* m_editToolBarLineEdit;
139
134
    QLineEdit* m_viewToolBarLineEdit;
140
135
 
 
136
    QCheckBox* m_currentPageInWindowTitleCheckBox;
 
137
 
 
138
    QCheckBox* m_highlightCurrentThumbnailCheckBox;
141
139
    QCheckBox* m_limitThumbnailsToResultsCheckBox;
142
140
 
143
141
    void createInterfaceTab();