]> git.tdb.fi Git - ext/subsurface.git/blobdiff - windows.c
Move the "Import" function from the File menu to the Log menu
[ext/subsurface.git] / windows.c
index e4c811984a942c70b254d17322381c3c13bd606f..0353adef3692625cdb077b8fe8e25de126afcd59 100644 (file)
--- a/windows.c
+++ b/windows.c
@@ -2,6 +2,7 @@
 /* implements Windows specific functions */
 #include "display-gtk.h"
 #include <windows.h>
+#define DIVELIST_DEFAULT_FONT "Sans 8"
 
 static HKEY hkey;
 
@@ -72,9 +73,32 @@ const void *subsurface_get_conf(char *name, pref_type_t type)
        return NULL;
 }
 
-void subsurface_close_conf(void)
+void subsurface_flush_conf(void)
 {
+       /* I wonder if we should even do this - it's apparently very expensive */
        if (RegFlushKey(hkey) != ERROR_SUCCESS)
                printf("RegFlushKey failed \n");
+}
+
+void subsurface_close_conf(void)
+{
        RegCloseKey(hkey);
 }
+
+const char *subsurface_USB_name()
+{
+       return "COM3";
+}
+
+const char *subsurface_icon_name()
+{
+       return "subsurface.ico";
+}
+
+void subsurface_ui_setup(GtkSettings *settings, GtkWidget *menubar,
+               GtkWidget *vbox, GtkUIManager *ui_manager)
+{
+       if (!divelist_font)
+               divelist_font = DIVELIST_DEFAULT_FONT;
+       gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, FALSE, 0);
+}