~ubuntu-branches/ubuntu/trusty/fcitx/trusty-proposed

« back to all changes in this revision

Viewing changes to src/module/xkb/xkb-internal.h

  • Committer: Package Import Robot
  • Author(s): Aron Xu
  • Date: 2013-02-10 17:03:56 UTC
  • mfrom: (1.3.18) (33.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20130210170356-2yuv6xy3ed378kn0
Tags: 1:4.2.7-1
* New upstream release.
* New binary packages:
  - fcitx-libs-gclient: D-Bus client library for Glib
  - fcitx-libs-qt: D-Bus client library for Qt
  - fcitx-module-quickphrase-editor: Quick Phrase editor module

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2012~2012 by CSSlayer                                   *
 
3
 *   wengxt@gmail.com                                                      *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.              *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef _FCITX_XKB_XKB_INTERNAL_H_
 
22
#define _FCITX_XKB_XKB_INTERNAL_H_
 
23
 
 
24
#include "rules.h"
 
25
 
 
26
#include <X11/Xlib.h>
 
27
 
 
28
typedef struct _FcitxXkbConfig {
 
29
    FcitxGenericConfig gconfig;
 
30
    boolean bOverrideSystemXKBSettings;
 
31
    boolean bIgnoreInputMethodLayoutRequest;
 
32
    char* xmodmapCommand;
 
33
    char* customXModmapScript;
 
34
} FcitxXkbConfig;
 
35
 
 
36
typedef struct _FcitxXkb
 
37
{
 
38
    Display* dpy;
 
39
    UT_array *defaultLayouts;
 
40
    UT_array *defaultModels;
 
41
    UT_array *defaultOptions;
 
42
    UT_array* defaultVariants;
 
43
    struct _FcitxInstance* owner;
 
44
    char *closeLayout;
 
45
    char *closeVariant;
 
46
    char *defaultXmodmapPath;
 
47
    FcitxXkbRules* rules;
 
48
    FcitxXkbConfig config;
 
49
    int xkbOpcode;
 
50
    struct _LayoutOverride* layoutOverride;
 
51
    unsigned long lastSerial;
 
52
} FcitxXkb;
 
53
 
 
54
 
 
55
CONFIG_BINDING_DECLARE(FcitxXkbConfig);
 
56
 
 
57
#endif