![]() |
![]() |
![]() |
Eye of MATE Reference Manual | ![]() |
---|---|---|---|---|
Top | Description | Object Hierarchy | Implemented Interfaces | Properties |
enum EomThumbNavMode; struct EomThumbNav; GtkWidget * eom_thumb_nav_new (GtkWidget *thumbview
,EomThumbNavMode mode
,gboolean show_buttons
); gboolean eom_thumb_nav_get_show_buttons (EomThumbNav *nav
); void eom_thumb_nav_set_show_buttons (EomThumbNav *nav
,gboolean show_buttons
); EomThumbNavMode eom_thumb_nav_get_mode (EomThumbNav *nav
); void eom_thumb_nav_set_mode (EomThumbNav *nav
,EomThumbNavMode mode
);
GObject +----GInitiallyUnowned +----GtkObject +----GtkWidget +----GtkContainer +----GtkBox +----GtkHBox +----EomThumbNav
"mode" gint : Read / Write "show-buttons" gboolean : Read / Write "thumbview" EomThumbView* : Read / Write / Construct Only
typedef enum { EOM_THUMB_NAV_MODE_ONE_ROW, EOM_THUMB_NAV_MODE_ONE_COLUMN, EOM_THUMB_NAV_MODE_MULTIPLE_ROWS, EOM_THUMB_NAV_MODE_MULTIPLE_COLUMNS } EomThumbNavMode;
GtkWidget * eom_thumb_nav_new (GtkWidget *thumbview
,EomThumbNavMode mode
,gboolean show_buttons
);
Creates a new thumbnail navigation widget.
|
an EomThumbView to embed in the navigation widget. |
|
The navigation mode. |
|
Whether to show the navigation buttons. |
Returns : |
a new EomThumbNav object. |
gboolean eom_thumb_nav_get_show_buttons (EomThumbNav *nav
);
Gets whether the navigation buttons are visible.
|
an EomThumbNav. |
Returns : |
TRUE if the navigation buttons are visible,
FALSE otherwise. |
void eom_thumb_nav_set_show_buttons (EomThumbNav *nav
,gboolean show_buttons
);
Sets whether the navigation buttons to the left and right of the widget should be visible.
|
an EomThumbNav. |
|
TRUE to show the buttons, FALSE to hide them. |
EomThumbNavMode eom_thumb_nav_get_mode (EomThumbNav *nav
);
Gets the navigation mode in nav
.
|
an EomThumbNav. |
Returns : |
A value in EomThumbNavMode. |
void eom_thumb_nav_set_mode (EomThumbNav *nav
,EomThumbNavMode mode
);
Sets the navigation mode in nav
. See EomThumbNavMode for details.
|
An EomThumbNav. |
|
One of EomThumbNavMode. |
"mode"
property "mode" gint : Read / Write
Thumb navigator mode.
Allowed values: [0,2]
Default value: 0
"show-buttons"
property "show-buttons" gboolean : Read / Write
Whether to show navigation buttons or not.
Default value: TRUE
"thumbview"
property"thumbview" EomThumbView* : Read / Write / Construct Only
The internal thumbnail viewer widget.