summaryrefslogtreecommitdiff
path: root/desktop/system_colour.h
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/system_colour.h')
-rw-r--r--desktop/system_colour.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/desktop/system_colour.h b/desktop/system_colour.h
new file mode 100644
index 000000000..b5d4baad4
--- /dev/null
+++ b/desktop/system_colour.h
@@ -0,0 +1,40 @@
+/*
+ * Copyright 2014 vincent Sanders <vince@netsurf-browser.org>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/** \file
+ * Interface to system colour values.
+ */
+
+#ifndef _NETSURF_DESKTOP_SYSTEM_COLOUR_H_
+#define _NETSURF_DESKTOP_SYSTEM_COLOUR_H_
+
+#include <libcss/libcss.h>
+
+#include "utils/errors.h"
+#include "desktop/plot_style.h"
+
+/** css callback to obtain named system colours. */
+css_error ns_system_colour(void *pw, lwc_string *name, css_color *color);
+
+/** Obtain a named system colour from a frontend. */
+colour ns_system_colour_char(const char *name);
+
+nserror ns_system_colour_init(void);
+void ns_system_colour_finalize(void);
+
+#endif