#!/usr/bin/python3
# -*- coding: utf-8 -*-
#
# ibus-array - The Array 30 Engine for IBus
#
# Copyright (c) 2009-2019 Keng-Yu Lin  <kengyu@debian.org>
#                         Yu-Chun Wang <mainlander1122@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
# 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 sys
import os
import gi
gi.require_version("Gtk", "3.0")
gi.require_version("IBus", "1.0")
from gi.repository import Gtk
from gi.repository import GLib
from gi.repository import IBus
from gettext import gettext as _
import gettext
import config

class Setup:
    def __init__(self, bus):
        self.__bus = bus
        self.__config = self.__bus.get_config()
        self.__config.connect("value-changed", self.on_value_changed, None)
        self.__create_ui()

    def __create_ui(self):
        gettext.bindtextdomain("ibus-array")
        gettext.textdomain("ibus-array")
        self.__window = Gtk.Dialog(
            title=_('ibus-array setup'),
            parent=None,
            modal=True)
        self.__window.add_buttons(
            Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
            Gtk.STOCK_OK, Gtk.ResponseType.OK)
        icon_file = os.path.join(config.datadir, "ibus-array", "icons", "ibus-array.png")
        self.__window.set_icon_from_file(icon_file)
        self.__special_notify_button = Gtk.CheckButton(label=_("Special Code Notification"))
        self.__window.vbox.pack_start(self.__special_notify_button, True, True, 10)
        self.__special_only_button = Gtk.CheckButton(label=_("Special Code Only Mode"))
        self.__window.vbox.pack_start(self.__special_only_button, True, True ,10)
        self.__output_simplified_button = Gtk.CheckButton(label=_("Convert output to simplified Chinese"))
        self.__window.vbox.pack_start(self.__output_simplified_button, True, True, 10)
        self.__use_shift_button = Gtk.CheckButton(label=_("Use Shift to switch English/Chinese mode"))
        self.__window.vbox.pack_start(self.__use_shift_button, True, True, 10)

        current_special_mode = self.__read("SpecialOnly", False)
        current_special_notify = self.__read("SpecialNotify", False)
        current_output_simplified = self.__read("OutputSimplified", False)
        current_use_shift = self.__read("UseShift", False)

        if current_special_notify:
            self.__special_notify_button.set_active(True)
        if current_special_mode:
            self.__special_only_button.set_active(True)
        if current_output_simplified:
            self.__output_simplified_button.set_active(True)
        if current_use_shift:
            self.__use_shift_button.set_active(True)

        self.__window.show_all()

    def run(self):
        res = self.__window.run()
        if res == Gtk.ResponseType.OK:
            self.apply()
        self.__window.destroy()

    def apply(self):
        select_special_notify = self.__special_notify_button.get_active()
        select_special_mode = self.__special_only_button.get_active()
        select_output_simplified = self.__output_simplified_button.get_active()
        select_use_shift = self.__use_shift_button.get_active()

        if select_special_notify:
            self.__write("SpecialNotify", GLib.Variant.new_boolean(True))
        else:
            self.__write("SpecialNotify", GLib.Variant.new_boolean(False))

        if select_special_mode:
            self.__write("SpecialOnly", GLib.Variant.new_boolean(True))
        else:
            self.__write("SpecialOnly", GLib.Variant.new_boolean(False))

        if select_output_simplified:
            self.__write("OutputSimplified", GLib.Variant.new_boolean(True))
        else:
            self.__write("OutputSimplified", GLib.Variant.new_boolean(False))

        if select_use_shift:
            self.__write("UseShift", GLib.Variant.new_boolean(True))
        else:
            self.__write("UseShift", GLib.Variant.new_boolean(False))

    def on_value_changed(self, config, section, name, value, data):
        if section == 'engine/Array':
            if name == 'SpecialNotify':
                if value:
                    self.__special_notify_button.set_active(True)
                else:
                    self.__special_notify_button.set_active(False)

            elif name == 'SpecialOnly':
                if value:
                    self.__special_only_button.set_active(True)
                else:
                    self.__special_only_button.set_active(False)

            elif name == 'OutputSimplified':
                if value:
                    self.__output_simplified_button.set_active(True)
                else:
                    self.__output_simplified_button.set_active(False)

            elif name == 'UseShift':
                if value:
                    self.__use_shift_button.set_active(True)
                else:
                    self.__use_shift_button.set_active(False)

    def __read(self, name, v):
        value = self.__config.get_value("engine/Array", name)
        if value is None:
            return v
        return value

    def __write(self, name, v):
        return self.__config.set_value("engine/Array", name, v)

if __name__ == '__main__':
    bus = IBus.Bus()
    if bus.is_connected():
        Setup(bus).run()
