summaryrefslogtreecommitdiffstats
path: root/linux.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2012-01-01 13:41:47 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2012-01-01 14:01:38 -0800
commit605e063203f8a2a35a5c3be1e7129e80099dd68a (patch)
tree6685618f4c773ad901d33708ed4468f6210447bd /linux.c
parent565736a471e9ba66cbc68ce76c90d5e0c2fa57cf (diff)
downloadsubsurface-605e063203f8a2a35a5c3be1e7129e80099dd68a.tar.gz
Turn subsurface into a real Mac application
To do this a few things needed to move into the os specific files, but the overall change is fairly small and the difference on the Mac is amazing. Subsurface now becomes a Mac app with Mac toolbar and useful default fonts. Changed the CFBundleIdentifier to be the reverse DNS of the subsurface site (sadly, 'torvalds' is not yet a TLD). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'linux.c')
-rw-r--r--linux.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/linux.c b/linux.c
index d2a92596e..bec4f08fb 100644
--- a/linux.c
+++ b/linux.c
@@ -2,6 +2,7 @@
/* implements Linux specific functions */
#include "display-gtk.h"
#include <gconf/gconf-client.h>
+#define DIVELIST_DEFAULT_FONT "Sans 8"
GConfClient *gconf;
@@ -56,3 +57,11 @@ const char *subsurface_icon_name()
{
return "subsurface.svg";
}
+
+void subsurface_ui_setup(GtkSettings *settings, GtkWidget *menubar,
+ GtkWidget *vbox)
+{
+ if (!divelist_font)
+ divelist_font = DIVELIST_DEFAULT_FONT;
+ gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, FALSE, 0);
+}