Files
cthulhu/src/cthulhu/cthulhu_gtkbuilder.py
2024-12-18 10:05:44 -05:00

163 lines
5.6 KiB
Python

#!/usr/bin/env python3
#
# Copyright (c) 2024 Stormux
# Copyright (c) 2010-2012 The Orca Team
# Copyright (c) 2012 Igalia, S.L.
# Copyright (c) 2005-2010 Sun Microsystems Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., Franklin Street, Fifth Floor,
# Boston MA 02110-1301 USA.
#
# Fork of Orca Screen Reader (GNOME)
# Original source: https://gitlab.gnome.org/GNOME/orca
"""Displays a GUI for the user to quit Cthulhu."""
__id__ = "$Id$"
__version__ = "$Revision$"
__date__ = "$Date$"
__copyright__ = "Copyright (c) 2005-2009 Sun Microsystems Inc."
__license__ = "LGPL"
import gettext
from gi.repository import Gtk
from .cthulhu_i18n import _
class GtkBuilderWrapper:
"""
Superclass for GtkBuilder based applications. Just derive from this
and your subclass should create methods whose names correspond to
the signal handlers defined in the GtkBuilder file. Any other attributes
in your class will be safely ignored.
This class will give you the ability to do:
subclass_instance.GtkWindow.method(...)
subclass_instance.widget_name...
"""
def __init__(self, fileName, windowName):
# Load GtkBuilder file.
self.builder = Gtk.Builder()
self.builder.set_translation_domain(gettext.textdomain())
self.builder.add_from_file(fileName)
self.gtkWindow = self.builder.get_object(windowName)
# Force the localization of widgets to work around a GtkBuilder
# bug. See bgo bug 589362.
#
for obj in self.builder.get_objects():
self.localize_widget(obj)
# Set default application icon.
self.set_cthulhu_icon()
instance_attributes = {}
for attribute in dir(self.__class__):
instance_attributes[attribute] = getattr(self, attribute)
self.builder.connect_signals(instance_attributes)
def set_cthulhu_icon(self):
"""Get the icon in all sizes from the current theme and set them as
default for all application windows.
"""
icon_theme = Gtk.IconTheme.get_default()
try:
icon16 = icon_theme.load_icon("cthulhu", 16, 0)
icon22 = icon_theme.load_icon("cthulhu", 22, 0)
icon24 = icon_theme.load_icon("cthulhu", 24, 0)
icon32 = icon_theme.load_icon("cthulhu", 32, 0)
icon48 = icon_theme.load_icon("cthulhu", 48, 0)
except Exception:
return
else:
Gtk.Window.set_default_icon_list((icon16,
icon22,
icon24,
icon32,
icon48))
def get_widget(self, attribute):
"""Return the requested widget. This routine has been introduced
(and calls to it made by the Cthulhu GtkBuilder sub-classes), to prevent
"No class attribute" pychecker errors caused when using __getattr__.
Arguments:
- attribute: name of the widget to return.
"""
widget = self.builder.get_object(attribute)
if widget is None:
raise AttributeError("Widget [" + attribute + "] not found")
return widget
def __getattr__(self, attribute): # Called when no attribute in __dict__
widget = self.builder.get_object(attribute)
if widget is None:
raise AttributeError("Widget [" + attribute + "] not found")
self.__dict__[attribute] = widget # Add reference to cache.
return widget
def localize_widget(self, obj):
"""Force the localization of the label/title of GtkBuilder objects
Arguments:
- obj: the GtkBuilder object whose label or title should be localized
"""
# TODO - JD: This is a workaround for a GtkBuilder bug which prevents
# the strings displayed by widgets from being translated. See bgo bug
# 589362.
#
try:
useMarkup = obj.get_use_markup()
useUnderline = obj.get_use_underline()
except Exception:
useMarkup = False
useUnderline = False
if isinstance(obj, Gtk.Frame):
# For some reason, if we localize the frame, which has a label
# but does not (itself) support use_markup, we get unmarked
# labels which are not bold but which do have <b></b>. If we
# skip the frames, the labels get processed as expected. And
# there was much rejoicing. Yea.
#
return
try:
title = obj.get_title()
if title and len(title):
obj.set_title(_(title))
except Exception:
try:
text = obj.get_label()
except Exception:
return False
if text and len(text):
if useMarkup:
obj.set_markup(_(text))
else:
obj.set_label(_(text))
if useUnderline:
obj.set_use_underline(True)
return True