Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2012-04-18 11:36:51 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2012-04-18 11:36:51 (GMT)
commit62766c594fd4069c77fdbf8ba8bc742500a7a549 (patch)
tree7dca77c15162948d1fa6c2c4ad7823502642184f
parentc514bdec5acabcd5615adc7d14840f1acb5b2a2f (diff)
Use FontComboBox, allow the user preview the font in the combo.
Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
-rw-r--r--fontcombobox.py65
-rw-r--r--toolbox.py21
2 files changed, 72 insertions, 14 deletions
diff --git a/fontcombobox.py b/fontcombobox.py
new file mode 100644
index 0000000..58f9140
--- /dev/null
+++ b/fontcombobox.py
@@ -0,0 +1,65 @@
+# Copyright (C) 2012 Gonzalo Odiard <gonzalo@laptop.org>
+# Based in code form Flavio Danesse <fdanesse@activitycentral.com>
+# and Ariel Calzada <ariel.calzada@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 of the License, 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 St, Fifth Floor, Boston, MA 02110-1301 USA
+import gtk
+
+FONT_BLACKLIST = ['cmex10', 'cmmi10', 'cmr10', 'cmsy10', 'esint10', 'eufm10',
+ 'msam10', 'msbm10', 'rsfs10', 'wasy10']
+
+
+class FontComboBox(gtk.ComboBox):
+
+ def __init__(self):
+ gtk.ComboBox.__init__(self)
+ font_renderer = gtk.CellRendererText()
+ self.pack_start(font_renderer)
+ self.add_attribute(font_renderer, 'text', 0)
+ self.add_attribute(font_renderer, 'font', 0)
+ font_model = gtk.ListStore(str)
+
+ context = self.get_pango_context()
+ font_index = 0
+ self.faces = {}
+
+ for family in context.list_families():
+ name = family.get_name()
+ if name not in FONT_BLACKLIST:
+ font_model.append([name])
+ font_faces = []
+ for face in family.list_faces():
+ face_name = face.get_face_name()
+ font_faces.append(face_name)
+ self.faces[name] = font_faces
+
+ sorter = gtk.TreeModelSort(font_model)
+ sorter.set_sort_column_id(0, gtk.SORT_ASCENDING)
+ self.set_model(sorter)
+ self.show()
+
+ def set_font_name(self, font_name):
+ count = 0
+ tree_iter = self.get_model().get_iter_first()
+ while tree_iter is not None:
+ value = self.get_model().get_value(tree_iter, 0)
+ if value == font_name:
+ self.set_active(count)
+ count = count + 1
+ tree_iter = self.get_model().iter_next(tree_iter)
+
+ def get_font_name(self):
+ tree_iter = self.get_active_iter()
+ return self.get_model().get_value(tree_iter, 0)
diff --git a/toolbox.py b/toolbox.py
index 25248ad..ee08996 100644
--- a/toolbox.py
+++ b/toolbox.py
@@ -82,6 +82,8 @@ from sugar.activity.widgets import ActivityToolbarButton
from sugar.graphics.toolbarbox import ToolbarButton, ToolbarBox
from sugar.activity.widgets import StopButton
+from fontcombobox import FontComboBox
+
class DrawToolbarBox(ToolbarBox):
"""Create toolbars for the activity"""
@@ -604,20 +606,11 @@ class TextToolbar(gtk.Toolbar):
tool_item = ToolComboBox(self._font_size_combo)
self.insert(tool_item, -1)
- self._fonts = []
- pango_context = self.get_pango_context()
- pango_context.set_language(pango.Language("en"))
- for family in pango_context.list_families():
- self._fonts.append(family.get_name())
- self._fonts.sort()
-
- self._font_combo = gtk.combo_box_new_text()
+ self._font_combo = FontComboBox()
self._fonts_changed_id = self._font_combo.connect('changed',
self.__font_changed_cb)
- for i, f in enumerate(self._fonts):
- self._font_combo.append_text(f)
- if f == activity.area.font_description.get_family():
- self._font_combo.set_active(i)
+ font_name = activity.area.font_description.get_family()
+ self._font_combo.set_font_name(font_name)
tool_item = ToolComboBox(self._font_combo)
self.insert(tool_item, -1)
self.show_all()
@@ -646,8 +639,8 @@ class TextToolbar(gtk.Toolbar):
def __font_changed_cb(self, combo):
activity = self._activity
- value = self.get_active_text(combo)
- activity.area.font_description.set_family(value)
+ font_name = combo.get_font_name()
+ activity.area.font_description.set_family(font_name)
activity.textview.modify_font(activity.area.font_description)
def get_active_text(self, combobox):