summaryrefslogtreecommitdiffstats
path: root/src/ZYZSymbolSection.h
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2014-04-01 10:57:58 +0800
committerPeng Wu <alexepico@gmail.com>2014-04-01 10:57:58 +0800
commit56ccde01ab09d6bfb8faa247e7b52d0aaee2c5b0 (patch)
tree895eb9106c010aa4289f494bcb1cf522d56478ad /src/ZYZSymbolSection.h
parentffd43eecbd73ef9031709d17663ece95aa84c411 (diff)
downloadibus-libzhuyin-56ccde01ab09d6bfb8faa247e7b52d0aaee2c5b0.tar.gz
ibus-libzhuyin-56ccde01ab09d6bfb8faa247e7b52d0aaee2c5b0.tar.xz
ibus-libzhuyin-56ccde01ab09d6bfb8faa247e7b52d0aaee2c5b0.zip
update class SymbolSection
Diffstat (limited to 'src/ZYZSymbolSection.h')
-rw-r--r--src/ZYZSymbolSection.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ZYZSymbolSection.h b/src/ZYZSymbolSection.h
index 2acad2f..2b78f48 100644
--- a/src/ZYZSymbolSection.h
+++ b/src/ZYZSymbolSection.h
@@ -37,11 +37,21 @@ public:
virtual bool populateCandidates () = 0;
virtual bool selectCandidate (guint index) = 0;
+public:
+ String getType () {return m_type; }
+ String getLookup () {return m_lookup; }
+ String getChoice () {return m_choice; }
+
protected:
LookupTable & getLookupTable () { return m_editor.m_lookup_table; }
protected:
PhoneticEditor & m_editor;
+
+ /* other variables. */
+ String m_type;
+ String m_lookup;
+ String m_choice;
};
};