~ubuntu-branches/ubuntu/quantal/sunpinyin/quantal

« back to all changes in this revision

Viewing changes to wrapper/ibus/src/sunpinyin_config.h

  • Committer: Package Import Robot
  • Author(s): YunQiang Su
  • Date: 2012-04-11 03:06:40 UTC
  • mfrom: (1.1.4) (1.2.8 sid)
  • Revision ID: package-import@ubuntu.com-20120411030640-8mxepz5e6wffy87c
Tags: 2.0.3+git20120404-1
* Medium urgency for fixing RC bug.
* New upstream commit: fix FTBFS with gcc-4.7 (Closes: #667385).
* Add Multi-Arch: same to libsunpinyin3, -dev and -dbg.
* Add YunQiang Su to uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (c) 2009 Kov Chai <tchaikov@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 SUNPINYIN_CONFIG_H
37
 
#define SUNPINYIN_CONFIG_H
38
 
 
39
 
#include <map>
40
 
#include <vector>
41
 
#include <string>
42
 
#include <ibus.h>
43
 
#include <sunpinyin.h>
44
 
 
45
 
class EngineImpl;
46
 
 
47
 
enum CharsetLevel
48
 
{
49
 
    GB2312,
50
 
    GBK,
51
 
    GB18030
52
 
};
53
 
 
54
 
class SunPinyinConfig
55
 
{
56
 
    typedef std::map<std::string,
57
 
        CSunpinyinSessionFactory::EPyScheme> SchemeNames;
58
 
    typedef std::map<std::string,
59
 
        EShuangpinType> TypeNames;
60
 
 
61
 
    SchemeNames        m_scheme_names;
62
 
    TypeNames          m_type_names;
63
 
 
64
 
    static IBusConfig* m_config;
65
 
 
66
 
 
67
 
public:
68
 
    SunPinyinConfig();
69
 
    virtual ~SunPinyinConfig();
70
 
 
71
 
    static void set_config(IBusConfig *config);
72
 
 
73
 
 
74
 
    bool get(const char* key, bool val);
75
 
    void set(const char* key, bool val);
76
 
 
77
 
    int get(const char* key, int val);
78
 
    void set(const char* key, int val);
79
 
 
80
 
    std::string get(const char *key, const std::string& default_val);
81
 
    void set(const char* key, const std::string& val);
82
 
 
83
 
    std::vector<std::string> get(const char *key, const std::vector<std::string>& val);
84
 
 
85
 
    CSunpinyinSessionFactory::EPyScheme get_py_scheme(CSunpinyinSessionFactory::EPyScheme);
86
 
    void set_py_scheme(CSunpinyinSessionFactory::EPyScheme);
87
 
 
88
 
    bool is_initial_mode_cn();
89
 
    bool is_initial_punct_full();
90
 
    bool is_initial_letter_full();
91
 
 
92
 
    /**
93
 
     * register on_config_value_changed() as the signal handler of value-changed,
94
 
     */
95
 
    static void listen_on_changed();
96
 
 
97
 
private:
98
 
 
99
 
    /**
100
 
     * called by ibus when a value changed in config
101
 
     */
102
 
#if IBUS_CHECK_VERSION(1, 3, 99)
103
 
    static void on_config_value_changed(IBusConfig *config,
104
 
                                        const gchar *section,
105
 
                                        const gchar *name,
106
 
                                        GVariant *value,
107
 
                                        SunPinyinConfig *user_data);
108
 
#else
109
 
    static void on_config_value_changed(IBusConfig *config,
110
 
                                        const gchar *section,
111
 
                                        const gchar *name,
112
 
                                        GValue *value,
113
 
                                        SunPinyinConfig *user_data);
114
 
#endif
115
 
 
116
 
    std::string get_scheme_name(CSunpinyinSessionFactory::EPyScheme scheme);
117
 
    CSunpinyinSessionFactory::EPyScheme get_scheme(const std::string& name);
118
 
};
119
 
 
120
 
#endif // SUNPINYIN_CONFIG_H