summaryrefslogtreecommitdiffstats
path: root/ColorsPanel.c
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2006-05-30 13:52:12 +0000
committerHisham Muhammad <hisham@gobolinux.org>2006-05-30 13:52:12 +0000
commit73de9f1ed4fad1c55a1116c411a1e8bb13c0ae72 (patch)
treefdf44194175e52255dd9bd6130062b2fdbb3fa7e /ColorsPanel.c
parentc2cdcd0c1d2950291243b3a8645b5f061a0cdb2a (diff)
Rename ListBox'es to Panel's, matching dit.
Diffstat (limited to 'ColorsPanel.c')
-rw-r--r--ColorsPanel.c99
1 files changed, 99 insertions, 0 deletions
diff --git a/ColorsPanel.c b/ColorsPanel.c
new file mode 100644
index 00000000..664c04bc
--- /dev/null
+++ b/ColorsPanel.c
@@ -0,0 +1,99 @@
+
+#include "CRT.h"
+#include "ColorsPanel.h"
+
+#include "Panel.h"
+#include "CheckItem.h"
+#include "Settings.h"
+#include "ScreenManager.h"
+
+#include "debug.h"
+#include <assert.h>
+
+// TO ADD A NEW SCHEME:
+// * Increment the size of bool check in ColorsPanel.h
+// * Add the entry in the ColorSchemes array below in the file
+// * Add a define in CRT.h that matches the order of the array
+// * Add the colors in CRT_setColors
+
+/*{
+
+typedef struct ColorsPanel_ {
+ Panel super;
+
+ Settings* settings;
+ ScreenManager* scr;
+ bool check[5];
+} ColorsPanel;
+
+}*/
+
+/* private */
+static char* ColorSchemes[] = {
+ "Default",
+ "Monochromatic",
+ "Black on White",
+ "Light Terminal",
+ "MC",
+ "Black Night",
+ NULL
+};
+
+ColorsPanel* ColorsPanel_new(Settings* settings, ScreenManager* scr) {
+ ColorsPanel* this = (ColorsPanel*) malloc(sizeof(ColorsPanel));
+ Panel* super = (Panel*) this;
+ Panel_init(super, 1, 1, 1, 1, CHECKITEM_CLASS, true);
+ ((Object*)this)->delete = ColorsPanel_delete;
+
+ this->settings = settings;
+ this->scr = scr;
+ super->eventHandler = ColorsPanel_EventHandler;
+
+ Panel_setHeader(super, "Colors");
+ for (int i = 0; ColorSchemes[i] != NULL; i++) {
+ Panel_add(super, (Object*) CheckItem_new(String_copy(ColorSchemes[i]), &(this->check[i])));
+ this->check[i] = false;
+ }
+ this->check[settings->colorScheme] = true;
+ return this;
+}
+
+void ColorsPanel_delete(Object* object) {
+ Panel* super = (Panel*) object;
+ ColorsPanel* this = (ColorsPanel*) object;
+ Panel_done(super);
+ free(this);
+}
+
+HandlerResult ColorsPanel_EventHandler(Panel* super, int ch) {
+ ColorsPanel* this = (ColorsPanel*) super;
+
+ HandlerResult result = IGNORED;
+ int mark = Panel_getSelectedIndex(super);
+
+ switch(ch) {
+ case 0x0a:
+ case 0x0d:
+ case KEY_ENTER:
+ case ' ':
+ for (int i = 0; ColorSchemes[i] != NULL; i++) {
+ this->check[i] = false;
+ }
+ this->check[mark] = true;
+ this->settings->colorScheme = mark;
+ result = HANDLED;
+ }
+
+ if (result == HANDLED) {
+ this->settings->changed = true;
+ Header* header = this->settings->header;
+ CRT_setColors(mark);
+ Panel* lbMenu = (Panel*) Vector_get(this->scr->items, 0);
+ Header_draw(header);
+ RichString_setAttr(&(super->header), CRT_colors[PANEL_HEADER_FOCUS]);
+ RichString_setAttr(&(lbMenu->header), CRT_colors[PANEL_HEADER_UNFOCUS]);
+ ScreenManager_resize(this->scr, this->scr->x1, header->height, this->scr->x2, this->scr->y2);
+ }
+ return result;
+}
+

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