~ubuntu-branches/ubuntu/raring/sunpinyin/raring

« back to all changes in this revision

Viewing changes to wrapper/xim/settings.h

  • Committer: Package Import Robot
  • Author(s): YunQiang Su
  • Date: 2012-03-30 15:31:55 UTC
  • mfrom: (1.1.3) (1.2.7 sid)
  • Revision ID: package-import@ubuntu.com-20120330153155-qgls77sogzgtg9zp
Tags: 2.0.3+git20120222-1
* Team upload: git snapshot 20120222.
   - fix breaks if LDFLAGS in environment contains
       multiple words (Closese #646001).
   - rm patches merged to upstream:
       append-os-environ-toenv.patch
       fix-ftbfs-on-sh.patch
       remove-10-candidate-words-limitation.patch
   - refresh disable-lm-dict-compile.patch.
* Bump stardard version to 3.9.3: no modify needed.
* add libsunpinyin3-dbg and python-sunpinyin packages.
* debian/compat to 9, multiarch it.
* rewrite debian/rules with dh 7 format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2010 Mike Qin <mikeandmore@gmail.com>
 
3
 *
 
4
 * The contents of this file are subject to the terms of either the GNU Lesser
 
5
 * General Public License Version 2.1 only ("LGPL") or the Common Development and
 
6
 * Distribution License ("CDDL")(collectively, the "License"). You may not use this
 
7
 * file except in compliance with the License. You can obtain a copy of the CDDL at
 
8
 * http://www.opensource.org/licenses/cddl1.php and a copy of the LGPLv2.1 at
 
9
 * http://www.opensource.org/licenses/lgpl-license.php. See the License for the
 
10
 * specific language governing permissions and limitations under the License. When
 
11
 * distributing the software, include this License Header Notice in each file and
 
12
 * include the full text of the License in the License file as well as the
 
13
 * following notice:
 
14
 *
 
15
 * NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
 
16
 * (CDDL)
 
17
 * For Covered Software in this distribution, this License shall be governed by the
 
18
 * laws of the State of California (excluding conflict-of-law provisions).
 
19
 * Any litigation relating to this License shall be subject to the jurisdiction of
 
20
 * the Federal Courts of the Northern District of California and the state courts
 
21
 * of the State of California, with venue lying in Santa Clara County, California.
 
22
 *
 
23
 * Contributor(s):
 
24
 *
 
25
 * If you wish your version of this file to be governed by only the CDDL or only
 
26
 * the LGPL Version 2.1, indicate your decision by adding "[Contributor]" elects to
 
27
 * include this software in this distribution under the [CDDL or LGPL Version 2.1]
 
28
 * license." If you don't indicate a single choice of license, a recipient has the
 
29
 * option to distribute your version of this file under either the CDDL or the LGPL
 
30
 * Version 2.1, or to extend the choice of license to its licensees as provided
 
31
 * above. However, if you add LGPL Version 2.1 code and therefore, elected the LGPL
 
32
 * Version 2 license, then the option applies only if the new code is made subject
 
33
 * to such option by the copyright holder.
 
34
 */
 
35
 
 
36
#ifndef _SETTINGS_H_
 
37
#define _SETTINGS_H_
 
38
 
 
39
#include <stdlib.h>
 
40
#include <stdint.h>
 
41
#include <stdbool.h>
 
42
#include <string.h>
 
43
 
 
44
#include "common.h"
 
45
 
 
46
__BEGIN_DECLS
 
47
 
 
48
typedef struct {
 
49
    int x;
 
50
    int y;
 
51
} position_t;
 
52
 
 
53
typedef struct {
 
54
    int modifiers;
 
55
    int keysym;
 
56
} hotkey_t;
 
57
 
 
58
typedef char varchar[128];
 
59
 
 
60
typedef enum {
 
61
    TRIGGER_KEY = 0,
 
62
    ENG_KEY,
 
63
    ICBAR_POS,
 
64
    PREEDIT_OPACITY,
 
65
    PREEDIT_COLOR,
 
66
    PREEDIT_FONT,
 
67
    PREEDIT_FONT_COLOR,
 
68
    SHUANGPIN,
 
69
    SHUANGPIN_SCHEME,
 
70
    CANDIDATES_SIZE,
 
71
    PAGE_MINUS_PLUS,
 
72
    PAGE_COMMA_PERIOD,
 
73
    PAGE_PAREN,
 
74
    FUZZY_SEGMENTATION,
 
75
    FUZZY_INNER_SEGMENTATION,
 
76
    CANCEL_ON_BACKSPACE,
 
77
    SMART_PUNCT,
 
78
    SKIN_NAME,
 
79
    HIDE_ICBAR,
 
80
} setting_key_t;
 
81
 
 
82
#define MAX_KEY 0xFF
 
83
 
 
84
void  settings_init();
 
85
void  settings_destroy();
 
86
 
 
87
void  settings_load();
 
88
void  settings_save();
 
89
 
 
90
void  settings_get(setting_key_t key, void* data);
 
91
void  settings_set(setting_key_t key, void* data);
 
92
 
 
93
void  settings_set_int(setting_key_t key, int value);
 
94
void  settings_set_double(setting_key_t key, double value);
 
95
void  settings_set_string(setting_key_t key, const char* str);
 
96
 
 
97
int    settings_get_int(setting_key_t key);
 
98
double settings_get_double(setting_key_t key);
 
99
 
 
100
__END_DECLS
 
101
 
 
102
#endif /* _SETTINGS_H_ */