]> git.tdb.fi Git - ext/subsurface.git/blob - macos.c
Fix profile and average depth for freedives
[ext/subsurface.git] / macos.c
1 /* macos.c */
2 /* implements Mac OS X specific functions */
3 #include "display-gtk.h"
4 #include <CoreFoundation/CoreFoundation.h>
5 #include <mach-o/dyld.h>
6 #include "gtkosxapplication.h"
7
8 static GtkOSXApplication *osx_app;
9
10 /* macos defines CFSTR to create a CFString object from a constant,
11  * but no similar macros if a C string variable is supposed to be
12  * the argument. We add this here (hardcoding the default allocator
13  * and MacRoman encoding */
14 #define CFSTR_VAR(_var) CFStringCreateWithCStringNoCopy(kCFAllocatorDefault,    \
15                                         (_var), kCFStringEncodingMacRoman,      \
16                                         kCFAllocatorNull)
17
18 #define SUBSURFACE_PREFERENCES CFSTR("org.hohndel.subsurface")
19 #define ICON_NAME "Subsurface.icns"
20 #define UI_FONT "Arial Unicode MS 12"
21 #define DIVELIST_MAC_DEFAULT_FONT "Arial Unicode MS 9"
22
23 void subsurface_open_conf(void)
24 {
25         /* nothing at this time */
26 }
27
28 void subsurface_set_conf(char *name, pref_type_t type, const void *value)
29 {
30         switch (type) {
31         case PREF_BOOL:
32                 CFPreferencesSetAppValue(CFSTR_VAR(name),
33                         value == NULL ? kCFBooleanFalse : kCFBooleanTrue, SUBSURFACE_PREFERENCES);
34                 break;
35         case PREF_STRING:
36                 CFPreferencesSetAppValue(CFSTR_VAR(name), CFSTR_VAR(value), SUBSURFACE_PREFERENCES);
37         }
38 }
39
40 const void *subsurface_get_conf(char *name, pref_type_t type)
41 {
42         Boolean boolpref;
43         CFPropertyListRef strpref;
44
45         switch (type) {
46         case PREF_BOOL:
47                 boolpref = CFPreferencesGetAppBooleanValue(CFSTR_VAR(name), SUBSURFACE_PREFERENCES, FALSE);
48                 if (boolpref)
49                         return (void *) 1;
50                 else
51                         return NULL;
52         case PREF_STRING:
53                 strpref = CFPreferencesCopyAppValue(CFSTR_VAR(name), SUBSURFACE_PREFERENCES);
54                 if (!strpref)
55                         return NULL;
56                 return CFStringGetCStringPtr(strpref, kCFStringEncodingMacRoman);
57         }
58         /* we shouldn't get here, but having this line makes the compiler happy */
59         return NULL;
60 }
61
62 void subsurface_flush_conf(void)
63 {
64         int ok = CFPreferencesAppSynchronize(SUBSURFACE_PREFERENCES);
65         if (!ok)
66                 fprintf(stderr,"Could not save preferences\n");
67 }
68
69 void subsurface_close_conf(void)
70 {
71         /* Nothing */
72 }
73
74 const char *subsurface_USB_name()
75 {
76         return "/dev/tty.SLAB_USBtoUART";
77 }
78
79 const char *subsurface_icon_name()
80 {
81         static char path[1024];
82
83         snprintf(path, 1024, "%s/%s", quartz_application_get_resource_path(), ICON_NAME);
84
85         return path;
86 }
87
88 void subsurface_ui_setup(GtkSettings *settings, GtkWidget *menubar,
89                 GtkWidget *vbox, GtkUIManager *ui_manager)
90 {
91         GtkWidget *menu_item, *sep;
92
93         if (!divelist_font)
94                 divelist_font = DIVELIST_MAC_DEFAULT_FONT;
95         g_object_set(G_OBJECT(settings), "gtk-font-name", UI_FONT, NULL);
96
97         osx_app = g_object_new(GTK_TYPE_OSX_APPLICATION, NULL);
98         gtk_widget_hide (menubar);
99         gtk_osxapplication_set_menu_bar(osx_app, GTK_MENU_SHELL(menubar));
100
101         sep = gtk_ui_manager_get_widget(ui_manager, "/MainMenu/FileMenu/Separator2");
102         if (sep)
103                 gtk_widget_destroy(sep);
104
105         menu_item = gtk_ui_manager_get_widget(ui_manager, "/MainMenu/FileMenu/Quit");
106         gtk_widget_hide (menu_item);
107         menu_item = gtk_ui_manager_get_widget(ui_manager, "/MainMenu/Help/About");
108         gtk_osxapplication_insert_app_menu_item(osx_app, menu_item, 0);
109
110         sep = gtk_separator_menu_item_new();
111         g_object_ref(sep);
112         gtk_osxapplication_insert_app_menu_item (osx_app, sep, 1);
113
114         menu_item = gtk_ui_manager_get_widget(ui_manager, "/MainMenu/FileMenu/Preferences");
115         gtk_osxapplication_insert_app_menu_item(osx_app, menu_item, 2);
116
117         sep = gtk_separator_menu_item_new();
118         g_object_ref(sep);
119         gtk_osxapplication_insert_app_menu_item (osx_app, sep, 3);
120
121         gtk_osxapplication_set_use_quartz_accelerators(osx_app, TRUE);
122         gtk_osxapplication_ready(osx_app);
123 }