/usr/include/libmatekbd/matekbd-desktop-config.h is in libmatekbd-dev 1.7.1.is.1.6.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 88 89 90 | /*
* 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., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef __MATEKBD_DESKTOP_CONFIG_H__
#define __MATEKBD_DESKTOP_CONFIG_H__
#include <X11/Xlib.h>
#include <glib.h>
#include <gio/gio.h>
#include <libxklavier/xklavier.h>
extern const gchar MATEKBD_DESKTOP_CONFIG_KEY_DEFAULT_GROUP[];
extern const gchar MATEKBD_DESKTOP_CONFIG_KEY_GROUP_PER_WINDOW[];
extern const gchar MATEKBD_DESKTOP_CONFIG_KEY_HANDLE_INDICATORS[];
extern const gchar MATEKBD_DESKTOP_CONFIG_KEY_LAYOUT_NAMES_AS_GROUP_NAMES[];
/*
* General configuration
*/
typedef struct _MatekbdDesktopConfig {
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;
} MatekbdDesktopConfig;
/**
* MatekbdDesktopConfig functions
*/
extern void matekbd_desktop_config_init (MatekbdDesktopConfig * config,
XklEngine * engine);
extern void matekbd_desktop_config_term (MatekbdDesktopConfig * config);
extern void matekbd_desktop_config_load_from_gsettings (MatekbdDesktopConfig *
config);
extern void matekbd_desktop_config_save_to_gsettings (MatekbdDesktopConfig * config);
extern gboolean matekbd_desktop_config_activate (MatekbdDesktopConfig * config);
extern gboolean
matekbd_desktop_config_load_group_descriptions (MatekbdDesktopConfig
* config,
XklConfigRegistry *
registry,
const gchar **
layout_ids,
const gchar **
variant_ids,
gchar ***
short_group_names,
gchar *** full_group_names);
extern void matekbd_desktop_config_lock_next_group (MatekbdDesktopConfig *
config);
extern void matekbd_desktop_config_lock_prev_group (MatekbdDesktopConfig *
config);
extern void matekbd_desktop_config_restore_group (MatekbdDesktopConfig * config);
extern void matekbd_desktop_config_start_listen (MatekbdDesktopConfig * config,
GCallback func,
gpointer user_data);
extern void matekbd_desktop_config_stop_listen (MatekbdDesktopConfig * config);
#endif
|