Implemented date/time Glk functions
[projects/chimara/chimara.git] / libchimara / gestalt.c
index 1729a878350c9c333eab0f88d6ea321583f61bbd..e2eceefdfced743b2e965560aa85d6bfcf348f96 100644 (file)
@@ -1,10 +1,11 @@
 #include <stddef.h> /* Surprisingly, the only symbol needed is NULL */
+#include <config.h>
 #include "glk.h"
 
 /* Version of the Glk specification implemented by this library */
 #define MAJOR_VERSION 0
 #define MINOR_VERSION 7
-#define SUB_VERSION   0
+#define SUB_VERSION   2
 
 /**
  * glk_gestalt:
@@ -103,18 +104,47 @@ glk_gestalt_ext(glui32 sel, glui32 val, glui32 *arr, glui32 arrlen)
                /* Timer capabilities present */
                case gestalt_Timer:
                        return 1;
-                       
-               /* Unsupported capabilities */
+
+               /* Hyperlink capabilities present */
+               case gestalt_Hyperlinks:
+                       return 1;
+
+               /* Hyperlinks supported on textbuffers and textgrids */
+               case gestalt_HyperlinkInput:
+                       return val == wintype_TextBuffer || val == wintype_TextGrid;
+
+               /* Mouse support present in textgrids */
                case gestalt_MouseInput:
+                       return val == wintype_TextGrid;
+
                case gestalt_Graphics:
+                       return 1;
+
                case gestalt_DrawImage:
+                       return val == wintype_Graphics || val == wintype_TextBuffer;
+
+               case gestalt_GraphicsTransparency:
+                       return 1;
+
+               case gestalt_DateTime:
+                       return 1;
+
+               /* Capabilities supported if compiled with GStreamer */
                case gestalt_Sound:
                case gestalt_SoundVolume:
                case gestalt_SoundNotify:
-               case gestalt_Hyperlinks:
-               case gestalt_HyperlinkInput:
                case gestalt_SoundMusic:
-               case gestalt_GraphicsTransparency:
+#ifdef GSTREAMER_SOUND
+                       return 1;
+#else
+                       return 0;
+#endif
+                       
+               /* Unsupported capabilities */
+               case gestalt_LineInputEcho:
+               case gestalt_LineTerminatorKey:
+               case gestalt_LineTerminators:
+               case gestalt_UnicodeNorm:
                /* Selector not supported */    
                default:
                        return 0;