summaryrefslogtreecommitdiffstats
path: root/src/PYConfig.h
diff options
context:
space:
mode:
authorPeng Huang <shawn.p.huang@gmail.com>2010-08-13 16:20:01 +0800
committerPeng Huang <shawn.p.huang@gmail.com>2010-08-17 15:04:42 +0900
commitf3f325b0603ed635d076a5e6430164b2c72b21da (patch)
treeb5972ff6a55a6b6ccf7db4393e788ab1e375b703 /src/PYConfig.h
parenta32d2b4d5194559b4601cf7e2c65ddc68bdf13e3 (diff)
downloadibus-libpinyin-f3f325b0603ed635d076a5e6430164b2c72b21da.tar.gz
ibus-libpinyin-f3f325b0603ed635d076a5e6430164b2c72b21da.tar.xz
ibus-libpinyin-f3f325b0603ed635d076a5e6430164b2c72b21da.zip
Add PY prefix of all file names to avoid name conflict on some file
system than is case insensitive.
Diffstat (limited to 'src/PYConfig.h')
-rw-r--r--src/PYConfig.h143
1 files changed, 143 insertions, 0 deletions
diff --git a/src/PYConfig.h b/src/PYConfig.h
new file mode 100644
index 0000000..9bbb503
--- /dev/null
+++ b/src/PYConfig.h
@@ -0,0 +1,143 @@
+/* vim:set et ts=4 sts=4:
+ *
+ * ibus-pinyin - The Chinese PinYin engine for IBus
+ *
+ * Copyright (c) 2008-2010 Peng Huang <shawn.p.huang@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+#ifndef __PY_CONFIG_H_
+#define __PY_CONFIG_H_
+
+#include <string>
+#include <boost/scoped_ptr.hpp>
+#include <ibus.h>
+#include "PYObject.h"
+
+namespace PY {
+
+class Bus;
+
+class Config : Object {
+protected:
+ Config (Bus & bus, const std::string & name);
+ virtual ~Config (void);
+
+public:
+ guint option (void) const { return m_option & m_option_mask; }
+ guint orientation (void) const { return m_orientation; }
+ guint pageSize (void) const { return m_page_size; }
+ gboolean shiftSelectCandidate (void) const { return m_shift_select_candidate; }
+ gboolean minusEqualPage (void) const { return m_minus_equal_page; }
+ gboolean commaPeriodPage (void) const { return m_comma_period_page; }
+ gboolean autoCommit (void) const { return m_auto_commit; }
+ gboolean doublePinyin (void) const { return m_double_pinyin; }
+ gint doublePinyinSchema (void) const { return m_double_pinyin_schema; }
+ gboolean doublePinyinShowRaw (void) const { return m_double_pinyin_show_raw; }
+ gboolean initChinese (void) const { return m_init_chinese; }
+ gboolean initFull (void) const { return m_init_full; }
+ gboolean initFullPunct (void) const { return m_init_full_punct; }
+ gboolean initSimpChinese (void) const { return m_init_simp_chinese; }
+ gboolean specialPhrases (void) const { return m_special_phrases; }
+ gint bopomofoKeyboardMapping (void) const { return m_bopomofo_keyboard_mapping; }
+ gint selectKeys (void) const { return m_select_keys; }
+ gboolean guideKey (void) const { return m_guide_key; }
+ gboolean auxiliarySelectKeyF (void) const { return m_auxiliary_select_key_f; }
+ gboolean auxiliarySelectKeyKP (void) const { return m_auxiliary_select_key_kp; }
+
+protected:
+ bool read (const gchar * name, bool defval);
+ gint read (const gchar * name, gint defval);
+ const gchar * read (const gchar * name, const gchar * defval);
+
+ virtual void readDefaultValues (void);
+
+ virtual gboolean valueChanged (const std::string & section,
+ const std::string & name,
+ const GValue *value);
+private:
+ static void valueChangedCallback (IBusConfig *config,
+ const gchar *section,
+ const gchar *name,
+ const GValue *value,
+ Config *self);
+
+protected:
+ std::string m_section;
+ guint m_option;
+ guint m_option_mask;
+
+ gint m_orientation;
+ guint m_page_size;
+ gboolean m_shift_select_candidate;
+ gboolean m_minus_equal_page;
+ gboolean m_comma_period_page;
+ gboolean m_auto_commit;
+
+ gboolean m_double_pinyin;
+ gint m_double_pinyin_schema;
+ gboolean m_double_pinyin_show_raw;
+
+ gboolean m_init_chinese;
+ gboolean m_init_full;
+ gboolean m_init_full_punct;
+ gboolean m_init_simp_chinese;
+ gboolean m_special_phrases;
+
+ gint m_bopomofo_keyboard_mapping;
+ gint m_select_keys;
+ gboolean m_guide_key;
+ gboolean m_auxiliary_select_key_f;
+ gboolean m_auxiliary_select_key_kp;
+};
+
+/* PinyinConfig */
+class PinyinConfig : public Config {
+public:
+ static void init (Bus & bus);
+ static PinyinConfig & instance (void) { return *m_instance; }
+
+protected:
+ PinyinConfig (Bus & bus);
+ virtual void readDefaultValues (void);
+
+ virtual gboolean valueChanged (const std::string & section,
+ const std::string & name,
+ const GValue *value);
+
+private:
+ static boost::scoped_ptr<PinyinConfig> m_instance;
+};
+
+/* Bopomof Config */
+class BopomofoConfig : public Config {
+public:
+ static void init (Bus & bus);
+ static BopomofoConfig & instance (void) { return *m_instance; }
+
+protected:
+ BopomofoConfig (Bus & bus);
+ virtual void readDefaultValues (void);
+
+ virtual gboolean valueChanged (const std::string & section,
+ const std::string & name,
+ const GValue *value);
+
+private:
+ static boost::scoped_ptr<BopomofoConfig> m_instance;
+};
+
+};
+#endif