Add option --disable-boost to support build without boost
[platform/upstream/ibus-libpinyin.git] / src / PYConfig.h
1 /* vim:set et ts=4 sts=4:
2  *
3  * ibus-pinyin - The Chinese PinYin engine for IBus
4  *
5  * Copyright (c) 2008-2010 Peng Huang <shawn.p.huang@gmail.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21 #ifndef __PY_CONFIG_H_
22 #define __PY_CONFIG_H_
23
24 #include <string>
25 #include <ibus.h>
26 #include "PYUtil.h"
27 #include "PYObject.h"
28
29 namespace PY {
30
31 class Bus;
32
33 class Config : Object {
34 protected:
35     Config (Bus & bus, const std::string & name);
36     virtual ~Config (void);
37
38 public:
39     guint option (void) const                   { return m_option & m_option_mask; }
40     guint orientation (void) const              { return m_orientation; }
41     guint pageSize (void) const                 { return m_page_size; }
42     gboolean shiftSelectCandidate (void) const  { return m_shift_select_candidate; }
43     gboolean minusEqualPage (void) const        { return m_minus_equal_page; }
44     gboolean commaPeriodPage (void) const       { return m_comma_period_page; }
45     gboolean autoCommit (void) const            { return m_auto_commit; }
46     gboolean doublePinyin (void) const          { return m_double_pinyin; }
47     gint doublePinyinSchema (void) const        { return m_double_pinyin_schema; }
48     gboolean doublePinyinShowRaw (void) const   { return m_double_pinyin_show_raw; }
49     gboolean initChinese (void) const           { return m_init_chinese; }
50     gboolean initFull (void) const              { return m_init_full; }
51     gboolean initFullPunct (void) const         { return m_init_full_punct; }
52     gboolean initSimpChinese (void) const       { return m_init_simp_chinese; }
53     gboolean specialPhrases (void) const        { return m_special_phrases; }
54     gint bopomofoKeyboardMapping (void) const   { return m_bopomofo_keyboard_mapping; }
55     gint selectKeys (void) const                { return m_select_keys; }
56     gboolean guideKey (void) const              { return m_guide_key; }
57     gboolean auxiliarySelectKeyF (void) const   { return m_auxiliary_select_key_f; }
58     gboolean auxiliarySelectKeyKP (void) const  { return m_auxiliary_select_key_kp; }
59
60 protected:
61     bool read (const gchar * name, bool defval);
62     gint read (const gchar * name, gint defval);
63     const gchar * read (const gchar * name, const gchar * defval);
64
65     virtual void readDefaultValues (void);
66
67     virtual gboolean valueChanged (const std::string & section,
68                                    const std::string & name,
69                                    const GValue  *value);
70 private:
71     static void valueChangedCallback (IBusConfig    *config,
72                                       const gchar   *section,
73                                       const gchar   *name,
74                                       const GValue  *value,
75                                       Config        *self);
76
77 protected:
78     std::string m_section;
79     guint m_option;
80     guint m_option_mask;
81
82     gint m_orientation;
83     guint m_page_size;
84     gboolean m_shift_select_candidate;
85     gboolean m_minus_equal_page;
86     gboolean m_comma_period_page;
87     gboolean m_auto_commit;
88
89     gboolean m_double_pinyin;
90     gint m_double_pinyin_schema;
91     gboolean m_double_pinyin_show_raw;
92
93     gboolean m_init_chinese;
94     gboolean m_init_full;
95     gboolean m_init_full_punct;
96     gboolean m_init_simp_chinese;
97     gboolean m_special_phrases;
98
99     gint m_bopomofo_keyboard_mapping;
100     gint m_select_keys;
101     gboolean m_guide_key;
102     gboolean m_auxiliary_select_key_f;
103     gboolean m_auxiliary_select_key_kp;
104 };
105
106 /* PinyinConfig */
107 class PinyinConfig : public Config {
108 public:
109     static void init (Bus & bus);
110     static PinyinConfig & instance (void) { return *m_instance; }
111
112 protected:
113     PinyinConfig (Bus & bus);
114     virtual void readDefaultValues (void);
115
116     virtual gboolean valueChanged (const std::string & section,
117                                    const std::string & name,
118                                    const GValue  *value);
119
120 private:
121     static std::unique_ptr<PinyinConfig> m_instance;
122 };
123
124 /* Bopomof Config */
125 class BopomofoConfig : public Config {
126 public:
127     static void init (Bus & bus);
128     static BopomofoConfig & instance (void) { return *m_instance; }
129
130 protected:
131     BopomofoConfig (Bus & bus);
132     virtual void readDefaultValues (void);
133
134     virtual gboolean valueChanged (const std::string & section,
135                                    const std::string & name,
136                                    const GValue  *value);
137
138 private:
139     static std::unique_ptr<BopomofoConfig> m_instance;
140 };
141
142 };
143 #endif