aboutsummaryrefslogtreecommitdiffstats
path: root/linux.c
blob: f0ab2841caa48ed6dc4a5377a5c6fd5536d3e97d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* 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_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);
}