2019-07-09 11:40:29 -05:00
|
|
|
/********************************************************************\
|
|
|
|
* gnc-option.hpp -- Application options system *
|
|
|
|
* Copyright (C) 2019 John Ralls <jralls@ceridwen.us> *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License as *
|
|
|
|
* published by the Free Software Foundation; either version 2 of *
|
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License*
|
|
|
|
* along with this program; if not, contact: *
|
|
|
|
* *
|
|
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
|
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
|
|
|
* *
|
|
|
|
\********************************************************************/
|
|
|
|
|
|
|
|
#ifndef GNC_OPTION_HPP_
|
|
|
|
#define GNC_OPTION_HPP_
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#include <config.h>
|
|
|
|
#include <qof.h>
|
2019-11-17 13:15:56 -06:00
|
|
|
#include <Account.h>
|
2019-07-09 11:40:29 -05:00
|
|
|
#include <gnc-budget.h>
|
|
|
|
#include <gnc-commodity.h>
|
|
|
|
}
|
2019-10-29 18:34:44 -05:00
|
|
|
#include <gnc-datetime.hpp>
|
2019-10-01 18:03:15 -05:00
|
|
|
#include <gnc-numeric.hpp>
|
2019-07-09 11:40:29 -05:00
|
|
|
#include <libguile.h>
|
|
|
|
#include <string>
|
2019-10-15 16:49:49 -05:00
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2019-09-20 15:56:54 -05:00
|
|
|
#include <exception>
|
2019-09-29 11:56:18 -05:00
|
|
|
#include <functional>
|
2019-10-15 16:49:49 -05:00
|
|
|
#include <variant>
|
2019-07-09 11:40:29 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Unused base class to document the structure of the current Scheme option
|
|
|
|
* vector, re-expressed in C++. The comment-numbers on the right indicate which
|
|
|
|
* item in the Scheme vector each item implements.
|
|
|
|
*
|
|
|
|
* Not everything here needs to be implemented, nor will it necessarily be
|
|
|
|
* implemented the same way. For example, part of the purpose of this redesign
|
|
|
|
* is to convert from saving options as strings of Scheme code to some form of
|
|
|
|
* key-value pair in the book options, so generate_restore_form() will likely be
|
|
|
|
* supplanted with save_to_book().
|
|
|
|
|
|
|
|
template <typename ValueType>
|
|
|
|
class GncOptionBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~GncOption = default;
|
|
|
|
virtual ValueType get_value() const = 0; //5
|
|
|
|
virtual ValueType get_default_value() = 0;
|
|
|
|
virtual SCM get_SCM_value() = 0;
|
|
|
|
virtual SCM get_SCM_default_value() const = 0; //7
|
|
|
|
virtual void set_value(ValueType) = 0; //6
|
|
|
|
// generate_restore_form outputs a Scheme expression (a "form") that finds an
|
|
|
|
// option and sets it to the current value. e.g.:
|
|
|
|
//(let ((option (gnc:lookup-option options
|
|
|
|
// "Display"
|
|
|
|
// "Amount")))
|
|
|
|
// ((lambda (option) (if option ((gnc:option-setter option) 'none))) option))
|
|
|
|
// it uses gnc:value->string to generate the "'none" (or whatever the option's
|
|
|
|
// value would be as input to the scheme interpreter).
|
|
|
|
|
|
|
|
virtual std::string generate_restore_form(); //8
|
|
|
|
virtual void save_to_book(QofBook*) const noexcept; //9
|
|
|
|
virtual void read_from_book(QofBook*); //10
|
|
|
|
virtual std::vector<std::string> get_option_strings(); //15
|
|
|
|
virtual set_changed_callback(std::function<void(void*)>); //14
|
|
|
|
protected:
|
|
|
|
const std::string m_section; //0
|
|
|
|
const std::string m_name; //1
|
|
|
|
const std::string m_sort_tag; //2
|
|
|
|
const std::type_info m_kvp_type; //3
|
|
|
|
const std::string m_doc_string; //4
|
|
|
|
std::function<void(void*)> m_changed_callback; //Part of the make-option closure
|
|
|
|
std::function<void(void*)>m_option_widget_changed_callback; //16
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
2019-09-20 15:56:54 -05:00
|
|
|
enum GncOptionUIType
|
|
|
|
{
|
|
|
|
INTERNAL,
|
|
|
|
BOOLEAN,
|
|
|
|
STRING,
|
|
|
|
TEXT,
|
|
|
|
CURRENCY,
|
|
|
|
COMMODITY,
|
|
|
|
MULTICHOICE,
|
|
|
|
DATE,
|
|
|
|
ACCOUNT_LIST,
|
|
|
|
ACCOUNT_SEL,
|
|
|
|
LIST,
|
|
|
|
NUMBER_RANGE,
|
|
|
|
COLOR,
|
|
|
|
FONT,
|
|
|
|
BUDGET,
|
|
|
|
PIXMAP,
|
|
|
|
RADIOBUTTON,
|
|
|
|
DATE_FORMAT,
|
|
|
|
OWNER,
|
|
|
|
CUSTOMER,
|
|
|
|
VENDOR,
|
|
|
|
EMPLOYEE,
|
|
|
|
INVOICE,
|
2019-10-01 18:03:15 -05:00
|
|
|
TAX_TABLE,
|
|
|
|
QUERY,
|
2019-09-20 15:56:54 -05:00
|
|
|
};
|
|
|
|
|
2019-07-09 11:40:29 -05:00
|
|
|
struct OptionClassifier
|
|
|
|
{
|
2019-08-03 12:11:49 -05:00
|
|
|
std::string m_section;
|
|
|
|
std::string m_name;
|
|
|
|
std::string m_sort_tag;
|
|
|
|
// std::type_info m_kvp_type;
|
|
|
|
std::string m_doc_string;
|
2019-07-09 11:40:29 -05:00
|
|
|
};
|
|
|
|
|
2019-10-03 15:30:49 -05:00
|
|
|
class GncOptionUIItem;
|
|
|
|
|
2019-09-20 15:56:54 -05:00
|
|
|
/**
|
|
|
|
* Holds a pointer to the UI item which will control the option and an enum
|
|
|
|
* representing the type of the option for dispatch purposes; all of that
|
|
|
|
* happens in gnucash/gnome-utils/dialog-options and
|
|
|
|
* gnucash/gnome/business-option-gnome.
|
|
|
|
*
|
|
|
|
* This class takes no ownership responsibility, so calling code is responsible
|
|
|
|
* for ensuring that the UI_Item is alive. For convenience the public
|
|
|
|
* clear_ui_item function can be used as a weak_ptr's destruction callback to
|
2019-10-01 18:03:15 -05:00
|
|
|
* ensure that the ptr will be nulled if the ui_item is destroyed elsewhere.
|
2019-09-20 15:56:54 -05:00
|
|
|
*/
|
|
|
|
class OptionUIItem
|
|
|
|
{
|
|
|
|
public:
|
2019-10-15 16:49:49 -05:00
|
|
|
GncOptionUIType get_ui_type() const { return m_ui_type; }
|
|
|
|
GncOptionUIItem* const get_ui_item() const {return m_ui_item; }
|
2019-10-01 18:03:15 -05:00
|
|
|
void clear_ui_item() { m_ui_item = nullptr; }
|
2019-10-03 15:30:49 -05:00
|
|
|
void set_ui_item(GncOptionUIItem* ui_item)
|
2019-09-20 15:56:54 -05:00
|
|
|
{
|
|
|
|
if (m_ui_type == GncOptionUIType::INTERNAL)
|
|
|
|
{
|
2019-10-01 18:03:15 -05:00
|
|
|
std::string error{"INTERNAL option, setting the UI item forbidden."};
|
2019-09-20 15:56:54 -05:00
|
|
|
throw std::logic_error(std::move(error));
|
|
|
|
}
|
|
|
|
m_ui_item = ui_item;
|
|
|
|
}
|
2019-10-01 18:03:15 -05:00
|
|
|
void make_internal()
|
|
|
|
{
|
|
|
|
if (m_ui_item != nullptr)
|
|
|
|
{
|
|
|
|
std::string error("Option has a UI Element, can't be INTERNAL.");
|
|
|
|
throw std::logic_error(std::move(error));
|
|
|
|
}
|
|
|
|
m_ui_type = GncOptionUIType::INTERNAL;
|
|
|
|
}
|
2019-09-20 15:56:54 -05:00
|
|
|
protected:
|
|
|
|
OptionUIItem(GncOptionUIType ui_type) :
|
|
|
|
m_ui_item{nullptr}, m_ui_type{ui_type} {}
|
|
|
|
OptionUIItem(const OptionUIItem&) = default;
|
|
|
|
OptionUIItem(OptionUIItem&&) = default;
|
|
|
|
~OptionUIItem() = default;
|
|
|
|
OptionUIItem& operator=(const OptionUIItem&) = default;
|
|
|
|
OptionUIItem& operator=(OptionUIItem&&) = default;
|
|
|
|
private:
|
2019-10-03 15:30:49 -05:00
|
|
|
GncOptionUIItem* m_ui_item;
|
2019-09-20 15:56:54 -05:00
|
|
|
GncOptionUIType m_ui_type;
|
|
|
|
};
|
|
|
|
|
2019-07-09 11:40:29 -05:00
|
|
|
template <typename ValueType>
|
|
|
|
class GncOptionValue :
|
2019-09-20 15:56:54 -05:00
|
|
|
public OptionClassifier, public OptionUIItem
|
2019-07-09 11:40:29 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
GncOptionValue<ValueType>(const char* section, const char* name,
|
|
|
|
const char* key, const char* doc_string,
|
2019-09-20 15:56:54 -05:00
|
|
|
ValueType value,
|
|
|
|
GncOptionUIType ui_type = GncOptionUIType::INTERNAL) :
|
2019-07-09 11:40:29 -05:00
|
|
|
OptionClassifier{section, name, key, doc_string},
|
2019-09-20 15:56:54 -05:00
|
|
|
OptionUIItem(ui_type),
|
2019-07-09 11:40:29 -05:00
|
|
|
m_value{value}, m_default_value{value} {}
|
2019-10-15 16:49:49 -05:00
|
|
|
GncOptionValue<ValueType>(const GncOptionValue<ValueType>&) = default;
|
|
|
|
GncOptionValue<ValueType>(GncOptionValue<ValueType>&&) = default;
|
|
|
|
GncOptionValue<ValueType>& operator=(const GncOptionValue<ValueType>&) = default;
|
|
|
|
GncOptionValue<ValueType>& operator=(GncOptionValue<ValueType>&&) = default;
|
2019-07-09 11:40:29 -05:00
|
|
|
ValueType get_value() const { return m_value; }
|
|
|
|
ValueType get_default_value() const { return m_default_value; }
|
|
|
|
void set_value(ValueType new_value) { m_value = new_value; }
|
2019-08-06 12:17:06 -05:00
|
|
|
private:
|
2019-07-09 11:40:29 -05:00
|
|
|
ValueType m_value;
|
|
|
|
ValueType m_default_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename ValueType>
|
|
|
|
class GncOptionValidatedValue :
|
2019-09-20 15:56:54 -05:00
|
|
|
public OptionClassifier, public OptionUIItem
|
2019-07-09 11:40:29 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
GncOptionValidatedValue<ValueType>(const char* section, const char* name,
|
|
|
|
const char* key, const char* doc_string,
|
|
|
|
ValueType value,
|
2019-09-20 15:56:54 -05:00
|
|
|
std::function<bool(ValueType)>validator,
|
|
|
|
GncOptionUIType ui_type = GncOptionUIType::INTERNAL
|
|
|
|
) :
|
2019-07-09 11:40:29 -05:00
|
|
|
OptionClassifier{section, name, key, doc_string},
|
2019-09-20 15:56:54 -05:00
|
|
|
OptionUIItem(ui_type),
|
2019-07-09 11:40:29 -05:00
|
|
|
m_value{value}, m_default_value{value}, m_validator{validator}
|
|
|
|
{
|
|
|
|
if (!this->validate(value))
|
|
|
|
throw std::invalid_argument("Attempt to create GncValidatedOption with bad value.");
|
|
|
|
}
|
|
|
|
GncOptionValidatedValue<ValueType>(const char* section, const char* name,
|
|
|
|
const char* key, const char* doc_string,
|
|
|
|
ValueType value,
|
|
|
|
std::function<bool(ValueType)>validator,
|
|
|
|
ValueType val_data) :
|
|
|
|
OptionClassifier{section, name, key, doc_string}, m_value{value},
|
|
|
|
m_default_value{value}, m_validator{validator}, m_validation_data{val_data}
|
|
|
|
{
|
|
|
|
if (!this->validate(value))
|
|
|
|
throw std::invalid_argument("Attempt to create GncValidatedOption with bad value.");
|
|
|
|
}
|
2019-10-15 16:49:49 -05:00
|
|
|
GncOptionValidatedValue<ValueType>(const GncOptionValidatedValue<ValueType>&) = default;
|
|
|
|
GncOptionValidatedValue<ValueType>(GncOptionValidatedValue<ValueType>&&) = default;
|
|
|
|
GncOptionValidatedValue<ValueType>& operator=(const GncOptionValidatedValue<ValueType>&) = default;
|
|
|
|
GncOptionValidatedValue<ValueType>& operator=(GncOptionValidatedValue<ValueType>&&) = default;
|
2019-07-09 11:40:29 -05:00
|
|
|
ValueType get_value() const { return m_value; }
|
|
|
|
ValueType get_default_value() const { return m_default_value; }
|
|
|
|
bool validate(ValueType value) { return m_validator(value); }
|
|
|
|
void set_value(ValueType value)
|
|
|
|
{
|
|
|
|
if (this->validate(value))
|
|
|
|
m_value = value;
|
|
|
|
else
|
|
|
|
throw std::invalid_argument("Validation failed, value not set.");
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
ValueType m_value;
|
|
|
|
ValueType m_default_value;
|
|
|
|
std::function<bool(ValueType)> m_validator; //11
|
|
|
|
ValueType m_validation_data;
|
|
|
|
};
|
|
|
|
|
2019-10-31 20:17:03 -05:00
|
|
|
/**
|
|
|
|
* Used for numeric ranges and plot sizes.
|
|
|
|
*/
|
|
|
|
|
2019-10-01 18:03:15 -05:00
|
|
|
template <typename ValueType>
|
|
|
|
class GncOptionRangeValue :
|
|
|
|
public OptionClassifier, public OptionUIItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GncOptionRangeValue<ValueType>(const char* section, const char* name,
|
|
|
|
const char* key, const char* doc_string,
|
|
|
|
ValueType value, ValueType min,
|
|
|
|
ValueType max, ValueType step) :
|
|
|
|
OptionClassifier{section, name, key, doc_string},
|
|
|
|
OptionUIItem(GncOptionUIType::NUMBER_RANGE),
|
|
|
|
m_value{value >= min && value <= max ? value : min},
|
|
|
|
m_default_value{value >= min && value <= max ? value : min},
|
2019-10-31 20:17:03 -05:00
|
|
|
m_min{min}, m_max{max}, m_step{step} {}
|
2019-10-01 18:03:15 -05:00
|
|
|
|
2019-10-15 16:49:49 -05:00
|
|
|
GncOptionRangeValue<ValueType>(const GncOptionRangeValue<ValueType>&) = default;
|
|
|
|
GncOptionRangeValue<ValueType>(GncOptionRangeValue<ValueType>&&) = default;
|
|
|
|
GncOptionRangeValue<ValueType>& operator=(const GncOptionRangeValue<ValueType>&) = default;
|
|
|
|
GncOptionRangeValue<ValueType>& operator=(GncOptionRangeValue<ValueType>&&) = default;
|
2019-10-01 18:03:15 -05:00
|
|
|
ValueType get_value() const { return m_value; }
|
|
|
|
ValueType get_default_value() const { return m_default_value; }
|
|
|
|
bool validate(ValueType value) { return value >= m_min && value <= m_max; }
|
|
|
|
void set_value(ValueType value)
|
|
|
|
{
|
|
|
|
if (this->validate(value))
|
|
|
|
m_value = value;
|
|
|
|
else
|
|
|
|
throw std::invalid_argument("Validation failed, value not set.");
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
ValueType m_value;
|
|
|
|
ValueType m_default_value;
|
|
|
|
ValueType m_min;
|
|
|
|
ValueType m_max;
|
|
|
|
ValueType m_step;
|
|
|
|
};
|
|
|
|
|
2019-10-20 17:13:33 -05:00
|
|
|
/** MultiChoice options have a vector of valid options
|
|
|
|
* (GncMultiChoiceOptionChoices) and validate the selection as being one of
|
|
|
|
* those values. The value is the index of the selected item in the vector. The
|
|
|
|
* tuple contains three strings, a key, a display
|
|
|
|
* name and a brief description for the tooltip. Both name and description
|
|
|
|
* should be localized at the point of use.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
using GncMultiChoiceOptionEntry = std::tuple<const std::string,
|
|
|
|
const std::string,
|
|
|
|
const std::string>;
|
|
|
|
using GncMultiChoiceOptionChoices = std::vector<GncMultiChoiceOptionEntry>;
|
|
|
|
|
|
|
|
class GncOptionMultichoiceValue :
|
|
|
|
public OptionClassifier, public OptionUIItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GncOptionMultichoiceValue(const char* section, const char* name,
|
2019-10-29 18:34:44 -05:00
|
|
|
const char* key, const char* doc_string,
|
2019-11-02 13:06:12 -05:00
|
|
|
const char* value,
|
2019-10-20 17:13:33 -05:00
|
|
|
GncMultiChoiceOptionChoices&& choices,
|
|
|
|
GncOptionUIType ui_type = GncOptionUIType::MULTICHOICE) :
|
|
|
|
OptionClassifier{section, name, key, doc_string},
|
|
|
|
OptionUIItem(ui_type),
|
2019-11-02 13:06:12 -05:00
|
|
|
m_value{}, m_default_value{}, m_choices{std::move(choices)} {
|
|
|
|
if (value)
|
|
|
|
{
|
|
|
|
if (auto index = find_key(value);
|
|
|
|
index != std::numeric_limits<std::size_t>::max())
|
|
|
|
{
|
|
|
|
m_value = index;
|
|
|
|
m_default_value = index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-20 17:13:33 -05:00
|
|
|
|
|
|
|
GncOptionMultichoiceValue(const GncOptionMultichoiceValue&) = default;
|
|
|
|
GncOptionMultichoiceValue(GncOptionMultichoiceValue&&) = default;
|
|
|
|
GncOptionMultichoiceValue& operator=(const GncOptionMultichoiceValue&) = default;
|
|
|
|
GncOptionMultichoiceValue& operator=(GncOptionMultichoiceValue&&) = default;
|
|
|
|
|
|
|
|
const std::string& get_value() const
|
|
|
|
{
|
|
|
|
return std::get<0>(m_choices.at(m_value));
|
|
|
|
}
|
|
|
|
const std::string& get_default_value() const
|
|
|
|
{
|
|
|
|
return std::get<0>(m_choices.at(m_default_value));
|
|
|
|
}
|
|
|
|
bool validate(const std::string& value) const noexcept
|
|
|
|
{
|
|
|
|
auto index = find_key(value);
|
|
|
|
return index != std::numeric_limits<std::size_t>::max();
|
|
|
|
|
|
|
|
}
|
|
|
|
void set_value(const std::string& value)
|
|
|
|
{
|
|
|
|
auto index = find_key(value);
|
|
|
|
if (index != std::numeric_limits<std::size_t>::max())
|
|
|
|
m_value = index;
|
|
|
|
else
|
|
|
|
throw std::invalid_argument("Value not a valid choice.");
|
|
|
|
|
|
|
|
}
|
|
|
|
std::size_t num_permissible_values() const noexcept
|
|
|
|
{
|
|
|
|
return m_choices.size();
|
|
|
|
}
|
|
|
|
std::size_t permissible_value_index(const std::string& key) const noexcept
|
|
|
|
{
|
|
|
|
return find_key(key);
|
|
|
|
}
|
|
|
|
const std::string& permissible_value(std::size_t index) const
|
|
|
|
{
|
|
|
|
return std::get<0>(m_choices.at(index));
|
|
|
|
}
|
|
|
|
const std::string& permissible_value_name(std::size_t index) const
|
|
|
|
{
|
|
|
|
return std::get<1>(m_choices.at(index));
|
|
|
|
}
|
|
|
|
const std::string& permissible_value_description(std::size_t index) const
|
|
|
|
{
|
|
|
|
return std::get<2>(m_choices.at(index));
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
std::size_t find_key (const std::string& key) const noexcept
|
|
|
|
{
|
|
|
|
auto iter = std::find_if(m_choices.begin(), m_choices.end(),
|
|
|
|
[key](auto choice) {
|
|
|
|
return std::get<0>(choice) == key; });
|
|
|
|
if (iter != m_choices.end())
|
|
|
|
return iter - m_choices.begin();
|
|
|
|
else
|
|
|
|
return std::numeric_limits<std::size_t>::max();
|
|
|
|
|
|
|
|
}
|
|
|
|
std::size_t m_value;
|
|
|
|
std::size_t m_default_value;
|
|
|
|
GncMultiChoiceOptionChoices m_choices;
|
|
|
|
};
|
|
|
|
|
2019-11-17 13:15:56 -06:00
|
|
|
/** Account options
|
|
|
|
*
|
|
|
|
* Set one or more accounts on which to report, optionally restricted to certain
|
|
|
|
* account types. Many calls to make-account-list-option will pass a get-default
|
|
|
|
* function that retrieves all of the accounts of a list of types.
|
|
|
|
*
|
|
|
|
* Some reports (examples/daily-reports.scm and standard/ account-piechart.scm,
|
|
|
|
* advanced-portfolio.scm, category-barchart.scm, net-charts.scm, and
|
|
|
|
* portfolio.scm) also provide a validator that rejects accounts that don't meet
|
|
|
|
* an account-type criterion.
|
|
|
|
*
|
|
|
|
* There are two types of option, account-list which permits more than one
|
|
|
|
* account selection and account-sel, which doesn't.
|
|
|
|
*
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
using GncOptionAccountList = std::vector<const Account*>;
|
|
|
|
using GncOptionAccountTypeList = std::vector<GNCAccountType>;
|
|
|
|
|
|
|
|
class GncOptionAccountValue :
|
|
|
|
public OptionClassifier, public OptionUIItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GncOptionAccountValue(const char* section, const char* name,
|
|
|
|
const char* key, const char* doc_string,
|
|
|
|
GncOptionUIType ui_type) :
|
|
|
|
OptionClassifier{section, name, key, doc_string},
|
|
|
|
OptionUIItem(ui_type), m_value{}, m_default_value{}, m_allowed{} {}
|
|
|
|
|
|
|
|
GncOptionAccountValue(const char* section, const char* name,
|
|
|
|
const char* key, const char* doc_string,
|
|
|
|
GncOptionUIType ui_type,
|
|
|
|
const GncOptionAccountList& value) :
|
|
|
|
OptionClassifier{section, name, key, doc_string},
|
|
|
|
OptionUIItem(ui_type),
|
|
|
|
m_value{value},
|
|
|
|
m_default_value{std::move(value)}, m_allowed{} {}
|
|
|
|
GncOptionAccountValue(const char* section, const char* name,
|
|
|
|
const char* key, const char* doc_string,
|
|
|
|
GncOptionUIType ui_type,
|
|
|
|
GncOptionAccountTypeList&& allowed) :
|
|
|
|
OptionClassifier{section, name, key, doc_string},
|
|
|
|
OptionUIItem(ui_type),
|
|
|
|
m_value{},
|
|
|
|
m_default_value{}, m_allowed{std::move(allowed)} {}
|
|
|
|
GncOptionAccountValue(const char* section, const char* name,
|
|
|
|
const char* key, const char* doc_string,
|
|
|
|
GncOptionUIType ui_type,
|
|
|
|
const GncOptionAccountList& value,
|
|
|
|
GncOptionAccountTypeList&& allowed) :
|
|
|
|
OptionClassifier{section, name, key, doc_string},
|
|
|
|
OptionUIItem(ui_type),
|
|
|
|
m_value{},
|
|
|
|
m_default_value{}, m_allowed{std::move(allowed)} {
|
|
|
|
if (!validate(value))
|
|
|
|
throw std::invalid_argument("Supplied Value not in allowed set.");
|
|
|
|
m_value = value;
|
|
|
|
m_default_value = std::move(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
const GncOptionAccountList& get_value() const { return m_value; }
|
|
|
|
const GncOptionAccountList& get_default_value() const { return m_default_value; }
|
|
|
|
bool validate (const GncOptionAccountList& values) const;
|
|
|
|
void set_value (const GncOptionAccountList& values) {
|
|
|
|
if (validate(values))
|
|
|
|
//throw!
|
|
|
|
m_value = values;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
GncOptionAccountList m_value;
|
|
|
|
GncOptionAccountList m_default_value;
|
|
|
|
GncOptionAccountTypeList m_allowed;
|
|
|
|
};
|
|
|
|
|
2019-10-29 18:34:44 -05:00
|
|
|
/** Date options
|
|
|
|
* A legal date value is a pair of either and a RelativeDatePeriod, the absolute flag and a time64, or for legacy purposes the absolute flag and a timespec.
|
|
|
|
* The original design allowed custom RelativeDatePeriods, but that facility is unused so we'll go with compiled-in enums.
|
|
|
|
|
|
|
|
gnc-date-option-show-time? -- option_data[1]
|
|
|
|
gnc-date-option-get-subtype -- option_data[0]
|
|
|
|
gnc-date-option-value-type m_value
|
|
|
|
gnc-date-option-absolute-time
|
|
|
|
gnc-date-option-relative-time
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum class DateType
|
|
|
|
{
|
|
|
|
ABSOLUTE,
|
|
|
|
STARTING,
|
|
|
|
ENDING,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class RelativeDatePeriod : int64_t
|
|
|
|
{
|
|
|
|
TODAY,
|
|
|
|
THIS_MONTH,
|
|
|
|
PREV_MONTH,
|
|
|
|
CURRENT_QUARTER,
|
|
|
|
PREV_QUARTER,
|
|
|
|
CAL_YEAR,
|
|
|
|
PREV_YEAR,
|
|
|
|
ACCOUNTING_PERIOD
|
|
|
|
};
|
|
|
|
|
|
|
|
using DateSetterValue = std::pair<DateType, int64_t>;
|
|
|
|
class GncOptionDateValue : public OptionClassifier, public OptionUIItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GncOptionDateValue(const char* section, const char* name,
|
|
|
|
const char* key, const char* doc_string) :
|
|
|
|
OptionClassifier{section, name, key, doc_string},
|
|
|
|
OptionUIItem(GncOptionUIType::DATE),
|
|
|
|
m_type{DateType::ABSOLUTE}, m_period{RelativeDatePeriod::TODAY},
|
|
|
|
m_date{static_cast<time64>(GncDateTime())} {}
|
|
|
|
GncOptionDateValue(const GncOptionDateValue&) = default;
|
|
|
|
GncOptionDateValue(GncOptionDateValue&&) = default;
|
|
|
|
GncOptionDateValue& operator=(const GncOptionDateValue&) = default;
|
|
|
|
GncOptionDateValue& operator=(GncOptionDateValue&&) = default;
|
|
|
|
time64 get_value() const;
|
|
|
|
time64 get_default_value() const { return static_cast<time64>(GncDateTime()); }
|
|
|
|
void set_value(DateSetterValue);
|
|
|
|
void set_value(time64 time) {
|
|
|
|
m_type = DateType::ABSOLUTE;
|
|
|
|
m_period = RelativeDatePeriod::TODAY;
|
|
|
|
m_date = time;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
DateType m_type;
|
|
|
|
RelativeDatePeriod m_period;
|
|
|
|
time64 m_date;
|
|
|
|
};
|
|
|
|
|
2019-10-15 16:49:49 -05:00
|
|
|
using GncOptionVariant = std::variant<GncOptionValue<std::string>,
|
2019-10-29 18:34:44 -05:00
|
|
|
GncOptionValue<bool>,
|
|
|
|
GncOptionValue<int64_t>,
|
|
|
|
GncOptionValue<QofInstance*>,
|
|
|
|
GncOptionValue<QofQuery*>,
|
2019-11-17 13:15:56 -06:00
|
|
|
GncOptionAccountValue,
|
2019-10-29 18:34:44 -05:00
|
|
|
GncOptionMultichoiceValue,
|
|
|
|
GncOptionRangeValue<int>,
|
2019-10-31 20:17:03 -05:00
|
|
|
GncOptionRangeValue<double>,
|
2019-10-29 18:34:44 -05:00
|
|
|
GncOptionValidatedValue<QofInstance*>,
|
|
|
|
GncOptionDateValue>;
|
2019-10-20 17:13:33 -05:00
|
|
|
|
2019-07-20 17:09:11 -05:00
|
|
|
class GncOption
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
template <typename OptionType>
|
|
|
|
GncOption(OptionType option) : m_option{option} {}
|
2019-08-03 12:38:05 -05:00
|
|
|
|
2019-08-05 13:03:34 -05:00
|
|
|
template <typename ValueType>
|
|
|
|
GncOption(const char* section, const char* name,
|
|
|
|
const char* key, const char* doc_string,
|
2019-09-20 15:56:54 -05:00
|
|
|
ValueType value,
|
|
|
|
GncOptionUIType ui_type = GncOptionUIType::INTERNAL) :
|
2019-08-05 13:03:34 -05:00
|
|
|
m_option{GncOptionValue<ValueType> {
|
2019-09-20 15:56:54 -05:00
|
|
|
section, name, key, doc_string, value, ui_type}} {}
|
2019-08-05 13:03:34 -05:00
|
|
|
|
2019-07-20 17:09:11 -05:00
|
|
|
template <typename ValueType> ValueType get_value() const
|
|
|
|
{
|
2019-10-15 16:49:49 -05:00
|
|
|
return std::visit([](const auto& option)->ValueType {
|
2019-10-20 17:13:33 -05:00
|
|
|
if constexpr (std::is_same_v<std::decay_t<decltype(option.get_value())>, std::decay_t<ValueType>>)
|
2019-10-15 16:49:49 -05:00
|
|
|
return option.get_value();
|
2019-10-29 18:34:44 -05:00
|
|
|
return ValueType {};
|
2019-10-15 16:49:49 -05:00
|
|
|
}, m_option);
|
2019-07-20 17:09:11 -05:00
|
|
|
}
|
2019-10-15 18:33:55 -05:00
|
|
|
|
2019-07-20 17:09:11 -05:00
|
|
|
template <typename ValueType> ValueType get_default_value() const
|
|
|
|
{
|
2019-10-15 16:49:49 -05:00
|
|
|
return std::visit([](const auto& option)->ValueType {
|
2019-10-20 17:13:33 -05:00
|
|
|
if constexpr (std::is_same_v<std::decay_t<decltype(option.get_value())>, std::decay_t<ValueType>>)
|
2019-10-15 16:49:49 -05:00
|
|
|
return option.get_default_value();
|
2019-10-29 18:34:44 -05:00
|
|
|
return ValueType {};
|
2019-10-15 16:49:49 -05:00
|
|
|
}, m_option);
|
|
|
|
|
2019-07-20 17:09:11 -05:00
|
|
|
}
|
2019-10-15 18:33:55 -05:00
|
|
|
|
2019-07-20 17:09:11 -05:00
|
|
|
template <typename ValueType> void set_value(ValueType value)
|
|
|
|
{
|
2019-10-15 16:49:49 -05:00
|
|
|
std::visit([value](auto& option) {
|
2019-10-20 17:13:33 -05:00
|
|
|
if constexpr (std::is_same_v<std::decay_t<decltype(option.get_value())>, std::decay_t<ValueType>>)
|
2019-10-29 18:34:44 -05:00
|
|
|
option.set_value(value);
|
2019-10-15 16:49:49 -05:00
|
|
|
}, m_option);
|
2019-07-20 17:09:11 -05:00
|
|
|
}
|
2019-08-03 12:38:05 -05:00
|
|
|
const std::string& get_section() const
|
|
|
|
{
|
2019-10-15 16:49:49 -05:00
|
|
|
return std::visit([](const auto& option)->const std::string& {
|
|
|
|
return option.m_section;
|
|
|
|
}, m_option);
|
2019-08-03 12:38:05 -05:00
|
|
|
}
|
|
|
|
const std::string& get_name() const
|
|
|
|
{
|
2019-10-15 16:49:49 -05:00
|
|
|
return std::visit([](const auto& option)->const std::string& {
|
|
|
|
return option.m_name;
|
|
|
|
}, m_option);
|
2019-08-03 12:38:05 -05:00
|
|
|
}
|
|
|
|
const std::string& get_key() const
|
|
|
|
{
|
2019-10-15 16:49:49 -05:00
|
|
|
return std::visit([](const auto& option)->const std::string& {
|
|
|
|
return option.m_sort_tag;
|
|
|
|
}, m_option);
|
2019-08-03 12:38:05 -05:00
|
|
|
}
|
|
|
|
const std::string& get_docstring() const
|
|
|
|
{
|
2019-10-15 16:49:49 -05:00
|
|
|
return std::visit([](const auto& option)->const std::string& {
|
|
|
|
return option.m_doc_string;
|
|
|
|
}, m_option);
|
2019-08-03 12:38:05 -05:00
|
|
|
}
|
2019-10-03 15:30:49 -05:00
|
|
|
void set_ui_item(GncOptionUIItem* ui_elem)
|
2019-09-20 15:56:54 -05:00
|
|
|
{
|
2019-10-15 16:49:49 -05:00
|
|
|
std::visit([ui_elem](auto& option) {
|
|
|
|
option.set_ui_item(ui_elem);
|
|
|
|
}, m_option);
|
2019-09-20 15:56:54 -05:00
|
|
|
}
|
2019-10-15 16:49:49 -05:00
|
|
|
const GncOptionUIType get_ui_type() const
|
2019-09-20 15:56:54 -05:00
|
|
|
{
|
2019-10-15 16:49:49 -05:00
|
|
|
return std::visit([](const auto& option)->GncOptionUIType {
|
|
|
|
return option.get_ui_type();
|
|
|
|
}, m_option);
|
2019-09-20 15:56:54 -05:00
|
|
|
}
|
2019-10-15 16:49:49 -05:00
|
|
|
GncOptionUIItem* const get_ui_item() const
|
2019-09-20 15:56:54 -05:00
|
|
|
{
|
2019-10-15 16:49:49 -05:00
|
|
|
return std::visit([](const auto& option)->GncOptionUIItem* {
|
|
|
|
return option.get_ui_item();
|
|
|
|
}, m_option);
|
2019-09-20 15:56:54 -05:00
|
|
|
}
|
2019-10-01 18:03:15 -05:00
|
|
|
void make_internal()
|
|
|
|
{
|
2019-10-15 16:49:49 -05:00
|
|
|
std::visit([](auto& option) {
|
|
|
|
option.make_internal();
|
|
|
|
}, m_option);
|
2019-10-01 18:03:15 -05:00
|
|
|
}
|
2019-11-01 18:14:30 -05:00
|
|
|
GncOptionVariant& _get_option() const { return m_option; }
|
2019-07-20 17:09:11 -05:00
|
|
|
private:
|
2019-11-01 18:14:30 -05:00
|
|
|
mutable GncOptionVariant m_option;
|
2019-07-20 17:09:11 -05:00
|
|
|
};
|
|
|
|
|
2019-07-09 11:40:29 -05:00
|
|
|
#endif //GNC_OPTION_HPP_
|