app/gui/preferences-dialog.c app/widgets/widgets-enums.[ch] added new

2004-05-04  Sven Neumann  <sven@gimp.org>

	* app/gui/preferences-dialog.c
	* app/widgets/widgets-enums.[ch]
	* app/widgets/gimpwidgets-utils.c (gimp_window_set_hint): added
	new window hint "keep-above" to force toolbox and/or dock windows
	to be kept above (if the WM supports this hint). Fixes bug #131672.
This commit is contained in:
Sven Neumann
2004-05-04 13:31:57 +00:00
committed by Sven Neumann
parent 29e4cf347b
commit 2c2f46aeca
6 changed files with 23 additions and 9 deletions

View File

@ -105,8 +105,9 @@ GType gimp_window_hint_get_type (void) G_GNUC_CONST;
typedef enum
{
GIMP_WINDOW_HINT_NORMAL, /*< desc="Normal Window" >*/
GIMP_WINDOW_HINT_UTILITY, /*< desc="Utility Window" >*/
GIMP_WINDOW_HINT_NORMAL, /*< desc="Normal Window" >*/
GIMP_WINDOW_HINT_UTILITY, /*< desc="Utility Window" >*/
GIMP_WINDOW_HINT_KEEP_ABOVE /*< desc="Keep Above" >*/
} GimpWindowHint;
@ -118,7 +119,7 @@ typedef enum
{
GIMP_ZOOM_IN, /*< desc="Zoom in" >*/
GIMP_ZOOM_OUT, /*< desc="Zoom out" >*/
GIMP_ZOOM_TO /*< skip >*/
GIMP_ZOOM_TO /*< skip >*/
} GimpZoomType;