![]() |
![]() |
![]() |
Eye of MATE Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
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
);
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. |