~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-07-30 00:00:25 UTC
  • mfrom: (1.2.9)
  • Revision ID: package-import@ubuntu.com-20130730000025-lsj8rjj0brpaj5ve
Tags: 0.4.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
public slots:
49
49
    void accept();
50
50
    void reset();
 
51
    void resetCurrentTab();
51
52
 
52
53
private:
53
54
    static Settings* s_settings;
72
73
    QTabWidget* m_tabWidget;
73
74
    QDialogButtonBox* m_dialogButtonBox;
74
75
    QPushButton* m_defaultsButton;
 
76
    QPushButton* m_defaultsOnCurrentTabButton;
75
77
 
76
78
    QFormLayout* m_behaviorLayout;
77
79
    QFormLayout* m_interfaceLayout;
99
101
    QLineEdit* m_sourceEditorLineEdit;
100
102
 
101
103
    void createBehaviorTab();
 
104
    void resetBehaviorTab();
102
105
 
103
106
    // graphics
104
107
 
121
124
    QSpinBox* m_prefetchDistanceSpinBox;
122
125
 
123
126
    void createGraphicsTab();
 
127
    void resetGraphicsTab();
124
128
 
125
129
    // interface
126
130
 
129
133
 
130
134
    QCheckBox* m_newTabNextToCurrentTabCheckBox;
131
135
 
 
136
    QSpinBox* m_recentlyUsedCountSpinBox;
 
137
 
132
138
    QLineEdit* m_fileToolBarLineEdit;
133
139
    QLineEdit* m_editToolBarLineEdit;
134
140
    QLineEdit* m_viewToolBarLineEdit;
139
145
    QCheckBox* m_limitThumbnailsToResultsCheckBox;
140
146
 
141
147
    void createInterfaceTab();
 
148
    void resetInterfaceTab();
142
149
 
143
150
    // modifiers
144
151
 
150
157
    QComboBox* m_addAnnotationModifiersComboBox;
151
158
 
152
159
    void createModifiersTab();
 
160
    void resetModifiersTab();
 
161
 
153
162
    void createModifiersComboBox(QComboBox*& comboBox, const Qt::KeyboardModifiers& modifiers);
154
163
 
155
164
};