2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1997-11-24 14:05:25 -08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1997-11-24 14:05:25 -08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 14:28:01 -08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1997-11-24 14:05:25 -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
|
2018-07-11 14:47:19 -07:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
1997-11-24 14:05:25 -08:00
|
|
|
*/
|
2000-12-29 07:22:01 -08:00
|
|
|
|
2001-11-02 01:31:21 -08:00
|
|
|
#ifndef __GIMP_DISPLAY_SHELL_CALLBACKS_H__
|
|
|
|
|
#define __GIMP_DISPLAY_SHELL_CALLBACKS_H__
|
1997-11-24 14:05:25 -08:00
|
|
|
|
2000-12-29 07:22:01 -08:00
|
|
|
|
2005-09-19 05:44:06 -07:00
|
|
|
void gimp_display_shell_canvas_realize (GtkWidget *widget,
|
|
|
|
|
GimpDisplayShell *shell);
|
2018-04-03 13:36:17 -07:00
|
|
|
void gimp_display_shell_canvas_realize_after (GtkWidget *widget,
|
|
|
|
|
GimpDisplayShell *shell);
|
2005-09-19 05:44:06 -07:00
|
|
|
void gimp_display_shell_canvas_size_allocate (GtkWidget *widget,
|
|
|
|
|
GtkAllocation *alloc,
|
|
|
|
|
GimpDisplayShell *shell);
|
|
|
|
|
gboolean gimp_display_shell_canvas_expose (GtkWidget *widget,
|
|
|
|
|
GdkEventExpose *eevent,
|
|
|
|
|
GimpDisplayShell *shell);
|
2004-11-09 03:38:29 -08:00
|
|
|
|
2005-09-19 05:44:06 -07:00
|
|
|
gboolean gimp_display_shell_origin_button_press (GtkWidget *widget,
|
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
|
GimpDisplayShell *shell);
|
2000-12-29 07:22:01 -08:00
|
|
|
|
2005-09-19 05:44:06 -07:00
|
|
|
gboolean gimp_display_shell_quick_mask_button_press (GtkWidget *widget,
|
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
|
GimpDisplayShell *shell);
|
|
|
|
|
void gimp_display_shell_quick_mask_toggled (GtkWidget *widget,
|
|
|
|
|
GimpDisplayShell *shell);
|
2001-11-30 06:41:56 -08:00
|
|
|
|
2011-02-22 22:13:45 -08:00
|
|
|
gboolean gimp_display_shell_navigation_button_press (GtkWidget *widget,
|
2005-09-19 05:44:06 -07:00
|
|
|
GdkEventButton *bevent,
|
|
|
|
|
GimpDisplayShell *shell);
|
2010-05-02 03:12:48 -07:00
|
|
|
|
2001-11-02 01:31:21 -08:00
|
|
|
|
|
|
|
|
#endif /* __GIMP_DISPLAY_SHELL_CALLBACKS_H__ */
|