17 lines
350 B
C++
17 lines
350 B
C++
#pragma once
|
|
|
|
#include "configobject.hpp"
|
|
|
|
namespace caelestia::config {
|
|
|
|
class SidebarConfig : public ConfigObject {
|
|
Q_OBJECT
|
|
CONFIG_PROPERTY(bool, enabled, true)
|
|
CONFIG_PROPERTY(int, dragThreshold, 80)
|
|
|
|
public:
|
|
explicit SidebarConfig(QObject* parent = nullptr)
|
|
: ConfigObject(parent) {}
|
|
};
|
|
|
|
} // namespace caelestia::config
|