Fix #105497; constify uses of GdkColor.

2004-01-26  Federico Mena Quintero  <federico@ximian.com>

	Fix #105497; constify uses of GdkColor.

	* gdk/gdkgc.c (gdk_gc_set_rgb_fg_color): Constify.
	(gdk_gc_set_rgb_bg_color): Constify.
	(gdk_gc_set_foreground): Constify.

	* gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): Constify.
	* gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Constify.
	* gdk/linux-fb/gdkcursor-fb.c (gdk_cursor_new_from_pixmap): Constify.

	* gdk/x11/gdkpixmap-x11.c (gdk_pixmap_create_from_data): Constify.
	* gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data): Constify.
	* gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_create_from_data): Constify.

	* gdk/x11/gdkwindow-x11.c (gdk_window_set_background): Constify.
	* gdk/win32/gdkwindow-win32.c (gdk_window_set_background): Constify.
	* gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_background): Constify.

	* gdk/gdkpango.c (gdk_draw_layout_line_with_colors): Constify.
	(gdk_draw_layout_with_colors): Constify.

	* gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf): Constify.
	(gdk_pixmap_colormap_create_from_xpm): Constify.
	(gdk_pixmap_create_from_xpm): Constify.
	(gdk_pixmap_colormap_create_from_xpm_d): Constify.
	(gdk_pixmap_create_from_xpm_d): Constify.

	* gtk/gtkcellview.c (gtk_cell_view_set_background_color): Constify.

	* gtk/gtkclist.c (gtk_clist_set_foreground): Constify.
	(gtk_clist_set_background): Constify.

	* gtk/gtkcolorbutton.c (gtk_color_button_new_with_color): Constify.
	(gtk_color_button_set_color): Constify.

	* gtk/gtkcolorsel.c (gtk_color_selection_set_current_color):
	Constify and add a check for color != NULL.
	(gtk_color_selection_get_current_color): Add a check for color != NULL.
	(gtk_color_selection_set_previous_color): Constify and add a check
	for color != NULL.
	(gtk_color_selection_get_previous_color): Add a check for color != NULL.

	* gtk/gtkctree.c (gtk_ctree_node_set_foreground): Constify.
	(gtk_ctree_node_set_background): Constify.

	* gtk/gtktext.c (gtk_text_insert): Constify.
	(insert_text_property): Constify.
	(text_properties_equal): Constify.
	(new_text_property): Constify.

	* gtk/gtkwidget.c (gtk_widget_modify_color_component): Constify.
	(gtk_widget_modify_fg): Constify.
	(gtk_widget_modify_bg): Constify.
	(gtk_widget_modify_text): Constify.
	(gtk_widget_modify_base): Constify.
This commit is contained in:
Federico Mena Quintero 2004-01-26 20:21:09 +00:00 committed by Federico Mena Quintero
parent 790106c7e7
commit 5ebb6b04f2
36 changed files with 488 additions and 192 deletions

View File

@ -1,3 +1,61 @@
2004-01-26 Federico Mena Quintero <federico@ximian.com>
Fix #105497; constify uses of GdkColor.
* gdk/gdkgc.c (gdk_gc_set_rgb_fg_color): Constify.
(gdk_gc_set_rgb_bg_color): Constify.
(gdk_gc_set_foreground): Constify.
* gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/linux-fb/gdkcursor-fb.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/x11/gdkpixmap-x11.c (gdk_pixmap_create_from_data): Constify.
* gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data): Constify.
* gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_create_from_data): Constify.
* gdk/x11/gdkwindow-x11.c (gdk_window_set_background): Constify.
* gdk/win32/gdkwindow-win32.c (gdk_window_set_background): Constify.
* gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_background): Constify.
* gdk/gdkpango.c (gdk_draw_layout_line_with_colors): Constify.
(gdk_draw_layout_with_colors): Constify.
* gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf): Constify.
(gdk_pixmap_colormap_create_from_xpm): Constify.
(gdk_pixmap_create_from_xpm): Constify.
(gdk_pixmap_colormap_create_from_xpm_d): Constify.
(gdk_pixmap_create_from_xpm_d): Constify.
* gtk/gtkcellview.c (gtk_cell_view_set_background_color): Constify.
* gtk/gtkclist.c (gtk_clist_set_foreground): Constify.
(gtk_clist_set_background): Constify.
* gtk/gtkcolorbutton.c (gtk_color_button_new_with_color): Constify.
(gtk_color_button_set_color): Constify.
* gtk/gtkcolorsel.c (gtk_color_selection_set_current_color):
Constify and add a check for color != NULL.
(gtk_color_selection_get_current_color): Add a check for color != NULL.
(gtk_color_selection_set_previous_color): Constify and add a check
for color != NULL.
(gtk_color_selection_get_previous_color): Add a check for color != NULL.
* gtk/gtkctree.c (gtk_ctree_node_set_foreground): Constify.
(gtk_ctree_node_set_background): Constify.
* gtk/gtktext.c (gtk_text_insert): Constify.
(insert_text_property): Constify.
(text_properties_equal): Constify.
(new_text_property): Constify.
* gtk/gtkwidget.c (gtk_widget_modify_color_component): Constify.
(gtk_widget_modify_fg): Constify.
(gtk_widget_modify_bg): Constify.
(gtk_widget_modify_text): Constify.
(gtk_widget_modify_base): Constify.
2004-01-26 Christian Rose <menthos@menthos.com> 2004-01-26 Christian Rose <menthos@menthos.com>
* configure.in: Added "mi" to ALL_LINGUAS. * configure.in: Added "mi" to ALL_LINGUAS.

View File

@ -1,3 +1,61 @@
2004-01-26 Federico Mena Quintero <federico@ximian.com>
Fix #105497; constify uses of GdkColor.
* gdk/gdkgc.c (gdk_gc_set_rgb_fg_color): Constify.
(gdk_gc_set_rgb_bg_color): Constify.
(gdk_gc_set_foreground): Constify.
* gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/linux-fb/gdkcursor-fb.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/x11/gdkpixmap-x11.c (gdk_pixmap_create_from_data): Constify.
* gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data): Constify.
* gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_create_from_data): Constify.
* gdk/x11/gdkwindow-x11.c (gdk_window_set_background): Constify.
* gdk/win32/gdkwindow-win32.c (gdk_window_set_background): Constify.
* gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_background): Constify.
* gdk/gdkpango.c (gdk_draw_layout_line_with_colors): Constify.
(gdk_draw_layout_with_colors): Constify.
* gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf): Constify.
(gdk_pixmap_colormap_create_from_xpm): Constify.
(gdk_pixmap_create_from_xpm): Constify.
(gdk_pixmap_colormap_create_from_xpm_d): Constify.
(gdk_pixmap_create_from_xpm_d): Constify.
* gtk/gtkcellview.c (gtk_cell_view_set_background_color): Constify.
* gtk/gtkclist.c (gtk_clist_set_foreground): Constify.
(gtk_clist_set_background): Constify.
* gtk/gtkcolorbutton.c (gtk_color_button_new_with_color): Constify.
(gtk_color_button_set_color): Constify.
* gtk/gtkcolorsel.c (gtk_color_selection_set_current_color):
Constify and add a check for color != NULL.
(gtk_color_selection_get_current_color): Add a check for color != NULL.
(gtk_color_selection_set_previous_color): Constify and add a check
for color != NULL.
(gtk_color_selection_get_previous_color): Add a check for color != NULL.
* gtk/gtkctree.c (gtk_ctree_node_set_foreground): Constify.
(gtk_ctree_node_set_background): Constify.
* gtk/gtktext.c (gtk_text_insert): Constify.
(insert_text_property): Constify.
(text_properties_equal): Constify.
(new_text_property): Constify.
* gtk/gtkwidget.c (gtk_widget_modify_color_component): Constify.
(gtk_widget_modify_fg): Constify.
(gtk_widget_modify_bg): Constify.
(gtk_widget_modify_text): Constify.
(gtk_widget_modify_base): Constify.
2004-01-26 Christian Rose <menthos@menthos.com> 2004-01-26 Christian Rose <menthos@menthos.com>
* configure.in: Added "mi" to ALL_LINGUAS. * configure.in: Added "mi" to ALL_LINGUAS.

View File

@ -1,3 +1,61 @@
2004-01-26 Federico Mena Quintero <federico@ximian.com>
Fix #105497; constify uses of GdkColor.
* gdk/gdkgc.c (gdk_gc_set_rgb_fg_color): Constify.
(gdk_gc_set_rgb_bg_color): Constify.
(gdk_gc_set_foreground): Constify.
* gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/linux-fb/gdkcursor-fb.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/x11/gdkpixmap-x11.c (gdk_pixmap_create_from_data): Constify.
* gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data): Constify.
* gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_create_from_data): Constify.
* gdk/x11/gdkwindow-x11.c (gdk_window_set_background): Constify.
* gdk/win32/gdkwindow-win32.c (gdk_window_set_background): Constify.
* gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_background): Constify.
* gdk/gdkpango.c (gdk_draw_layout_line_with_colors): Constify.
(gdk_draw_layout_with_colors): Constify.
* gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf): Constify.
(gdk_pixmap_colormap_create_from_xpm): Constify.
(gdk_pixmap_create_from_xpm): Constify.
(gdk_pixmap_colormap_create_from_xpm_d): Constify.
(gdk_pixmap_create_from_xpm_d): Constify.
* gtk/gtkcellview.c (gtk_cell_view_set_background_color): Constify.
* gtk/gtkclist.c (gtk_clist_set_foreground): Constify.
(gtk_clist_set_background): Constify.
* gtk/gtkcolorbutton.c (gtk_color_button_new_with_color): Constify.
(gtk_color_button_set_color): Constify.
* gtk/gtkcolorsel.c (gtk_color_selection_set_current_color):
Constify and add a check for color != NULL.
(gtk_color_selection_get_current_color): Add a check for color != NULL.
(gtk_color_selection_set_previous_color): Constify and add a check
for color != NULL.
(gtk_color_selection_get_previous_color): Add a check for color != NULL.
* gtk/gtkctree.c (gtk_ctree_node_set_foreground): Constify.
(gtk_ctree_node_set_background): Constify.
* gtk/gtktext.c (gtk_text_insert): Constify.
(insert_text_property): Constify.
(text_properties_equal): Constify.
(new_text_property): Constify.
* gtk/gtkwidget.c (gtk_widget_modify_color_component): Constify.
(gtk_widget_modify_fg): Constify.
(gtk_widget_modify_bg): Constify.
(gtk_widget_modify_text): Constify.
(gtk_widget_modify_base): Constify.
2004-01-26 Christian Rose <menthos@menthos.com> 2004-01-26 Christian Rose <menthos@menthos.com>
* configure.in: Added "mi" to ALL_LINGUAS. * configure.in: Added "mi" to ALL_LINGUAS.

View File

@ -1,3 +1,61 @@
2004-01-26 Federico Mena Quintero <federico@ximian.com>
Fix #105497; constify uses of GdkColor.
* gdk/gdkgc.c (gdk_gc_set_rgb_fg_color): Constify.
(gdk_gc_set_rgb_bg_color): Constify.
(gdk_gc_set_foreground): Constify.
* gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/linux-fb/gdkcursor-fb.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/x11/gdkpixmap-x11.c (gdk_pixmap_create_from_data): Constify.
* gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data): Constify.
* gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_create_from_data): Constify.
* gdk/x11/gdkwindow-x11.c (gdk_window_set_background): Constify.
* gdk/win32/gdkwindow-win32.c (gdk_window_set_background): Constify.
* gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_background): Constify.
* gdk/gdkpango.c (gdk_draw_layout_line_with_colors): Constify.
(gdk_draw_layout_with_colors): Constify.
* gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf): Constify.
(gdk_pixmap_colormap_create_from_xpm): Constify.
(gdk_pixmap_create_from_xpm): Constify.
(gdk_pixmap_colormap_create_from_xpm_d): Constify.
(gdk_pixmap_create_from_xpm_d): Constify.
* gtk/gtkcellview.c (gtk_cell_view_set_background_color): Constify.
* gtk/gtkclist.c (gtk_clist_set_foreground): Constify.
(gtk_clist_set_background): Constify.
* gtk/gtkcolorbutton.c (gtk_color_button_new_with_color): Constify.
(gtk_color_button_set_color): Constify.
* gtk/gtkcolorsel.c (gtk_color_selection_set_current_color):
Constify and add a check for color != NULL.
(gtk_color_selection_get_current_color): Add a check for color != NULL.
(gtk_color_selection_set_previous_color): Constify and add a check
for color != NULL.
(gtk_color_selection_get_previous_color): Add a check for color != NULL.
* gtk/gtkctree.c (gtk_ctree_node_set_foreground): Constify.
(gtk_ctree_node_set_background): Constify.
* gtk/gtktext.c (gtk_text_insert): Constify.
(insert_text_property): Constify.
(text_properties_equal): Constify.
(new_text_property): Constify.
* gtk/gtkwidget.c (gtk_widget_modify_color_component): Constify.
(gtk_widget_modify_fg): Constify.
(gtk_widget_modify_bg): Constify.
(gtk_widget_modify_text): Constify.
(gtk_widget_modify_base): Constify.
2004-01-26 Christian Rose <menthos@menthos.com> 2004-01-26 Christian Rose <menthos@menthos.com>
* configure.in: Added "mi" to ALL_LINGUAS. * configure.in: Added "mi" to ALL_LINGUAS.

View File

@ -1,3 +1,61 @@
2004-01-26 Federico Mena Quintero <federico@ximian.com>
Fix #105497; constify uses of GdkColor.
* gdk/gdkgc.c (gdk_gc_set_rgb_fg_color): Constify.
(gdk_gc_set_rgb_bg_color): Constify.
(gdk_gc_set_foreground): Constify.
* gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/linux-fb/gdkcursor-fb.c (gdk_cursor_new_from_pixmap): Constify.
* gdk/x11/gdkpixmap-x11.c (gdk_pixmap_create_from_data): Constify.
* gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data): Constify.
* gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_create_from_data): Constify.
* gdk/x11/gdkwindow-x11.c (gdk_window_set_background): Constify.
* gdk/win32/gdkwindow-win32.c (gdk_window_set_background): Constify.
* gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_background): Constify.
* gdk/gdkpango.c (gdk_draw_layout_line_with_colors): Constify.
(gdk_draw_layout_with_colors): Constify.
* gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf): Constify.
(gdk_pixmap_colormap_create_from_xpm): Constify.
(gdk_pixmap_create_from_xpm): Constify.
(gdk_pixmap_colormap_create_from_xpm_d): Constify.
(gdk_pixmap_create_from_xpm_d): Constify.
* gtk/gtkcellview.c (gtk_cell_view_set_background_color): Constify.
* gtk/gtkclist.c (gtk_clist_set_foreground): Constify.
(gtk_clist_set_background): Constify.
* gtk/gtkcolorbutton.c (gtk_color_button_new_with_color): Constify.
(gtk_color_button_set_color): Constify.
* gtk/gtkcolorsel.c (gtk_color_selection_set_current_color):
Constify and add a check for color != NULL.
(gtk_color_selection_get_current_color): Add a check for color != NULL.
(gtk_color_selection_set_previous_color): Constify and add a check
for color != NULL.
(gtk_color_selection_get_previous_color): Add a check for color != NULL.
* gtk/gtkctree.c (gtk_ctree_node_set_foreground): Constify.
(gtk_ctree_node_set_background): Constify.
* gtk/gtktext.c (gtk_text_insert): Constify.
(insert_text_property): Constify.
(text_properties_equal): Constify.
(new_text_property): Constify.
* gtk/gtkwidget.c (gtk_widget_modify_color_component): Constify.
(gtk_widget_modify_fg): Constify.
(gtk_widget_modify_bg): Constify.
(gtk_widget_modify_text): Constify.
(gtk_widget_modify_base): Constify.
2004-01-26 Christian Rose <menthos@menthos.com> 2004-01-26 Christian Rose <menthos@menthos.com>
* configure.in: Added "mi" to ALL_LINGUAS. * configure.in: Added "mi" to ALL_LINGUAS.

View File

@ -113,8 +113,8 @@ GdkCursor* gdk_cursor_new (GdkCursorType cursor_type);
#endif #endif
GdkCursor* gdk_cursor_new_from_pixmap (GdkPixmap *source, GdkCursor* gdk_cursor_new_from_pixmap (GdkPixmap *source,
GdkPixmap *mask, GdkPixmap *mask,
GdkColor *fg, const GdkColor *fg,
GdkColor *bg, const GdkColor *bg,
gint x, gint x,
gint y); gint y);
GdkCursor* gdk_cursor_new_from_pixbuf (GdkDisplay *display, GdkCursor* gdk_cursor_new_from_pixbuf (GdkDisplay *display,

View File

@ -328,15 +328,15 @@ void gdk_draw_layout_line_with_colors (GdkDrawable *drawable,
gint x, gint x,
gint y, gint y,
PangoLayoutLine *line, PangoLayoutLine *line,
GdkColor *foreground, const GdkColor *foreground,
GdkColor *background); const GdkColor *background);
void gdk_draw_layout_with_colors (GdkDrawable *drawable, void gdk_draw_layout_with_colors (GdkDrawable *drawable,
GdkGC *gc, GdkGC *gc,
gint x, gint x,
gint y, gint y,
PangoLayout *layout, PangoLayout *layout,
GdkColor *foreground, const GdkColor *foreground,
GdkColor *background); const GdkColor *background);
#ifndef GDK_DISABLE_DEPRECATED #ifndef GDK_DISABLE_DEPRECATED
#define gdk_draw_pixmap gdk_draw_drawable #define gdk_draw_pixmap gdk_draw_drawable

View File

@ -199,8 +199,8 @@ gdk_gc_set_values (GdkGC *gc,
} }
void void
gdk_gc_set_foreground (GdkGC *gc, gdk_gc_set_foreground (GdkGC *gc,
GdkColor *color) const GdkColor *color)
{ {
GdkGCValues values; GdkGCValues values;
@ -212,8 +212,8 @@ gdk_gc_set_foreground (GdkGC *gc,
} }
void void
gdk_gc_set_background (GdkGC *gc, gdk_gc_set_background (GdkGC *gc,
GdkColor *color) const GdkColor *color)
{ {
GdkGCValues values; GdkGCValues values;
@ -496,7 +496,8 @@ gdk_gc_get_colormap_warn (GdkGC *gc)
* Calling this function for a GC without a colormap is an error. * Calling this function for a GC without a colormap is an error.
**/ **/
void void
gdk_gc_set_rgb_fg_color (GdkGC *gc, GdkColor *color) gdk_gc_set_rgb_fg_color (GdkGC *gc,
const GdkColor *color)
{ {
GdkColormap *cmap; GdkColormap *cmap;
GdkColor tmp_color; GdkColor tmp_color;
@ -527,7 +528,8 @@ gdk_gc_set_rgb_fg_color (GdkGC *gc, GdkColor *color)
* Calling this function for a GC without a colormap is an error. * Calling this function for a GC without a colormap is an error.
**/ **/
void void
gdk_gc_set_rgb_bg_color (GdkGC *gc, GdkColor *color) gdk_gc_set_rgb_bg_color (GdkGC *gc,
const GdkColor *color)
{ {
GdkColormap *cmap; GdkColormap *cmap;
GdkColor tmp_color; GdkColor tmp_color;

View File

@ -209,9 +209,9 @@ void gdk_gc_set_values (GdkGC *gc,
GdkGCValues *values, GdkGCValues *values,
GdkGCValuesMask values_mask); GdkGCValuesMask values_mask);
void gdk_gc_set_foreground (GdkGC *gc, void gdk_gc_set_foreground (GdkGC *gc,
GdkColor *color); const GdkColor *color);
void gdk_gc_set_background (GdkGC *gc, void gdk_gc_set_background (GdkGC *gc,
GdkColor *color); const GdkColor *color);
#ifndef GDK_DISABLE_DEPRECATED #ifndef GDK_DISABLE_DEPRECATED
void gdk_gc_set_font (GdkGC *gc, void gdk_gc_set_font (GdkGC *gc,
GdkFont *font); GdkFont *font);
@ -256,14 +256,14 @@ void gdk_gc_copy (GdkGC *dst_gc,
GdkGC *src_gc); GdkGC *src_gc);
void gdk_gc_set_colormap (GdkGC *gc, void gdk_gc_set_colormap (GdkGC *gc,
GdkColormap *colormap); GdkColormap *colormap);
GdkColormap *gdk_gc_get_colormap (GdkGC *gc); GdkColormap *gdk_gc_get_colormap (GdkGC *gc);
void gdk_gc_set_rgb_fg_color (GdkGC *gc, void gdk_gc_set_rgb_fg_color (GdkGC *gc,
GdkColor *color); const GdkColor *color);
void gdk_gc_set_rgb_bg_color (GdkGC *gc, void gdk_gc_set_rgb_bg_color (GdkGC *gc,
GdkColor *color); const GdkColor *color);
GdkScreen * gdk_gc_get_screen (GdkGC *gc); GdkScreen * gdk_gc_get_screen (GdkGC *gc);
#ifndef GDK_DISABLE_DEPRECATED #ifndef GDK_DISABLE_DEPRECATED
#define gdk_gc_destroy gdk_gc_unref #define gdk_gc_destroy gdk_gc_unref

View File

@ -214,8 +214,8 @@ gdk_draw_layout_line_with_colors (GdkDrawable *drawable,
gint x, gint x,
gint y, gint y,
PangoLayoutLine *line, PangoLayoutLine *line,
GdkColor *foreground, const GdkColor *foreground,
GdkColor *background) const GdkColor *background)
{ {
GSList *tmp_list = line->runs; GSList *tmp_list = line->runs;
PangoRectangle overall_rect; PangoRectangle overall_rect;
@ -451,8 +451,8 @@ gdk_draw_layout_with_colors (GdkDrawable *drawable,
int x, int x,
int y, int y,
PangoLayout *layout, PangoLayout *layout,
GdkColor *foreground, const GdkColor *foreground,
GdkColor *background) const GdkColor *background)
{ {
PangoLayoutIter *iter; PangoLayoutIter *iter;

View File

@ -501,10 +501,10 @@ make_solid_mask (GdkScreen *screen, gint width, gint height)
((c)->blue >> 8)) ((c)->blue >> 8))
static GdkPixmap * static GdkPixmap *
gdk_pixmap_colormap_new_from_pixbuf (GdkColormap *colormap, gdk_pixmap_colormap_new_from_pixbuf (GdkColormap *colormap,
GdkBitmap **mask, GdkBitmap **mask,
GdkColor *transparent_color, const GdkColor *transparent_color,
GdkPixbuf *pixbuf) GdkPixbuf *pixbuf)
{ {
GdkPixmap *pixmap; GdkPixmap *pixmap;
GdkPixbuf *render_pixbuf; GdkPixbuf *render_pixbuf;
@ -551,11 +551,11 @@ gdk_pixmap_colormap_new_from_pixbuf (GdkColormap *colormap,
} }
GdkPixmap* GdkPixmap*
gdk_pixmap_colormap_create_from_xpm (GdkDrawable *drawable, gdk_pixmap_colormap_create_from_xpm (GdkDrawable *drawable,
GdkColormap *colormap, GdkColormap *colormap,
GdkBitmap **mask, GdkBitmap **mask,
GdkColor *transparent_color, const GdkColor *transparent_color,
const gchar *filename) const gchar *filename)
{ {
GdkPixbuf *pixbuf; GdkPixbuf *pixbuf;
GdkPixmap *pixmap; GdkPixmap *pixmap;
@ -579,21 +579,21 @@ gdk_pixmap_colormap_create_from_xpm (GdkDrawable *drawable,
} }
GdkPixmap* GdkPixmap*
gdk_pixmap_create_from_xpm (GdkDrawable *drawable, gdk_pixmap_create_from_xpm (GdkDrawable *drawable,
GdkBitmap **mask, GdkBitmap **mask,
GdkColor *transparent_color, const GdkColor *transparent_color,
const gchar *filename) const gchar *filename)
{ {
return gdk_pixmap_colormap_create_from_xpm (drawable, NULL, mask, return gdk_pixmap_colormap_create_from_xpm (drawable, NULL, mask,
transparent_color, filename); transparent_color, filename);
} }
GdkPixmap* GdkPixmap*
gdk_pixmap_colormap_create_from_xpm_d (GdkDrawable *drawable, gdk_pixmap_colormap_create_from_xpm_d (GdkDrawable *drawable,
GdkColormap *colormap, GdkColormap *colormap,
GdkBitmap **mask, GdkBitmap **mask,
GdkColor *transparent_color, const GdkColor *transparent_color,
gchar **data) gchar **data)
{ {
GdkPixbuf *pixbuf; GdkPixbuf *pixbuf;
GdkPixmap *pixmap; GdkPixmap *pixmap;
@ -617,10 +617,10 @@ gdk_pixmap_colormap_create_from_xpm_d (GdkDrawable *drawable,
} }
GdkPixmap* GdkPixmap*
gdk_pixmap_create_from_xpm_d (GdkDrawable *drawable, gdk_pixmap_create_from_xpm_d (GdkDrawable *drawable,
GdkBitmap **mask, GdkBitmap **mask,
GdkColor *transparent_color, const GdkColor *transparent_color,
gchar **data) gchar **data)
{ {
return gdk_pixmap_colormap_create_from_xpm_d (drawable, NULL, mask, return gdk_pixmap_colormap_create_from_xpm_d (drawable, NULL, mask,
transparent_color, data); transparent_color, data);

View File

@ -46,32 +46,32 @@ GdkBitmap* gdk_bitmap_create_from_data (GdkDrawable *drawable,
const gchar *data, const gchar *data,
gint width, gint width,
gint height); gint height);
GdkPixmap* gdk_pixmap_create_from_data (GdkDrawable *drawable, GdkPixmap* gdk_pixmap_create_from_data (GdkDrawable *drawable,
const gchar *data, const gchar *data,
gint width, gint width,
gint height, gint height,
gint depth, gint depth,
GdkColor *fg, const GdkColor *fg,
GdkColor *bg); const GdkColor *bg);
GdkPixmap* gdk_pixmap_create_from_xpm (GdkDrawable *drawable, GdkPixmap* gdk_pixmap_create_from_xpm (GdkDrawable *drawable,
GdkBitmap **mask, GdkBitmap **mask,
GdkColor *transparent_color, const GdkColor *transparent_color,
const gchar *filename); const gchar *filename);
GdkPixmap* gdk_pixmap_colormap_create_from_xpm (GdkDrawable *drawable, GdkPixmap* gdk_pixmap_colormap_create_from_xpm (GdkDrawable *drawable,
GdkColormap *colormap, GdkColormap *colormap,
GdkBitmap **mask, GdkBitmap **mask,
GdkColor *transparent_color, const GdkColor *transparent_color,
const gchar *filename); const gchar *filename);
GdkPixmap* gdk_pixmap_create_from_xpm_d (GdkDrawable *drawable, GdkPixmap* gdk_pixmap_create_from_xpm_d (GdkDrawable *drawable,
GdkBitmap **mask, GdkBitmap **mask,
GdkColor *transparent_color, const GdkColor *transparent_color,
gchar **data); gchar **data);
GdkPixmap* gdk_pixmap_colormap_create_from_xpm_d (GdkDrawable *drawable, GdkPixmap* gdk_pixmap_colormap_create_from_xpm_d (GdkDrawable *drawable,
GdkColormap *colormap, GdkColormap *colormap,
GdkBitmap **mask, GdkBitmap **mask,
GdkColor *transparent_color, const GdkColor *transparent_color,
gchar **data); gchar **data);
/* Functions to create/lookup pixmaps from their native equivalents /* Functions to create/lookup pixmaps from their native equivalents
*/ */

View File

@ -432,7 +432,7 @@ void gdk_window_set_role (GdkWindow *window,
void gdk_window_set_transient_for (GdkWindow *window, void gdk_window_set_transient_for (GdkWindow *window,
GdkWindow *parent); GdkWindow *parent);
void gdk_window_set_background (GdkWindow *window, void gdk_window_set_background (GdkWindow *window,
GdkColor *color); const GdkColor *color);
void gdk_window_set_back_pixmap (GdkWindow *window, void gdk_window_set_back_pixmap (GdkWindow *window,
GdkPixmap *pixmap, GdkPixmap *pixmap,
gboolean parent_relative); gboolean parent_relative);

View File

@ -246,12 +246,12 @@ gdk_cursor_new_for_display (GdkDisplay *display,
} }
GdkCursor* GdkCursor*
gdk_cursor_new_from_pixmap (GdkPixmap *source, gdk_cursor_new_from_pixmap (GdkPixmap *source,
GdkPixmap *mask, GdkPixmap *mask,
GdkColor *fg, const GdkColor *fg,
GdkColor *bg, const GdkColor *bg,
gint x, gint x,
gint y) gint y)
{ {
GdkCursorPrivateFB *private; GdkCursorPrivateFB *private;
GdkCursor *cursor; GdkCursor *cursor;

View File

@ -170,13 +170,13 @@ gdk_bitmap_create_from_data (GdkDrawable *window,
} }
GdkPixmap* GdkPixmap*
gdk_pixmap_create_from_data (GdkDrawable *window, gdk_pixmap_create_from_data (GdkDrawable *window,
const gchar *data, const gchar *data,
gint width, gint width,
gint height, gint height,
gint depth, gint depth,
GdkColor *fg, const GdkColor *fg,
GdkColor *bg) const GdkColor *bg)
{ {
GdkPixmap *pixmap; GdkPixmap *pixmap;

View File

@ -1440,8 +1440,8 @@ gdk_window_set_transient_for (GdkWindow *window,
} }
void void
gdk_window_set_background (GdkWindow *window, gdk_window_set_background (const GdkWindow *window,
GdkColor *color) const GdkColor *color)
{ {
GdkWindowObject *private = (GdkWindowObject *)window; GdkWindowObject *private = (GdkWindowObject *)window;

View File

@ -119,12 +119,12 @@ color_is_white (GdkColor *color)
} }
GdkCursor* GdkCursor*
gdk_cursor_new_from_pixmap (GdkPixmap *source, gdk_cursor_new_from_pixmap (GdkPixmap *source,
GdkPixmap *mask, GdkPixmap *mask,
GdkColor *fg, const GdkColor *fg,
GdkColor *bg, const GdkColor *bg,
gint x, gint x,
gint y) gint y)
{ {
GdkCursorPrivate *private; GdkCursorPrivate *private;
GdkCursor *cursor; GdkCursor *cursor;

View File

@ -389,13 +389,13 @@ gdk_bitmap_create_from_data (GdkDrawable *drawable,
} }
GdkPixmap* GdkPixmap*
gdk_pixmap_create_from_data (GdkDrawable *drawable, gdk_pixmap_create_from_data (GdkDrawable *drawable,
const gchar *data, const gchar *data,
gint width, gint width,
gint height, gint height,
gint depth, gint depth,
GdkColor *fg, const GdkColor *fg,
GdkColor *bg) const GdkColor *bg)
{ {
/* Oh wow. I struggled with dozens of lines of code trying to get /* Oh wow. I struggled with dozens of lines of code trying to get
* this right using a monochrome Win32 bitmap created from data, and * this right using a monochrome Win32 bitmap created from data, and

View File

@ -1649,8 +1649,8 @@ gdk_window_set_transient_for (GdkWindow *window,
} }
void void
gdk_window_set_background (GdkWindow *window, gdk_window_set_background (GdkWindow *window,
GdkColor *color) const GdkColor *color)
{ {
GdkWindowObject *private = (GdkWindowObject *)window; GdkWindowObject *private = (GdkWindowObject *)window;

View File

@ -188,12 +188,12 @@ gdk_cursor_new_for_display (GdkDisplay *display,
* Return value: a new #GdkCursor. * Return value: a new #GdkCursor.
**/ **/
GdkCursor* GdkCursor*
gdk_cursor_new_from_pixmap (GdkPixmap *source, gdk_cursor_new_from_pixmap (GdkPixmap *source,
GdkPixmap *mask, GdkPixmap *mask,
GdkColor *fg, const GdkColor *fg,
GdkColor *bg, const GdkColor *bg,
gint x, gint x,
gint y) gint y)
{ {
GdkCursorPrivate *private; GdkCursorPrivate *private;
GdkCursor *cursor; GdkCursor *cursor;

View File

@ -256,13 +256,13 @@ gdk_bitmap_create_from_data (GdkDrawable *drawable,
} }
GdkPixmap* GdkPixmap*
gdk_pixmap_create_from_data (GdkDrawable *drawable, gdk_pixmap_create_from_data (GdkDrawable *drawable,
const gchar *data, const gchar *data,
gint width, gint width,
gint height, gint height,
gint depth, gint depth,
GdkColor *fg, const GdkColor *fg,
GdkColor *bg) const GdkColor *bg)
{ {
GdkPixmap *pixmap; GdkPixmap *pixmap;
GdkDrawableImplX11 *draw_impl; GdkDrawableImplX11 *draw_impl;

View File

@ -2400,8 +2400,8 @@ gdk_window_set_transient_for (GdkWindow *window,
* *
**/ **/
void void
gdk_window_set_background (GdkWindow *window, gdk_window_set_background (GdkWindow *window,
GdkColor *color) const GdkColor *color)
{ {
GdkWindowObject *private = (GdkWindowObject *)window; GdkWindowObject *private = (GdkWindowObject *)window;

View File

@ -932,8 +932,8 @@ gtk_cell_view_get_size_of_row (GtkCellView *cell_view,
} }
void void
gtk_cell_view_set_background_color (GtkCellView *view, gtk_cell_view_set_background_color (GtkCellView *view,
GdkColor *color) const GdkColor *color)
{ {
g_return_if_fail (GTK_IS_CELL_VIEW (view)); g_return_if_fail (GTK_IS_CELL_VIEW (view));

View File

@ -75,7 +75,7 @@ gboolean gtk_cell_view_get_size_of_row (GtkCellView *cell_v
GtkRequisition *requisition); GtkRequisition *requisition);
void gtk_cell_view_set_background_color (GtkCellView *cell_view, void gtk_cell_view_set_background_color (GtkCellView *cell_view,
GdkColor *color); const GdkColor *color);
G_END_DECLS G_END_DECLS

View File

@ -3215,9 +3215,9 @@ gtk_clist_row_is_visible (GtkCList *clist,
} }
void void
gtk_clist_set_foreground (GtkCList *clist, gtk_clist_set_foreground (GtkCList *clist,
gint row, gint row,
GdkColor *color) const GdkColor *color)
{ {
GtkCListRow *clist_row; GtkCListRow *clist_row;
@ -3244,9 +3244,9 @@ gtk_clist_set_foreground (GtkCList *clist,
} }
void void
gtk_clist_set_background (GtkCList *clist, gtk_clist_set_background (GtkCList *clist,
gint row, gint row,
GdkColor *color) const GdkColor *color)
{ {
GtkCListRow *clist_row; GtkCListRow *clist_row;

View File

@ -631,16 +631,16 @@ gint gtk_clist_get_pixtext (GtkCList *clist,
/* sets the foreground color of a row, the color must already /* sets the foreground color of a row, the color must already
* be allocated * be allocated
*/ */
void gtk_clist_set_foreground (GtkCList *clist, void gtk_clist_set_foreground (GtkCList *clist,
gint row, gint row,
GdkColor *color); const GdkColor *color);
/* sets the background color of a row, the color must already /* sets the background color of a row, the color must already
* be allocated * be allocated
*/ */
void gtk_clist_set_background (GtkCList *clist, void gtk_clist_set_background (GtkCList *clist,
gint row, gint row,
GdkColor *color); const GdkColor *color);
/* set / get cell styles */ /* set / get cell styles */
void gtk_clist_set_cell_style (GtkCList *clist, void gtk_clist_set_cell_style (GtkCList *clist,

View File

@ -660,7 +660,7 @@ gtk_color_button_new (void)
* Since: 2.4 * Since: 2.4
*/ */
GtkWidget * GtkWidget *
gtk_color_button_new_with_color (GdkColor *color) gtk_color_button_new_with_color (const GdkColor *color)
{ {
return g_object_new (GTK_TYPE_COLOR_BUTTON, "color", color, NULL); return g_object_new (GTK_TYPE_COLOR_BUTTON, "color", color, NULL);
} }
@ -776,7 +776,7 @@ gtk_color_button_clicked (GtkButton *button)
**/ **/
void void
gtk_color_button_set_color (GtkColorButton *color_button, gtk_color_button_set_color (GtkColorButton *color_button,
GdkColor *color) const GdkColor *color)
{ {
g_return_if_fail (GTK_IS_COLOR_BUTTON (color_button)); g_return_if_fail (GTK_IS_COLOR_BUTTON (color_button));

View File

@ -77,9 +77,9 @@ struct _GtkColorButtonClass {
GType gtk_color_button_get_type (void) G_GNUC_CONST; GType gtk_color_button_get_type (void) G_GNUC_CONST;
GtkWidget *gtk_color_button_new (void); GtkWidget *gtk_color_button_new (void);
GtkWidget *gtk_color_button_new_with_color (GdkColor *color); GtkWidget *gtk_color_button_new_with_color (const GdkColor *color);
void gtk_color_button_set_color (GtkColorButton *color_button, void gtk_color_button_set_color (GtkColorButton *color_button,
GdkColor *color); const GdkColor *color);
void gtk_color_button_set_alpha (GtkColorButton *color_button, void gtk_color_button_set_alpha (GtkColorButton *color_button,
guint16 alpha); guint16 alpha);
void gtk_color_button_get_color (GtkColorButton *color_button, void gtk_color_button_get_color (GtkColorButton *color_button,

View File

@ -2209,13 +2209,14 @@ gtk_color_selection_set_has_palette (GtkColorSelection *colorsel,
**/ **/
void void
gtk_color_selection_set_current_color (GtkColorSelection *colorsel, gtk_color_selection_set_current_color (GtkColorSelection *colorsel,
GdkColor *color) const GdkColor *color)
{ {
ColorSelectionPrivate *priv; ColorSelectionPrivate *priv;
gint i; gint i;
gboolean previous_changed; gboolean previous_changed;
g_return_if_fail (GTK_IS_COLOR_SELECTION (colorsel)); g_return_if_fail (GTK_IS_COLOR_SELECTION (colorsel));
g_return_if_fail (color != NULL);
priv = colorsel->private_data; priv = colorsel->private_data;
priv->changing = TRUE; priv->changing = TRUE;
@ -2301,6 +2302,7 @@ gtk_color_selection_get_current_color (GtkColorSelection *colorsel,
ColorSelectionPrivate *priv; ColorSelectionPrivate *priv;
g_return_if_fail (GTK_IS_COLOR_SELECTION (colorsel)); g_return_if_fail (GTK_IS_COLOR_SELECTION (colorsel));
g_return_if_fail (color != NULL);
priv = colorsel->private_data; priv = colorsel->private_data;
color->red = UNSCALE (priv->color[COLORSEL_RED]); color->red = UNSCALE (priv->color[COLORSEL_RED]);
@ -2363,11 +2365,12 @@ gtk_color_selection_get_color (GtkColorSelection *colorsel,
**/ **/
void void
gtk_color_selection_set_previous_color (GtkColorSelection *colorsel, gtk_color_selection_set_previous_color (GtkColorSelection *colorsel,
GdkColor *color) const GdkColor *color)
{ {
ColorSelectionPrivate *priv; ColorSelectionPrivate *priv;
g_return_if_fail (GTK_IS_COLOR_SELECTION (colorsel)); g_return_if_fail (GTK_IS_COLOR_SELECTION (colorsel));
g_return_if_fail (color != NULL);
priv = colorsel->private_data; priv = colorsel->private_data;
priv->changing = TRUE; priv->changing = TRUE;
@ -2424,6 +2427,7 @@ gtk_color_selection_get_previous_color (GtkColorSelection *colorsel,
ColorSelectionPrivate *priv; ColorSelectionPrivate *priv;
g_return_if_fail (GTK_IS_COLOR_SELECTION (colorsel)); g_return_if_fail (GTK_IS_COLOR_SELECTION (colorsel));
g_return_if_fail (color != NULL);
priv = colorsel->private_data; priv = colorsel->private_data;
color->red = UNSCALE (priv->old_color[COLORSEL_RED]); color->red = UNSCALE (priv->old_color[COLORSEL_RED]);

View File

@ -88,14 +88,14 @@ void gtk_color_selection_set_has_palette (GtkColorSelection *color
void gtk_color_selection_set_current_color (GtkColorSelection *colorsel, void gtk_color_selection_set_current_color (GtkColorSelection *colorsel,
GdkColor *color); const GdkColor *color);
void gtk_color_selection_set_current_alpha (GtkColorSelection *colorsel, void gtk_color_selection_set_current_alpha (GtkColorSelection *colorsel,
guint16 alpha); guint16 alpha);
void gtk_color_selection_get_current_color (GtkColorSelection *colorsel, void gtk_color_selection_get_current_color (GtkColorSelection *colorsel,
GdkColor *color); GdkColor *color);
guint16 gtk_color_selection_get_current_alpha (GtkColorSelection *colorsel); guint16 gtk_color_selection_get_current_alpha (GtkColorSelection *colorsel);
void gtk_color_selection_set_previous_color (GtkColorSelection *colorsel, void gtk_color_selection_set_previous_color (GtkColorSelection *colorsel,
GdkColor *color); const GdkColor *color);
void gtk_color_selection_set_previous_alpha (GtkColorSelection *colorsel, void gtk_color_selection_set_previous_alpha (GtkColorSelection *colorsel,
guint16 alpha); guint16 alpha);
void gtk_color_selection_get_previous_color (GtkColorSelection *colorsel, void gtk_color_selection_get_previous_color (GtkColorSelection *colorsel,

View File

@ -5099,9 +5099,9 @@ gtk_ctree_node_get_row_style (GtkCTree *ctree,
} }
void void
gtk_ctree_node_set_foreground (GtkCTree *ctree, gtk_ctree_node_set_foreground (GtkCTree *ctree,
GtkCTreeNode *node, GtkCTreeNode *node,
GdkColor *color) const GdkColor *color)
{ {
g_return_if_fail (GTK_IS_CTREE (ctree)); g_return_if_fail (GTK_IS_CTREE (ctree));
g_return_if_fail (node != NULL); g_return_if_fail (node != NULL);
@ -5121,9 +5121,9 @@ gtk_ctree_node_set_foreground (GtkCTree *ctree,
} }
void void
gtk_ctree_node_set_background (GtkCTree *ctree, gtk_ctree_node_set_background (GtkCTree *ctree,
GtkCTreeNode *node, GtkCTreeNode *node,
GdkColor *color) const GdkColor *color)
{ {
g_return_if_fail (GTK_IS_CTREE (ctree)); g_return_if_fail (GTK_IS_CTREE (ctree));
g_return_if_fail (node != NULL); g_return_if_fail (node != NULL);

View File

@ -382,12 +382,12 @@ void gtk_ctree_node_set_cell_style (GtkCTree *ctree,
GtkStyle * gtk_ctree_node_get_cell_style (GtkCTree *ctree, GtkStyle * gtk_ctree_node_get_cell_style (GtkCTree *ctree,
GtkCTreeNode *node, GtkCTreeNode *node,
gint column); gint column);
void gtk_ctree_node_set_foreground (GtkCTree *ctree, void gtk_ctree_node_set_foreground (GtkCTree *ctree,
GtkCTreeNode *node, GtkCTreeNode *node,
GdkColor *color); const GdkColor *color);
void gtk_ctree_node_set_background (GtkCTree *ctree, void gtk_ctree_node_set_background (GtkCTree *ctree,
GtkCTreeNode *node, GtkCTreeNode *node,
GdkColor *color); const GdkColor *color);
void gtk_ctree_node_set_row_data (GtkCTree *ctree, void gtk_ctree_node_set_row_data (GtkCTree *ctree,
GtkCTreeNode *node, GtkCTreeNode *node,
gpointer data); gpointer data);

View File

@ -267,9 +267,9 @@ static GtkTextFont* get_text_font (GdkFont* gfont);
static void text_font_unref (GtkTextFont *text_font); static void text_font_unref (GtkTextFont *text_font);
static void insert_text_property (GtkText* text, GdkFont* font, static void insert_text_property (GtkText* text, GdkFont* font,
GdkColor *fore, GdkColor* back, guint len); const GdkColor *fore, const GdkColor* back, guint len);
static TextProperty* new_text_property (GtkText *text, GdkFont* font, static TextProperty* new_text_property (GtkText *text, GdkFont* font,
GdkColor* fore, GdkColor* back, guint length); const GdkColor* fore, const GdkColor* back, guint length);
static void destroy_text_property (TextProperty *prop); static void destroy_text_property (TextProperty *prop);
static void init_properties (GtkText *text); static void init_properties (GtkText *text);
static void realize_property (GtkText *text, TextProperty *prop); static void realize_property (GtkText *text, TextProperty *prop);
@ -958,12 +958,12 @@ gtk_text_thaw (GtkText *text)
} }
void void
gtk_text_insert (GtkText *text, gtk_text_insert (GtkText *text,
GdkFont *font, GdkFont *font,
GdkColor *fore, const GdkColor *fore,
GdkColor *back, const GdkColor *back,
const char *chars, const char *chars,
gint nchars) gint nchars)
{ {
GtkOldEditable *old_editable = GTK_OLD_EDITABLE (text); GtkOldEditable *old_editable = GTK_OLD_EDITABLE (text);
gboolean frozen = FALSE; gboolean frozen = FALSE;
@ -2876,7 +2876,7 @@ text_font_unref (GtkTextFont *text_font)
} }
static gint static gint
text_properties_equal (TextProperty* prop, GdkFont* font, GdkColor *fore, GdkColor *back) text_properties_equal (TextProperty* prop, GdkFont* font, const GdkColor *fore, const GdkColor *back)
{ {
if (prop->flags & PROPERTY_FONT) if (prop->flags & PROPERTY_FONT)
{ {
@ -2970,8 +2970,8 @@ unrealize_properties (GtkText *text)
} }
static TextProperty* static TextProperty*
new_text_property (GtkText *text, GdkFont *font, GdkColor* fore, new_text_property (GtkText *text, GdkFont *font, const GdkColor* fore,
GdkColor* back, guint length) const GdkColor* back, guint length)
{ {
TextProperty *prop; TextProperty *prop;
@ -3104,7 +3104,7 @@ make_forward_space (GtkText* text, guint len)
* point. */ * point. */
static void static void
insert_text_property (GtkText* text, GdkFont* font, insert_text_property (GtkText* text, GdkFont* font,
GdkColor *fore, GdkColor* back, guint len) const GdkColor *fore, const GdkColor* back, guint len)
{ {
GtkPropertyMark *mark = &text->point; GtkPropertyMark *mark = &text->point;
TextProperty* forward_prop = MARK_CURRENT_PROPERTY(mark); TextProperty* forward_prop = MARK_CURRENT_PROPERTY(mark);

View File

@ -197,12 +197,12 @@ guint gtk_text_get_point (GtkText *text);
guint gtk_text_get_length (GtkText *text); guint gtk_text_get_length (GtkText *text);
void gtk_text_freeze (GtkText *text); void gtk_text_freeze (GtkText *text);
void gtk_text_thaw (GtkText *text); void gtk_text_thaw (GtkText *text);
void gtk_text_insert (GtkText *text, void gtk_text_insert (GtkText *text,
GdkFont *font, GdkFont *font,
GdkColor *fore, const GdkColor *fore,
GdkColor *back, const GdkColor *back,
const char *chars, const char *chars,
gint length); gint length);
gboolean gtk_text_backward_delete (GtkText *text, gboolean gtk_text_backward_delete (GtkText *text,
guint nchars); guint nchars);
gboolean gtk_text_forward_delete (GtkText *text, gboolean gtk_text_forward_delete (GtkText *text,

View File

@ -4481,10 +4481,10 @@ gtk_widget_get_modifier_style (GtkWidget *widget)
} }
static void static void
gtk_widget_modify_color_component (GtkWidget *widget, gtk_widget_modify_color_component (GtkWidget *widget,
GtkRcFlags component, GtkRcFlags component,
GtkStateType state, GtkStateType state,
GdkColor *color) const GdkColor *color)
{ {
GtkRcStyle *rc_style = gtk_widget_get_modifier_style (widget); GtkRcStyle *rc_style = gtk_widget_get_modifier_style (widget);
@ -4529,9 +4529,9 @@ gtk_widget_modify_color_component (GtkWidget *widget,
* gtk_widget_modify_style(). * gtk_widget_modify_style().
**/ **/
void void
gtk_widget_modify_fg (GtkWidget *widget, gtk_widget_modify_fg (GtkWidget *widget,
GtkStateType state, GtkStateType state,
GdkColor *color) const GdkColor *color)
{ {
g_return_if_fail (GTK_IS_WIDGET (widget)); g_return_if_fail (GTK_IS_WIDGET (widget));
g_return_if_fail (state >= GTK_STATE_NORMAL && state <= GTK_STATE_INSENSITIVE); g_return_if_fail (state >= GTK_STATE_NORMAL && state <= GTK_STATE_INSENSITIVE);
@ -4552,9 +4552,9 @@ gtk_widget_modify_fg (GtkWidget *widget,
* gtk_widget_modify_style(). * gtk_widget_modify_style().
**/ **/
void void
gtk_widget_modify_bg (GtkWidget *widget, gtk_widget_modify_bg (GtkWidget *widget,
GtkStateType state, GtkStateType state,
GdkColor *color) const GdkColor *color)
{ {
g_return_if_fail (GTK_IS_WIDGET (widget)); g_return_if_fail (GTK_IS_WIDGET (widget));
g_return_if_fail (state >= GTK_STATE_NORMAL && state <= GTK_STATE_INSENSITIVE); g_return_if_fail (state >= GTK_STATE_NORMAL && state <= GTK_STATE_INSENSITIVE);
@ -4577,9 +4577,9 @@ gtk_widget_modify_bg (GtkWidget *widget,
* gtk_widget_modify_style(). * gtk_widget_modify_style().
**/ **/
void void
gtk_widget_modify_text (GtkWidget *widget, gtk_widget_modify_text (GtkWidget *widget,
GtkStateType state, GtkStateType state,
GdkColor *color) const GdkColor *color)
{ {
g_return_if_fail (GTK_IS_WIDGET (widget)); g_return_if_fail (GTK_IS_WIDGET (widget));
g_return_if_fail (state >= GTK_STATE_NORMAL && state <= GTK_STATE_INSENSITIVE); g_return_if_fail (state >= GTK_STATE_NORMAL && state <= GTK_STATE_INSENSITIVE);
@ -4602,9 +4602,9 @@ gtk_widget_modify_text (GtkWidget *widget,
* and #GtkTextView. See also gtk_widget_modify_style(). * and #GtkTextView. See also gtk_widget_modify_style().
**/ **/
void void
gtk_widget_modify_base (GtkWidget *widget, gtk_widget_modify_base (GtkWidget *widget,
GtkStateType state, GtkStateType state,
GdkColor *color) const GdkColor *color)
{ {
g_return_if_fail (GTK_IS_WIDGET (widget)); g_return_if_fail (GTK_IS_WIDGET (widget));
g_return_if_fail (state >= GTK_STATE_NORMAL && state <= GTK_STATE_INSENSITIVE); g_return_if_fail (state >= GTK_STATE_NORMAL && state <= GTK_STATE_INSENSITIVE);

View File

@ -650,16 +650,16 @@ void gtk_widget_modify_style (GtkWidget *widget,
GtkRcStyle *gtk_widget_get_modifier_style (GtkWidget *widget); GtkRcStyle *gtk_widget_get_modifier_style (GtkWidget *widget);
void gtk_widget_modify_fg (GtkWidget *widget, void gtk_widget_modify_fg (GtkWidget *widget,
GtkStateType state, GtkStateType state,
GdkColor *color); const GdkColor *color);
void gtk_widget_modify_bg (GtkWidget *widget, void gtk_widget_modify_bg (GtkWidget *widget,
GtkStateType state, GtkStateType state,
GdkColor *color); const GdkColor *color);
void gtk_widget_modify_text (GtkWidget *widget, void gtk_widget_modify_text (GtkWidget *widget,
GtkStateType state, GtkStateType state,
GdkColor *color); const GdkColor *color);
void gtk_widget_modify_base (GtkWidget *widget, void gtk_widget_modify_base (GtkWidget *widget,
GtkStateType state, GtkStateType state,
GdkColor *color); const GdkColor *color);
void gtk_widget_modify_font (GtkWidget *widget, void gtk_widget_modify_font (GtkWidget *widget,
PangoFontDescription *font_desc); PangoFontDescription *font_desc);