Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/fontcombobox.py
blob: 9de5e34248fa18eb492b56649eda580bcaf6fa0e (plain)
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
# 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
from gi.repository import Gtk
from gi.repository import GObject

FONT_BLACKLIST = ['cmex10', 'cmmi10', 'cmr10', 'cmsy10', 'esint10', 'eufm10',
            'msam10', 'msbm10', 'rsfs10', 'wasy10']


class FontComboBox(Gtk.ComboBox):

    def __init__(self):
        GObject.GObject.__init__(self)
        font_renderer = Gtk.CellRendererText()
        self.pack_start(font_renderer, True)
        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])
                # TODO gtk3
#                font_faces = []
#                for face in family.list_faces():
#                    face_name = face.get_face_name()
#                    font_faces.append(face_name)
#                self.faces[name] = font_faces

        font_model.set_sort_column_id(0, Gtk.SortType.ASCENDING)
        self.set_model(font_model)
        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)