summaryrefslogtreecommitdiffstats
path: root/setup/main.py
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2014-01-16 14:30:15 +0800
committerPeng Wu <alexepico@gmail.com>2014-01-16 14:30:15 +0800
commit3eae27a1e309cfa6615853b899acf91c69cc2acf (patch)
treec68fc3ac4074aefcbb3a621a3bd5f808a31ac51b /setup/main.py
parent0b6ae4196aaf21d508ddf231a53048afb04182ce (diff)
downloadibus-libzhuyin-3eae27a1e309cfa6615853b899acf91c69cc2acf.tar.gz
ibus-libzhuyin-3eae27a1e309cfa6615853b899acf91c69cc2acf.tar.xz
ibus-libzhuyin-3eae27a1e309cfa6615853b899acf91c69cc2acf.zip
start to write setup python code
Diffstat (limited to 'setup/main.py')
-rw-r--r--setup/main.py125
1 files changed, 125 insertions, 0 deletions
diff --git a/setup/main.py b/setup/main.py
index e69de29..5d30ffd 100644
--- a/setup/main.py
+++ b/setup/main.py
@@ -0,0 +1,125 @@
+# -*- coding: utf-8 -*-
+#
+# ibus-libzhuyin - New Zhuyin engine based on libzhuyin for IBus
+#
+# Copyright (c) 2013-2014 Peng Wu <alexepico@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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+import gettext
+
+import locale
+import os
+import sys
+
+from gi.repository import GLib
+from gi.repository import Gtk
+from gi.repository import IBus
+
+locale.setlocale(locale.LC_ALL, "")
+localedir = os.getenv("IBUS_LOCALEDIR")
+pkgdatadir = os.getenv("IBUS_PKGDATADIR")
+gettext.install('ibus-libzhuyin', localedir)
+
+class PreferencesWindow:
+ def __init__(self, engine, parent=None):
+ self.__bus = IBus.Bus()
+ self.__config = self.__bus.get_config()
+ self.__builder = Gtk.Builder()
+ self.__builder.set_translation_domain("ibus-libzhuyin")
+ self.__builder.add_from_file("ibus-libzhuyin-preferences.ui")
+ self.__window = self.__builder.get_object("window")
+ self.__init_pages()
+
+ if engine == "zhuyin":
+ self.__init_inputting()
+ self.__init_keyboard()
+ self.__init_fuzzy_zhuyin()
+ self.__init_user_phrases()
+ self.__init_about()
+ self.__update_fuzzy_zhuyin()
+ else:
+ print("Error: Unknown Engine")
+ exit()
+
+ self.__pages.set_current_page(0)
+ self.__window.connect("delete-event", Gtk.main_quit)
+
+
+ def __init_pages(self):
+ self.__pages = self.__builder.get_object("pages")
+ self.__page_inputting = self.__builder.get_object("pageInputting")
+ self.__page_keyboard = self.__builder.get_object("pageKeyboard")
+ self.__page_fuzzy_zhuyin = self.__builder.get_object("pageFuzzyZhuyin")
+ self.__page_user_phrases = self.__builder.get_object("pageUserPhrases")
+ self.__page_about = self.__builder.get_object("pageAbout")
+
+ self.__page_inputting.hide()
+ self.__page_keyboard.hide()
+ self.__page_fuzzy_zhuyin.hide()
+ self.__page_user_phrases.hide()
+ self.__page_about.hide()
+
+
+ def __init_inputting(self):
+ pass
+
+
+ def __init_keyboard(self):
+ pass
+
+
+ def __init_fuzzy_zhuyin(self):
+ pass
+
+
+ def __init_user_phrases(self):
+ pass
+
+
+ def __init_about(self):
+ pass
+
+
+ def __update_fuzzy_zhuyin(self):
+ options = [
+ ("fuzzyzhuyin_c_ch", "ㄘ <=> ㄔ"),
+ ("fuzzyzhuyin_z_zh", "ㄗ <=> ㄓ"),
+ ("fuzzyzhuyin_s_sh", "ㄙ <=> ㄕ"),
+ ("fuzzyzhuyin_l_n", "ㄌ <=> ㄋ"),
+ ("fuzzyzhuyin_f_h", "ㄈ <=> ㄏ"),
+ ("fuzzyzhuyin_l_r", "ㄌ <=> ㄖ"),
+ ("fuzzyzhuyin_g_k", "ㄍ <=> ㄎ"),
+ ("fuzzyzhuyin_an_ang", "ㄢ <=> ㄤ"),
+ ("fuzzyzhuyin_en_eng", "ㄣ <=> ㄥ"),
+ ("fuzzyzhuyin_in_ing", "ㄧㄣ <=> ㄧㄥ"),
+ ]
+
+ for name, label in options:
+ self.__builder.get_object(name).set_label(label)
+
+
+ def show(self):
+ self.__window.show()
+
+
+def main():
+ name = "zhuyin"
+ PreferencesWindow(name).show()
+ Gtk.main()
+
+
+if __name__ == "__main__":
+ main()