summaryrefslogtreecommitdiffhomepage
path: root/opentrack-compat/options.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'opentrack-compat/options.hpp')
-rw-r--r--opentrack-compat/options.hpp36
1 files changed, 30 insertions, 6 deletions
diff --git a/opentrack-compat/options.hpp b/opentrack-compat/options.hpp
index e2c04929..17ab093c 100644
--- a/opentrack-compat/options.hpp
+++ b/opentrack-compat/options.hpp
@@ -1,10 +1,12 @@
-/* Copyright (c) 2013-2015 Stanislaw Halik
+/* Copyright (c) 2013-2016 Stanislaw Halik
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*/
+// XXX TODO this header is too long
+
#pragma once
#include <memory>
@@ -243,6 +245,27 @@ namespace options {
virtual void reload() = 0;
};
+ namespace detail {
+ template<typename t>
+ struct value_get_traits
+ {
+ static inline t get(const t& val, const t&)
+ {
+ return val;
+ }
+ };
+
+ template<>
+ struct value_get_traits<slider_value>
+ {
+ using t = slider_value;
+ static inline t get(const t& val, const t& def)
+ {
+ return t(val.cur(), def.min(), def.max());
+ }
+ };
+ }
+
template<typename t_>
class value : public base_value
{
@@ -269,7 +292,7 @@ namespace options {
static constexpr const Qt::ConnectionType DIRECT_CONNTYPE = Qt::AutoConnection;
static constexpr const Qt::ConnectionType SAFE_CONNTYPE = Qt::QueuedConnection;
- value(pbundle b, const QString& name, t def) : base_value(b, name), def(static_cast<underlying_t>(def))
+ value(pbundle b, const QString& name, t def) : base_value(b, name), def(def)
{
QObject::connect(b.get(), SIGNAL(reloading()),
this, SLOT(reload()),
@@ -284,7 +307,10 @@ namespace options {
operator t() const
{
- return static_cast<t>(b->contains(self_name) ? b->get<underlying_t>(self_name) : def);
+ t val = b->contains(self_name)
+ ? static_cast<t>(b->get<underlying_t>(self_name))
+ : def;
+ return detail::value_get_traits<t>::get(val, def);
}
void reload() override
@@ -292,7 +318,7 @@ namespace options {
*this = static_cast<t>(*this);
}
private:
- underlying_t def;
+ t def;
};
struct OPENTRACK_COMPAT_EXPORT opts
@@ -470,8 +496,6 @@ namespace options {
slider_value sv(v);
- using std::max;
-
const double sv_max = sv.max();
const double sv_min = sv.min();
const double sv_c = sv_max - sv_min;