Part 26 of adding two new ctk configuration macros:
- CTK_CONF_ICON_BITMAPS
- CTK_CONF_ICON_TEXTMAPS

These macros control if icon bitmaps resp. textmaps are used at all. For all platfroms only needing one or the other this saves memory as the application description files don't define the unused stuff anymore. Especially for the conio based platforms this is a significant benefit.

Note: For all platforms (apart for Apple2 and Atari) I initially defined both macros as 1 which should lead to an unchanged bevaviour. I leave it up to the platform maintainers to make use of the new macros by optionally setting one to 0.
diff --git a/contiki-vic20/conf/ctk-conf.h b/contiki-vic20/conf/ctk-conf.h
index 1d093ac..6e72a8c 100644
--- a/contiki-vic20/conf/ctk-conf.h
+++ b/contiki-vic20/conf/ctk-conf.h
@@ -32,7 +32,7 @@
  *
  * This file is part of the "ctk" console GUI toolkit for cc65
  *
- * $Id: ctk-conf.h,v 1.2 2004/06/06 06:47:14 adamdunkels Exp $
+ * $Id: ctk-conf.h,v 1.3 2004/06/27 12:52:27 oliverschmidt Exp $
  *
  */
 
@@ -50,21 +50,30 @@
 /* Defines which key that is to be used for switching the frontmost
    window.  */
 #define CTK_CONF_WINDOWSWITCH_KEY     CH_F3
+
+/* Defines which key that is to be used for switching to the prevoius
+   widget.  */
 #define CTK_CONF_WIDGETUP_KEY         CH_F5
+
+/* Defines which key that is to be used for switching to the next
+   widget.  */
 #define CTK_CONF_WIDGETDOWN_KEY       CH_F7
 
-/* Toggles support for desktop icons. */
+/* Toggles support for icons. */
 #define CTK_CONF_ICONS                1 /* 107 bytes */
 
+/* Toggles support for icon bitmaps. */
+#define CTK_CONF_ICON_BITMAPS         1
+
+/* Toggles support for icon textmaps. */
+#define CTK_CONF_ICON_TEXTMAPS        1
+
 /* Toggles support for movable windows. */
 #define CTK_CONF_WINDOWMOVE           1 /* 333 bytes */
 
 /* Toggles support for closable windows. */
 #define CTK_CONF_WINDOWCLOSE          1 /* 14 bytes */
 
-/* Toggles support for multiline text entry editing. */
-#define CTK_CONF_TEXTENTRY_MULTILINE  1 /* 118 bytes */
-
 /* Toggles support for menus. */
 #define CTK_CONF_MENUS                1 /* 1384 bytes */