aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/api/config/items/attrbool.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Wasabi/api/config/items/attrbool.h')
-rw-r--r--Src/Wasabi/api/config/items/attrbool.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/Src/Wasabi/api/config/items/attrbool.h b/Src/Wasabi/api/config/items/attrbool.h
new file mode 100644
index 00000000..324a2e11
--- /dev/null
+++ b/Src/Wasabi/api/config/items/attrbool.h
@@ -0,0 +1,65 @@
+#ifndef _ATTRBOOL_H
+#define _ATTRBOOL_H
+
+#include "attribute.h"
+
+// inherit from this one, or just use it
+
+/**
+ Boolean configuration attributes have two values, true or false.
+ They can be used like any other config item.
+
+ @short Boolean configuration attribute.
+ @ver 1.0
+ @author Nullsoft
+ @see _int
+ @see _string
+ @see _float
+*/
+class _bool : public Attribute {
+public:
+ /**
+ Optionally set the name and default value of
+ your configuration attribute during construction.
+
+ @param name Name of the configuration attribute.
+ @param default_val Default value.
+ */
+ _bool(const wchar_t *name=NULL, int default_val=0) : Attribute(name) {
+ setValueAsInt(!!default_val, true);
+ }
+
+ // convenience operators
+ /**
+ Get the value of the attribute.
+ */
+ operator bool() { return !!getValueAsInt(); }
+
+ /**
+ Set the value of the attribute.
+ */
+ bool operator =(int newval) { setValueAsInt(!!newval); return *this; }
+
+ // from Attribute
+
+ /**
+ Get the attribute type. This will return
+ a constant representing the attribute type.
+
+ These constants can be: BOOL, FLOAT, STRING and INT.
+
+ @see AttributeType
+ @ret The attribute type.
+ */
+ virtual int getAttributeType() { return AttributeType::BOOL; }
+
+ /**
+ Get the configuration group to be used to represent
+ this attribute in the registry.
+
+ @ret Config group to be used.
+ */
+ virtual const wchar_t *getConfigGroup() { return L"studio.configgroup.bool"; }
+};
+
+#endif