summaryrefslogtreecommitdiffstats
path: root/OptionItem.c
diff options
context:
space:
mode:
authorDaniel Lange <DLange@git.local>2022-05-04 21:26:33 +0200
committerBenBE <BenBE@geshi.org>2022-05-27 19:47:06 +0200
commit999801464a8a4d818e2ee3c87855a66929538a62 (patch)
tree9e9a6782ed7464579112a9b955f2f7b97722a308 /OptionItem.c
parent0e29174211754774534a5163667a91dbaa84abee (diff)
Add some headers in the Setup -> Display options panel
Diffstat (limited to 'OptionItem.c')
-rw-r--r--OptionItem.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/OptionItem.c b/OptionItem.c
index 7ab69002..962c0a9c 100644
--- a/OptionItem.c
+++ b/OptionItem.c
@@ -25,6 +25,13 @@ static void OptionItem_delete(Object* cast) {
free(this);
}
+static void TextItem_display(const Object* cast, RichString* out) {
+ const TextItem* this = (const TextItem*)cast;
+ assert (this != NULL);
+
+ RichString_appendWide(out, CRT_colors[HELP_BOLD], this->super.text);
+}
+
static void CheckItem_display(const Object* cast, RichString* out) {
const CheckItem* this = (const CheckItem*)cast;
assert (this != NULL);
@@ -68,6 +75,16 @@ const OptionItemClass OptionItem_class = {
}
};
+const OptionItemClass TextItem_class = {
+ .super = {
+ .extends = Class(OptionItem),
+ .delete = OptionItem_delete,
+ .display = TextItem_display
+ },
+ .kind = OPTION_ITEM_TEXT
+};
+
+
const OptionItemClass CheckItem_class = {
.super = {
.extends = Class(OptionItem),
@@ -77,6 +94,7 @@ const OptionItemClass CheckItem_class = {
.kind = OPTION_ITEM_CHECK
};
+
const OptionItemClass NumberItem_class = {
.super = {
.extends = Class(OptionItem),
@@ -86,6 +104,12 @@ const OptionItemClass NumberItem_class = {
.kind = OPTION_ITEM_NUMBER
};
+TextItem* TextItem_new(const char* text) {
+ TextItem* this = AllocThis(TextItem);
+ this->super.text = xStrdup(text);
+ return this;
+}
+
CheckItem* CheckItem_newByRef(const char* text, bool* ref) {
CheckItem* this = AllocThis(CheckItem);
this->super.text = xStrdup(text);

© 2014-2024 Faster IT GmbH | imprint | privacy policy