|
Revision 456, 1.0 kB
(checked in by jeffrey, 1 year ago)
|
+ remaining docs
|
| Line | |
|---|
| 1 |
#include "gtkimageviewperl.h" |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
MODULE = Gtk2::ImageView::ScrollWin PACKAGE = Gtk2::ImageView::ScrollWin PREFIX = gtk_image_scroll_win_ |
|---|
| 5 |
|
|---|
| 6 |
=for object Gtk2::ImageView::ScrollWin Scrollable window suitable for Gtk2::ImageView. |
|---|
| 7 |
|
|---|
| 8 |
=head1 DESCRIPTION |
|---|
| 9 |
|
|---|
| 10 |
Gtk2::ImageView::ScrollWin provides a widget similar in appearance to Gtk2::ScrollWin that is more suitable for displaying Gtk2::ImageView's. |
|---|
| 11 |
|
|---|
| 12 |
=cut |
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
=for apidoc |
|---|
| 16 |
|
|---|
| 17 |
Creates a new Gtk2::ImageView::ScrollWin containing the Gtk2::ImageView. |
|---|
| 18 |
|
|---|
| 19 |
The widget is built using four subwidgets arranged inside a Gtk2::Table with two columns and two rows. Two scrollbars, one navigator button (the decorations) and one Gtk2::ImageView. |
|---|
| 20 |
|
|---|
| 21 |
When the Gtk2::ImageView fits inside the window, the decorations are hidden. |
|---|
| 22 |
|
|---|
| 23 |
=over |
|---|
| 24 |
|
|---|
| 25 |
=item view : a Gtk2::ImageView to show. |
|---|
| 26 |
|
|---|
| 27 |
=back |
|---|
| 28 |
|
|---|
| 29 |
=head3 Returns |
|---|
| 30 |
|
|---|
| 31 |
=over |
|---|
| 32 |
|
|---|
| 33 |
=item A new Gtk2::ImageView::ScrollWin. |
|---|
| 34 |
|
|---|
| 35 |
=back |
|---|
| 36 |
|
|---|
| 37 |
=cut |
|---|
| 38 |
GtkWidget_ornull * |
|---|
| 39 |
gtk_image_scroll_win_new (class, view) |
|---|
| 40 |
GtkImageView * view |
|---|
| 41 |
C_ARGS: |
|---|
| 42 |
view |
|---|