/* * This program 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; either version 2 of the License, or * (at your option) any later version. * * This program 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 Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef __GKBD_CONFIG_PRIVATE_H__ #define __GKBD_CONFIG_PRIVATE_H__ #include "libgnomekbd/gkbd-desktop-config.h" #include "libgnomekbd/gkbd-keyboard-config.h" #define GKBD_CONFIG_KEY_PREFIX "/desktop/gnome/peripherals/keyboard" extern const gchar GKBD_PREVIEW_CONFIG_DIR[]; extern const gchar GKBD_PREVIEW_CONFIG_KEY_X[]; extern const gchar GKBD_PREVIEW_CONFIG_KEY_Y[]; extern const gchar GKBD_PREVIEW_CONFIG_KEY_WIDTH[]; extern const gchar GKBD_PREVIEW_CONFIG_KEY_HEIGHT[]; /** * General config functions (private) */ extern void gkbd_desktop_config_add_listener (GConfClient * conf_client, const gchar * key, GConfClientNotifyFunc func, gpointer user_data, int *pid); extern void gkbd_desktop_config_remove_listener (GConfClient * conf_client, int *pid); extern void gkbd_keyboard_config_model_set (GkbdKeyboardConfig * kbd_config, const gchar * model_name); extern void gkbd_keyboard_config_layouts_reset (GkbdKeyboardConfig * kbd_config); extern void gkbd_keyboard_config_layouts_add (GkbdKeyboardConfig * kbd_config, const gchar * layout_name, const gchar * variant_name); extern void gkbd_keyboard_config_layouts_reset (GkbdKeyboardConfig * kbd_config); extern void gkbd_keyboard_config_options_reset (GkbdKeyboardConfig * kbd_config); extern void gkbd_keyboard_config_options_add (GkbdKeyboardConfig * kbd_config, const gchar * group_name, const gchar * option_name); extern gboolean gkbd_keyboard_config_options_is_set (GkbdKeyboardConfig * kbd_config, const gchar * group_name, const gchar * option_name); extern gboolean gkbd_keyboard_config_dump_settings (GkbdKeyboardConfig * kbd_config, const char *file_name); extern void gkbd_keyboard_config_start_listen (GkbdKeyboardConfig * kbd_config, GConfClientNotifyFunc func, gpointer user_data); extern void gkbd_keyboard_config_stop_listen (GkbdKeyboardConfig * kbd_config); extern gboolean gkbd_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