summaryrefslogtreecommitdiffstats
path: root/gtk/src/resources.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2008-09-09 23:14:28 +0000
committerjstebbins <[email protected]>2008-09-09 23:14:28 +0000
commite57d4d0bf36c3b5d4691134d0fdb8171cb25f843 (patch)
treead4dddfe057558ad5cd8fd5c02eb1d156079c709 /gtk/src/resources.c
parentebf4b4d663b9eeeed5d9632b5a2076355cff7145 (diff)
LinGui: consolidate all resources into one stringified plist file that gets
compiled in. icons and everyting all rolled up into one ball-o-wax. hehe, plists are cool git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1685 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/resources.c')
-rw-r--r--gtk/src/resources.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/gtk/src/resources.c b/gtk/src/resources.c
new file mode 100644
index 000000000..b98d8dddb
--- /dev/null
+++ b/gtk/src/resources.c
@@ -0,0 +1,42 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ * resources.c
+ * Copyright (C) John Stebbins 2008 <stebbins@stebbins>
+ *
+ * resources.c is free software.
+ *
+ * You may redistribute it and/or modify it under the terms of the
+ * GNU General Public License, as published by the Free Software
+ * Foundation; either version 2 of the License, or (at your option)
+ * any later version.
+ *
+ */
+#include <glib.h>
+#include <glib-object.h>
+#include <glib/gstdio.h>
+#include <string.h>
+#include <gtk/gtk.h>
+#include "settings.h"
+#include "plist.h"
+#include "resources.h"
+#include "values.h"
+
+static const gchar resource_str[] =
+#include "resource_data.h"
+;
+
+static GValue *resources;
+
+void
+ghb_resource_init()
+{
+ resources = ghb_plist_parse(resource_str, sizeof(resource_str)-1);
+}
+
+GValue*
+ghb_resource_get(const gchar *name)
+{
+ GValue *result;
+ result = ghb_dict_lookup(resources, name);
+ return result;
+}