Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gtk2::uniquemessagedata(3pm) [debian man page]

Gtk2::UniqueMessageData(3pm)				User Contributed Perl Documentation			      Gtk2::UniqueMessageData(3pm)

NAME
Gtk2::UniqueMessageData - Message container for Gtk2::UniqueApp DESCRIPTION
This class wraps the messages passed to a "Gtk2::UniqueApp". Usually you will never create a message with the Perl API has this is done by the bindings on your behalf. Since messages are only read through the Perl bidings the methods for setting the contents of a message are not accessible. What's important to understand is that a "Gtk2::MessageData" is a generic container for all message types (text, data, filename and uris). There's no way to query what kind of message a "Gtk2::MessageData" holds. It is the responsability of each application to know it in advance and to call the proper get methods. If you don't call the proper get method you could have a segmentation fault in your application as the C library will try to unmarshall the message with the wrong code. You can retrieve the data set using "Gkt2::MessageData::get()", "Gkt2::MessageData::get_text()" or "Gkt2::MessageData::get_uris()". HIERARCHY
Glib::Boxed +----Gtk2::UniqueMessageData METHODS
string = $message_data->get_filename Retrieves the filename. scalar = $message_data->get Retrieves the raw data of the message. screen = $message_data->get_screen Returns a pointer to the screen from where the message came. You can use "Gkt2::Window::set_screen()" to move windows or dialogs to the right screen. This field is always set by the Unique library. string = $message_data->get_startup_id Retrieves the startup notification id set inside message_data. This field is always set by the Unique library. string = $message_data->get_text Retrieves the text. $message_data->get_uris Retrieves the URIs as an array. integer = $message_data->get_workspace Retrieves the workspace number from where the message came. This field is always set by the Unique library. SEE ALSO
Gtk2::Unique, Glib::Boxed COPYRIGHT
Copyright (C) 2009-2010 by Emmanuel Rodriguez perl v5.14.2 2011-11-16 Gtk2::UniqueMessageData(3pm)

Check Out this Related Man Page

Gtk2::SelectionData(3pm)				User Contributed Perl Documentation				  Gtk2::SelectionData(3pm)

NAME
Gtk2::SelectionData - wrapper for GtkSelectionData HIERARCHY
Glib::Boxed +----Gtk2::SelectionData METHODS
scalar = $d->get_data scalar = $d->get_data_type scalar = $d->get_display scalar = $d->get_format $selection_data->set ($type, $format, $data) o $type (Gtk2::Gdk::Atom) o $format (integer) o $data (Glib::UChar) scalar = $d->get_length pixbuf or undef = $selection_data->get_pixbuf Since: gtk+ 2.6 boolean = $selection_data->set_pixbuf ($pixbuf) o $pixbuf (Gtk2::Gdk::Pixbuf) Since: gtk+ 2.6 (tree_model, path) = $selection_data->get_row_drag_data If $selection_data is not of target type GTK_TREE_MODEL_ROW then the return is an empty list. boolean = $selection_data->set_row_drag_data ($tree_model, $path) o $tree_model (Gtk2::TreeModel) o $path (Gtk2::TreePath) scalar = $d->get_selection scalar = $d->get_target list = $selection_data->get_targets Gets the contents of selection_data as an array of targets. This can be used to interpret the results of getting the standard TARGETS target that is always supplied for any selection. Returns a list of GdkAtoms, the targets. boolean = $selection_data->targets_include_image ($writable) o $writable (boolean) Since: gtk+ 2.6 boolean = $selection_data->targets_include_rich_text ($buffer) o $buffer (Gtk2::TextBuffer) Since: gtk+ 2.10 boolean = $selection_data->targets_include_text boolean = $selection_data->targets_include_uri Since: gtk+ 2.10 string = $selection_data->get_text boolean = $selection_data->set_text ($str, $len=-1) o $str (string) o $len (integer) list = $selection_data->get_uris Since: gtk+ 2.6 boolean = $selection_data->set_uris (...) o ... (list) of strings Since: gtk+ 2.6 SEE ALSO
Gtk2, Glib::Boxed COPYRIGHT
Copyright (C) 2003-2011 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.14.2 2012-05-27 Gtk2::SelectionData(3pm)
Man Page