docs: enum cleanup
Move GtkExpanderStyle over to the deprecated GtkStyle.
This commit is contained in:
@ -6240,6 +6240,7 @@ gtk_gradient_get_type
|
|||||||
GTK_STYLE_ATTACHED
|
GTK_STYLE_ATTACHED
|
||||||
GtkStyle
|
GtkStyle
|
||||||
GtkStyleClass
|
GtkStyleClass
|
||||||
|
GtkExpanderStyle
|
||||||
gtk_style_new
|
gtk_style_new
|
||||||
gtk_style_copy
|
gtk_style_copy
|
||||||
gtk_style_attach
|
gtk_style_attach
|
||||||
@ -6524,7 +6525,6 @@ gtk_binding_set_add_path
|
|||||||
GtkBaselinePosition
|
GtkBaselinePosition
|
||||||
GtkDeleteType
|
GtkDeleteType
|
||||||
GtkDirectionType
|
GtkDirectionType
|
||||||
GtkExpanderStyle
|
|
||||||
GtkIMPreeditStyle
|
GtkIMPreeditStyle
|
||||||
GtkIMStatusStyle
|
GtkIMStatusStyle
|
||||||
GtkJustification
|
GtkJustification
|
||||||
|
|||||||
@ -51,6 +51,23 @@ typedef struct _GtkStyleClass GtkStyleClass;
|
|||||||
typedef struct _GtkThemeEngine GtkThemeEngine;
|
typedef struct _GtkThemeEngine GtkThemeEngine;
|
||||||
typedef struct _GtkRcProperty GtkRcProperty;
|
typedef struct _GtkRcProperty GtkRcProperty;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GtkExpanderStyle:
|
||||||
|
* @GTK_EXPANDER_COLLAPSED: The style used for a collapsed subtree.
|
||||||
|
* @GTK_EXPANDER_SEMI_COLLAPSED: Intermediate style used during animation.
|
||||||
|
* @GTK_EXPANDER_SEMI_EXPANDED: Intermediate style used during animation.
|
||||||
|
* @GTK_EXPANDER_EXPANDED: The style used for an expanded subtree.
|
||||||
|
*
|
||||||
|
* Used to specify the style of the expanders drawn by a #GtkTreeView.
|
||||||
|
*/
|
||||||
|
typedef enum
|
||||||
|
{
|
||||||
|
GTK_EXPANDER_COLLAPSED,
|
||||||
|
GTK_EXPANDER_SEMI_COLLAPSED,
|
||||||
|
GTK_EXPANDER_SEMI_EXPANDED,
|
||||||
|
GTK_EXPANDER_EXPANDED
|
||||||
|
} GtkExpanderStyle;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GTK_STYLE_ATTACHED:
|
* GTK_STYLE_ATTACHED:
|
||||||
* @style: a #GtkStyle.
|
* @style: a #GtkStyle.
|
||||||
|
|||||||
@ -173,23 +173,6 @@ typedef enum
|
|||||||
GTK_DIR_RIGHT
|
GTK_DIR_RIGHT
|
||||||
} GtkDirectionType;
|
} GtkDirectionType;
|
||||||
|
|
||||||
/**
|
|
||||||
* GtkExpanderStyle:
|
|
||||||
* @GTK_EXPANDER_COLLAPSED: The style used for a collapsed subtree.
|
|
||||||
* @GTK_EXPANDER_SEMI_COLLAPSED: Intermediate style used during animation.
|
|
||||||
* @GTK_EXPANDER_SEMI_EXPANDED: Intermediate style used during animation.
|
|
||||||
* @GTK_EXPANDER_EXPANDED: The style used for an expanded subtree.
|
|
||||||
*
|
|
||||||
* Used to specify the style of the expanders drawn by a #GtkTreeView.
|
|
||||||
*/
|
|
||||||
typedef enum
|
|
||||||
{
|
|
||||||
GTK_EXPANDER_COLLAPSED,
|
|
||||||
GTK_EXPANDER_SEMI_COLLAPSED,
|
|
||||||
GTK_EXPANDER_SEMI_EXPANDED,
|
|
||||||
GTK_EXPANDER_EXPANDED
|
|
||||||
} GtkExpanderStyle;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GtkIconSize:
|
* GtkIconSize:
|
||||||
* @GTK_ICON_SIZE_INVALID: Invalid size.
|
* @GTK_ICON_SIZE_INVALID: Invalid size.
|
||||||
|
|||||||
Reference in New Issue
Block a user