This file is indexed.

/usr/lib/perl5/Gtk2/UniqueMessageData.pod is in libgtk2-unique-perl 0.05-1build2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
=head1 NAME

Gtk2::UniqueMessageData - Message container for Gtk2::UniqueApp

=cut

=for position DESCRIPTION

=head1 DESCRIPTION

This class wraps the messages passed to a C<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 C<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 C<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 C<Gkt2::MessageData::get()>,
C<Gkt2::MessageData::get_text()> or C<Gkt2::MessageData::get_uris()>.

=cut



=head1 HIERARCHY

  Glib::Boxed
  +----Gtk2::UniqueMessageData



=cut

=for object Gtk2::UniqueMessageData - Message container for Gtk2::UniqueApp
=cut




=head1 METHODS

=head2 string = $message_data-E<gt>B<get_filename> 


Retrieves the filename.


=head2 scalar = $message_data-E<gt>B<get> 


Retrieves the raw data of the message.


=head2 screen = $message_data-E<gt>B<get_screen> 


Returns a pointer to the screen from where the message came. You can use
C<Gkt2::Window::set_screen()> to move windows or dialogs to the right screen.
This field is always set by the Unique library.


=head2 string = $message_data-E<gt>B<get_startup_id> 


Retrieves the startup notification id set inside message_data. This field is
always set by the Unique library.

=head2 string = $message_data-E<gt>B<get_text> 


Retrieves the text.


=head2 $message_data-E<gt>B<get_uris> 


Retrieves the URIs as an array.


=head2 integer = $message_data-E<gt>B<get_workspace> 


Retrieves the workspace number from where the message came. This field is
always set by the Unique library.




=cut


=head1 SEE ALSO

L<Gtk2::Unique>, L<Glib::Boxed>


=cut


=head1 COPYRIGHT

Copyright (C) 2009-2010 by Emmanuel Rodriguez


=cut