def get_parent()
def get_screen()
def is_showing()
def set_parent(parent
)
def set_screen(screen
)
Functions
def gtk.show_uri(screen
, uri
, timestamp
)
|
def get_parent()
def get_screen()
def is_showing()
def set_parent(parent
)
def set_screen(screen
)
Functions
def gtk.show_uri(screen
, uri
, timestamp
)
|
The functions and objects described here make working with GTK+ and GIO more convenient.
gtk.MountOperation
is needed when mounting volumes and
gtk.show_uri
()
is a convenient way to launch applications for URIs. Another object that is worth
mentioning in this context is
gtk.gdk.AppLaunchContext
,
which provides visual feedback when lauching applications.
gtk.MountOperation(parent
=None)
| transient parent of the window, or
None . |
Returns : | a new
gtk.MountOperation .
|
This method is available in PyGTK 2.14 and above.
Creates a new gtk.MountOperation
.
def get_parent()
Returns : | a new
gtk.MountOperation .
|
This method is available in PyGTK 2.14 and above.
The get_parent
() method gets the transient
parent used by the
gtk.MountOperation
.
def get_screen()
Returns : | the screen on which windows of op are shown. |
This method is available in PyGTK 2.14 and above.
The get_screen
() method gets the screen
on which windows of the
gtk.MountOperation
will be shown.
def is_showing()
Returns : | True if op is currently displaying a window.
|
This method is available in PyGTK 2.14 and above.
The is_showing
() method returns whetherthe
gtk.MountOperation
is currently displaying a window.
def set_parent(parent
)
| transient parent of the window,
or None . |
This method is available in PyGTK 2.14 and above.
The set_parent
() method sets the
transient parent for windows shown by the
gtk.MountOperation
.
def set_screen(screen
)
| a
gtk.gdk.Screen .
|
This method is available in PyGTK 2.14 and above.
The set_screen
() method gets the screen
on which windows of the
gtk.MountOperation
will be shown.
def show_uri(screen
, uri
, timestamp
)
| A
gtk.gdk.Screen
to show the uri on or None for the default screen.
|
| the uri to show. |
| a timestamp to prevent focus stealing. |
This function is available in PyGTK 2.14 and above.
The show_uri
() function is a convenience
function for launching the default application to show the uri.
The uri must be of a form understood by GIO. Typical examples are:
file:///home/gnome/pict.jpg http://www.gnome.org mailto:me@gnome.org
Ideally the timestamp is taken from the event triggering the
gtk.show_uri
()
call. If timestamp is not known you can take gtk.gdk.CURRENT_TIME.
This function can be used as a replacement for gnome_vfs_url_show() and gnome_url_show().
© manpagez.com 2000-2024 Individual documents may contain additional copyright information.