]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/viewpropertiesdialog.h
allow to configure the additional information of the view inside the viewproperties...
[dolphin.git] / src / viewpropertiesdialog.h
index 09a63336ca8705c7fe01987347e7c9f45929e922..a0a933f557123b27374483d8826273ec33bd5e66 100644 (file)
@@ -25,6 +25,7 @@
 
 class QCheckBox;
 class QComboBox;
+class QPushButton;
 class QRadioButton;
 class ViewProperties;
 class DolphinView;
@@ -51,10 +52,14 @@ private slots:
     void slotSortingChanged(int index);
     void slotSortOrderChanged(int index);
     void slotCategorizedSortingChanged();
-    void slotAdditionalInfoChanged(int index);
     void slotShowPreviewChanged();
     void slotShowHiddenFilesChanged();
     void markAsDirty();
+    void configureAdditionalInfo();
+
+private:
+    void applyViewProperties();
+    void loadSettings();
 
 private:
     bool m_isDirty;
@@ -64,16 +69,14 @@ private:
     QComboBox* m_viewMode;
     QComboBox* m_sortOrder;
     QComboBox* m_sorting;
-    QComboBox* m_additionalInfo;
     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