libgimpwidgets: keep gimpwidgetsenums.h in alphabetical order

This commit is contained in:
Michael Natterer
2019-06-01 16:41:59 +02:00
parent a1aa179436
commit 2f925e7277
2 changed files with 55 additions and 53 deletions

View File

@ -145,6 +145,29 @@ typedef enum
} GimpColorSelectorModel;
/**
* GimpIntComboBoxLayout:
* @GIMP_INT_COMBO_BOX_LAYOUT_ICON_ONLY: show icons only
* @GIMP_INT_COMBO_BOX_LAYOUT_ABBREVIATED: show icons and abbreviated labels,
* when available
* @GIMP_INT_COMBO_BOX_LAYOUT_FULL: show icons and full labels
*
* Possible layouts for #GimpIntComboBox.
*
* Since: 2.10
**/
#define GIMP_TYPE_INT_COMBO_BOX_LAYOUT (gimp_int_combo_box_layout_get_type ())
GType gimp_int_combo_box_layout_get_type (void) G_GNUC_CONST;
typedef enum
{
GIMP_INT_COMBO_BOX_LAYOUT_ICON_ONLY,
GIMP_INT_COMBO_BOX_LAYOUT_ABBREVIATED,
GIMP_INT_COMBO_BOX_LAYOUT_FULL
} GimpIntComboBoxLayout;
/**
* GimpPageSelectorTarget:
* @GIMP_PAGE_SELECTOR_TARGET_LAYERS: import as layers of one image
@ -213,27 +236,6 @@ typedef enum
} GimpZoomType;
/**
* GimpIntComboBoxLayout:
* @GIMP_INT_COMBO_BOX_LAYOUT_ICON_ONLY: show icons only
* @GIMP_INT_COMBO_BOX_LAYOUT_ABBREVIATED: show icons and abbreviated labels,
* when available
* @GIMP_INT_COMBO_BOX_LAYOUT_FULL: show icons and full labels
*
* Possible layouts for #GimpIntComboBox.
**/
#define GIMP_TYPE_INT_COMBO_BOX_LAYOUT (gimp_int_combo_box_layout_get_type ())
GType gimp_int_combo_box_layout_get_type (void) G_GNUC_CONST;
typedef enum
{
GIMP_INT_COMBO_BOX_LAYOUT_ICON_ONLY,
GIMP_INT_COMBO_BOX_LAYOUT_ABBREVIATED,
GIMP_INT_COMBO_BOX_LAYOUT_FULL
} GimpIntComboBoxLayout;
G_END_DECLS
#endif /* __GIMP_WIDGETS_ENUMS_H__ */