gtkutils.py :  » Installer » Zero-Install » zeroinstall-injector-0.47 » zeroinstall » gtkui » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Installer » Zero Install 
Zero Install » zeroinstall injector 0.47 » zeroinstall » gtkui » gtkutils.py
"""Useful utility methods for GTK."""

# Copyright (C) 2009, Thomas Leonard
# See the README file for details, or visit http://0install.net.

from zeroinstall import _
import gtk

class Template:
  """Wrapper for GtkBuilder widget tree that throws a sensible exception if the widget isn't found."""
  def __init__(self, builderfile, root):
    """Constructor.
    @param builderfile: pathname of the .ui file to load
    @param root: the name of the top-level widget inside the file"""
    self.builder = gtk.Builder()
    self.builder.set_translation_domain('zero-install')
    self.builder.add_from_file(builderfile)
    self.builderfile = builderfile
    self.root = root

  def get_widget(self, name = None):
    """Look up a widget by name."""
    if not name:
      name = self.root
    widget = self.builder.get_object(name)
    assert widget, "Widget '%s' not found in GtkBuilder file '%s'" % (name, self.builderfile)
    return widget

def show_message_box(parent, message, type = gtk.MESSAGE_ERROR):
  """Display a non-modal message box with an OK button.
  @param parent: the parent window
  @param message: the message to be displayed
  @param type: the type of box (used for the icon)"""
  box = gtk.MessageDialog(parent, gtk.DIALOG_DESTROY_WITH_PARENT,
        type, gtk.BUTTONS_OK,
        str(message))
  box.set_position(gtk.WIN_POS_CENTER)
  def resp(b, r):
    b.destroy()
  box.connect('response', resp)
  box.show()

_busy_pointer = None
def get_busy_pointer():
  """Get a GDK background-activity cursor.
  Use this when something is happening, but the GUI is still responsive.
  @return: the busy cursor (a singleton)
  @rtype: gdk.Cursor
  """
  global _busy_pointer
  if _busy_pointer is not None:
    return _busy_pointer

  # This is crazy. We build a cursor that looks like the old
  # Netscape busy-with-a-pointer cursor and set that, then the
  # X server replaces it with a decent-looking one!!
  # See http://mail.gnome.org/archives/gtk-list/2007-May/msg00100.html

  bit_data = "\
\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\
\x0c\x00\x00\x00\x1c\x00\x00\x00\x3c\x00\x00\x00\
\x7c\x00\x00\x00\xfc\x00\x00\x00\xfc\x01\x00\x00\
\xfc\x3b\x00\x00\x7c\x38\x00\x00\x6c\x54\x00\x00\
\xc4\xdc\x00\x00\xc0\x44\x00\x00\x80\x39\x00\x00\
\x80\x39\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00"

  try:
    pix = gtk.gdk.bitmap_create_from_data(None, bit_data, 32, 32)
    color = gtk.gdk.Color()
    _busy_pointer = gtk.gdk.Cursor(pix, pix, color, color, 2, 2)
  except:
    #old bug http://bugzilla.gnome.org/show_bug.cgi?id=103616
    _busy_pointer = gtk.gdk.Cursor(gtk.gdk.WATCH)
  return _busy_pointer
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.