/* 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 namespace options::detail { template class dereference_wrapper final { t x; public: constexpr t const* operator->() const { return &x; } constexpr t* operator->() { return &x; } constexpr explicit dereference_wrapper(t&& x) : x(x) {} }; } // ns options::detail namespace options { template class value final : public value_ { using t = std::conditional_t>, std::decay_t, remove_cvref_t>; const t def; using traits = detail::value_traits; cc_noinline t get() const { if (self_name.isEmpty() || !b->contains(self_name)) return traits::pass_value(def); QVariant variant = b->get_variant(self_name); if (variant.isNull() || !variant.isValid()) return traits::pass_value(def); return traits::pass_value(traits::value_with_default(traits::value_from_qvariant(variant), def)); } friend class detail::connector; void bundle_value_changed() const override { if (!self_name.isEmpty()) emit valueChanged(traits::storage_from_value(get())); } void store_variant(const QVariant& value) override { if (self_name.isEmpty()) return; if (traits::is_equal(get(), traits::value_from_qvariant(value))) return; if (value.isValid() && !value.isNull()) b->store_kv(self_name, value); else b->store_kv(self_name, traits::qvariant_from_value(def)); } public: cc_noinline value& operator=(const t& datum) { store_variant(traits::qvariant_from_value(traits::pass_value(datum))); return *this; } static constexpr inline Qt::ConnectionType DIRECT_CONNTYPE = Qt::DirectConnection; static constexpr inline Qt::ConnectionType SAFE_CONNTYPE = Qt::QueuedConnection; cc_noinline value(bundle b, const QString& name, t def) : value_(b, name), def(def) { } cc_noinline t default_value() const { return def; } cc_noinline void set_to_default() override { *this = def; } operator t() const { return get(); } template(std::declval()))> explicit cc_forceinline operator u() const { return to(); } auto operator->() const { return detail::dereference_wrapper{get()}; } cc_forceinline t operator()() const { return get(); } cc_forceinline t operator*() const { return get(); } template w to() const { return static_cast(get()); } }; // some linker problems #if !defined OTR_INST_VALUE # define OTR_INST_VALUE OTR_TEMPLATE_IMPORT #endif OTR_INST_VALUE(value); OTR_INST_VALUE(value); OTR_INST_VALUE(value); OTR_INST_VALUE(value); OTR_INST_VALUE(value); OTR_INST_VALUE(value); OTR_INST_VALUE(value); OTR_INST_VALUE(value); OTR_INST_VALUE(value>); OTR_INST_VALUE(value>); OTR_INST_VALUE(value>); OTR_INST_VALUE(value>); OTR_INST_VALUE(value>); OTR_INST_VALUE(value>); OTR_INST_VALUE(value>); OTR_INST_VALUE(value>); } // ns options