mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
725e4582d9
On Linux and MacOS the subsurface_close_conf() doesn't really close the config file (it flushes writes on MacOS), but on Windows it does actually close the registry hkey. Which is bad, if you change the settings multiple times - we assume that the config file is open the whole time. So add a "subsurface_flush_conf()" function, and call *that* when changing configuration parameters. And call the close function only at the very end. Alternatively, maybe we should just open the config file separately every time. I don't much care, maybe somebody else does. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
72 lines
1.5 KiB
C
72 lines
1.5 KiB
C
/* linux.c */
|
|
/* implements Linux specific functions */
|
|
#include "display-gtk.h"
|
|
#include <gconf/gconf-client.h>
|
|
#define DIVELIST_DEFAULT_FONT "Sans 8"
|
|
|
|
GConfClient *gconf;
|
|
|
|
static char *gconf_name(char *name)
|
|
{
|
|
static char buf[255] = "/apps/subsurface/";
|
|
|
|
snprintf(buf, 255, "/apps/subsurface/%s", name);
|
|
|
|
return buf;
|
|
}
|
|
|
|
void subsurface_open_conf(void)
|
|
{
|
|
gconf = gconf_client_get_default();
|
|
}
|
|
|
|
void subsurface_set_conf(char *name, pref_type_t type, const void *value)
|
|
{
|
|
switch (type) {
|
|
case PREF_BOOL:
|
|
gconf_client_set_bool(gconf, gconf_name(name), value != NULL, NULL);
|
|
break;
|
|
case PREF_STRING:
|
|
gconf_client_set_string(gconf, gconf_name(name), value, NULL);
|
|
}
|
|
}
|
|
|
|
const void *subsurface_get_conf(char *name, pref_type_t type)
|
|
{
|
|
switch (type) {
|
|
case PREF_BOOL:
|
|
return gconf_client_get_bool(gconf, gconf_name(name), NULL) ? (void *) 1 : NULL;
|
|
case PREF_STRING:
|
|
return gconf_client_get_string(gconf, gconf_name(name), NULL);
|
|
}
|
|
/* we shouldn't get here */
|
|
return NULL;
|
|
}
|
|
|
|
void subsurface_flush_conf(void)
|
|
{
|
|
/* this is a no-op */
|
|
}
|
|
|
|
void subsurface_close_conf(void)
|
|
{
|
|
/* this is a no-op */
|
|
}
|
|
|
|
const char *subsurface_USB_name()
|
|
{
|
|
return "/dev/ttyUSB0";
|
|
}
|
|
|
|
const char *subsurface_icon_name()
|
|
{
|
|
return "subsurface.svg";
|
|
}
|
|
|
|
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);
|
|
}
|