1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
# vim:set noet ts=4:
#
# ibus-anthy - The Anthy engine for IBus
#
# Copyright (c) 2007-2008 Peng Huang <shawn.p.huang@gmail.com>
# Copyright (c) 2009 Hideaki ABE <abe.sendai@gmail.com>
# Copyright (c) 2007-2010 Red Hat, Inc.
#
# 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., 675 Mass Ave, Cambridge, MA 02139, USA.
from ibus import Bus
class Prefs(object):
_prefix = 'engine/dummy'
def __init__(self, bus=None, config=None):
self.default = {}
self.modified = {}
self.new = {}
self._config = config if config else \
bus.get_config() if bus else \
Bus().get_config()
def keys(self, section):
return self.default[section].keys()
def sections(self):
return self.default.keys()
def set_new_section(self, section):
self.default.setdefault(section, {})
def set_new_key(self, section, key):
self.default[section].setdefault(key)
def get_value(self, section, key):
try:
return self.new[section][key]
except:
try:
return self.modified[section][key]
except:
return self.default[section][key]
def set_value(self, section, key, value):
self.default[section][key]
self.new.setdefault(section, {})[key] = value
def fetch_all(self):
for s in self.sections():
self.fetch_section(s)
def fetch_section(self, section):
for k in self.keys(section):
self.fetch_item(section, k)
def fetch_item(self, section, key, readonly=False):
s = '/'.join(
[s for s in '/'.join([self._prefix, section]).split('/') if s])
v = self._config.get_value(s, key, None)
if readonly:
return v != None
if v != None:
self.modified.setdefault(section, {})[key] = v if v != [''] else []
return True
def commit_all(self):
for s in self.new.keys():
self.commit_section(s)
def commit_section(self, section):
if section in self.new:
for k in self.new[section].keys():
self.commit_item(section, k)
def commit_item(self, section, key):
if section in self.new and key in self.new[section]:
s = '/'.join(
[s for s in '/'.join([self._prefix, section]).split('/') if s])
v = self.new[section][key]
if v == []:
v = ['']
self._config.set_value(s, key, v)
self.modified.setdefault(section, {})[key] = v
del(self.new[section][key])
def undo_all(self):
self.new.clear()
def undo_section(self, section):
try:
del(self.new[section])
except:
pass
def undo_item(self, section, key):
try:
del(self.new[section][key])
except:
pass
def set_default_all(self):
for s in self.sections():
self.set_default_section(s)
def set_default_section(self, section):
for k in self.keys(section):
self.set_default_item(section, k)
def set_default_item(self, section, key):
try:
if key in self.modified[section] or key in self.new[section]:
self.new[section][key] = self.default[section][key]
except:
pass
|