#ifndef PREVIEWSSETTINGSPAGE_H
#define PREVIEWSSETTINGSPAGE_H
+#include <kiowidgets_export.h>
+
#include "settings/settingspagebase.h"
class QSpinBox;
Q_OBJECT
public:
- explicit PreviewsSettingsPage(QWidget* parent);
+ explicit PreviewsSettingsPage(QWidget *parent);
~PreviewsSettingsPage() override;
/**
void restoreDefaults() override;
protected:
- void showEvent(QShowEvent* event) override;
+ void showEvent(QShowEvent *event) override;
-private slots:
- void configureService(const QModelIndex& index);
+private Q_SLOTS:
private:
void loadPreviewPlugins();
bool m_initialized;
QListView *m_listView;
QStringList m_enabledPreviewPlugins;
- QSpinBox* m_localFileSizeBox;
- QSpinBox* m_remoteFileSizeBox;
+ QSpinBox *m_localFileSizeBox;
+ QSpinBox *m_remoteFileSizeBox;
};
#endif