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

« back to all changes in this revision

Viewing changes to sources/settingsdialog.h

  • Committer: Package Import Robot
  • Author(s): Benjamin Eltzner
  • Date: 2012-11-25 08:31:42 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20121125083142-qj8l8wpijurp3tjc
Tags: 0.3.6-1
* New upstream release.
* Updated description in control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <QtCore>
26
26
#include <QtGui>
27
27
 
 
28
#include <poppler-qt4.h>
 
29
 
28
30
#include "miscellaneous.h"
29
31
 
30
32
class SettingsDialog : public QDialog
47
49
    QDialogButtonBox* m_dialogButtonBox;
48
50
    QPushButton* m_defaultsButton;
49
51
 
50
 
    QFormLayout* m_behaviourLayout;
 
52
    QFormLayout* m_behaviorLayout;
51
53
    QFormLayout* m_graphicsLayout;
52
54
    QFormLayout* m_interfaceLayout;
53
55
    QFormLayout* m_modifiersLayout;
54
56
 
55
 
    // behaviour
 
57
    // behavior
56
58
 
57
59
    QCheckBox* m_openUrlCheckBox;
58
60
 
59
61
    QCheckBox* m_autoRefreshCheckBox;
60
62
 
61
63
    QCheckBox* m_trackRecentlyUsedCheckBox;
 
64
 
62
65
    QCheckBox* m_restoreTabsCheckBox;
63
66
    QCheckBox* m_restoreBookmarksCheckBox;
64
67
 
67
70
 
68
71
    QLineEdit* m_sourceEditorLineEdit;
69
72
 
70
 
    void createBehaviourTab();
 
73
    void createBehaviorTab();
71
74
 
72
75
    // graphics
73
76
 
74
77
    QCheckBox* m_decoratePagesCheckBox;
75
78
    QCheckBox* m_decorateLinksCheckBox;
 
79
    QCheckBox* m_decorateFormFieldsCheckBox;
76
80
 
77
81
    QSpinBox* m_highlightDurationSpinBox;
78
82
 
79
83
    QCheckBox* m_invertColorsCheckBox;
80
84
 
 
85
    QCheckBox* m_overprintPreviewCheckBox;
 
86
 
 
87
    QSpinBox* m_pagesPerRowSpinBox;
 
88
 
81
89
    QDoubleSpinBox* m_pageSpacingSpinBox;
82
90
    QDoubleSpinBox* m_thumbnailSpacingSpinBox;
83
91