/* Copyright (c) 2015-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. */ #pragma once #include "export.hpp" #include "bundle.hpp" #include "slider.hpp" #include "base-value.hpp" #include "value-traits.hpp" #include "compat/macros.hpp" #include #include #include #include #include #include #include #include #include #include namespace options { template class value final : public base_value { using traits = detail::value_traits; using element_type = typename traits::element_type; static bool is_equal(const QVariant& val1, const QVariant& val2) { return val1.value() == val2.value(); } never_inline t get() const { if (self_name.isEmpty()) return def; QVariant variant = b->get(self_name); if (!b->contains(self_name) || variant.type() == QVariant::Invalid) return def; const element_type x(variant.value()); return traits::from_value(traits::from_storage(x), def); } public: never_inline t operator=(const t& datum) { if (self_name.isEmpty()) return def; if (datum != get()) store(traits::to_storage(datum)); return datum; } static constexpr inline Qt::ConnectionType DIRECT_CONNTYPE = Qt::DirectConnection; static constexpr inline Qt::ConnectionType SAFE_CONNTYPE = Qt::QueuedConnection; never_inline value(bundle b, const QString& name, t def) : base_value(b, name, &is_equal, std::type_index(typeid(element_type))), def(def) { if (!self_name.isEmpty()) QObject::connect(b.get(), SIGNAL(reloading()), this, SLOT(reload()), DIRECT_CONNTYPE); } template inline value(bundle b, const char (&name)[k], t def) : value(b, QLatin1String(name, k-1), def) { static_assert(k > 0, ""); } never_inline t default_value() const { return def; } never_inline void set_to_default() override { *this = def; } never_inline operator t() const { return get(); } never_inline t operator->() const { return get(); } never_inline void reload() override { if (!self_name.isEmpty()) *this = static_cast(*this); } never_inline void bundle_value_changed() const override { if (!self_name.isEmpty()) emit valueChanged(traits::to_storage(get())); } never_inline t operator()() const { return get(); } template never_inline u to() const { return static_cast(get()); } private: const t def; }; #if defined _MSC_VER # if !defined OTR_OPT_VALUE # define OTR_OPT_VALUE OTR_TEMPLATE_IMPORT # endif OTR_OPT_VALUE value; OTR_OPT_VALUE value; OTR_OPT_VALUE value; OTR_OPT_VALUE value; OTR_OPT_VALUE value; OTR_OPT_VALUE value; OTR_OPT_VALUE value; OTR_OPT_VALUE value; OTR_OPT_VALUE value>; OTR_OPT_VALUE value>; OTR_OPT_VALUE value>; OTR_OPT_VALUE value>; OTR_OPT_VALUE value>; OTR_OPT_VALUE value>; OTR_OPT_VALUE value>; #endif } // ns options