2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-08-17 22:27:31 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2001-08-17 22:27:31 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-08-17 22:27:31 +08:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2001-08-17 22:27:31 +08:00
|
|
|
*/
|
2003-09-07 18:29:10 +08:00
|
|
|
|
2001-08-17 22:27:31 +08:00
|
|
|
#ifndef __DISPLAY_TYPES_H__
|
|
|
|
#define __DISPLAY_TYPES_H__
|
|
|
|
|
|
|
|
|
2017-07-03 18:29:41 +08:00
|
|
|
#include "propgui/propgui-types.h"
|
2001-08-17 22:27:31 +08:00
|
|
|
|
2001-12-19 01:45:29 +08:00
|
|
|
#include "display/display-enums.h"
|
2001-08-17 22:27:31 +08:00
|
|
|
|
|
|
|
|
2011-07-04 02:55:03 +08:00
|
|
|
typedef struct _GimpCanvas GimpCanvas;
|
|
|
|
typedef struct _GimpCanvasGroup GimpCanvasGroup;
|
|
|
|
typedef struct _GimpCanvasItem GimpCanvasItem;
|
2003-11-10 07:24:40 +08:00
|
|
|
|
2011-07-04 02:55:03 +08:00
|
|
|
typedef struct _GimpDisplay GimpDisplay;
|
|
|
|
typedef struct _GimpDisplayShell GimpDisplayShell;
|
|
|
|
typedef struct _GimpMotionBuffer GimpMotionBuffer;
|
2001-09-26 01:44:03 +08:00
|
|
|
|
2011-07-04 02:55:03 +08:00
|
|
|
typedef struct _GimpImageWindow GimpImageWindow;
|
|
|
|
typedef struct _GimpMultiWindowStrategy GimpMultiWindowStrategy;
|
|
|
|
typedef struct _GimpSingleWindowStrategy GimpSingleWindowStrategy;
|
2009-09-23 18:24:22 +08:00
|
|
|
|
2011-07-04 02:55:03 +08:00
|
|
|
typedef struct _GimpCursorView GimpCursorView;
|
|
|
|
typedef struct _GimpNavigationEditor GimpNavigationEditor;
|
|
|
|
typedef struct _GimpScaleComboBox GimpScaleComboBox;
|
|
|
|
typedef struct _GimpStatusbar GimpStatusbar;
|
2002-02-03 20:10:23 +08:00
|
|
|
|
2011-07-04 02:55:03 +08:00
|
|
|
typedef struct _GimpToolDialog GimpToolDialog;
|
2013-06-07 16:24:51 +08:00
|
|
|
typedef struct _GimpToolGui GimpToolGui;
|
2017-06-11 05:47:54 +08:00
|
|
|
typedef struct _GimpToolWidget GimpToolWidget;
|
app: add GimpToolWidgetGroup
GimpToolWidgetGroup is a tool widget acting as a container for
child widgets, multiplexing widget events and demultiplexing tool
events. It can be used by tools to display multiple widgets
simultaneously.
The group keeps track of the current focus widget, and hover
widget. Certain events are only dispatched to/forwarded from these
widgets.
The hover widget is determined by performing a hit test for all the
children, starting from the last child. The first widget returning
GIMP_HIT_DIRECT, if any, is selected as the hover widget;
otherwise, if the current focus widget returns GIMP_HIT_INDIRECT,
it's selected; otherwise, if exactly one widget returns
GIMP_HIT_INDIRECT, it's selected; otherwise, there is no hover
widget.
The focus widget is set when clicking on a widget (or
programatically, using gimp_tool_widget_set_focus()).
Additionally, the group can raise the clicked widget to the top of
the stack (see gimp_tool_widget_group_set_auto_raise().)
2018-06-05 15:08:04 +08:00
|
|
|
typedef struct _GimpToolWidgetGroup GimpToolWidgetGroup;
|
2011-03-20 20:34:03 +08:00
|
|
|
|
2013-02-02 21:10:23 +08:00
|
|
|
typedef struct _GimpDisplayXfer GimpDisplayXfer;
|
2011-07-04 02:55:03 +08:00
|
|
|
typedef struct _Selection Selection;
|
2001-08-17 22:27:31 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __DISPLAY_TYPES_H__ */
|