summaryrefslogtreecommitdiffstats
path: root/src/ZYZhuyinProperties.h
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2014-02-17 15:58:27 +0800
committerPeng Wu <alexepico@gmail.com>2014-02-17 15:58:27 +0800
commit6c67dfc1645ac7c45cae585f5ca77a74e96c9511 (patch)
tree80b12d3e180d26714a74c227737d2dcef7264a67 /src/ZYZhuyinProperties.h
parentffeaafb2f03e5c7eb431d8de61e99a85661f495d (diff)
downloadibus-libzhuyin-6c67dfc1645ac7c45cae585f5ca77a74e96c9511.tar.gz
ibus-libzhuyin-6c67dfc1645ac7c45cae585f5ca77a74e96c9511.tar.xz
ibus-libzhuyin-6c67dfc1645ac7c45cae585f5ca77a74e96c9511.zip
Revert "remove m_mode_full_punct"
This reverts commit e220b12b7e2d9389020f6485975545d5033e5e1b.
Diffstat (limited to 'src/ZYZhuyinProperties.h')
-rw-r--r--src/ZYZhuyinProperties.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ZYZhuyinProperties.h b/src/ZYZhuyinProperties.h
index c98787b..d5be101 100644
--- a/src/ZYZhuyinProperties.h
+++ b/src/ZYZhuyinProperties.h
@@ -34,12 +34,14 @@ public:
void toggleModeChinese (void);
void toggleModeFull (void);
+ void toggleModeFullPunct (void);
void toggleModeTrad (void);
void reset (void);
gboolean modeChinese (void) const { return m_mode_chinese; }
gboolean modeFull (void) const { return m_mode_full; }
+ gboolean modeFullPunct (void) const { return m_mode_full_punct; }
gboolean modeTrad (void) const { return m_mode_trad; }
PropList & properties (void) { return m_props; }
@@ -63,11 +65,13 @@ private:
Config & m_config;
gboolean m_mode_chinese;
gboolean m_mode_full;
+ gboolean m_mode_full_punct;
gboolean m_mode_trad;
/* properties */
Property m_prop_chinese;
Property m_prop_full;
+ Property m_prop_full_punct;
Property m_prop_trad;
Property m_prop_setup;
PropList m_props;