X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/6422ae393ed378f8dcde0bf35e1f8d67a5df2295..d6488887ecf69d7f192b94de8dce34fae0b7eb76:/src/viewpropertiesdialog.h diff --git a/src/viewpropertiesdialog.h b/src/viewpropertiesdialog.h index 3843fd558..a0a933f55 100644 --- a/src/viewpropertiesdialog.h +++ b/src/viewpropertiesdialog.h @@ -25,6 +25,7 @@ class QCheckBox; class QComboBox; +class QPushButton; class QRadioButton; class ViewProperties; class DolphinView; @@ -50,11 +51,15 @@ private slots: void slotViewModeChanged(int index); void slotSortingChanged(int index); void slotSortOrderChanged(int index); - void slotCategorizedSortingChanged(int index); - void slotAdditionalInfoChanged(int index); + void slotCategorizedSortingChanged(); void slotShowPreviewChanged(); void slotShowHiddenFilesChanged(); void markAsDirty(); + void configureAdditionalInfo(); + +private: + void applyViewProperties(); + void loadSettings(); private: bool m_isDirty; @@ -62,18 +67,16 @@ private: ViewProperties* m_viewProps; QComboBox* m_viewMode; - QComboBox* m_sorting; QComboBox* m_sortOrder; - QComboBox* m_categorizedSorting; - QComboBox* m_additionalInfo; + QComboBox* m_sorting; QCheckBox* m_showPreview; + QCheckBox* m_showInGroups; QCheckBox* m_showHiddenFiles; + QPushButton* m_additionalInfo; QRadioButton* m_applyToCurrentFolder; QRadioButton* m_applyToSubFolders; QRadioButton* m_applyToAllFolders; QCheckBox* m_useAsDefault; - - void applyViewProperties(); }; #endif