/* vim:set et ts=4 sts=4: * * ibus-pinyin - The Chinese PinYin engine for IBus * * Copyright (c) 2008-2010 Peng Huang * * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef __PY_CONFIG_H_ #define __PY_CONFIG_H_ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #include #include #include "PYObject.h" #include "PYUtil.h" namespace PY { class Bus; class Config : public 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; } gboolean enterKey (void) const { return m_enter_key; } virtual void addContext (PyZy::InputContext * context); bool removeContext (PyZy::InputContext * context); protected: bool read (const gchar * name, bool defval); gint read (const gchar * name, gint defval); std::string read (const gchar * name, const gchar * defval); void initDefaultValues (void); virtual void readDefaultValues (void); virtual gboolean valueChanged (const std::string §ion, const std::string &name, GVariant *value); void updateContext (PyZy::InputContext::PropertyName name, const PyZy::Variant & variant); private: static void valueChangedCallback (IBusConfig *config, const gchar *section, const gchar *name, GVariant *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; gboolean m_enter_key; std::set m_contexts; }; /* PinyinConfig */ class PinyinConfig : public Config { public: static void init (Bus & bus); static PinyinConfig & instance (void) { return *m_instance; } virtual void addContext (PyZy::InputContext * context); protected: PinyinConfig (Bus & bus); virtual void readDefaultValues (void); virtual gboolean valueChanged (const std::string §ion, const std::string &name, GVariant *value); private: static std::unique_ptr m_instance; }; /* Bopomof Config */ class BopomofoConfig : public Config { public: static void init (Bus & bus); static BopomofoConfig & instance (void) { return *m_instance; } virtual void addContext (PyZy::InputContext * context); protected: BopomofoConfig (Bus & bus); virtual void readDefaultValues (void); virtual gboolean valueChanged (const std::string §ion, const std::string &name, GVariant *value); private: static std::unique_ptr m_instance; }; }; #endif