summaryrefslogtreecommitdiff
path: root/libgnomekbd/gkbd-desktop-config.h
blob: 8319b5b069771abbb962135d7a54930f96e400b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * Copyright (C) 2006 Sergey V. Udaltsov <svu@gnome.org>
 *
 * 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 __GKBD_DESKTOP_CONFIG_H__
#define __GKBD_DESKTOP_CONFIG_H__

#include <X11/Xlib.h>
#include <glib.h>
#include <gio/gio.h>
#include <libxklavier/xklavier.h>

#define GKBD_DESKTOP_SCHEMA "org.gnome.libgnomekbd.desktop"

/*
 * General configuration
 */
typedef struct _GkbdDesktopConfig GkbdDesktopConfig;
struct _GkbdDesktopConfig {
	gint default_group;
	gboolean group_per_app;
	gboolean handle_indicators;
	gboolean layout_names_as_group_names;
	gboolean load_extra_items;

	/* private, transient */
	GSettings *settings;
	int config_listener_id;
	XklEngine *engine;
};

/*
 * GkbdDesktopConfig functions
 */
void gkbd_desktop_config_init (GkbdDesktopConfig * config,
				      XklEngine * engine);
void gkbd_desktop_config_term (GkbdDesktopConfig * config);

void gkbd_desktop_config_load (GkbdDesktopConfig * config);

void gkbd_desktop_config_save (GkbdDesktopConfig * config);

gboolean gkbd_desktop_config_activate (GkbdDesktopConfig * config);

gboolean
gkbd_desktop_config_load_group_descriptions (GkbdDesktopConfig
					     * config,
					     XklConfigRegistry *
					     registry,
					     const gchar **
					     layout_ids,
					     const gchar **
					     variant_ids,
					     gchar ***
					     short_group_names,
					     gchar *** full_group_names);

void gkbd_desktop_config_lock_next_group (GkbdDesktopConfig *
						 config);

void gkbd_desktop_config_lock_prev_group (GkbdDesktopConfig *
						 config);

void gkbd_desktop_config_restore_group (GkbdDesktopConfig * config);

void gkbd_desktop_config_start_listen (GkbdDesktopConfig * config,
					      GCallback func,
					      gpointer user_data);

void gkbd_desktop_config_stop_listen (GkbdDesktopConfig * config);

#endif