mirror of https://github.com/GNOME/gimp.git
did a global gdisp -> display substitution.
2006-03-28 Sven Neumann <sven@gimp.org> * app/*: did a global gdisp -> display substitution.
This commit is contained in:
parent
5439aa4995
commit
86fd6f9ccd
|
@ -32,7 +32,7 @@ Argument * plug_in_run (Gimp *gimp,
|
|||
gint argc,
|
||||
gboolean synchronous,
|
||||
gboolean destroy_return_vals,
|
||||
gint gdisp_ID);
|
||||
gint display_ID);
|
||||
|
||||
/* Run one of the last plug-ins from the plug-in history again with
|
||||
* the same arguments. Extensions are exempt from this "privelege".
|
||||
|
|
|
@ -32,7 +32,7 @@ Argument * plug_in_run (Gimp *gimp,
|
|||
gint argc,
|
||||
gboolean synchronous,
|
||||
gboolean destroy_return_vals,
|
||||
gint gdisp_ID);
|
||||
gint display_ID);
|
||||
|
||||
/* Run one of the last plug-ins from the plug-in history again with
|
||||
* the same arguments. Extensions are exempt from this "privelege".
|
||||
|
|
|
@ -32,7 +32,7 @@ Argument * plug_in_run (Gimp *gimp,
|
|||
gint argc,
|
||||
gboolean synchronous,
|
||||
gboolean destroy_return_vals,
|
||||
gint gdisp_ID);
|
||||
gint display_ID);
|
||||
|
||||
/* Run one of the last plug-ins from the plug-in history again with
|
||||
* the same arguments. Extensions are exempt from this "privelege".
|
||||
|
|
|
@ -79,7 +79,7 @@ void gimp_color_tool_disable (GimpColorTool *color_tool);
|
|||
gboolean gimp_color_tool_is_enabled (GimpColorTool *color_tool);
|
||||
|
||||
void gimp_color_tool_start_sample_point (GimpTool *tool,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
|
||||
|
||||
#endif /* __GIMP_COLOR_TOOL_H__ */
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
|
||||
void gimp_edit_selection_tool_start (GimpTool *parent_tool,
|
||||
GimpDisplay *gdisp,
|
||||
GimpDisplay *display,
|
||||
GimpCoords *coords,
|
||||
GimpTranslateMode edit_mode,
|
||||
gboolean propagate_release);
|
||||
|
@ -29,7 +29,7 @@ void gimp_edit_selection_tool_start (GimpTool *parent_tool,
|
|||
|
||||
gboolean gimp_edit_selection_tool_key_press (GimpTool *tool,
|
||||
GdkEventKey *kevent,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
|
||||
|
||||
#endif /* __GIMP_EDIT_SELECTION_TOOL_H__ */
|
||||
|
|
|
@ -52,7 +52,7 @@ struct _GimpFreeSelectToolClass
|
|||
/* virtual function */
|
||||
|
||||
void (* select) (GimpFreeSelectTool *free_select_tool,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
};
|
||||
|
||||
|
||||
|
@ -62,7 +62,7 @@ void gimp_free_select_tool_register (GimpToolRegisterCallback callback,
|
|||
GType gimp_free_select_tool_get_type (void) G_GNUC_CONST;
|
||||
|
||||
void gimp_free_select_tool_select (GimpFreeSelectTool *free_sel,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
|
||||
|
||||
#endif /* __GIMP_FREE_SELECT_TOOL_H__ */
|
||||
|
|
|
@ -64,9 +64,9 @@ GType gimp_move_tool_get_type (void) G_GNUC_CONST;
|
|||
|
||||
|
||||
void gimp_move_tool_start_hguide (GimpTool *tool,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
void gimp_move_tool_start_vguide (GimpTool *tool,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
|
||||
|
||||
#endif /* __GIMP_MOVE_TOOL_H__ */
|
||||
|
|
|
@ -81,39 +81,39 @@ GType gimp_rectangle_tool_interface_get_type (void) G_GNUC_CONST;
|
|||
void gimp_rectangle_tool_constructor (GObject *object);
|
||||
void gimp_rectangle_tool_dispose (GObject *object);
|
||||
gboolean gimp_rectangle_tool_initialize (GimpTool *tool,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
void gimp_rectangle_tool_button_press (GimpTool *tool,
|
||||
GimpCoords *coords,
|
||||
guint32 time,
|
||||
GdkModifierType state,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
void gimp_rectangle_tool_button_release (GimpTool *tool,
|
||||
GimpCoords *coords,
|
||||
guint32 time,
|
||||
GdkModifierType state,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
void gimp_rectangle_tool_motion (GimpTool *tool,
|
||||
GimpCoords *coords,
|
||||
guint32 time,
|
||||
GdkModifierType state,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
gboolean gimp_rectangle_tool_key_press (GimpTool *tool,
|
||||
GdkEventKey *kevent,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
void gimp_rectangle_tool_modifier_key (GimpTool *tool,
|
||||
GdkModifierType key,
|
||||
gboolean press,
|
||||
GdkModifierType state,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
void gimp_rectangle_tool_oper_update (GimpTool *tool,
|
||||
GimpCoords *coords,
|
||||
GdkModifierType state,
|
||||
gboolean proximity,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
void gimp_rectangle_tool_cursor_update (GimpTool *tool,
|
||||
GimpCoords *coords,
|
||||
GdkModifierType state,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
void gimp_rectangle_tool_draw (GimpDrawTool *draw);
|
||||
gboolean gimp_rectangle_tool_execute (GimpRectangleTool *rect_tool,
|
||||
gint x,
|
||||
|
|
|
@ -107,22 +107,22 @@ struct _GimpTransformToolClass
|
|||
void (* dialog) (GimpTransformTool *tool);
|
||||
void (* dialog_update) (GimpTransformTool *tool);
|
||||
void (* prepare) (GimpTransformTool *tool,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
void (* motion) (GimpTransformTool *tool,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
void (* recalc) (GimpTransformTool *tool,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
TileManager * (* transform) (GimpTransformTool *tool,
|
||||
GimpItem *item,
|
||||
gboolean mask_empty,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
};
|
||||
|
||||
|
||||
GType gimp_transform_tool_get_type (void) G_GNUC_CONST;
|
||||
|
||||
void gimp_transform_tool_recalc (GimpTransformTool *tr_tool,
|
||||
GimpDisplay *gdisp);
|
||||
GimpDisplay *display);
|
||||
void gimp_transform_tool_expose_preview (GimpTransformTool *tr_tool);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue