2011-11-24 06:56:57 +00:00
|
|
|
/* macos.c */
|
|
|
|
/* implements Mac OS X specific functions */
|
2012-09-09 16:06:44 +00:00
|
|
|
#include "dive.h"
|
2011-11-24 06:56:57 +00:00
|
|
|
#include "display-gtk.h"
|
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
2011-12-28 23:57:36 +00:00
|
|
|
#include <mach-o/dyld.h>
|
2012-01-01 21:41:47 +00:00
|
|
|
#include "gtkosxapplication.h"
|
|
|
|
|
2012-01-03 04:49:10 +00:00
|
|
|
static GtkOSXApplication *osx_app;
|
2011-11-24 06:56:57 +00:00
|
|
|
|
|
|
|
/* macos defines CFSTR to create a CFString object from a constant,
|
|
|
|
* but no similar macros if a C string variable is supposed to be
|
|
|
|
* the argument. We add this here (hardcoding the default allocator
|
|
|
|
* and MacRoman encoding */
|
|
|
|
#define CFSTR_VAR(_var) CFStringCreateWithCStringNoCopy(kCFAllocatorDefault, \
|
|
|
|
(_var), kCFStringEncodingMacRoman, \
|
|
|
|
kCFAllocatorNull)
|
|
|
|
|
2012-01-02 14:14:42 +00:00
|
|
|
#define SUBSURFACE_PREFERENCES CFSTR("org.hohndel.subsurface")
|
2012-01-02 16:26:24 +00:00
|
|
|
#define ICON_NAME "Subsurface.icns"
|
2012-01-01 21:41:47 +00:00
|
|
|
#define UI_FONT "Arial Unicode MS 12"
|
|
|
|
#define DIVELIST_MAC_DEFAULT_FONT "Arial Unicode MS 9"
|
|
|
|
|
2011-11-24 06:56:57 +00:00
|
|
|
void subsurface_open_conf(void)
|
|
|
|
{
|
2012-01-02 14:14:42 +00:00
|
|
|
/* nothing at this time */
|
2011-11-24 06:56:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void subsurface_set_conf(char *name, pref_type_t type, const void *value)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case PREF_BOOL:
|
2012-01-02 14:14:42 +00:00
|
|
|
CFPreferencesSetAppValue(CFSTR_VAR(name),
|
|
|
|
value == NULL ? kCFBooleanFalse : kCFBooleanTrue, SUBSURFACE_PREFERENCES);
|
2011-11-24 06:56:57 +00:00
|
|
|
break;
|
|
|
|
case PREF_STRING:
|
2012-01-02 14:14:42 +00:00
|
|
|
CFPreferencesSetAppValue(CFSTR_VAR(name), CFSTR_VAR(value), SUBSURFACE_PREFERENCES);
|
2011-11-24 06:56:57 +00:00
|
|
|
}
|
|
|
|
}
|
2012-01-02 14:14:42 +00:00
|
|
|
|
2011-11-24 06:56:57 +00:00
|
|
|
const void *subsurface_get_conf(char *name, pref_type_t type)
|
|
|
|
{
|
2012-01-02 14:14:42 +00:00
|
|
|
Boolean boolpref;
|
|
|
|
CFPropertyListRef strpref;
|
2011-11-24 06:56:57 +00:00
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case PREF_BOOL:
|
2012-01-02 14:14:42 +00:00
|
|
|
boolpref = CFPreferencesGetAppBooleanValue(CFSTR_VAR(name), SUBSURFACE_PREFERENCES, FALSE);
|
|
|
|
if (boolpref)
|
2011-11-24 06:56:57 +00:00
|
|
|
return (void *) 1;
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
case PREF_STRING:
|
2012-01-02 14:14:42 +00:00
|
|
|
strpref = CFPreferencesCopyAppValue(CFSTR_VAR(name), SUBSURFACE_PREFERENCES);
|
|
|
|
if (!strpref)
|
|
|
|
return NULL;
|
2012-09-12 03:52:54 +00:00
|
|
|
return strdup(CFStringGetCStringPtr(strpref, kCFStringEncodingMacRoman));
|
2011-11-24 06:56:57 +00:00
|
|
|
}
|
|
|
|
/* we shouldn't get here, but having this line makes the compiler happy */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-05-02 17:03:48 +00:00
|
|
|
void subsurface_flush_conf(void)
|
2011-11-24 06:56:57 +00:00
|
|
|
{
|
2012-01-02 14:14:42 +00:00
|
|
|
int ok = CFPreferencesAppSynchronize(SUBSURFACE_PREFERENCES);
|
|
|
|
if (!ok)
|
|
|
|
fprintf(stderr,"Could not save preferences\n");
|
2011-11-24 06:56:57 +00:00
|
|
|
}
|
2011-12-14 04:34:56 +00:00
|
|
|
|
2012-05-02 17:03:48 +00:00
|
|
|
void subsurface_close_conf(void)
|
|
|
|
{
|
|
|
|
/* Nothing */
|
|
|
|
}
|
|
|
|
|
2011-12-14 04:34:56 +00:00
|
|
|
const char *subsurface_USB_name()
|
|
|
|
{
|
2011-12-15 04:49:40 +00:00
|
|
|
return "/dev/tty.SLAB_USBtoUART";
|
2011-12-14 04:34:56 +00:00
|
|
|
}
|
2011-12-28 23:57:36 +00:00
|
|
|
|
|
|
|
const char *subsurface_icon_name()
|
|
|
|
{
|
|
|
|
static char path[1024];
|
2012-01-02 16:26:24 +00:00
|
|
|
|
|
|
|
snprintf(path, 1024, "%s/%s", quartz_application_get_resource_path(), ICON_NAME);
|
|
|
|
|
|
|
|
return path;
|
2011-12-28 23:57:36 +00:00
|
|
|
}
|
2012-01-01 21:41:47 +00:00
|
|
|
|
2012-09-09 16:06:44 +00:00
|
|
|
const char *subsurface_default_filename()
|
|
|
|
{
|
|
|
|
if (default_filename) {
|
2012-09-16 03:51:06 +00:00
|
|
|
return strdup(default_filename);
|
2012-09-09 16:06:44 +00:00
|
|
|
} else {
|
|
|
|
const char *home, *user;
|
|
|
|
char *buffer;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
home = g_get_home_dir();
|
|
|
|
user = g_get_user_name();
|
|
|
|
len = strlen(home) + strlen(user) + 45;
|
|
|
|
buffer = malloc(len);
|
|
|
|
snprintf(buffer, len, "%s/Library/Application Support/Subsurface/%s.xml", home, user);
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-12 16:18:56 +00:00
|
|
|
static void show_main_window(GtkWidget *w, gpointer data)
|
|
|
|
{
|
|
|
|
gtk_widget_show(main_window);
|
|
|
|
gtk_window_present(GTK_WINDOW(main_window));
|
|
|
|
}
|
|
|
|
|
2012-01-01 21:41:47 +00:00
|
|
|
void subsurface_ui_setup(GtkSettings *settings, GtkWidget *menubar,
|
2012-01-03 04:49:10 +00:00
|
|
|
GtkWidget *vbox, GtkUIManager *ui_manager)
|
2012-01-01 21:41:47 +00:00
|
|
|
{
|
2012-01-03 04:49:10 +00:00
|
|
|
GtkWidget *menu_item, *sep;
|
|
|
|
|
2012-01-01 21:41:47 +00:00
|
|
|
if (!divelist_font)
|
|
|
|
divelist_font = DIVELIST_MAC_DEFAULT_FONT;
|
|
|
|
g_object_set(G_OBJECT(settings), "gtk-font-name", UI_FONT, NULL);
|
|
|
|
|
2012-01-03 04:49:10 +00:00
|
|
|
osx_app = g_object_new(GTK_TYPE_OSX_APPLICATION, NULL);
|
2012-01-01 21:41:47 +00:00
|
|
|
gtk_widget_hide (menubar);
|
2012-01-03 04:49:10 +00:00
|
|
|
gtk_osxapplication_set_menu_bar(osx_app, GTK_MENU_SHELL(menubar));
|
2012-01-03 19:18:04 +00:00
|
|
|
|
2012-09-18 12:08:23 +00:00
|
|
|
sep = gtk_ui_manager_get_widget(ui_manager, "/MainMenu/FileMenu/Separator3");
|
2012-08-18 02:52:49 +00:00
|
|
|
if (sep)
|
|
|
|
gtk_widget_destroy(sep);
|
2012-01-03 19:18:04 +00:00
|
|
|
|
2012-01-03 04:49:10 +00:00
|
|
|
menu_item = gtk_ui_manager_get_widget(ui_manager, "/MainMenu/FileMenu/Quit");
|
|
|
|
gtk_widget_hide (menu_item);
|
|
|
|
menu_item = gtk_ui_manager_get_widget(ui_manager, "/MainMenu/Help/About");
|
|
|
|
gtk_osxapplication_insert_app_menu_item(osx_app, menu_item, 0);
|
2012-01-03 19:18:04 +00:00
|
|
|
|
2012-01-03 04:49:10 +00:00
|
|
|
sep = gtk_separator_menu_item_new();
|
|
|
|
g_object_ref(sep);
|
|
|
|
gtk_osxapplication_insert_app_menu_item (osx_app, sep, 1);
|
2012-01-03 19:18:04 +00:00
|
|
|
|
2012-01-03 04:49:10 +00:00
|
|
|
menu_item = gtk_ui_manager_get_widget(ui_manager, "/MainMenu/FileMenu/Preferences");
|
|
|
|
gtk_osxapplication_insert_app_menu_item(osx_app, menu_item, 2);
|
2012-01-03 19:18:04 +00:00
|
|
|
|
2012-01-03 04:49:10 +00:00
|
|
|
sep = gtk_separator_menu_item_new();
|
|
|
|
g_object_ref(sep);
|
|
|
|
gtk_osxapplication_insert_app_menu_item (osx_app, sep, 3);
|
2012-01-03 19:18:04 +00:00
|
|
|
|
2012-01-03 04:49:10 +00:00
|
|
|
gtk_osxapplication_set_use_quartz_accelerators(osx_app, TRUE);
|
2012-09-12 16:18:56 +00:00
|
|
|
g_signal_connect(osx_app,"NSApplicationDidBecomeActive",G_CALLBACK(show_main_window),NULL);
|
|
|
|
g_signal_connect(osx_app,"NSApplicationWillTerminate",G_CALLBACK(quit),NULL);
|
|
|
|
|
2012-01-03 04:49:10 +00:00
|
|
|
gtk_osxapplication_ready(osx_app);
|
2012-01-01 21:41:47 +00:00
|
|
|
}
|