#define VIEWSETTINGSTAB_H
#include <QWidget>
+#include <settings/viewmodes/viewmodesettings.h>
class DolphinFontRequester;
class KComboBox;
+class QCheckBox;
class QSlider;
/**
signals:
void changed();
+private slots:
+
+ void slotDefaultSliderMoved(int value);
+ void slotPreviewSliderMoved(int value);
private:
void loadSettings();
+ void showToolTip(QSlider* slider, int value);
+
+ ViewModeSettings::ViewMode viewMode() const;
private:
Mode m_mode;
QSlider* m_previewSizeSlider;
DolphinFontRequester* m_fontRequester;
- KComboBox* m_textWidthBox;
+ KComboBox* m_widthBox;
+ KComboBox* m_maxLinesBox;
+ QCheckBox* m_expandableFolders;
};
#endif