Mercurial > hg > xemacs-beta
comparison src/console-gtk.h @ 5074:8af6a32b170d
Modify XLIKE_get_gc's prototype
src/ChangeLog addition:
2010-02-24 Didier Verna <didier@xemacs.org>
Modify XLIKE_get_gc's prototype.
* redisplay-xlike-inc.c (XLIKE_get_gc): Take a frame instead of a
device as first argument.
* redisplay-xlike-inc.c (XLIKE_output_string): Update caller.
* redisplay-xlike-inc.c (XLIKE_output_pixmap): Ditto.
* redisplay-xlike-inc.c (XLIKE_output_blank): Ditto.
* redisplay-xlike-inc.c (XLIKE_output_horizontal_line): Ditto.
* redisplay-xlike-inc.c (XLIKE_clear_region): Ditto.
* redisplay-xlike-inc.c (XLIKE_output_eol_cursor): Ditto.
* console-gtk.h (gtk_get_gc): Take a frame instead of a device as
first argument.
* gtk-glue.c (face_to_gc): Update caller.
author | Didier Verna <didier@lrde.epita.fr> |
---|---|
date | Wed, 24 Feb 2010 15:45:20 +0100 |
parents | b3ce27ca7647 |
children | 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
5073:78a3c171a427 | 5074:8af6a32b170d |
---|---|
62 void gtk_output_string (struct window *w, struct display_line *dl, | 62 void gtk_output_string (struct window *w, struct display_line *dl, |
63 Ichar_dynarr *buf, int xpos, int xoffset, | 63 Ichar_dynarr *buf, int xpos, int xoffset, |
64 int start_pixpos, int width, face_index findex, | 64 int start_pixpos, int width, face_index findex, |
65 int cursor, int cursor_start, int cursor_width, | 65 int cursor, int cursor_start, int cursor_width, |
66 int cursor_height); | 66 int cursor_height); |
67 GdkGC *gtk_get_gc (struct device *d, Lisp_Object font, Lisp_Object fg, Lisp_Object bg, | 67 GdkGC *gtk_get_gc (struct frame *f, |
68 Lisp_Object font, Lisp_Object fg, Lisp_Object bg, | |
68 Lisp_Object bg_pmap, Lisp_Object lwidth); | 69 Lisp_Object bg_pmap, Lisp_Object lwidth); |
69 | 70 |
70 int gtk_initialize_frame_menubar (struct frame *f); | 71 int gtk_initialize_frame_menubar (struct frame *f); |
71 void gtk_init_modifier_mapping (struct device *d); | 72 void gtk_init_modifier_mapping (struct device *d); |
72 | 73 |