summaryrefslogtreecommitdiff
path: root/libmatekbd/matekbd-config-private.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmatekbd/matekbd-config-private.h')
-rw-r--r--libmatekbd/matekbd-config-private.h102
1 files changed, 102 insertions, 0 deletions
diff --git a/libmatekbd/matekbd-config-private.h b/libmatekbd/matekbd-config-private.h
new file mode 100644
index 0000000..a49c373
--- /dev/null
+++ b/libmatekbd/matekbd-config-private.h
@@ -0,0 +1,102 @@
+/*
+ * Copyright (C) 2006 Sergey V. Udaltsov <[email protected]>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __MATEKBD_CONFIG_PRIVATE_H__
+#define __MATEKBD_CONFIG_PRIVATE_H__
+
+#include "libmatekbd/matekbd-desktop-config.h"
+#include "libmatekbd/matekbd-keyboard-config.h"
+
+#define MATEKBD_CONFIG_KEY_PREFIX "/desktop/mate/peripherals/keyboard"
+
+extern const gchar MATEKBD_PREVIEW_CONFIG_DIR[];
+extern const gchar MATEKBD_PREVIEW_CONFIG_KEY_X[];
+extern const gchar MATEKBD_PREVIEW_CONFIG_KEY_Y[];
+extern const gchar MATEKBD_PREVIEW_CONFIG_KEY_WIDTH[];
+extern const gchar MATEKBD_PREVIEW_CONFIG_KEY_HEIGHT[];
+
+/**
+ * General config functions (private)
+ */
+extern void
+ matekbd_desktop_config_add_listener (MateConfClient * conf_client,
+ const gchar * key,
+ MateConfClientNotifyFunc func,
+ gpointer user_data, int *pid);
+
+
+extern void
+ matekbd_desktop_config_remove_listener (MateConfClient * conf_client, int *pid);
+
+extern void matekbd_keyboard_config_model_set (MatekbdKeyboardConfig *
+ kbd_config,
+ const gchar * model_name);
+
+extern void matekbd_keyboard_config_layouts_reset (MatekbdKeyboardConfig *
+ kbd_config);
+extern void matekbd_keyboard_config_layouts_add (MatekbdKeyboardConfig *
+ kbd_config,
+ const gchar * layout_name,
+ const gchar * variant_name);
+
+extern void matekbd_keyboard_config_layouts_reset (MatekbdKeyboardConfig *
+ kbd_config);
+extern void matekbd_keyboard_config_options_reset (MatekbdKeyboardConfig *
+ kbd_config);
+
+extern void matekbd_keyboard_config_options_add (MatekbdKeyboardConfig *
+ kbd_config,
+ const gchar * group_name,
+ const gchar * option_name);
+extern gboolean matekbd_keyboard_config_options_is_set (MatekbdKeyboardConfig *
+ kbd_config,
+ const gchar *
+ group_name,
+ const gchar *
+ option_name);
+
+extern gboolean matekbd_keyboard_config_dump_settings (MatekbdKeyboardConfig *
+ kbd_config,
+ const char *file_name);
+
+extern void matekbd_keyboard_config_start_listen (MatekbdKeyboardConfig *
+ kbd_config,
+ MateConfClientNotifyFunc func,
+ gpointer user_data);
+
+extern void matekbd_keyboard_config_stop_listen (MatekbdKeyboardConfig *
+ kbd_config);
+
+extern gboolean matekbd_keyboard_config_get_lv_descriptions (XklConfigRegistry
+ *
+ config_registry,
+ const gchar *
+ layout_name,
+ const gchar *
+ variant_name,
+ gchar **
+ layout_short_descr,
+ gchar **
+ layout_descr,
+ gchar **
+ variant_short_descr,
+ gchar **
+ variant_descr);
+
+#endif