gdk_pixbuf_new_from_stream -> _from_inline
2001-10-13 Michael Natterer <mitch@gimp.org> * RELEASE-TO-CVS.patch: gdk_pixbuf_new_from_stream -> _from_inline * app/display/Makefile.am * app/display/gimpdisplay-foreach.[ch]: new files for functions operating on all displays (will go away as soon as the display behaves like a proper view which doesn't need to be updated explicitly). * app/display/gimpdisplay-callbacks.c * app/display/gimpdisplay-scale.[ch] * app/display/gimpdisplay-scroll.[ch] * app/display/gimpdisplay.[ch]: "scale" and "scroll" namespace cleanup, moved bounds_checking() to gimpdisplay-scroll.[ch], lots of unfinished, intermediate stuff. * app/display/gimpdisplayshell.[ch]: added some GObject framework for the GimpDisplayShell object (not used yet). * app/app_procs.c * app/docindex.c * app/image_map.c * app/nav_window.c * app/path.c * app/qmask.c * app/undo.c * app/gui/channels-commands.c * app/gui/convert-dialog.c * app/gui/edit-commands.c * app/gui/file-commands.c * app/gui/gui.c * app/gui/image-commands.c * app/gui/layer-select.c * app/gui/layers-commands.c * app/gui/offset-dialog.c * app/gui/paths-dialog.c * app/gui/preferences-dialog.c * app/gui/select-commands.c * app/gui/view-commands.c * app/tools/gimpairbrushtool.c * app/tools/gimpbezierselecttool.c * app/tools/gimpblendtool.c * app/tools/gimpbrightnesscontrasttool.c * app/tools/gimpbucketfilltool.c * app/tools/gimpbycolorselecttool.c * app/tools/gimpcolorbalancetool.c * app/tools/gimpcroptool.c * app/tools/gimpcurvestool.c * app/tools/gimpeditselectiontool.c * app/tools/gimpfreeselecttool.c * app/tools/gimpfuzzyselecttool.c * app/tools/gimphuesaturationtool.c * app/tools/gimpinktool.c * app/tools/gimpiscissorstool.c * app/tools/gimplevelstool.c * app/tools/gimpmagnifytool.c * app/tools/gimpmeasuretool.c * app/tools/gimpmovetool.c * app/tools/gimppainttool.c * app/tools/gimpposterizetool.c * app/tools/gimprectselecttool.c * app/tools/gimptexttool.c * app/tools/gimpthresholdtool.c * app/tools/gimptransformtool.c * app/widgets/gimpbufferview.c * app/widgets/gimpchannellistview.c * app/widgets/gimpcomponentlistitem.c * app/widgets/gimpdrawablelistitem.c * app/widgets/gimpdrawablelistview.c * app/widgets/gimplayerlistitem.c * app/widgets/gimplayerlistview.c * app/widgets/gimplistitem.c * tools/pdbgen/pdb/display.pdb * app/pdb/display_cmds.c: changed accordingly (mostly including "gimpdisplay-foreach.h" instead of "gimpdisplay.h")
This commit is contained in:

committed by
Michael Natterer

parent
0186fb2de4
commit
859e9c4117
@ -16,8 +16,8 @@
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GDISPLAY_H__
|
||||
#define __GDISPLAY_H__
|
||||
#ifndef __GIMP_DISPLAY_H__
|
||||
#define __GIMP_DISPLAY_H__
|
||||
|
||||
|
||||
#include "core/gimpobject.h"
|
||||
@ -85,6 +85,9 @@ struct _IdleRenderStruct
|
||||
};
|
||||
|
||||
|
||||
extern GSList *display_list; /* EEK */
|
||||
|
||||
|
||||
#define GIMP_TYPE_DISPLAY (gimp_display_get_type ())
|
||||
#define GIMP_DISPLAY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_DISPLAY, GimpDisplay))
|
||||
#define GIMP_DISPLAY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_DISPLAY, GimpDisplayClass))
|
||||
@ -204,6 +207,11 @@ GimpDisplay * gdisplay_new (GimpImage *gimage,
|
||||
void gdisplay_reconnect (GimpDisplay *gdisp,
|
||||
GimpImage *gimage);
|
||||
void gdisplay_remove_and_delete (GimpDisplay *gdisp);
|
||||
void gdisplay_add_update_area (GimpDisplay *gdisp,
|
||||
gint x,
|
||||
gint y,
|
||||
gint w,
|
||||
gint h);
|
||||
gint gdisplay_mask_value (GimpDisplay *gdisp,
|
||||
gint x,
|
||||
gint y);
|
||||
@ -297,42 +305,14 @@ void gdisplay_set_dot_for_dot (GimpDisplay *gdisp,
|
||||
void gdisplay_resize_cursor_label (GimpDisplay *gdisp);
|
||||
void gdisplay_update_title (GimpDisplay *gdisp);
|
||||
void gdisplay_flush_displays_only (GimpDisplay *gdisp); /* no rerender! */
|
||||
void gdisplay_flush_whenever (GimpDisplay *gdisp,
|
||||
gboolean now);
|
||||
|
||||
GimpDisplay * gdisplay_active (void);
|
||||
GimpDisplay * gdisplay_get_by_ID (Gimp *gimp,
|
||||
gint ID);
|
||||
|
||||
|
||||
/* function declarations */
|
||||
|
||||
GimpDisplay * gdisplays_check_valid (GimpDisplay *gdisp,
|
||||
GimpImage *gimage);
|
||||
void gdisplays_reconnect (GimpImage *old,
|
||||
GimpImage *new);
|
||||
void gdisplays_update_title (GimpImage *gimage);
|
||||
void gdisplays_resize_cursor_label (GimpImage *gimage);
|
||||
void gdisplays_setup_scale (GimpImage *gimage);
|
||||
void gdisplays_update_area (GimpImage *gimage,
|
||||
gint x,
|
||||
gint y,
|
||||
gint w,
|
||||
gint h);
|
||||
void gdisplays_expose_guides (GimpImage *gimage);
|
||||
void gdisplays_expose_guide (GimpImage *gimage,
|
||||
GimpGuide *guide);
|
||||
void gdisplays_update_full (GimpImage *gimage);
|
||||
void gdisplays_shrink_wrap (GimpImage *gimage);
|
||||
void gdisplays_expose_full (void);
|
||||
void gdisplays_selection_visibility (GimpImage *gimage,
|
||||
GimpSelectionControl control);
|
||||
gboolean gdisplays_dirty (void);
|
||||
void gdisplays_delete (void);
|
||||
void gdisplays_flush (void);
|
||||
void gdisplays_flush_now (void);
|
||||
void gdisplays_finish_draw (void);
|
||||
void gdisplays_nav_preview_resized (void);
|
||||
void gdisplays_foreach (GFunc func,
|
||||
gpointer user_data);
|
||||
|
||||
|
||||
#endif /* __GDISPLAY_H__ */
|
||||
#endif /* __GIMP_DISPLAY_H__ */
|
||||
|
Reference in New Issue
Block a user