]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-0
Add a --enable-explicit-deps option to control whether dependency
[~andy/gtk] / ChangeLog.pre-2-0
1 Fri Mar  1 00:46:49 2002  Owen Taylor  <otaylor@redhat.com>
2
3         * configure.in: Add a --enable-explicit-deps option to control
4         whether dependency libraries are written into .la files and .pc
5         files.  Default is auto: if static libraries are off and shlib
6         dependencies are found, don't write deps.
7
8         * gdk/Makefile.am gtk/Makefile.am sanitize-la.sh: Shell script
9         used to strip dependencies out of .la files.
10
11         * Makefile.am: Add a slightly modified distcheck rule that passes
12         --enable-gtk-doc to the configure inside.
13         (So that 'make dist' succeeds inside.)
14
15         * configure.in: If pango was compiled with
16         --disable-explicit-deps, then repeat the checks for X and
17         freetype ourselves so we don't depend on linking to libraries
18         that pango doesn't reveal in the link line. Add some more paranoia
19         for whether what we detect ourselves matches what Pango backends
20         we found.
21         
22 2002-03-03  Tor Lillqvist  <tml@iki.fi>
23
24         * configure.in: Output gdk-pixbuf/gdk_pixbuf.rc.
25
26         * gdk/gdk.def
27         * gdk/win32/gdkevents-win32.c: Add and (trivially) implement
28         gdk_pointer_grab_info_libgtk_only() and
29         gdk_keyboard_grab_info_libgtk_only().
30
31 2002-03-02  Tor Lillqvist  <tml@iki.fi>
32
33         * gdk/win32/gdkevents-win32.c (build_keypress_event): Reorder
34         code, keyval should get a value in all cases now.
35         (build_keyrelease_event): Set GDK_CONTROL_MASK here, too, if it
36         was a control character produced with Alt+keypad digits.
37         (gdk_event_translate): Minor cleanups to keyboard input
38         handling. Still need more major work.
39         
40 Sat Mar  2 16:12:03 2002  Owen Taylor  <otaylor@redhat.com>
41
42         * gtk/gtkradiobutton.c (gtk_radio_button_focus): Don't
43         do special focus handling if draw_indicator is not set.
44         (#64723, Damon Chaplin.)
45
46 Sat Mar  2 15:48:04 2002  Owen Taylor  <otaylor@redhat.com>
47
48         * gtk/gtkentry.c (gtk_entry_new_with_max_length,
49         gtk_entry_set_max_length): Clamp @max parameter passed in to 
50         [0, MAX_SIZE], improve docs. Fix default and range 
51         for ::max-length property, range for ::ncursor_position,
52         ::selection_bound properties. (#55916, Vitaly Tishkov)
53
54         * gtk/gtkmain.c (rewrite_event_for_grabs): Fix typo
55
56 Fri Mar  1 18:39:44 2002  Owen Taylor  <otaylor@redhat.com>
57
58         * gdk/x11/{gdkevents-x11.c,gdkmain-x11.c,gdkprivate-x11.h,
59         gdkwindow-x11.c}: Robustify tracking of pointer grab window.
60
61         * gdk/x11/gdkmain-x11.c: Keep track of current keyboard
62         grab window.
63
64         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab_info_libgtk_only,
65         gdk_keyboard_grab_info_libgtk_only): Private libgtk => libgtk
66         API for finding out current grab information.
67         
68         * gtk/gtkmain.c (rewrite_event_for_grabs): Rewrite events
69         so that the effective behavior of owner_events = TRUE is changed
70         to "deliver events to same window group normally" instead
71         of "deliver events to same application normally. #69934
72
73         * gtk/gtkrange.c: Use an explicit gtk_grab_add() so that
74         it works within the GtkList combo, where there is a 
75         owner_events = FALSE gdk_pointer_grab() already in effect.
76         (#65006, reported by Damon Chaplin)
77
78 Sat Mar  2 14:32:50 2002  Owen Taylor  <otaylor@redhat.com>
79
80         * configure.in: Default to --disable-gtk-doc (avoid Jade
81         breakage) and --disable-static (static linking causes
82         problems with Xft changes.)
83
84         * autogen.sh: Add --enable-gtk-doc by default.
85
86         * Makefile.am: Add a 'mydistcheck' rule that passes
87         --enable-gtk-doc to the configure since that is needed
88         for 'make dist'.
89
90         * docs/tutorial/Makefile.am (dist-hook): Don't distribute
91         the PDF file. (Rule doesn't work on my system, plus it's
92         big.)
93
94         * gtk/Makefile.am: 'make dist' fixes.
95
96 Sat Mar  2 13:26:58 2002  Owen Taylor  <otaylor@redhat.com>
97
98         * gtk/Makefile.am: Switch style of stamp file usage.
99
100         * gtk/Makefile.am gtk/typeutils.[ch]: Switch all the exported
101         enumeration/fags TYPE variables over to macros for get_type() functions,
102         for lazy definition and to get rid of expensive relocations.
103
104         * gtk/gtkiconfactory.[ch] gtk/gtkselection.[ch] gtk/gtkstyle.[ch]
105         gtk/gtktextiter.[ch] gtk/gtktexttag.[ch] gtk/gtktreemodel.[ch]
106         gtk/gtktypeutils.[ch] gtk/gtkwidget.[ch]: Switch boxed type
107         definitions over manually coded get_type() functions.
108
109         * gtk/gtk.def: Updates for above
110
111         * gtk/{genmarshal.pl,makeenums.awk,makeenums.h,maketypes.awk}:
112         Remove from CVS, no longer used.
113
114         * configure.in: Remove checks for awk.
115         
116 Sat Mar  2 04:44:10 2002  Tim Janik  <timj@gtk.org>
117
118         * gtk/gtkaccelgroup.c (gtk_accel_group_connect_by_path): fix typo.
119
120 Fri Mar  1 23:59:35 2002  Kristian Rietveld  <kris@gtk.org>
121
122         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_get_size): set
123         first_cell to FALSE after first iteration
124
125         * gtk/gtktreeview.c (validate_visible_area): reduce usage of
126         GTK_RBNODE_GET_HEIGHT, check for node != NULL,
127         (gtk_tree_view_top_row_to_dy): remove call to gtk_adjustment_changed
128         (gtk_tree_view_search_iter): select iter after scrolling
129
130 2002-03-02  Tor Lillqvist  <tml@iki.fi>
131
132         * gtk/gtkitemfactory.c: Remove unneeded Win32 stuff inside #ifdef
133         G_OS_WIN32. (Leftover from when gtkitemfactory.c handled files.)
134
135 2002-03-01  Tor Lillqvist  <tml@iki.fi>
136
137         * gdk/gdkkeys.c (gdk_keyval_convert_case)
138         * gdk/x11/gdkkeys-x11.c (gdk_keyval_convert_case): If the keyval
139         to be converted is one of those that consist of a Unicode
140         character plus our special flag bit, use the
141         g_unichar_to{lower,upper} functions (Bug#73112).
142
143         * gdk/gdkkeys.c (gdk_keyval_convert_case): Drop the #ifdefs for
144         the GDK keysym symbols. As we include gdkkeysyms.h, we know they
145         are there. And if GDK keysyms some day are added/removed, this
146         function needs changes, too, anyway.
147
148 Fri Mar  1 17:00:28 2002  Owen Taylor  <otaylor@redhat.com>
149
150         * gdk/gdkpolyreg-generic.c: Fix some reported (but not significant)
151         UMR's from purify. (#73160, Morten Welinder)
152
153 Fri Mar  1 16:48:19 2002  Owen Taylor  <otaylor@redhat.com>
154
155         * gtk/gtkscrolledwindow.c: Initialize the scrollbar spacing
156         variable in the class to -1, and then take that to mean
157         "default" (3) rather than putting 3 in the class directly.
158         This gives us some wiggle room to make it a per-instance
159         rather than a per-class property later.
160
161 2002-03-01  jacob berkman  <jacob@ximian.com>
162
163         * Makefile.am (install-data-hook): 
164         (dist-hook): replace uses of test -e with more portable test -f
165
166 Fri Mar  1 14:49:35 2002  Owen Taylor  <otaylor@redhat.com>
167
168         * gtk/gtktextview.c (gtk_text_view_commit_text): Don't delete
169         forward across line boundaries when in overwrite mode.
170         (#73145, reported by Ettore Perazzoli)
171
172 Fri Mar  1 14:47:39 2002  Owen Taylor  <otaylor@redhat.com>
173
174         * gtk/gtktextview.c (gtk_text_view_commit_text): Don't
175         join up lines.
176
177 Fri Mar  1 10:31:14 2002  Owen Taylor  <otaylor@redhat.com>
178
179         * gtk/gtknotebook.c (gtk_notebook_reorder_child):
180         Fix signed-unsigned error that was accidentally causing
181         negative values to append, do it intentionally. Fix docs 
182         to say that negative values append. (Alexey A. Malyshev,
183         #73108) 
184
185 2002-03-01 Alexey Malyshev <maa@sparc.spb.su>
186         
187         * gtk+/gtk/gtkitemfactory.c
188         fixed a little type in docs for gtk_notebook_set_show_border()
189         
190 Fri Mar  1 09:05:19 2002  Owen Taylor  <otaylor@redhat.com>
191
192         * gtk/gtkitemfactory.c (gtk_item_factory_delete_entries):
193         Really make it work for paths with underline accelerators. (#69247)
194
195 2002-02-28  Havoc Pennington  <hp@pobox.com>
196
197         * gtk/gtktextview.c (gtk_text_view_finalize): free the tab array
198         for custom tabs, reported by Paolo Maggi #72980
199         
200 Thu Feb 28 19:55:01 2002  Owen Taylor  <otaylor@redhat.com>
201
202         * gdk/gdkkeys.c: include gdkkeysysms.h if
203         compiling gdk_keyval_convert_case.
204
205         * gtk/gtkmenubar.c (gtk_menu_bar_cycle_focus): Implement
206         <Control>Tab <Control><Shift>Tab to cycle between
207         all menu bars in a toplevel once one is up.
208
209         * tests/testgtk.c: Add a second menubar, this
210         example is already full of crack anyways.
211
212         * gtk/gtkmenushell.c (gtk_menu_shell_key_press): Padd
213         unhandled events up to the parent menu shell.
214
215         * gtk/gtkmenuitem.c (gtk_menu_item_select_timeout): Only
216         pop up the menu if the parent menu shell is still active.
217
218         * gtk/gtkcontainer.[ch] (_gtk_container_focus_sort): Add a
219         old_focus argument, export privately.
220
221 2002-02-28  Darin Adler  <darin@bentspoon.com>
222
223         * gtk/gtkfilesel.c: (open_new_dir): Add missing NULL check.
224
225 2002-03-01  Tor Lillqvist  <tml@iki.fi>
226
227         * gdk/win32/gdkwindow-win32.h (struct _GdkWindowImplWin32): Remove
228         the event_mask, it is now in GdkWindowObject.
229
230         * gdk/win32/gdkwindow-win32.c: Change accordingly. Set the
231         GDK_STRUCTURE_MASK in gdk_window_set_events(), as it is always set
232         in gdk_window_new(), too. (Bug#72921)
233
234         * gdk/win32/gdkevents-win32.c: Change accordingly here, too.
235         (vk_from_char): New function, calculates the virtual keycode
236         corresponding to the char in a WM_CHAR message.
237         (build_keypress_event, build_keyrelease_event): Use it.
238         (build_keypress_event): Call ImmReleaseContext() after using the
239         input context. This might plug a memory or resource leak.
240         (build_key_event_state): Remove #if 0 code.
241         (gdk_event_translate): Actually, it would be preferrable to always
242         handle just the WM_KEYDOWN and WM_KEYUP messages, not WM_CHAR at
243         all, and thus drop the contorted logic with ignore_wm_char etc.
244
245         * gdk/win32/gdkkeys-win32.c: (gdk_keymap_get_entries_for_keyval):
246         Debugging output.
247         (gdk_keymap_translate_keyboard_state): Return correct value. (But
248         _gtk_key_hash_lookup() doesn't check the return value...)
249
250 Thu Feb 28 14:49:08 2002  Owen Taylor  <otaylor@redhat.com>
251
252         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): Initialize
253         private->event_mask from attributes we retrieved for
254         the window.
255
256 2002-02-22  Havoc Pennington  <hp@redhat.com>
257
258         * gtk/gtktextbuffer.c (save_range): change gravity of start/end
259         marks so that text added at either end of the range doesn't end up
260         inside the range.
261         (gtk_text_buffer_real_insert_range): fix to handle pasting a range
262         into itself.
263
264 2002-02-28  Sven Neumann  <sven@gimp.org>
265
266         * configure.in: beautified configure --help output.
267
268 2002-02-28  Tor Lillqvist  <tml@iki.fi>
269
270         * gdk/win32/Makefile.am: Move bdfcursor.c from
271         libgdk_win32_la_SOURCES to EXTRA_DIST.
272
273         * gdk/win32/gdkgc-win32.c (gdk_win32_colormap_color_pack): In the
274         bitmap case, use just the LSB of the pixel value. Does this match
275         X11 semantics? Or should it be pixel!=0?
276
277 Wed Feb 27 19:16:50 2002  Owen Taylor  <otaylor@redhat.com>
278
279         * gdk/x11/gdkwindow-x11.c (gdk_window_new): 
280         * gdk/x11/gdkwindow-x11.c (gdk_window_get_events): 
281         * gdk/x11/gdkwindow-x11.c (gdk_window_set_events): 
282         * gdk/win32/gdkwindow-win32.c (gdk_window_set_events): 
283         * gdk/win32/gdkwindow-win32.c (gdk_window_new): 
284         * gdk/gdkwindow.h (struct _GdkWindowObject): 
285         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_events):
286         Save the window's event mask in window->event_mask.
287
288         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Only
289         generate expose events if GDK_EXPOSE_MASK is included
290         window->event_mask. (#54506)
291
292 Wed Feb 27 18:50:29 2002  Owen Taylor  <otaylor@redhat.com>
293
294         * gtk/gtkwidget.c (gtk_widget_event): Allow focus-change
295         events to be sent to unrealized widgets; they aren't
296         really normal events in that they have anything to
297         do with widget->window. (#72914, Andreas J. Guelzow)
298
299 Wed Feb 27 18:39:25 2002  Owen Taylor  <otaylor@redhat.com>
300
301         * gtk/stock-icons/Makefile.am: Split big VARIABLES variable
302         that was causing overlong lines into 6 variables with 20
303         in each one.
304
305 Wed Feb 27 18:01:03 2002  Owen Taylor  <otaylor@redhat.com>
306
307         * gtk/gtkaccellabel.c (gtk_accelerator_name) po/POTFILES.in: 
308         Mark Ctrl, Shift, Alt for translation.
309         (#60590)
310
311         * gtk/gtkfontsel.c: Mark PREVIEW_TEXT for translation.
312         (Vlad Harchev, #53223)
313
314 Wed Feb 27 17:32:09 2002  Owen Taylor  <otaylor@redhat.com>
315
316         * gtk/gtkrange.c (gtk_range_get_props): if CAN_FOCUS
317         reserve focus_line_width + focus_line_pad extra
318         space and draw the focus in that space. #72027.
319
320 Wed Feb 27 23:02:55 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
321
322         * gtk/gtkhandlebox.c (gtk_handle_box_realize): minor code cleanup
323
324 Wed Feb 27 14:58:12 2002  Owen Taylor  <otaylor@redhat.com>
325
326         * gtk/gtkmenubar.c (gtk_menu_bar_size_request/allocate): 
327         Don't reserve space for border when the shadow type
328         for the menubar is "none". (#61843)
329
330         * gtk/gtkmenubar.c (gtk_menu_bar_size_allocate): Fix
331         offset for right-justified menu items.
332
333 Wed Feb 27 14:45:21 2002  Owen Taylor  <otaylor@redhat.com>
334
335         * gtk/gtktoolbar.c (gtk_toolbar_size_allocate): Go
336         back to old style of drawing children over the bevel.
337         (#58615)
338
339 Wed Feb 27 14:08:26 2002  Owen Taylor  <otaylor@redhat.com>
340
341         * modules/input/imxim.c: Add ko and zh to the locales
342         where this is the default.
343
344 Wed Feb 27 12:34:21 2002  Owen Taylor  <otaylor@redhat.com>
345
346         * gtk/gtkiconfactory.c: Register all stock icons
347         "unscaled" so that we don't have icons only available
348         at some sizes. (#68896)
349
350 Wed Feb 27 11:59:05 2002  Owen Taylor  <otaylor@redhat.com>
351
352         Some ASCII vs. locale fixes from Darin Adler (#55837)
353
354         * gtk/gtkcombo.c (gtk_combo_find): Implement real
355         case-insensitive comparison using g_utf8_casefold().
356
357         * gtk/gtkaccellabel.c (gtk_accel_label_refetch): Fix
358         assignment of gunichar to char by replacing g_unichar_totitle
359         with g_ascii_toupper ... the contents would only be ascii
360         here anyways.
361
362         * gdk/x11/gdkim-x11.c (_gdk_x11_initialize_locale) 
363         * gtk/gtkfontsel.c (gtk_font_selection_show_available_fonts): 
364         Replace a calls to g_strcasecmp() with g_ascii_strcasecmp().
365
366 2002-02-27  Hans Breuer  <hans@breuer.org>
367
368         * demos/gtk-demo/makefile.msc.in : new file
369
370         * gdk-pixbuf/gtk-pixbuf.rc.in : new file to include
371           version resource
372         * gdk-pixbuf/makefile.msc : create and use gdk-pixbuf.res
373
374         * gdk/win32/gdkkeys-win32.c : handle undefined LANG_URDU,
375         (gdk_keyval_name) : fix endless looping
376
377         * gtk/gtkfilesel.c : translate_win32_path() static
378         * gtk/queryimmodules : print_escaped(), query_module() static
379
380         * gtk/makefile.msc.in : added gtkkeyhash, build gtk-win32.res
381
382         * gtk/stock-icons/makefile.msc : regenerated from directory
383         listing (almost all filenames changed)
384
385 Wed Feb 27 10:34:46 2002  Owen Taylor  <otaylor@redhat.com>
386
387         * gtk/gtkrange.c (gtk_range_set_range): After computing
388         the clamped value, actually set it. (#62639, Sergey Kuzminov)
389
390 Tue Feb 26 22:22:37 2002  Owen Taylor  <otaylor@redhat.com>
391
392         * gtk/gtkbox.c (gtk_box_reorder_child): Clean up
393         the code so < 0 == end wasn't just a side effect,
394         remove most of the manual linked list manipulation
395         code in favor of g_list_* functions.
396
397 Tue Feb 26 21:44:01 2002  Owen Taylor  <otaylor@redhat.com>
398
399         * config.status config.guess: Remove these files
400         from CVS so we more-or-less current versions from
401         automake --add-missing. (Reported by Finlay Dobbie,
402         #60342)
403
404         * gdk/gdkkeyuni.c: Shouldn't map KP_Enter to '\n',
405         or KP_Tab to \t' since we don't map the corresponding
406         main keyboard characters in that way. (#61561,
407         Padraig O'Briain)
408
409 Tue Feb 26 19:45:29 2002  Owen Taylor  <otaylor@redhat.com>
410
411         * gtk/gtkcombo.c (gtk_combo_set_popdown_strings):
412         Call gtk_combo_set_popdown_strings() in case
413         the combo is up currently. (#63535, Skip Montaro)
414
415 Tue Feb 26 19:38:14 2002  Owen Taylor  <otaylor@redhat.com>
416
417         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init):
418         Switch control-home/end and home/end with
419         the idea that scrolled windows more typically contain
420         vertical sets of controls and to correspond to the bindings
421         in GtkTreeView.
422
423 Tue Feb 26 19:32:42 2002  Owen Taylor  <otaylor@redhat.com>
424
425         * gtk/gtk[hv]vscale.c (gtk_[hv]scale_expose): Chain
426         up before drawing the scale values so that the number
427         is drawn in the right place instead of one step 
428         back. (#61743, patch from Satyajit Kanungo)
429
430 Tue Feb 26 19:16:28 2002  Owen Taylor  <otaylor@redhat.com>
431
432         * gdk/win32/gdkkeys-win32.c (gdk_keyval_name): 
433         * gdk/x11/gdkkeys-x11.c (gdk_keyval_name): 
434         Make sure Page_Up, Page_Down get those names, not Prior,
435         Next.
436
437 Tue Feb 26 18:58:49 2002  Owen Taylor  <otaylor@redhat.com>
438
439         * gtk/gtkaccelgroup.c (gtk_accelerator_set_default_mod_mask):
440         OR in the three default modifiers to any value passed
441         in by the caller, so that the caller won't break the
442         the default bindings. (#70142, Jody Goldberg, though he
443         wasn't in favor of this particular way of solving it.)
444
445 Tue Feb 26 18:47:44 2002  Owen Taylor  <otaylor@redhat.com>
446
447         * gtk/gtkwindow.c (gtk_window_add_mnemonic): Append
448         mnemonics rather than prepending them so that the 
449         order is typically forward rather than typically
450         backward. (Partial fix for #52395)
451
452 Wed Feb 27 00:45:39 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
453
454         * gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c
455         gtk/gtkspinbutton.c gtk/gtkstyle.c: Draw arrows better (without
456         extra baseline)
457
458 Tue Feb 26 18:38:17 2002  Owen Taylor  <otaylor@redhat.com>
459
460         * gtk/gtkaccellabel.c (gtk_accel_label_refetch): 
461         Display any "g_unicode_isgraph()" char literally,
462         not just latin1. (#65679)
463
464 Tue Feb 26 18:01:10 2002  Owen Taylor  <otaylor@redhat.com>
465
466         * gtk/gtkwidget.c (gtk_widget_grab_focus): Don't
467         focus insensitive widgets. (#68203)
468         
469         * gtk/gtkentry.c (gtk_entry_state_changed): Clear any
470         current selection if we become insensitive. (#68203)
471
472         * gtk/gtkentry.c (gtk_entry_grab_focus): Don't
473         select the text if the entry isn't editable. (#67203)
474
475         * gtk/gtkentry.c: Activate keybindings when not editable,
476         but supress keybindings that change the text. (#65848, #68203)
477
478         * gtk/gtkentry.c (gtk_entry_set_property): Reset the
479         IM context for the entry when it is made not editable.
480
481 Tue Feb 26 17:04:44 2002  Owen Taylor  <otaylor@redhat.com>
482
483         * gtk/gtkcolorsel.c (update_color): Emit ::color_changed
484         every time we notify current_color. (Brute force 
485         fix for #72470, Matthias Clasen). Some fixes to improve
486         reentrancy.
487
488 Tue Feb 26 15:04:33 2002  Owen Taylor  <otaylor@redhat.com>
489
490         * gtk/gtkentry.c (gtk_entry_enter_text): use
491         the cursor position _after_ deleting the text
492         as the position to insert at. (#72717, Jan Mynarik)
493
494 2002-02-26 Vitaly Tishkov <tvv@sparc.spb.su>
495
496         * gtk/gtktreemodel.c
497         misprints in documentation for gtk_tree_row_reference_inserted() 
498         and gtk_tree_path_new () are fixed
499
500 Tue Feb 26 19:47:16 2002  Kristian Rietveld  <kris@gtk.org>
501
502         * gtk/gtktreeview.c (validate_visible_area): take into account
503         that a path from a rowref can be NULL. (#72623 and #72650)
504
505         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_render_or_focus):
506         let focus_rectangle be the same as cell_area for empty cells (#69900)
507
508 Tue Feb 26 11:51:56 2002  Owen Taylor  <otaylor@redhat.com>
509
510         * gtk/gtkkeyhash.c (_gtk_key_hash_remove_entry): Fix
511         double free.
512
513 Tue Feb 26 10:38:14 2002  Owen Taylor  <otaylor@redhat.com>
514
515         * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval): Handle
516         a keyval of 0, by returning an empty list. (#72617,
517         Kevin Breit)
518
519 2002-02-26  Richard Hult  <rhult@codefactory.se>
520
521         * gtk/gtktreeview.c (gtk_tree_view_expand_all): Fix
522         #72586. Silently accept empty tree.
523         (gtk_tree_view_collapse_all): Likewise.
524
525 2002-02-26  Tor Lillqvist  <tml@iki.fi>
526
527         * gtk/gtk.def: A couple of name changes.
528
529 Mon Feb 25 22:10:47 2002  Owen Taylor  <otaylor@redhat.com>
530
531         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init): Fix
532         double set of bindings for page-up/down. (#72605, Tor Lillqvist)
533
534         * gtk/gtkmenu.c (gtk_menu_key_press): Remove consumed modiifers
535         when setting up accelerator to make accelerators look prettier.
536         (#65416, Guillermo S. Romero)
537
538 2002-02-26  Tor Lillqvist  <tml@iki.fi>
539
540         * gdk/win32/gdkkeys-win32.c: Implement the functions that until
541         now just were non-functional stubs. For "hardware keycodes", we
542         use Windows virtual keycodes. Not scancodes, although that at
543         first might seem more low-level and a better match to X11
544         keycodes. 
545
546         The Windows API is really mixed up and confused with respect to
547         scancodes and virtual keycodes. (Surprised?) Some scancodes are
548         generated by two keys on the keyboard (!), and although the
549         keyboard messages do have a flag to indicate which key the user
550         pressed, other API that take a scan code as input don't let you
551         specify which actual key you mean.
552
553         (update_keymap): Function to build a X11-like representation of
554         the keyboard. Each key has four keysyms: two levels (nonshifted
555         and shifted) and two groups (normal and with AltGr).
556
557         (gdk_keymap_get_direction): Use the codepage corresponding to the
558         thread's input locale, not the system codepage.
559
560         * gdk/win32/gdkglobals.h
561         * gdk/win32/gdkmain-win32.c
562         * gdk/win32/gdkprivate-win32.h
563         * gdk/win32/gdkwindow-win32.h
564         * gdk/win32/gdkwindow-win32.c: Remove the input_locale and
565         charset_info fields from GdkWindowImplWin32. Input locale is
566         per-thread in Windows, and as GDK on Windows really only works
567         when the GDI interaction all happens in just one thread anyway,
568         this state can be global. Use globals _gdk_input_locale and
569         _gdk_input_codepage instead. Set these based on the thread's input
570         locale (keyboard layout, or which IME is active).
571
572         * gdk/win32/gdkevents-win32.c: Set the group and hardware_keycode
573         fields in GDK key events. On input locale change messages, set
574         the global state variables, and inform update_keymap() that it
575         has to rebuild the keymap.
576         
577 2002-02-25  Matthias Clasen  <maclas@gmx.de>
578
579         * docs/tutorial/gtk-tut.sgml: Fix typos in pkg-config 
580         invokations.  (#72476) 
581
582 Mon Feb 25 18:59:27 2002  Owen Taylor  <otaylor@redhat.com>
583
584         * gtk/gtktooltips.c (start_keyboard_mode): Set the keyboard-mode
585         flag before popping up the tooltip so that pop it up
586         in the right place. (#71917, Narayani Pattipati)
587
588 Mon Feb 25 22:11:34 2002  Kristian Rietveld  <kris@gtk.org>
589
590         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_visible): call
591         _gtk_tree_view_column_cell_set_dirty when visible, so this column
592         gets some space allocated. (#70996)
593
594         * gtk/gtkliststore.c (gtk_list_store_get_path): add simple
595         optimization for the tail case
596         (gtk_list_store_real_set_value): remove unneeded _get_path calls
597
598 Mon Feb 25 12:47:25 2002  Owen Taylor  <otaylor@redhat.com>
599
600         * gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state): 
601         Fix precendence problem. (Sven Neumann)
602
603 Sun Feb 24 23:23:28 2002  Owen Taylor  <otaylor@redhat.com>
604
605         * tests/testselection.c (main): Convert over to using
606         an GtkInvisible - selections don't work properly
607         with now NO_WINDOW GtkToggleButton. (Example really
608         should be using GtkClipboard.)
609
610         * gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
611         Fix  problems if sizeof(GdkAtom) != sizeof(Atom). (Unlikely)
612
613         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Set 
614         actual_length when converting atoms as well.
615         (Gregory Merchan, #72074)
616
617 2002-02-24  Havoc Pennington  <hp@pobox.com>
618         
619         * gtk/gtktextview.c (gtk_text_view_value_changed): add dx/dy to
620         child allocation, don't subtract them. Also, copy code from CList
621         to recursively adjust the child allocation, instead of just 
622         adjusting immediate children. #69115
623
624 2002-02-24  Havoc Pennington  <hp@pobox.com>
625
626         * gtk/gtkstyle.c (_gtk_draw_insertion_cursor): change to pass in
627         the cursor direction always, not just when we need an arrow, so we
628         can flip the cursor around its axis for RTL. Resolves #72372
629
630         * gtk/gtkentry.c (gtk_entry_draw_cursor): update for
631         draw_insertion_cursor change
632         
633         * gtk/gtklabel.c (gtk_label_draw_cursor): ditto
634
635         * gtk/gtktextdisplay.c (gtk_text_layout_draw): ditto
636         
637 2002-02-24  Alexander Larsson  <alla@lysator.liu.se>
638
639         * gdk/x11/gdkwindow-x11.c (gdk_window_set_background):
640         Always NULL out bg_pixmap, even when it used to be None
641         or parent relative.
642
643 2002-02-24  Havoc Pennington  <hp@pobox.com>
644
645         * gtk/gtktextbuffer.c (parent_class): parent_class variable was
646         GtkObjectClass instead of GObjectClass
647
648         * gtk/gtktextview.c (widget_to_buffer): fix this the way 
649         buffer_to_widget was fixed, to avoid duplicating 
650         the code that computes text_window->allocation.x/y
651
652 Sun Feb 24 21:18:20 2002  Owen Taylor  <otaylor@redhat.com>
653
654         * gtk/gtksocket.c (gtk_socket_end_embedding): Fix
655         off-by-one error. (Pointed out by Anders Carlsson)
656
657 2002-02-25  Matthias Clasen  <maclas@gmx.de>
658
659         * docs/tutorial/gtk-tut.sgml, docs/tutorial/images/*, examples/*: More
660          GTK+ 2.0 updates.
661
662         * docs/tutorial/Makefile.am: build and dist the new tutorial, not
663         the old Linuxdoc one.
664
665 Mon Feb 25 01:14:26 2002  Kristian Rietveld  <kris@gtk.org>
666
667         * gtk/gtktextlayout.c (find_display_line_above): free iter before
668         going to done
669
670         * gtk/gtktreeview.c (validate_visible_area): free above_path,
671         (set_destination_row): free path before returning,
672         (gtk_tree_view_set_drag_dest_row): free current_dest
673
674 Sun Feb 24 14:15:45 2002  Owen Taylor  <otaylor@redhat.com>
675
676         * gtk/gtktextview.c (widget_to_buffer): Take border
677         width into account.
678
679         * gtk/gtklabel.c (get_label_wrap_width): Don't use GdkFont
680         to compute wrap width ... GdkFont will pull in X11 core
681         fonts.
682
683 Sun Feb 24 00:06:58 2002  Owen Taylor  <otaylor@redhat.com>
684
685         * Released 1.3.15.
686
687         * configure.in: Version 1.3.15, binary, interface age 0.
688
689         * NEWS: Updates
690
691         * configure.in: Update version requirements.
692
693 Sat Feb 23 22:37:23 2002  Owen Taylor  <otaylor@redhat.com>
694
695         * gtk/gtkstyle.c (gtk_style_init): Sanity check default
696         font family name and size.
697
698         * gtk/gtkwindow.c (gtk_window_set_default_size): Remove
699         incorrect comment about the geometry widget.
700
701         * gtk/gtkwindow.c (gtk_window_move_resize): Unset the
702         gtk_window_resize)() information once we've set the size
703         once, to avoid it coming back next time we queue a resize.
704         (#72359)
705
706         * gtk/gtkwindow.c (gtk_window_move_resize): Remove
707         sething of ->need_default_position from here, Havoc
708         says that it should correspond more or less exactly
709         to GTK_WIDGET_MAPPED (window).
710
711 Sat Feb 23 23:00:48 2002  Jonathan Blandford  <jrb@redhat.com>
712
713         * gtk/gtktreemodel.h: add () to function macros as per owen's
714         request.
715
716         * gtk/gtkfontsel.c: (gtk_font_selection_select_best_style),
717         (gtk_font_selection_show_available_sizes),
718         (gtk_font_selection_set_font_name):
719         * gtk/gtktreemodel.c: (gtk_tree_model_get_iter_first),
720         (gtk_tree_model_foreach):
721         * gtk/gtktreemodelsort.c: (gtk_tree_model_sort_sort_level),
722         (gtk_tree_model_sort_build_level):
723         * gtk/gtktreeselection.c: (gtk_tree_selection_selected_foreach):
724         * gtk/gtktreeview.c: (validate_visible_area),
725         (gtk_tree_view_focus_to_cursor), (gtk_tree_view_set_model),
726         (gtk_tree_view_map_expanded_rows), (gtk_tree_view_search_move),
727         (gtk_tree_view_search_init):
728         * tests/testtreeview.c: (run_automated_tests): change iter_root
729         to iter_first
730
731 Sat Feb 23 22:10:52 2002  Jonathan Blandford  <jrb@redhat.com>
732
733         * gtk/gtktreemodel.c (gtk_tree_path_new_first): change new_root to
734         new_first to avoid confusion.
735         (gtk_tree_model_get_iter_first): ditto.
736
737 Sat Feb 23 20:59:05 2002  Owen Taylor  <otaylor@redhat.com>
738
739         * gtk/gtkstyle.c gtk/gtkrc.[ch]: gtk/gtksettings.c gtk/gtkstyle.c:
740         Patch from Richard Hestilow to add a gtk-font-name GtkSetting.
741
742         * gdk/x11/gdkevents-x11.c: Add Gtk/FontName XSETTING.
743
744 2002-02-24  Tor Lillqvist  <tml@iki.fi>
745
746         * gtk/gtkfilesel.c: Move inclusion of <windows.h> before inclusion
747         of <winsock.h>, to actually get STRICT prototypes for Win32
748         API. Include glib.h early to get G_OS_WIN32 and G_WITH_CYGWIN.
749         Don't declare static functions that aren't defined if !HAVE_PWD_H
750         or if G_OS_WIN32.
751         (win32_gtk_add_drives_to_dir_list): Remove #if 0 code, reindent.
752         (gtk_file_selection_get_selections): Don't crash if nothing has
753         been selected.
754
755 Sat Feb 23 20:33:29 2002  Owen Taylor  <otaylor@redhat.com>
756
757         * gtk/gtkplug.[ch] gtk/gtksocket.[ch] gtk/xembed.h: Implement 
758         accelerator propagation using a custom XEMBED_GTK_KEY_GRAB
759         XEMBED_GTK_KEY_UNGRAB pair of messages.
760
761         * gtk/gtkwindow.[ch]: private export _gtk_window_keys_foreach().
762
763         * gtk/gtkplug.c (gtk_plug_set_is_child): Clear focus and default
764         widgets.
765
766 2002-02-23  Havoc Pennington  <hp@redhat.com>
767
768         * gtk/gtktextbuffer.c (save_range): change gravity of start/end
769         marks so that text added at either end of the range doesn't end up
770         inside the range.
771         (gtk_text_buffer_real_insert_range): fix to handle pasting a range
772         into itself. #71412
773         
774 Sat Feb 23 19:05:34 2002  Jonathan Blandford  <jrb@redhat.com>
775
776         * gtk/gtktreeview.c (validate_visible_area): Didn't refind node
777         when it was NULL.  Bug found by Tor Lillqvist.
778
779 2002-02-24  Tor Lillqvist  <tml@iki.fi>
780
781         * gdk/win32/gdkevents-win32.c (build_keypress_event,
782         build_keyrelease_event, gdk_event_translate): Set also group in
783         the key press/release events, always to zero for now.
784
785 2002-02-24  Anders Carlsson  <andersca@gnu.org>
786
787         * gtk/stock-icons/stock_dialog_error_48.png: 
788         * gtk/stock-icons/stock_sort_ascending_16.png:
789         * gtk/stock-icons/stock_undelete_24.png: 
790         * gtk/stock-icons/stock_sort_descending_16.png: 
791         Alpha-pad icons so they get the correct size.
792         
793 Sat Feb 23 16:52:38 2002  Owen Taylor  <otaylor@redhat.com>
794
795         * gtk/gtkentry.c: Patch from Matthias Clasen to remove some
796         excessive ::changed signals for GtkEntry. (#53130)
797
798 2002-02-23  Tor Lillqvist  <tml@iki.fi>
799
800         * gtk-zip.sh.in: Include the gtkrc files for themes.
801
802 2002-02-23  Anders Carlsson  <andersca@gnu.org>
803
804         * gtk/gtkiconfactory.c (get_default_icons): Register 16x16 
805         versions of most icons.
806
807         * gtk/stock-icons: Add 16x16 versions
808         of most icons.
809
810 Wed Feb 20 16:44:05 2002  Jonathan Blandford  <jrb@redhat.com>
811
812         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): delay
813         scrolling until we try to draw the window.
814
815         * gtk/gtktreeview.c (validate_visible_area): Implement
816         scroll_to_cell.
817
818 2002-02-23  Tor Lillqvist  <tml@iki.fi>
819
820         * gtk/gtk.def: Add missing gtk_file_selection_get_select_multiple.
821         Remove gtk_tree_view_column_cell_* entry points that were made
822         private.
823
824 Sat Feb 23 15:43:46 2002  Owen Taylor  <otaylor@redhat.com>
825
826         * gtk/gtktogglebutton.c: Make button draw depressed whenever
827         the user clicks / activates it, whether it's off/on/inconsistent.
828
829 Sat Feb 23 11:54:12 2002  Owen Taylor  <otaylor@redhat.com>
830
831         * gtk/*.h gdk/*.h: Massive padding addition to class structures.
832
833         * gtk/gtktextmark.h: Fix a FIXME about G_CONST_RETURN.
834
835 Fri Feb 22 20:28:18 2002  Owen Taylor  <otaylor@redhat.com>
836
837         * gtk/gtkrange.c: Applied patch from Thomas Leonard to make
838         stepper click to scroll take effect immediately, rather than after
839         a delay (#67649).
840
841         * gtk/gtkrange.c: Remove right-click == step in trough since it
842         isn't a useful binding and it's a large area to hit accidentally.
843         (Leave it on the steppers since its more useful there and less
844         likely to do accidentally.)
845
846 2002-02-23  Pablo Saratxaga  <pablo@mandrakesoft.com>
847
848         * configure.in (ALL_LINGUAS): Add "cy" to the language list.
849
850 2002-02-23  Jody Goldberg <jody@gnome.org>
851
852         * gtk/gtkaccelgroup.c (gtk_accel_group_connect) : lower case the
853           key_val.
854         (gtk_accel_group_connect_by_path) : ditto.
855         (gtk_accel_group_disconnect_key) : ditto.
856
857         * gtk/gtkwidget.c (gtk_widget_real_key_release_event) : simplify.
858         (gtk_widget_real_key_press_event) : ditto.
859
860 Sat Feb 23 00:28:47 2002  Jonathan Blandford  <jrb@redhat.com>
861
862         * gtk/gtktreeviecolumn.c: Documented undocumented functions.
863
864         * gtk/gtktreemodel.c: Documented undocumented functions.
865
866 Sat Feb 23 03:10:20 2002  Kristian Rietveld  <kris@gtk.org>
867
868         * gtk/gtktreeview.c (gtk_tree_view_key_press): honor min_width and
869         max_width while resizing columns (pointed out by Jorn Baayen)
870
871 Fri Feb 22 19:17:46 2002  Owen Taylor  <otaylor@redhat.com>
872
873         Patch from Matthias Clasen (#54488)
874
875         * gtk/gtkwindow.c: Set/unset HAS_FOCUS flags here,
876         and do ::has-focus notifications.
877
878         * gtk/gtkclist.c gtk/gtkentry.c gtk/gtksocket.c
879         gtk/gtktext.c gtk/gtktextview.c gtk/gtkwidget.c:
880         Remove unecessary focus_in/out handles and unecessary
881         flag setting.
882
883         * gtk/gtkwidget.c: Adda missing notification on ::parent.
884
885 Fri Feb 22 18:36:45 2002  Owen Taylor  <otaylor@redhat.com>
886
887         Fixes for AIX compilation from Miroslaw Dobrzanski-Neumann,
888         #72182.
889
890         * demos/gtk-demo/main.c gtk/gtktreeview.c gtk/gtktoolbar.c
891         gtk/gtkpaned.c gtk/gtkobject.c gtk/gtkcontainer.c 
892         gtk/gtkcolorsel.c gtk/gtkcellrender.c gdk/x11/xsettings-client.h:
893         Squash trailing commas on enumerations.
894
895         * gdk/gdktypes.h: Drop GDK_RELEASE_MASK to 1 << 30 instead
896         of 1 << 31 to work around AIX compiler problem. (C standard
897         seems to imply that compiler is required to use an unsigned
898         type for the enum value in this case.)
899
900         * gdk/gdkpixbuf-drawable.c: Fix lvalue casts.
901
902         * gtk/gtkwindow.h: Fix use of enum types for bitfields ... 
903         compilers may choose to use a signed type for bitfields.
904
905 Sat Feb 23 00:34:01 2002  Kristian Rietveld  <kris@gtk.org>
906
907         * gtk/gtktreeview.c (validate_rows_handler): leave threads before
908         returning (#72045)
909
910 2002-02-22  Anders Carlsson  <andersca@gnu.org>
911
912         * gtk/stock-icons/*: Rename icons.
913         
914         * gtk/stock-icons/Makefile.am: Update for new icon names.
915
916         * gtk/gtkiconfactory.c (init_icon_sizes): Set the 
917         GTK_ICON_SIZE_BUTTON size to be 20x20.
918         (get_default_icons): Change stock names.
919
920 Fri Feb 22 22:39:59 2002  Kristian Rietveld  <kris@gtk.org>
921
922         * gtk/gtktreeprivate.h: add last_single_clicked and
923         last_single_clicked_2 rowrefs and add disable_popdown to the
924         bitfield
925
926         * gtk/gtktreeview.c (gtk_tree_view_destroy): add destroy stuff
927         for two new rowrefs
928         (gtk_tree_view_button_press): add some 'advanced' button handling,      
929         so double click is being handled right (double click madness was
930         discovered by Anders Carlsson)
931
932         * gtk/gtktreeview.c (gtk_tree_view_set_property): add missing
933         break
934         (gtk_tree_view_class_init): default value of headers_visible
935         should be TRUE (both pointed out by Damon Chaplin, #71986)
936
937         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search):
938         connect to populate_popup,
939         (gtk_tree_view_search_disable_popdown): new function,
940         (gtk_tree_view_real_search_enable_popdown): ditto,
941         (gtk_tree_view_search_enable_popdown): ditto,
942         (gtk_tree_view_search_dialog_destroy): check for
943         gtk-tree-view-popdown-disabled (#71868)
944
945         * gtk/gtktreeview.c (gtk_tree_view_set_reorderable): move
946         ->priv->reorderable assignment to bottom. (#72122)
947
948 2002-02-22  Havoc Pennington  <hp@redhat.com>
949
950         * gtk/gtkstyle.c (_gtk_draw_insertion_cursor): subtract 1 from
951         line endpoint, to avoid cursor dirt in the text widget.
952         zero-width lines appear to draw the endpoint always. #67999
953
954 2002-02-22  Havoc Pennington  <hp@redhat.com>
955
956         * gtk/gtktextview.c (buffer_to_widget): implement more cleanly by
957         using text_window->allocation.x/y instead of recomputing it. 
958         Fixes a bug caused by leaving out the border width here.
959
960 2002-02-22  Havoc Pennington  <hp@redhat.com>
961
962         * gtk/gtktextview.c (changed_handler): call
963         gtk_size_group_queue_resize to avoid invalidating the widget every
964         time its requisition changes. Instead we use the btree invalid
965         lines to know what to redraw. Fixes #71429
966
967 Fri Feb 22 14:08:38 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
968
969         * gtk/gtkradiobutton.c, gtk/gtkcheckbutton.c, gtkbutton.h,
970         gtktogglebutton.c: feedback when check and radio buttons are
971         depressed.      
972
973 2002-02-22  Matthias Clasen  <maclas@gmx.de>
974
975         * gtk/gtktreeview.c (gtk_tree_view_set_reorderable):
976         s/columns/rows/ in docs.  (#70199)
977
978         * gtk/gtktreestore.c (gtk_tree_store_insert): s/before/after/ in 
979         docs. (#71852, #68405)
980
981         * gtk/gtkcalendar.c (gtk_calendar_select_day): Correct a comment.
982
983 Thu Feb 21 23:02:29 2002  Kristian Rietveld  <kris@gtk.org>
984
985         * gtk/gtktreeview.[ch]: add keynav handling for unselect all,
986         focus column header, change focus with arrow keys in column headers,
987         column reordering, column resizing, small try to fix page up/down
988         (this fixes #70889, and fixes a great deal of #53580)
989
990 Thu Feb 21 16:51:17 2002  Owen Taylor  <otaylor@redhat.com>
991
992         * gtk/gtkaccelgroup.c (gtk_accelerator_valid): Add
993         GDK_ISO_Next_Group/Prev_Group/Level3_Shift/
994         First_Group/Last_Group to list of invalid accelerators.
995         (A lot more that should be added, but probably would
996         want a range mechanism. These are the ones found in
997         the standard XFree86 config files.)
998
999         * gtk/gtkbindings.c (gtk_bindings_activate): Fix problem
1000         that broke bindings for menus.
1001
1002         * gtk/gtkwindow.[ch]: Export _gtk_window_activate_key()
1003         privately.
1004
1005         * gtk/gtkmenushell.c (gtk_menu_shell_key_press): Use
1006         _gtk_window_activate_key(), gtk_bindings_activate_event().
1007
1008 Thu Feb 21 12:24:22 2002  Owen Taylor  <otaylor@redhat.com>
1009
1010         * gtk/gtkctree.c (gtk_ctree_class_init): Remove some workarounds
1011         for +/= and shift key handling.
1012
1013 Wed Feb 20 14:26:47 2002  Owen Taylor  <otaylor@redhat.com>
1014
1015         * gtk/gtkkeyhash.[ch]: Implement "fuzzy" key binding lookups;
1016         allow matches on key and level but not group. Also, implement 
1017         ignoring "consumed modifiers correctly."
1018
1019         * gtk/gtkaccelgroup.c gtk/gtkbindings.c: Convert to using
1020         GtkKeyHash.
1021         
1022         * gtk/gtkdebug.h gtk/gtkmain.c: Support GTK_DEBUG=keybindings
1023
1024         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Fill in
1025         the group for key release events as well as key press events.
1026
1027         * gdk/gdkkeys.h gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state): 
1028         Rename unused_modifiers to consumed_modifiers, make the docs and
1029         non-Xkb implementation match the Xkb implementation.
1030
1031         * gdk/linux-fb/gdkkeyboard-fb.c gdk/win32/gdkkeys-win32.c: Propagate
1032         doc and parameter name changes.
1033
1034         * gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state):
1035         XkbTranslateKeyCode doesn't handle LockMask, we need to handle
1036         it ourselves.
1037
1038         * gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state): Force
1039         <Shift>Tab to give GDK_ISO_Left_Tab, since we need consistency
1040         to allow dealing with ISO_Left_Tab.
1041         
1042         * gtk/gtkwindow.c gtk/gtktextview.c gtk/gtkscrolledwindow.c
1043         gtk/gtkpaned.c gtk/gtkcombo.c  gtk/gtknotebook.c:
1044         Remove inappropriate uses of GDK_ISO_Left_Tab. (GDK_ISO_Left_Tab
1045         or <Shift>Tab both are equivalent as a binding specifier.)
1046
1047         * gtk/gtkbutton.c (gtk_button_class_init): Make ::activate
1048         GTK_RUN_ACTION, so you can bind an accelerator to it.
1049
1050         * gtk/gtklabel.c (gtk_label_set_uline_text_internal): Call 
1051         gdk_unicode_to_keyval on the mnemonic character.
1052
1053         * tests/testgtk.c: Add a test for the new fuzzy key binding matching.
1054
1055 2002-02-21  jacob berkman  <jacob@ximian.com>
1056
1057         * gtk/theme-bits/Makefile.am (EXTRA_DIST): inconsitent files are
1058         .pngs too
1059
1060 Wed Feb 20 21:52:13 2002  Owen Taylor  <otaylor@redhat.com>
1061
1062         * gtk/gtkselection.c (gtk_selection_request): Set the property
1063         as type ATOM_PAIR, not ATOM. (#72074, Gregory Merchan.)
1064
1065         * gdk/x11/gdk{property,selecton}-x11.c: Auto-convert properties
1066         of type ATOM_PAIR as well as properties of type ATOM.
1067
1068 2002-02-21  Matthias Clasen  <maclas@gmx.de>
1069
1070         * docs/tutorial/images/*.png: screenshots of examples.
1071         
1072         * docs/tutorial/gtk-tut.sgml: remove deprecated widgets, add
1073         screenshots, fix chapters 1-4 for GTK+ 2.0. 
1074
1075         * demos/gtk-demo/Makefile.am (INCLUDES): add -DGDK_PIXBUF_DISABLE_DEPRECATED.
1076
1077 Thu Feb 21 00:31:41 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
1078
1079         * gtk/gtkspinbutton.c: Many cleanups and fixes. Draw exclusively
1080         in expose handler. Feedback when buttons are depressed.
1081
1082         * gtk/gtkstyle.c: update for changes in gtkspinbutton.c. Fix
1083         spinbuttons for RTL langauges.
1084
1085 Wed Feb 20 23:00:08 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
1086
1087         * gtk/gtkstyle.c: new radio buttons. handle inconsistent state for
1088         check- and radiobuttons.
1089
1090         * gtk/theme-bits/check-13-inconsistent.png,
1091         gtk/theme-bits/radio-13-inconsistent.png: new files
1092
1093         * gtk/theme-bits/radio-13.png: new radio buttons
1094
1095         * gtk/theme-bits/Makefile.am (EXTRA_DIST): add new
1096         -inconsistent.png files
1097
1098 Wed Feb 20 16:19:49 2002  Owen Taylor  <otaylor@redhat.com>
1099
1100         * gdk/x11/gdkevents-x11.c: Add a XSETTING mapping for
1101         gtk-can-change-accels. (#70218, Thomas Leonard.)
1102
1103 2002-02-20  Sven Neumann  <sven@gimp.org>
1104
1105         * gtk/gtkcolorsel.c (gtk_color_selection_finalize): check
1106         handler_id before disconnecting the signal handler since it might
1107         have never been connected if the GtkColorSelection is destroyed
1108         before it was realized.
1109
1110 2002-02-20  Matthias Clasen  <maclas@gmx.de>
1111
1112         * docs/tutorial/gtk-tut.sgml: Fold back Svens g_signal fixes from
1113         the examples.  
1114
1115         * docs/tutorial/gtk-tut.sgml, examples/progressbar/progressbar.c,
1116         examples/progressbar/Makefile: Make the progressbar example 
1117         deprecation-clean.
1118
1119 Tue Feb 19 22:10:59 2002  Kristian Rietveld  <kris@gtk.org>
1120
1121         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_mnemonic_activate): new
1122         function
1123         (gtk_tree_view_column_create_button): use g_signal_* instead of
1124         gtk_signal_*, hook up _mnemonic_activate callback
1125         (gtk_tree_view_column_update_button): use
1126         gtk_label_set_text_width_mnemonic instead of gtk_label_set_text
1127         (#69095)
1128
1129         * gtk/gtktreeview.c (gtk_tree_view_class_init): remove key bindings
1130         for C-f and C-b, let treeview search use C-f (instead of C-s)
1131         (#61866)
1132
1133         * gtk/gtkrc.key.emacs: add some GtkTreeView bindings
1134
1135 Tue Feb 19 20:56:32 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
1136
1137         * gtk/theme-bits/decompose-bits.c (do_part): fix bug (skipping all
1138         black pixels).
1139
1140 2002-02-19  Sven Neumann  <sven@gimp.org>
1141
1142         * examples/*/*.c: finish conversion to g_signal_* functions by
1143         using G_OBJECT and G_CALLBACK and other assorted changes.
1144
1145 Tue Feb 19 17:36:31 2002  Kristian Rietveld  <kris@gtk.org>
1146
1147         * gtktreeprivate.h, gtktreeviewcolumn.[ch], gtktreeview.c: change
1148         gtk_tree_view_column_cell_render,
1149         gtk_tree_view_column_cell_focus,
1150         gtk_tree_view_column_cell_draw_focus and
1151         gtk_tree_view_column_cell_set_dirty to be private functions.
1152
1153         * gtktreeviewcolumn.[ch]: add install_handler argument to
1154         _cell_set_dirty to control if _mark_rows_col_dirty (which calls
1155         install_presize_handler) gets called, set widths correctly so
1156         autosizing works (#71870)
1157
1158         * gtktreeview.c (gtk_tree_view_column_autosize): new function,
1159         (gtk_tree_view_button_press): make double click on column
1160         separator resize the row (#71870)
1161         (gtk_tree_view_get_dest_row_at_pos): change DnD threshold to 33%
1162         (#71869, suggestion by Anders Carlsson)
1163
1164 Mon Feb 18 23:16:16 2002  Owen Taylor  <otaylor@redhat.com>
1165
1166         * gtk/gtkmain.[ch]: Add routines _gtk_find_module(),
1167         _gtk_get_module_path() to look up a module of an arbitrary type in
1168         a standard fashion. (#68474)
1169
1170         * gtk/gtkrc.c: Make module_path keyword warn and do
1171         nothing. Remove the im_module_path keyword.
1172
1173         * gtk/gtkrc.c (gtk_rc_get_im_module_path): Fix
1174         to return the standard path instead of one determined
1175         from im_module_path and GTK_IM_MODULE_PATH.
1176         
1177         * gtk+-2.0.pc.in: Add gtk_host to go along with gtk_binary_version.
1178
1179 2002-02-19  Matthias Clasen  <maclas@gmx.de>
1180
1181         * docs/tutorial/gtk-tut.sgml, docs/examples/*: Trivial formatting
1182         fixes to all examples, simple functional fixes to rangewidgets example.
1183
1184 Mon Feb 18 18:27:45 2002  Owen Taylor  <otaylor@redhat.com>
1185
1186         * gtk/gtkfontsel.c (gtk_font_selection_set_font_name): Select
1187         the right item in the family list. (Reported by Mark Patton,
1188         Patch from Satajyit Kanungo, #64240)
1189
1190         * gtk/gtkfontsel.c (gtk_font_selection_set_font_name): Update
1191         the size and face entry lists as well, fix memory leak.
1192         (Also #64240)
1193
1194         * gtk/gtkfontsel.c (gtk_font_selection_show_available_sizes): 
1195         Allow fractional sizes, unselect the selected row if none
1196         matches.
1197
1198         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_focus): Fix
1199         a bug where the scrolled window would always get focus
1200         when focusing out of the child.
1201
1202 2002-02-18  Hans Breuer  <hans@breuer.org>
1203
1204         * gdk/win32/gdkevents-win32.c : process WM_PAINT messages
1205         for bg_pixmap == GDK_NO_BG, fixes The GIMP's canvas
1206         rendering glitches on win32
1207
1208         * gdk/win32/gdkinput-win32.c : use g_object_new to create
1209         GdkDevice instead of g_new
1210  
1211         * gtk/gtkpaned.c : make LAST_SIGNAL the last in enum. 
1212         This avoids to smash totally unrelated static data and
1213         resulting random crashes. (as reported on gtk-devel-list, 
1214         2002-02-10 : testgtk crashes)
1215
1216         * gtk/gtk.def : add new file selection entry points
1217
1218 Mon Feb 18 17:34:43 2002  Owen Taylor  <otaylor@redhat.com>
1219
1220         * gtk/gtkentry.c gtk/gtktextview.c: Remove support for
1221         the poorly defined text/plain type for now. (#55117)
1222
1223 Mon Feb 18 16:44:00 2002  Owen Taylor  <otaylor@redhat.com>
1224
1225         * docs/widget_system.txt: Add some docs for GTK_NEED_REQUEST
1226         GTK_NEED_ALLOCATION.
1227
1228         * gtk/gtkmenu.c (gtk_menu_popup): Scroll the menu
1229         to the right place before showing the menu to
1230         avoid spurious enter events.
1231
1232         * gtk/gtkmenu.c (gtk_menu_realize): Only scroll
1233         if there is an active menu item.
1234
1235         * gtk/gtkwidget.c (gtk_widget_init): Set RESIZE_NEEDED
1236         ALLOC_NEEDED initially.
1237
1238 2002-02-18  Matthias Clasen  <maclas@gmx.de>
1239
1240         * NEWS: fix version number.
1241
1242 2002-02-18  Manish Singh  <yosh@gimp.org>
1243
1244         * Makefile.am: don't comment out the lines to dist the packer
1245         example, just simply remove it. (the continuation line confused
1246         make even though it was in the comment, barf)
1247
1248 Mon Feb 18 14:40:22 2002  Owen Taylor  <otaylor@redhat.com>
1249
1250         * gtk/gtkcombo.c (gtk_combo_popdown_list): Fix problems
1251         with stuck grab (#60132, reported by Nicolas Setton) and
1252         stuck prelighting. Combine duplicated code in three
1253         places for popping down the list.
1254
1255 Mon Feb 18 14:17:59 2002  Owen Taylor  <otaylor@redhat.com>
1256
1257         * gtk/gtkclist.c (adjust_adjustments) 
1258         * gtk/gtklayout.c (gtk_layout_size_allocate)
1259         * gtk/gtktextview.c (gtk_text_view_size_allocate) 
1260         * gtk/gtktreeview.c (gtk_tree_view_size_allocate) 
1261         * gtk/gtkviewport.c (gtk_viewport_size_allocate):
1262         Standardize on a page increment of page minus 1 line
1263         rather than half a page (#51027, Eric Fischer)
1264
1265         * gtk/gtkviewport.c (gtk_viewport_size_allocate): 
1266         Change step increment to be 0.1 * page_size height rather than
1267         a fixed 10 pixels.
1268
1269 Mon Feb 18 12:31:52 2002  Owen Taylor  <otaylor@redhat.com>
1270
1271         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): 
1272         Don't commit unless we got at least one hex digit. (#70619)
1273
1274 Sun Feb 17 21:30:49 2002  Owen Taylor  <otaylor@redhat.com>
1275
1276         * Released 1.3.14
1277
1278         * configure.in: Version 1.3.14, interface, binary age 0.
1279
1280         * gdk/gdkregion-generic.c (miSubtractO): Fix out-of-bounds
1281         read. (#71619, reported by Morten Welinder)
1282
1283         * gtk/gtkmenu.c (gtk_menu_class_init): Fix setting default.
1284
1285         * gtk/gtkfilesel.c (gtk_file_selection_class_init): Add
1286         a select_multiple property to go along with thenew 
1287         get/set_select_multiple.
1288
1289         * gdk/gdkwindow.c: Patch from Soeren Sandmann to improve
1290         update debugging code. (#71703)
1291
1292 2002-02-17  Tor Lillqvist  <tml@iki.fi>
1293
1294         * gdk/win32/gdkcolor-win32.c (free_colors): Don't set the
1295         PC_EXPLICIT flag for unused palette entries, that might have
1296         undesired side effects. Just set them to black. Black is always
1297         present in a palette, so having superfluous black entries won't
1298         cause any extra allocations from the system palette either when
1299         realized.
1300
1301         * gdk/win32/gdkevents-win32.c
1302         (gdk_event_translate:WM_QUERYNEWPALETTE): Don't do anything if the
1303         system visual is static color, i.e. the user has told GDK to use
1304         just the 16 static colors. In that case no need to redraw
1305         anything, as the colors are static and by definition always
1306         correctly mapped in the system palette.
1307         (WM_PALETTECHANGED): Ditto, no need to call UpdateColors() either.
1308         
1309         * gtk/gtk.def: Add new gtkfilesel entry points.
1310
1311 2002-02-17  Matthias Clasen  <maclas@gmx.de>
1312
1313         * docs/tutorial/gtk-tut.sgml, examples/paned/paned.c, 
1314         examples/paned/Makefile: Make the paned example deprecation-clean.
1315
1316 2002-02-17  jacob berkman  <jacob@ximian.com>
1317
1318         * Makefile.am: remove the packer example files as they don't exist
1319         in CVS.
1320
1321 2002-02-16  Manish Singh  <yosh@gimp.org>
1322
1323         * tests/testgtk.c: hm, check buttons look better for below.
1324
1325 2002-02-16  Manish Singh  <yosh@gimp.org>
1326
1327         * tests/testgtk.c: redid the filesel test. Added a way to set select
1328         multiple as a toggle button, and made show/hide fileops toggle
1329         buttons as well. get_selections() is called on OK and all the
1330         filenames selected are printed.
1331
1332 2002-02-17  Tor Lillqvist  <tml@iki.fi>
1333
1334         * README.win32: Remove comment about the gtk-1-3-win32-production
1335         branch having more functionality.
1336
1337         * gdk/win32/*.c: Massive changes. Too many to list here, but I'll
1338         try a summary:
1339
1340         1) Unify GdkPixmap and GdkImage implementation: For each
1341         GdkPixmap, allocate a GdkImage, and vice versa.
1342         GdkPixmapImplWin32Data has a pointer to the GdkImage.
1343         GdkImage::windowing_data is a pointer to the GdkPixmap.
1344
1345         This simplifies many pixmap and image related functions a lot, and
1346         reduces duplicated code. For instance, there is only one
1347         place in gdk/win32 where CreateDIBSection() is called, in the
1348         function _gdk_win32_new_pixmap(). Converting a bitmap (GdkPixmap)
1349         to a Windows region is almost trivial, with the bitmap bits being
1350         readily accessible in the associated GdkImage.
1351
1352         All blitting between GdkPixmaps, GdkWindows and GdkImages goes
1353         through handled the _gdk_win32_blit() function, which calls
1354         different functions to handle the cases of blitting from pixmaps,
1355         inside windows (scrolling), or from windows, which all require
1356         somewhat different handling.
1357
1358         2) Support 256-color mode. This has long been very broken, now it
1359         works more or less OK. Keep the logical palette for each colormap
1360         as small as possible while allocating and freeing colors. Select
1361         and realize the logical palette associated with a GdkColormap into
1362         a DC before drawing or blitting.
1363
1364         When the display is in 256-color mode, make it possible for the
1365         user to override the size of the palette(s) used with either the
1366         GDK_WIN32_MAX_COLORS environment variable, or a -max-colors
1367         command line option. It is possible to reduce the palette size all
1368         the way down to using just the 16 static colors (which causes the
1369         system visual to be of type GDK_VISUAL_STATIC_COLOR. This could
1370         possibly be useful if one desperately wants to avoid color
1371         flashing. (Note that in order for this to work properly, an as of
1372         yet not commited fix to gdkrgb.c is needed.)
1373
1374         Handle the palette messages. On WM_PALETTECHANGED, call
1375         UpdateColors() for the given window hierarchy. Do this only if a
1376         window in some other top-level window hierarchy caused the palette
1377         change (realized a palette). Do this max five times in a row (an
1378         arbitrarily chosen limit), though, otherwise redraw by generating
1379         expose events. On WM_QUERYNEWPALETTE, cause a redraw of the whole
1380         window hierarchy by generating GDK_EXPOSE events.
1381
1382         3) Code cleanup in general. For instance, remove the "emulated"
1383         X11 structs ColormapStruct, Visual and XStandardColormap. Use the
1384         new GDK_DEBUG_* flags for debugging output in the relevant source
1385         files. Remove the unused colormap hash table in gdkcolor-win32.c
1386
1387         4) Plug some resource leaks.
1388
1389 2002-02-14  Tor Lillqvist  <tml@iki.fi>
1390
1391         * gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Use
1392         g_filename_to_uri() to actually create legal URIs in the
1393         text/uri-list data.
1394
1395 2002-02-16  Manish Singh  <yosh@gimp.org>
1396
1397         * gtk/gtkfilesel.[ch]: Added multiple selection API
1398
1399 2002-02-16  Manish Singh  <yosh@gimp.org>
1400
1401         * gdk/linux-fb/miarc.c: use fabs() on a double instead of abs()
1402
1403 2002-02-17  Matthias Clasen  <maclas@gmx.de>
1404
1405         More work on #71430.
1406
1407         * examples/*/Makefile (CFLAGS): add deprecation guards.
1408         
1409         * docs/tutorial/gtk-tut.sgml, examples/*/*.c: make most examples
1410         deprecation-clean; the major offenders right now are the examples
1411         that make heavy use of completely deprecated or broken widgets:
1412         list, tree, text, pixmap, paned and progressbar. These will have
1413         to be redone from scratch.
1414
1415 Sun Feb 17 00:13:06 2002  Kristian Rietveld  <kris@gtk.org>
1416
1417         This commit lands the 'dy patch'.
1418
1419         * gtk/gtktreeview.c (validate_rows_handler): update top_row or dy,
1420         (gtk_tree_view_top_row_to_dy): new function,
1421         (gtk_tree_view_row_changed): update top_row or dy,
1422         (gtk_tree_view_rows_reordered): update top_row
1423
1424 2002-02-16  Matthias Clasen  <maclas@gmx.de>
1425
1426         * demos/Makefile.am (INCLUDES): add -DGDK_PIXBUF_DISABLE_DEPRECATED.
1427
1428 2002-02-16  Matthias Clasen  <maclas@gmx.de>
1429
1430         * examples/extract.awk: rearrange rules to not emit the example 
1431         start and end markers.
1432
1433         * docs/tutorial/gtk-tut.sgml: turn the start and end markers into
1434         SGML comments, so they don't clutter the formatted tutorial.
1435
1436 2002-02-16  Havoc Pennington  <hp@pobox.com>
1437
1438         * gtk/gtkwindow.c (gtk_window_parse_geometry): take
1439         GDK_HINT_RESIZE_INC into account, and handle negative coordinates
1440         correctly. (Can't email Owen - hope this is OK.)
1441
1442 Fri Feb 15 20:09:45 2002  Owen Taylor  <otaylor@redhat.com>
1443
1444         * gtk/gtkscrolledwindow.[ch] gtk/gtkmarshallers.list:
1445         Add key bindings on GtkScrolledWindow for arrow keys,
1446         PageUp/PageDown Home/End to scroll the window. 
1447         Bind Control-[Shift]-Tab to focus out of the scrolled
1448         window entirely. Allow the scrolled window to be
1449         focused if no child can be focused. (#63480)
1450
1451         * gtk/gtkwidget.c (gtk_widget_hide): Remove the REALIZED()
1452         check - if we have visible but not mapped widgets 
1453         (inside a unshown notebook tab, for instance), we need
1454         to track their size. (#65087, reported by Damon Chaplin.)
1455
1456         * gtk/gtkcolorsel.c (palette_change_color): Shut up
1457         a warning.
1458
1459 2002-02-16  Tor Lillqvist  <tml@iki.fi>
1460
1461         * gdk/win32/rc/Makefile.am (gdk-win32res.lo): Depend on gtk.ico.
1462
1463         * gdk/win32/rc/gtk.ico: Use the real GTK logo. Thanks to Jernej
1464         Simoncic for providing the nice multi-resolution .ico file.
1465
1466 2002-02-15 Alexey Malyshev <maa@sparc.spb.su>
1467         
1468         * gtk/tmpl/gtkimage.sgml
1469         removed wrong sentence from gtk_image_new() docs
1470
1471 Fri Feb 15 19:38:00 2002  Kristian Rietveld  <kris@gtk.org>
1472
1473         * gtk/gtktreestore.c (gtk_tree_store_clear_traverse): new function
1474         (gtk_tree_store_clear): traverse the tree, so we emit row_deleted
1475         for every node. This way we don't have confused row refs crashing the
1476         application. (#70631)
1477
1478 2002-02-14  Richard Hult  <rhult@codefactory.se>
1479
1480         * gtk/gtkpaned.c (gtk_paned_enter): Only queue a draw on the
1481         handle, not the whole widget. #71530.
1482         (gtk_paned_leave): Likewise.
1483
1484 2002-02-14  Jody Goldberg <jody@gnome.org>
1485
1486         * gtk/gtkrange.c (gtk_range_class_init) : add new signal
1487           'adjust_bounds' to potentialy change the bounds before assigning the
1488           new value and camping it to the existing bounds.
1489         (gtk_range_internal_set_value) : used here. #68800.
1490         * gtk/gtkmarshalers.list : add VOID:DOUBLE
1491
1492 Thu Feb 14 21:08:49 2002  Owen Taylor  <otaylor@redhat.com>
1493
1494         * gdk/gdkglobals.c: Remove GDKVAR from C file, see
1495         if anyone complains. (#71317, Morten Welinder.)
1496
1497 2002-02-14  Matthias Clasen  <maclas@gmx.de>
1498
1499         The following changes are the beginning of the work on #71430.
1500         
1501         * examples/extract.sh, examples/extract.awk: Make extraction work.
1502         
1503         * examples/Makefile (SUBDIRS): Remove packer.
1504
1505         * examples/packer/pack.c, examples/packer/Makefile: Removed.
1506
1507         * docs/tutorial/gtk-tut.sgml: Fix the included examples far
1508         enough to make them compile and (mostly) work, remove the packer
1509         example.
1510
1511 Thu Feb 14 16:46:48 2002  Owen Taylor  <otaylor@redhat.com>
1512
1513         * gtk/gtkentry.c gtk/gtktextdisplay.c gtk/gtklabel.c
1514         gtk/gtkstyle.[ch] gtk/gtkwidget.c: Patch from Bill
1515         Haneman and Padraig O'Briain to add cursor_aspect_ratio
1516         style property to GtkWidget to allow theming the aspect
1517         ratio of the cursor.
1518
1519         * gtk/gtkentry.c gtk/gtktextview.c gtk/gtklabel.c
1520         gtk/gtkwidget.c tests/testgtkrc: Move cursor-color style property
1521         to GtkWidget.
1522
1523 Thu Feb 14 11:13:22 2002  Owen Taylor  <otaylor@redhat.com>
1524
1525         * gtk/gtkimmulticontext.c (gtk_im_multicontext_get_surrounding): 
1526         Fix bug where we called get_surrounding on the context,.
1527         not the slave.
1528
1529 Thu Feb 14 00:10:09 2002  Owen Taylor  <otaylor@redhat.com>
1530
1531         * gtk/gtktooltips.c (gtk_tooltips_event_handler): Only
1532         pop the tooltip down on a select set of events, not
1533         on any unknown event. (#71157, Jody Goldberg)
1534
1535         * gtk/gtktooltips.c (gtk_tooltips_event_handler):
1536         Fix some warnings.
1537
1538 Thu Feb 14 00:02:21 2002  Owen Taylor  <otaylor@redhat.com>
1539
1540         * gtk/gtkcalendar.c (gtk_calendar_size_request): A bunch of
1541         small allocation/drawing fixes.
1542
1543         * gtk/gtkcalendar.c: Replace DAY_XPAD, DAY_YPAD with
1544         GtkWidget::focus-padding
1545
1546 Wed Feb 13 23:01:20 2002  Owen Taylor  <otaylor@redhat.com>
1547
1548         * gtk/gtkcalendar.c: Patch from Bill Haneman to draw
1549         to focus using gtk_paint_focus() with the focus width
1550         GtkWidget::focus-width. (#63075)
1551
1552         * gtk/gtkcalendar.c (gtk_calendar_size_request): Initialize
1553         label_char_ascent/descent to 0. (#56925, reported by
1554         (Jean-Noel Guiheneuf)
1555
1556 2002-02-13  Havoc Pennington  <hp@redhat.com>
1557
1558         * gtk/gtktextview.c (gtk_text_view_flush_scroll): validate a
1559         larger area, proportional to widget size, to fix
1560         #71427 reported by Dennis Bjorklund
1561
1562 2002-02-13  Havoc Pennington  <hp@redhat.com>
1563
1564         * gtk/gtktextview.c (gtk_text_view_paint): just go ahead and flush 
1565         all the first validate stuff if it hasn't been done, presumably
1566         someone called process_updates at a weird time.
1567
1568         * tests/testtext.c (do_apply_colors): terminate on >= end, not >
1569         end, avoids infinite loop when end is at the end of the buffer.
1570
1571         * gtk/gtktextbtree.c (_gtk_text_btree_delete): when creating a
1572         line data, we were adding it to the wrong line ("line" instead of
1573         "start_line")
1574
1575 2002-02-13  Joe Shaw  <joe@ximian.com>
1576
1577         * gtk/gtktreeitem.c (gtk_tree_item_expose): Don't chain up to the
1578         container's expose event.  Instead call
1579         gtk_tree_item_expose_child() on each child.  Avoids a failed
1580         g_assert() in gtk_container_propagate_expose().
1581         (gtk_tree_item_expose_child): Added.  Synthesize an expose event
1582         for our children.  Basically gtk_container_propagate_expose()
1583         minus the g_assert().  (#71396)
1584
1585 2002-02-13  Tor Lillqvist  <tml@iki.fi>
1586
1587         * gdk/gdkinternals.h: Add some more GdkDebugFlags, for more
1588         fine-grained debugging output (mainly used in the Win32 backend).
1589
1590         * gdk/gdk.c: Corresponding additions to the gdk_debug_keys table.
1591
1592 Wed Feb 13 15:42:42 2002  Owen Taylor  <otaylor@redhat.com>
1593
1594         * gtk/gtktooltips.[ch] gtkwidget.c: Implement Control-F1
1595         as toggle-tooltips-mode.
1596
1597         * gtk/gtktooltips.c: Remove parsing of tooltips style
1598         string from here ... now in gtkrc.c.
1599
1600 Wed Feb 13 12:41:44 2002  Owen Taylor  <otaylor@redhat.com>
1601
1602         * gtk/gtkmain.c (gtk_init_check): g_warning() if setting
1603         the local fails, like gdk_set_locale() did.
1604
1605         * gdk/x11/gdkselection-x11.c (gdk_text_property_to_utf8_list): 
1606         Don't free local_list if local_count == 0. (#71241, reported
1607         by Kevin Vandersloot.)
1608
1609         * gdk/x11/gdkselection-x11.c (gdk_text_property_to_text_list): 
1610         Clean up list == NULL handling and failure.
1611
1612 Wed Feb 13 11:27:31 2002  Owen Taylor  <otaylor@redhat.com>
1613
1614         * tests/testtreeview.c (typesystem_recurse): Cast GType
1615         to long and use %ld to fix warning. (#71318, Morten Welinder)
1616
1617 Wed Feb 13 13:26:39 2002  Tim Janik  <timj@gtk.org>
1618
1619         * gtk/gtkmenu.c: fix figuring accel path and changing behaviour.
1620
1621 Wed Feb 13 06:42:37 2002  Tim Janik  <timj@gtk.org>
1622
1623         * gtk/gtktable.c (gtk_table_size_allocate_pass1): partly revert
1624         my recent expanding change to not expand the table if all children
1625         have not epxand behaviour. this fixes palette views which often
1626         use homogeneous non-expanding tables.
1627
1628 Tue Feb 12 14:27:41 2002  Kristian Rietveld  <kris@gtk.org>
1629
1630         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_deleted): emit
1631         row_deleted before we start unreffing the nodes ourselves
1632         (gtk_tree_model_sort_increment_stamp): always increment the stamp,
1633         and not only if the stamp equals 0 (pointed out by Darin Adler)
1634
1635         * gtk/gtktreemodel.c (gtk_tree_row_ref_deleted_callback): we want
1636         to continue the while loop and not the nested for loop.
1637
1638 Tue Feb 12 02:19:49 2002  Tim Janik  <timj@gtk.org>
1639
1640         * gtk/gtktable.c (gtk_table_size_allocate_pass1): always spread out
1641         the extra space allocated for the homogeneous case, as we don't
1642         properly deal with readjusting table allocation within it. (for  this
1643         purpose, a GtkAlignment can be used as table parent).
1644
1645 2002-02-11  Darin Adler  <darin@bentspoon.com>
1646
1647         * gtk/gtktreemodelsort.c: (gtk_tree_model_sort_row_changed):
1648         Consider reordering the row even when there's no sort column, if
1649         there's a default sort function.
1650         (gtk_tree_model_sort_rows_reordered): Use symbolic constants.
1651         (gtk_tree_model_sort_level_find_insert): Add code to handle the
1652         case where there is no sort column, but a default sort function.
1653         (gtk_tree_model_sort_insert_value): Add code to handle the case
1654         where there is no sort column an no default sort function.
1655         (gtk_tree_model_sort_set_model): Use symbolic constant.
1656         (gtk_tree_model_sort_reset_default_sort_func): Use symbolic constant.
1657
1658 2002-02-11  Sven Neumann  <sven@gimp.org>
1659
1660         * gtk/gtkfilesel.c: converted the "Delete File" dialog to
1661         GtkMessageDialog. Marked missing strings for translation.
1662
1663 Mon Feb 11 22:03:15 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
1664
1665         * gtk/gtkpaned.[ch]: Opaque resizing + prelighting for paned widget.
1666         * gtk/gtkvpaned.c, gtk/gtkhpaned.c: move reszing logic to gtkpaned.c
1667
1668 Mon Feb 11 21:42:17 2002  Kristian Rietveld  <kris@gtk.org>
1669
1670         Implements DnD scrolling and fixes #71139
1671
1672         * gtk/gtktreeview.c (gtk_tree_view_vertical_autoscroll): new function,
1673         (scroll_row_timeout): new function,
1674         (gtk_tree_view_drag_motion): create scroll_timeout, so
1675         scroll_row_timeout gets called
1676
1677 Mon Feb 11 17:54:46 2002  Kristian Rietveld  <kris@gtk.org>
1678
1679         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): set upper
1680         member of hadjustment correct, so the hscrollbars of lists smaller
1681         than 1 page (in width) are somewhat saner
1682
1683 2002-02-11  jacob berkman  <jacob@ximian.com>
1684
1685         * gdk/gdkwindow.h (gdk_get_default_root_window): fix signature to
1686         match implementation
1687
1688 Mon Feb 11 16:48:34 2002  Kristian Rietveld  <kris@gtk.org>
1689
1690         * gtk/gtkliststore.c (gtk_list_store_set_valist): set value of
1691         func to NULL during initialization (we don't use func in the
1692         !SORTED case, so we just silent the compiler here) (#71029)
1693
1694 Mon Feb 11 16:40:44 2002  Kristian Rietveld  <kris@gtk.org>
1695
1696         * gtk/gtktreeview.c (gtk_tree_view_set_model): install presize
1697         handler, so the validate_rows_handler will always be run (#70997)
1698
1699 Sun Feb 10 22:20:46 2002  Kristian Rietveld  <kris@gtk.org>
1700
1701         * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): increase
1702         value of new_location by one if cmp_a > 0 and we hit the end of
1703         the list and pass NULL instead of a 'NULL-iter' with
1704         _rows_reordered (#71060)
1705
1706 Sun Feb 10 12:32:44 2002  Owen Taylor  <otaylor@redhat.com>
1707
1708         * modules/input/Makefile.am modules/input/{imam-et.c, imti-er.c,
1709         imti-et.c} po/POTFILES.in: Add three Ethiopic input methods from
1710         Daniel Yacob.
1711
1712 2002-02-10  Anders Carlsson  <andersca@gnu.org>
1713
1714         * gtk/gtkcalendar.c (gtk_calendar_class_init): Set finalize handler;
1715         (gtk_calendar_finalize): Rename gtk_calendar_destroy to 
1716         gtk_calendar_finalize since ::destroy can be called multiple times, 
1717         resulting in double-freeing memory.
1718
1719 2002-02-10  Hans Breuer  <hans@breuer.org>
1720
1721         * gdk/win32/gdkgeometry-win32.c : don't reduce the scroll
1722         rect size by the scroll amount
1723
1724         * gdk/win32/gdkwindow-win32.c
1725         * gdk/win32/gdkselection-win32.c : added some casts to
1726         make it compile with msvc's strict type checking
1727
1728         * gtk/fnmatch.c : #include <ctype.h> again for tolower
1729         prototype. The fnmatch() code assumes to be in the crt 
1730         locale though it is feeded by utf8 strings from gtkfilesel.c
1731
1732         * gtk/gtkfilesel.c : let ->cmpl_text be a strdup managed by
1733         _CompletionDir instead of referencing already freed memory
1734
1735         * gtk/gtktooltips.c (gtk_tooltips_init) : fix typo to
1736         gtk_rc_parse_string (theDefaultTooltipColor) once as it
1737         was intended
1738
1739         * tests/makefile.msc : added more tests
1740
1741         * tests/testgtk.c (create_list) : don't try to load gtkenums.h
1742         from the current directory use ../gtk/gtkenums.h instead
1743
1744 2002-02-10  Kjartan Maraas  <kmaraas@gnome.org>
1745
1746         * gtk/gtksizegroup.c: Fix a double "The" typo in a string.
1747         
1748 2002-02-09  Matthias Clasen  <matthias@local>
1749
1750         * gtk/gtknotebook.c (gtk_notebook_set_focus_child): Avoid segfault
1751         for selectable tab labels (even without a segfault, they make the
1752         notebook almost unusable, though).  (#69985)
1753
1754 2002-02-08  Matthias Clasen  <matthias@local>
1755
1756         * gtk/gtkmenuitem.c (gtk_menu_item_set_accel_path): Silently do 
1757         nothing if the parent is not a menu.  (#66492)
1758
1759 2002-02-06  Matthias Clasen  <matthiasc@poet.de>
1760
1761         * gtk/gtkitemfactory.c (gtk_item_factory_from_widget,
1762         gtk_item_factory_path_from_widget): Try fetching the return value 
1763         from menu_item->submenu as a fallback.  (#69020)
1764         
1765 Sat Feb  9 22:57:43 2002  Kristian Rietveld  <kris@gtk.org>
1766
1767         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_build_level): convert
1768         the iter to a child iter again, after doing _iter_children. It's
1769         possible that _iter_children added some rows and updated the stamp.
1770
1771 2002-02-09  Daniel Elstner  <daniel.elstner@gmx.net>
1772
1773         * gtk/gtktextchild.c: Use == rather than = in sanity
1774         checks.  Ouch!
1775
1776 2002-02-09  Daniel Elstner  <daniel.elstner@gmx.net>
1777
1778         * gtk/gtktextchild.c (CHECK_IN_BUFFER_RETURN): Add missing
1779         curled braces so that it doesn't always return.  Also indent
1780         both CHECK_IN_BUFFER* macros properly, and make use of
1781         G_STMT_START/G_STMT_END.
1782
1783 Sat Feb  9 13:27:14 2002  Owen Taylor  <otaylor@redhat.com>
1784
1785         * gtk/gtkbindings.h: Add prototype for
1786         _gtk_binding_reset_parsed().
1787
1788 Sat Feb  9 13:19:20 2002  Owen Taylor  <otaylor@redhat.com>
1789
1790         * configure.in gtk/Makefile.am gtk/theme-bits/*: Add
1791         tools and images used for creating the check/radio
1792         button images in the default theme.
1793
1794 Sat Feb  9 13:58:41 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
1795
1796         * gtk/gtkpaned.[ch]: Keyboard navigation for GtkPaned
1797         F6: cycle between panes.
1798         F8: focus handle (#53584)
1799         
1800         * tests/testgtk.c: Add test cases for GtkPaned keyboard 
1801         navigation.
1802         
1803 Sat Feb  9 00:16:31 2002  Owen Taylor  <otaylor@redhat.com>
1804
1805         * gdk/x11/gdkimage-x11.c (_gdk_x11_copy_to_image): 
1806         XCopyArea with subwindow_mode = IncludeInferiors.
1807         (#70999)
1808
1809         * demos/testpixbuf-save.c (configure_cb): Fix a minor
1810         memory management problem.
1811
1812 Fri Feb  8 20:24:58 2002  Owen Taylor  <otaylor@redhat.com>
1813         
1814         * gtk/gtkbindings.c (binding_compose_params): Fix problem
1815         with string-valued parameters (#70012, Johan Dahlin.)
1816
1817         * gtk/gtkentry.c (gtk_entry_delete_whitespace): Fix 
1818         white space deletion.
1819
1820 Fri Feb  8 21:25:56 2002  Jonathan Blandford  <jrb@redhat.com>
1821
1822         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_deleted): fix
1823         evil ref bug where the wrong row and a deleted row was unreffed.
1824         Found by Darin Adler <darin@bentspoon.com>
1825
1826 Fri Feb  8 18:46:13 2002  Owen Taylor  <otaylor@redhat.com>
1827
1828         * gtk/gtkbindings.[ch] (_gtk_binding_reset_parsed): Add
1829         a function to delete all bindings add by
1830         gtk_binding_parse_binding() when rereading RC files.
1831
1832         * gtk/gtkrc.c (gtk_rc_reparse_all_for_settings): Reset
1833         binding set content as well as RC content.
1834
1835         * gtk/gtkbindings.c (binding_compose_params): Fix 
1836         various GValue handling problems.
1837
1838         * gtk/gtkentry.c (gtk_entry_class_init): Remove bindings 
1839         for C-b, C-f, M-b, M-f, C-a, C-e, C-w, C-y, M-space, C-u,
1840         C-k, M-\, M-d, C-d.
1841
1842         * gtk/gtktextview.c (gtk_text_view_class_init): Remove
1843         same bindings as GtkEntry, plus C-n, C-p, C-space
1844
1845         * gtk/gtkrc.key.default gtk/gtkrc.key.emacs gtk/Makefile.am:
1846         Add Emacs and Default key themes.
1847         
1848 2002-02-08  Darin Adler  <darin@bentspoon.com>
1849
1850         * gtk/gtktreeview.c: (gtk_tree_view_map_expanded_rows_helper):
1851         Remove a tiny bit more dead code.
1852
1853 2002-02-08  Darin Adler  <darin@bentspoon.com>
1854
1855         * gtk/gtktreeview.c: (gtk_tree_view_map_expanded_rows_helper):
1856         Fix stale pointer bug.
1857
1858 Fri Feb  8 14:30:14 2002  Owen Taylor  <otaylor@redhat.com>
1859
1860         * gtk/gtkclist.c (title_focus_in): Return FALSE if
1861         not showing the titles. (#70959, Thomas Leonard)
1862
1863 2002-02-08  Darin Adler  <darin@bentspoon.com>
1864
1865         * demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
1866         * gdk/x11/gdkim-x11.c: Remove gdki8n.h include.
1867         * gdk/x11/gdkkeys-x11.c: Remove <ctype.h> include.
1868         * gdk/x11/gdkmain-x11.c: Remove <ctype.h> include.
1869         * gtk/fnmatch.c: Remove <ctype.h> include.
1870         * gtk/gtkaccelgroup.c: Remove <ctype.h> include.
1871         * gtk/gtkaccellabel.c: (gtk_accel_label_refetch): toupper ->
1872         g_unichar_toupper, toupper -> g_unichar_totile
1873         * gtk/gtkbindings.c: Remove <ctype.h> include.
1874         * gtk/gtkfontsel.c: Remove <ctype.h> include.
1875         * gtk/gtkiconfactory.c: Remove <ctype.h> include.
1876         * gtk/gtkinputdialog.c: Remove <ctype.h> include.
1877         * gtk/gtklabel.c: Remove <ctype.h> include.
1878         * gtk/gtkmain.c: Remove <ctype.h> include.
1879         * gtk/gtkmenu.c: Remove <ctype.h> include.
1880         * gtk/gtkoldeditable.c: Remove <ctype.h> include.
1881         * gtk/gtkrc.c: Remove <ctype.h> include.
1882         * gtk/gtktextbtree.c: Remove <ctype.h> include.
1883         * gtk/gtktextiter.c: Remove <ctype.h> include.
1884         * gtk/gtktextsegment.c: Remove <ctype.h> include.
1885
1886 2002-02-08  Sven Neumann  <sven@gimp.org>
1887
1888         * gtk/gtkfilesel.c
1889         * gtk/gtkgamma.c
1890         * gtk/gtkinputdialog.c: use stock labels for dialog action buttons.
1891
1892 2002-02-08  Darin Adler  <darin@bentspoon.com>
1893
1894         * gtk/gtktreemodelsort.c: (gtk_tree_model_sort_ref_node),
1895         (gtk_tree_model_sort_unref_node): Pass the ref_node and
1896         unref_node calls through to the child model.
1897
1898 2002-02-08  Laszlo Peter  <laca@ireland.sun.com>
1899
1900         * gtk/gtktextchild.c: s/__FUNCTION__/G_GNUC_FUNCTION/
1901         * gtk/gtktextview.c: ditto
1902
1903 2002-02-07  Havoc Pennington  <hp@pobox.com>
1904
1905         * gtk/gtkspinbutton.h (struct _GtkSpinButtonClass): add
1906         change_value virtual function, to fix build
1907
1908         * gtk/gtkpixmap.c (gtk_pixmap_class_init): parent_class was 
1909         from GtkWidget not GtkMisc. Not that it ever mattered.
1910
1911 Thu Feb  7 19:52:00 2002  Owen Taylor  <otaylor@redhat.com>
1912
1913         * gtk/gtknotebook.[ch]: Add ::move-focus-out signal
1914         to handle Control[-Shift]-Tab and Control-arrow
1915         bindings and implement bindings as per #53612.
1916
1917         * gtk/gtktextview.c (gtk_text_view_move_focus): Fix 
1918         fetching the toplevel for plug-socket.
1919
1920         * gtk/gtknotebook.c (gtk_notebook_class_init): Remove
1921         bindings for Return/Enter to select the page.
1922
1923         * gtk/gtknotebook.c (gtk_notebook_change_current_page):
1924         Beep at ends.
1925
1926         * gtk/gtknotebook.c (focus_tabs_move): Don't wrap around
1927         and beep at ends.
1928
1929         * gtk/gtknotebook.c (gtk_notebook_focus): When focusing into
1930         the page with the arrow keys, focus the first widget,
1931         not the directionally closest widget.
1932
1933 Thu Feb  7 19:00:10 2002  Owen Taylor  <otaylor@redhat.com>
1934
1935         * gtk/gtkspinbutton.c (gtk_spin_button_key_release): Convert
1936         to using  binding set for doing key bindings. (#62622,
1937         Requested by Skip Montaro)
1938
1939         * gtk/gtkwindow.c (gtk_window_class_init): Add control-arrow
1940         bindings as overrides along with control-tab bindings.
1941
1942         * gtk/gtknotebook.c (gtk_notebook_class_init): Fix return
1943         type for ::focus_tab signal.
1944
1945 Thu Feb  7 19:39:27 2002  Kristian Rietveld  <kris@gtk.org>
1946
1947         Fixes #70782 and some drag dest rectangle/line issues
1948
1949         * gtk/gtktreeview.c (gtk_tree_view_set_model): set
1950         GTK_TREE_VIEW_IS_LIST flag (we can switch from a TreeStore to a
1951         ListStore for example)
1952         (gtk_tree_view_get_path_at_pos): revert previous change, we
1953         shouldn't correct for the header, because we are taking bin_window
1954         coordinates here
1955         (gtk_tree_view_set_drag_dest_row): queue old drag_dest row and
1956         upper/lower neighbors for draw, so the drag dest rectangle/line will
1957         be cleared correctly
1958         (gtk_tree_view_get_dest_row_at_pos): correct for treeview header
1959         here, as drag_y is relative to the widget and _get_path_at_pos wants
1960         coords relative to bin_window, draw black outline rectangle after
1961         drawing the cells
1962
1963 Thu Feb  7 10:53:12 2002  Owen Taylor  <otaylor@redhat.com>
1964
1965         * gtk/gtkentry.c (gtk_entry_draw_text): Use layout text
1966         (which may be affected by invisible char) to compute
1967         selection bounds, not entry text. (#70733, Alex Larsson)
1968
1969 2002-02-07 Padraig O'Briain <padraig.obriain@sun.com>
1970
1971         * gtk/gtkwidget.[ch]:
1972         Change show_help signal to return gboolean instead of void. This
1973         allows the keypress which invokes the signal to be propagated to the
1974         focus widgets ancestors if not handled by the focus widget.
1975         
1976         * gtk/gtktoolips.[ch]
1977         Change _gtk_tooltips_show_tip () to return a gboolean indicating
1978         whether widget has tooltip to display.
1979         
1980 2002-02-07 Padraig O'Briain <padraig.obriain@sun.com>
1981
1982         * gtk/gtkwidget.[ch]:
1983         Change popup_menu signal to return gboolean instead of void. This
1984         allows the keypress which invokes the signal to be propagated to the
1985         focus widgets ancestors if not handled by the focus widget.
1986
1987         * gtk/gtkcolorsel.c gtk/gtkentry.c gtk/gtktextview.c:
1988         Change signature of popup_menu signal handler to return gboolean
1989         instead of void and return TRUE in the signal handler
1990
1991 2002-02-07  Anders Carlsson  <andersca@gnu.org>
1992
1993         * gdk/x11/xsettings-common.c (xsettings_setting_free): Free 
1994         the setting name.
1995
1996 Wed Feb  6 23:28:39 2002  Kristian Rietveld  <kris@gtk.org>
1997
1998         Fixes #70708
1999
2000         * gtk/gtktreeview.c (gtk_tree_view_get_path_at_pos): we're dealing
2001         with widget coordinates here, so take the header height into
2002         account while converting
2003         (gtk_tree_view_widget_to_tree_coords): take header height into
2004         account
2005         (gtk_tree_view_tree_to_widget_coords): ditto
2006         (gtk_tree_view_get_dest_row_at_pos): we were passing coords
2007         relative to the tree with _get_path_at_pos, while that function
2008         wants coords relative to the widget
2009
2010 2002-02-06  Havoc Pennington  <hp@redhat.com>
2011
2012         * gtk/gtktextview.c (gtk_text_view_scroll_hpages): remove unused variable
2013         (gtk_text_view_get_window): add warning about how you
2014         can't get the private window. #70683, and avoid default: in the
2015         switch so we get "enum value unhandled" warnings
2016
2017 2002-02-06  Havoc Pennington  <hp@redhat.com>
2018
2019         * gtk/gtktextchild.c: Add warnings if you try to use a child
2020         anchor that isn't inside a buffer. Really kind of lame; 
2021         we should separate the anchor from the buffer. But not worth 
2022         fixing for now. #70601
2023
2024 Wed Feb  6 18:25:24 2002  Kristian Rietveld  <kris@gtk.org>
2025
2026         * gtk/gtktreemodelsort.c: rip out all the debugging ifdefs, as
2027         modelsort seems to be stable (and nobody complained :)
2028
2029 Tue Feb  5 19:13:42 2002  Owen Taylor  <otaylor@redhat.com>
2030
2031         * gdk/x11/gdkgeometry-x11.c (gdk_window_queue): Keep
2032         the length of the anti-expose queue finite, by if
2033         it gets too long, first doing a XSync() and checking
2034         the event queue, and if that doesn't work, simply
2035         discarding all anti-expose items in the queue.
2036
2037         * gdk/x11/gdkdnd-x11.c (gdk_window_cache_filter): Fix ordering
2038         on ConfigureNotify (#56349, Thomas Leonard)
2039
2040 2002-02-05  Havoc Pennington  <hp@redhat.com>
2041
2042         * gtk/gtkimage.c (gtk_image_expose): offset area being gotten from
2043         pixmap by the align/padding offsets, so we don't get warnings
2044         in gdk_pixbuf_get_from_drawable (and so it works, of course)
2045
2046 2002-02-05  Matthias Clasen  <matthiasc@poet.de>
2047
2048         * gtk/gtkrc.c (gtk_rc_parse_file): Remove a (now) misleading comment.
2049
2050 2002-02-05  Federico Mena Quintero  <federico@ximian.com>
2051
2052         * gdk/gdkwindow.h: Do not #include <gdk/gdkwindow.h>.
2053
2054 Tue Feb  5 22:54:16 2002  Kristian Rietveld  <kris@gtk.org>
2055
2056         * gtk/gtkliststore.c (gtk_list_store_insert_after): let's set the
2057         path, which we're going to pass with the emission of row_inserted, to
2058         the iter we inserted and not its sibling.
2059
2060 2002-02-04 Padraig O'Briain <padraig.obriain@sun.com>
2061
2062         * gtk/gtkmenu.c (gtk_menu_popup):
2063         Fix leak of GdkEvent (#70519)
2064
2065 Mon Feb  4 10:40:28 2002  Owen Taylor  <otaylor@redhat.com>
2066
2067         * gtk/gtkstyle.c (gtk_default_draw_resize_grip):
2068         Fix from Matthias Clasen to clear background appropriately
2069         for theme by calling gtk_style_apply_default_background().
2070         (#70449)
2071
2072 Mon Feb  4 10:06:49 2002  Owen Taylor  <otaylor@redhat.com>
2073
2074         * gdk/x11/gdkevents-x11.c: gtk-double-click-time,
2075         not gtk-double-click-timeout. (#70501)
2076
2077 2002-02-04  Havoc Pennington  <hp@pobox.com>
2078
2079         * gtk/gtksignal.c (gtk_signal_connect_while_alive): 
2080         (gtk_signal_connect_object_while_alive): rename 
2081         "signal" arg to "name" to avoid compiler warnings
2082         about shadowing signal(). #70453
2083
2084 2002-02-03  Anders Carlsson  <expander-master@gtk.org>
2085
2086         * gtk/gtkstyle.c (gtk_default_draw_expander): Add 
2087         flipping support to the expanders.
2088
2089 Sat Feb  2 21:54:01 2002  Owen Taylor  <otaylor@redhat.com>
2090
2091         RC file lookup improvements (#68234, suggestions
2092         from Matthias Clasen.)
2093
2094         * gtk/gtkrc.c (gtk_rc_parse_file): Look for the 
2095         locale suffix variants (gtkrc.en_US, gtkrc.en) for
2096         all RC files we parse, not just the default RC
2097         files.
2098
2099         * gtk/gtkrc.c (gtk_rc_parse_default_files): Remove
2100         support for charset specific RC files.
2101
2102 Sat Feb  2 20:16:04 2002  Owen Taylor  <otaylor@redhat.com>
2103
2104         * gtk/gtkmenushell.c (_gtk_menu_shell_select_first): 
2105         Non-exported _gtk_menu_select_first() function that
2106         selects the first item of the menu in a standard
2107         way. (Skipping tearoffs.)
2108
2109         * gtk/gtkmenushell.c gtk/gtkentry.c gtk/gtktextview.c
2110         gtkmenuitem.c: Use _gtk_menu_shell_select_first().
2111
2112         * gtk/gtkmenuitem.c (gtk_real_menu_item_select): Remember
2113         if we are starting the timeout from a keypress so
2114         we can set menushell->ignore_enter properly.
2115
2116         * gtk/gtknotebook.c (focus_child_in): Return something
2117         meaningful if there are no children.
2118
2119         * gtk/gtkmenu.c (gtk_menu_key_press): Fix precendence
2120         problem.
2121
2122 Sat Feb  2 19:15:42 2002  Owen Taylor  <otaylor@redhat.com>
2123
2124         * gtk/gtkmenu.c (gtk_menu_popup): Fix some bugs in
2125         the determination of xgrab_shell.
2126
2127 Sat Feb  2 17:43:00 2002  Owen Taylor  <otaylor@redhat.com>
2128
2129         * gtk/gtkentry.c (gtk_entry_grab_focus): Add a GtkSetting
2130         (gtk-entry-select-on-focus) controlling whether the
2131         contents of an entry are selected on focus in.
2132
2133         * gtk/gtkmenu.c (gtk_menu_key_press): Add a GtkSetting
2134         (gtk-can-change-accels) controlling whether accelerators can be
2135         changed on the fly or not. (#51902)
2136
2137         * gtk/gtkmenu.c (gtk_menu_key_press): Allow unmodified
2138         accelerators, now that accelerator changing can be turned
2139         off for those who won't expect it. (#61285)
2140
2141         * gtk/gtkaccelgroup.c (gtk_accelerator_valid): Allow 
2142         Backspace/Delete/KP_Delete as valid accelerators.
2143
2144         * gtk/gtkmenu.c (gtk_menu_key_press): Allow setting of
2145         Delete/Backspace as accelerators by making them toggle
2146         the menu item between empty and the pressed key.
2147         (#58605)
2148
2149         * tests/testgtkrc: Remove the objectionably short cursor blink
2150         time setting.
2151
2152 Sat Feb  2 16:43:31 2002  Owen Taylor  <otaylor@redhat.com>
2153
2154         * gtk/gtkmenu.c (gtk_menu_popup): To get around the fact
2155         that we may have a owner_events = FALSE grab in effect
2156         when we pop up a window, make a temporary grab on a
2157         different window, then grab on the real window. Fixes
2158         a problem where if a context menu popped up under the 
2159         cursor, the first item would be stuck unselected.
2160         (#59812, reported by Arnaud Charlet.)
2161
2162 2002-02-02  Peter Williams  <peterw@ximian.com>
2163
2164         * gtk/Makefile.am (install-data-local): Install gtkrc.default
2165         from $(srcdir) for when $(builddir) is different.
2166
2167 Sat Feb  2 19:00:39 2002  Kristian Rietveld  <kris@gtk.org>
2168
2169         * gtk/Makefile.am: remove TESTGTK_RCFILE define
2170
2171 Sat Feb  2 11:37:21 2002  Owen Taylor  <otaylor@redhat.com>
2172
2173         * gtk/gtkmenu.c (gtk_menu_popup): Remove the 
2174         "select first item if popped up from keypress" hack --
2175         was causing more problems than it was worth 
2176         (#53191, #68483)
2177
2178         * gtk/gtktextview.c (popup_targets_received): 
2179          gtk/gtkentry.c (popup_targets_received): If activated
2180         from keyboard, select first item of popup menu.
2181
2182 Sat Feb  2 18:07:51 2002  Kristian Rietveld  <kris@gtk.org>
2183
2184         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): set upper member
2185         of vadjustment correct, so the vscrollbars of lists smaller than
2186         1 page are somewhat saner (#66905)
2187
2188         * gtk/gtkliststore.c (gtk_list_store_remove_silently): do not
2189         increment the stamp, liststore is a model with persisting iters
2190
2191 Fri Feb  1 23:54:00 2002  Owen Taylor  <otaylor@redhat.com>
2192
2193         * gtk/gtkrc.[ch] (gtk_rc_parse_engine): Support 
2194         engine "" {} to mean override to the default 
2195         engine. (#70205)
2196
2197 Fri Feb  1 23:25:33 2002  Owen Taylor  <otaylor@redhat.com>
2198
2199         * gtk/gtktooltips.c (gtk_tooltips_init): Parse the
2200         RC string here when the first object is created
2201         rather than in the class_init to not break doc 
2202         building. (#70341, Havoc Pennington.)
2203
2204         * gtk/gtkrc.c (parse_include_file): Use the directories
2205         for the currently parsed files as the starting point
2206         to look for include files. (#59975)
2207
2208 Fri Feb  1 20:21:56 2002  Manish Singh  <yosh@gimp.org>
2209
2210         * gtk/gtkinputdialog.c: use gtk_label_new_with_mnemonic for labels
2211         that actually have mnemonics
2212
2213 Fri Feb  1 19:57:59 2002  Owen Taylor  <otaylor@redhat.com>
2214
2215         * configure.in: Fix use of ! in shell.
2216
2217         * gtk/gtktooltips.c (gtk_tooltips_class_init) gtkrc.default: 
2218         Move the setting of default tooltips colors to gtktooltips.c
2219         from gtkrc.default. (Use default priority so themes will
2220         override.) (#58542)
2221
2222 Fri Feb  1 17:48:51 2002  Owen Taylor  <otaylor@redhat.com>
2223
2224         * gtk/gtkrc.c (gtk_rc_get_style): Fix ordering of
2225         priorities so that priorities take precendence over
2226         the ordering by type. (#70205)
2227
2228         * test/testgtkrc tests/testgtk.c (create_rc_file): Add 
2229         some labels to test priorities in testgtkrc.
2230
2231 Fri Feb  1 00:37:49 2002  Kristian Rietveld  <kris@gtk.org>
2232
2233         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): use
2234         y coordinate relative to the tree and not the treeview window
2235         (fixes the PgDn/PgUp brokenness)
2236
2237 Fri Feb  1 23:40:31 2002  Kristian Rietveld  <kris@gtk.org>
2238
2239         * gtk/gtktreeview.c (gtk_tree_view_button_press): adjust
2240         cell_area and background_area for possible treeview scroll
2241         (fixes #70283, #70065)
2242
2243 Fri Feb  1 22:20:13 2002  Kristian Rietveld  <kris@gtk.org>
2244
2245         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): use
2246         height - page_size not height - allocation->height (fixes #66269)
2247
2248 Fri Feb  1 15:22:23 2002  Owen Taylor  <otaylor@redhat.com>
2249
2250         * gtk/gtkimage.c (gtk_image_class_init): Fix typo
2251         in property description. (Christian Rose.)
2252
2253 Fri Feb  1 14:50:36 2002  Owen Taylor  <otaylor@redhat.com>
2254
2255         * gtk/gtkrc.c (gtk_rc_parse_string): Handle reparsing
2256         any strings if the theme changes. (#69465)
2257
2258         * tests/testgtk.c: Add a test for gtk_rc_parse_string().
2259
2260 Fri Feb  1 20:50:29 2002  Kristian Rietveld  <kris@gtk.org>
2261
2262         * gtk/gtktreeview.c (gtk_tree_view_dy_to_top_row): set tree to
2263         NULL if tree_view->priv->tree is NULL (#70152, patch by John Harper).
2264
2265 Fri Feb  1 12:51:20 2002  Owen Taylor  <otaylor@redhat.com>
2266
2267         * gtk/gtknotebook.c (focus_child_in): Catch the
2268         cur_page == NULL (no children) case. (#70287,
2269         Paolo Maggi.)
2270
2271 Fri Feb  1 12:12:12 2002  Owen Taylor  <otaylor@redhat.com>
2272
2273         * gtk/gtkfilesel.c (attempt_file_completion): 
2274         s/directory/folder/ in all labels and messages.
2275
2276 Fri Feb  1 08:57:38 2002  Owen Taylor  <otaylor@redhat.com>
2277
2278         * gtk/gtkmain.c (gtk_exit_func): Remove this useless
2279         atexit handler. (existance pointed out by Stefan Kost)
2280
2281         * gtk/gtkmain.c (gtk_init_check): Warning fixes.
2282
2283 Thu Jan 31 18:46:10 2002  Jonathan Blandford  <jrb@redhat.com>
2284
2285         * gtk/gtktreemodel.c (gtk_tree_row_reference_free): unref the
2286         model after the last use, not before.
2287
2288 Thu Jan 31 14:50:16 2002  Owen Taylor  <otaylor@redhat.com>
2289
2290         * gtk/gtkrc.default gtk/Makefile.am: Install a Default
2291         RC file that sets the tooltips color to yellow. (#58542)
2292
2293         * gtk/gtksettings.c (gtk_settings_class_init): make 
2294         the default theme "Default", not NULL.
2295
2296 Thu Jan 31 11:33:52 2002  Owen Taylor  <otaylor@redhat.com>
2297
2298         * gdk/x11/gdkproperty-x11.c (insert_atom_pair): Fix 
2299         another missing static.
2300
2301         * gtk/gtkimmodule.c (n_loaded_contexts): And another.
2302
2303         * gdk/x11/Makefile.am gdk/x11/gxid_lib.c: Don't
2304         build gxid sources at all except in the vanishingly
2305         rare case of --with-xinput=xfree.
2306
2307 2002-01-31  Mark McLoughlin  <mark@skynet.ie>
2308
2309         * gdk/gdkimage.c: (scratch_image_info_for_depth): make static.
2310
2311         * gdk/x11/gdkimage-x11.c: (get_full_image): ditto.
2312
2313         * gdk/x11/gxid_lib.[ch]: (_gxid_claim_device), (_gxid_release_device):
2314         renamed from gxid_(claim|release)_device.
2315
2316         * gdk/x11/gdkinput-gxi.c: (_gdk_input_enable_window),
2317         (_gdk_input_disable_window): upd for gxid change.
2318
2319         * gtk/gtkimage.c: (animation_timeout): make static.
2320
2321         * gtk/gtkstyle.c: (draw_thin_shadow), (draw_spin_entry_shadow): make
2322         static.
2323
2324         * gtk/gtktextutil.c: (bidi_menu_entries): make static.
2325
2326 Thu Jan 31 10:21:05 2002  Owen Taylor  <otaylor@redhat.com>
2327
2328         * gtk/gtkplug.c (gtk_plug_focus): Handle the case where
2329         bin->child is NULL. (#70153, Padraig O'Briain)
2330
2331         * gtk/gtktextutil.c (_gtk_text_util_append_special_char_menuitems): 
2332         Actually call gettext() on the labels; previously they
2333         were marked with N_() but we never called gettext().
2334
2335 Wed Jan 30 20:15:49 2002  Jonathan Blandford  <jrb@redhat.com>
2336
2337         * gtk/gtktreestore.c (gtk_tree_store_set_valist): save last minute
2338         changes before committing.
2339
2340         * gtk/gtkliststore.c (gtk_list_store_set_valist): ditto
2341
2342 Wed Jan 30 18:46:14 2002  Jonathan Blandford  <jrb@redhat.com>
2343
2344         * gtk/gtkliststore.c (gtk_list_store_set_valist): only emit the
2345         signal if an interesting column changes.
2346
2347         * gtk/gtktreestore.c: ditto.
2348
2349         * gtk/gtktreeview.c (gtk_tree_view_set_cursor): change behavior so
2350         that it no longer grabs 
2351
2352 2002-01-30  Manish Singh  <yosh@gimp.org>
2353
2354         * gtk/gtkhandlebox.c (gtk_handle_box_destroy): remove unused
2355         variable.
2356
2357         * gtk/gtkwindow.c (gtk_window_get_icon): function returns a value,
2358         so return NULL with g_return_val_if_fail instead of g_return_if_fail.
2359
2360 2002-01-30  Matthias Clasen  <matthiasc@poet.de>
2361
2362         * gtk/*.c: Remove excess g_return_if_fail calls from static
2363         and virtual functions.  (#57615)
2364         
2365 2002-01-30  Anders Carlsson  <andersca@gnu.org>
2366
2367         * gtk/gtkstyle.c (gtk_default_render_icon): Allow a -1 icon size.
2368
2369 Wed Jan 30 20:29:01 2002  Tim Janik  <timj@gtk.org>
2370
2371         * gtk/gtkscale.c (gtk_scale_set_digits): fix revrted bug fix.
2372         (use a define for max digits).
2373
2374 Wed Jan 30 13:55:59 2002  Owen Taylor  <otaylor@redhat.com>
2375
2376         * gtk/gtkwindow.c (gtk_window_show): Try to make
2377         sure that we have some focused widget on map. (#50339)
2378
2379         * gtk/gtkdialog.c (gtk_dialog_map): Handling picking
2380         a focus widget here differently so that if a
2381         response button gets picked, it's the default one.
2382
2383         * tests/testgtk.c (make_message_dialog): Set the 
2384         default response for the dialogs.
2385
2386 Tue Jan 29 22:52:36 2002  Owen Taylor  <otaylor@redhat.com>
2387
2388         * Released 1.3.13
2389
2390         * configure.in: Micro version 13, interface, binary
2391         age 0. Require GLIB-1.3.13, Pango 0.24.
2392
2393         * docs/Makefile.am (EXTRA_DIST): Add widget_geometry.txt,
2394         sizing-test.txt, tree-column-sizing.txt
2395
2396         * docs/Makefile.am (EXTRA_DIST): Don't distribute
2397         Changes-1.2.txt, Changes-2.0.txt, README.linux-fb,
2398         since they are no longer canonical.
2399
2400         * gtk/gtk.def: Convert spaces to tabs in front of
2401         gtk_widget_set_accel_path in case it matters.
2402
2403         * NEWS: Updated for 1.3.13.
2404
2405 Tue Jan 29 22:31:07 2002  Owen Taylor  <otaylor@redhat.com>
2406
2407         * gtk/gtkwidget.[ch] gtkmenuitem.c gtkitemfactory.c: Export 
2408         gtk_widget_set_accel_path().
2409
2410         * gtk/gtk.def: Add gtk_widget_set_accel_path.
2411
2412 Tue Jan 29 21:50:28 2002  Owen Taylor  <otaylor@redhat.com>
2413
2414         * gtk/gtkaccelmap.[ch] gtk/gtkbindings.[ch] gtk/gtkwidget.[ch]:
2415         Consistently use GdkModifierType. (#66950, Mark Patton)
2416
2417         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_from_stock):
2418         For consistency with gtk_button_new_from_stock(), fall back
2419         to gtk_image_menu_item_new_with_mnemnonic(). (#65944,
2420         Havoc Pennington)
2421         
2422         * gtk/gtkitemfactory.[ch] (gtk_item_factory_path_from_widget): 
2423         Make G_CONST_RETURN. (#68527, Matt Wilson)
2424
2425 Tue Jan 29 20:56:13 2002  Owen Taylor  <otaylor@redhat.com>
2426
2427         * gtk/gtk[vh]scale.c (gtk_[vh]scale_new_with_range): Document
2428         that the end points are included in the range. (#69783,
2429         Jeffrey Baker)
2430
2431 Tue Jan 29 20:38:04 2002  Owen Taylor  <otaylor@redhat.com>
2432
2433         * gtk/gtkscale.[ch]: Revert the last changes to make the
2434         number of digits only effect drawing, instead, don't
2435         round unless we are in the 'draw_value' mode -- this
2436         is the behavior of GTK+-1.2, and keeps the behavior that
2437         if the user sees a displayed value, it is the correct value.
2438
2439 Tue Jan 29 19:51:05 2002  Owen Taylor  <otaylor@redhat.com>
2440
2441         * gtk/gtkenums.h: Deprecate GtkPreviewType,
2442         GtkSignalRunType, GtkSideType, GtkSubmenuPlacement, GtkSubmenuDirection
2443         (#68183, Matthias Clasen)
2444
2445         * gtk/gtkmenuitem.h: Remove _gtk_menu_item_set_placement() from
2446         the public header to avoid having to use GtkSubmenuPlacement.
2447
2448         * gtk/{gtkmenuitem.c,gtkmenubar.c,gtkmenushell.c}: #define
2449         GTK_MENU_INTERNALS to preserve access to GtkSubmenu*.
2450
2451         * gdk/gdki18n.h: Deprecate contents. (Darin Adler.)
2452
2453 Tue Jan 29 19:32:47 2002  Owen Taylor  <otaylor@redhat.com>
2454
2455         * gtk/gtktextview.c (gtk_text_view_get/set_property): 
2456         Fix wrong usage of g_value_set/get_object for PROP_TABS
2457         and memory leak in getter for PROP_TABS. (Jeff Franks)
2458
2459 Tue Jan 29 19:04:41 2002  Owen Taylor  <otaylor@redhat.com>
2460
2461         * gtk/gtkstyle.c (gtk_style_render_icon): Document that
2462         a size of (GtkIconSize)-1 means don't scale.
2463
2464         * gtk/gtkstyle.c (gtk_default_render_icon): Obey the
2465         -1 convention.
2466
2467         * gtk/gtkimage.c (gtk_image_expose): Pass in -1 to
2468         gtk_style_render_icon() to make sure that we catch it
2469         obviously if the style's render function tries to
2470         scale.
2471
2472 Tue Jan 29 18:50:59 2002  Owen Taylor  <otaylor@redhat.com>
2473
2474         * gtk/gtkimage.c (gtk_image_expose): Optimize exposes of
2475         partial insensitive images.
2476
2477 2002-01-24  Havoc Pennington  <hp@redhat.com>
2478
2479         * gtk/gtkimage.c (gtk_image_expose): create insensitive version of
2480         the image regardless of storage type, #63305
2481
2482         * demos/gtk-demo/images.c: add toggle button to demonstrate that
2483         GtkImage makes its contents insensitive
2484
2485 Tue Jan 29 17:40:02 2002  Owen Taylor  <otaylor@redhat.com>
2486
2487         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable):
2488         Call _gdk_draw_pixbuf(), thus enabling using this function
2489         for pixbufs with alpha. (#68801)
2490
2491         * gdk/gdkdraw.c (gdk_drawable_real_draw_pixbuf): Move
2492         implementation of gdk_pixbuf_render_to_drawable()
2493         to here.
2494
2495 Tue Jan 29 17:16:17 2002  Owen Taylor  <otaylor@redhat.com>
2496
2497         * gtk/gtklayout.c: Patch from Jacob Berkman to fix problem
2498         when the height/width of a layout was set before the
2499         adjustments were added. (#66294)
2500
2501         * gtk/gtktreeview.c: Warning cleanups.
2502
2503 Tue Jan 29 16:35:04 2002  Owen Taylor  <otaylor@redhat.com>
2504
2505         * gtk/gtkhandlebox.c (gtk_handle_box_motion): Small
2506         fix to size of torn off window (#60271, Detlef Reichl)
2507
2508         * gtk/Makefile.am: Don't install gtkhsv.h. (Pointed out
2509         by Ross Burton)
2510
2511 Tue Jan 29 18:50:46 2002  Kristian Rietveld  <kris@gtk.org>
2512
2513         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): free
2514         cursor_path after usage
2515         (gtk_tree_view_real_start_interactive_search): use new g_signal
2516         and g_object calls
2517         (gtk_tree_view_search_dialog_destroy): use g_object calls and free
2518         selected_iter if set
2519         (gtk_tree_view_search_position_func): rework so it will never ever
2520         appear offscreen (#68492)
2521         (gtk_tree_view_search_move): use new g_object calls
2522         (gtk_tree_view_search_init): free selected_iter if set, use new
2523         g_object calls
2524         (gtk_tree_view_leave_notify): don't destroy interactive search
2525         dialog
2526
2527 Tue Jan 29 23:07:03 2002  Kristian Rietveld  <kris@gtk.org>
2528
2529         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search):
2530         send focus in event
2531         (gtk_tree_view_search_dialog_destroy): send focus out event (#66466)
2532
2533 2002-01-29  Anders Carlsson  <andersca@gnu.org>
2534
2535         * gtk/gtkfontsel.c (gtk_font_selection_select_size): Show correct
2536         size in the size entry.
2537
2538 Tue Jan 29 16:11:55 2002  Owen Taylor  <otaylor@redhat.com>
2539
2540         * gtk/gtkfontsel.c (gtk_font_selection_show_available_sizes): Use
2541         gtk_tree_view_set_cursor() instead of gtk_tree_selection_select_iter().
2542
2543         * gtk/gtkfontsel.c (gtk_font_selection_init): Add mnemonic to
2544         preview field. (#52433, patch from Anders Carlsson)
2545         
2546         * gtk/gtkfontsel.c (gtk_font_selection_dialog_init): Remove the 
2547         dialog separator. (#69558, Alex Larsson, patch from Anders Carlsson)
2548
2549 Tue Jan 29 15:24:59 2002  Owen Taylor  <otaylor@redhat.com>
2550
2551         * gtk/gtkfontsel.[ch]: Switch over to GtkTreeView from
2552         GtkCList. Remove the entries above the font/face lists 
2553         since they were a little confusing. (Not sure about this 
2554         change, so the code is still there the entries are
2555         just hidden.) (#68890)
2556
2557         * gtk/gtkfilesel.c: Switch over to GtkTreeView from
2558         GtkCList. Add mnemonics for fileops. Allow Control/Shift
2559         Tab to focus out.
2560
2561         * gtk/gtkfilesel.c: Make fileop dialogs transient-for
2562         the fileselector. (#69336, patch from Melvin Hadasht)
2563
2564         * gtk/gtkgamma.c (button_clicked_callback): Fix handling
2565         of gamma dialog a bit. (#69336, Matthias Clasen.)
2566
2567 Tue Jan 29 14:56:28 2002  Owen Taylor  <otaylor@redhat.com>
2568
2569         * gtk/gtksocket.c (toplevel_focus_out_handler): Return boolean
2570         (and FALSE from focus_in / focus_out handlers. (#69528,
2571         Padraig O'Briain)
2572
2573 Tue Jan 29 14:47:54 2002  Owen Taylor  <otaylor@redhat.com>
2574
2575         * gtk/gtkmain.c (gtk_init_check): Remove the scary startup
2576         warning. (#69480)
2577
2578 Tue Jan 29 14:24:49 2002  Owen Taylor  <otaylor@redhat.com>
2579
2580         * gtk/gtkwindow.c (gtk_window_class_init): Add <Control>Tab
2581         bindings for "move-focus" so that Control-Tab to escape from
2582         something that eats Tab just works if not otherwise overriden.
2583
2584         * gtk/gtkspinbutton.c (gtk_spin_button_new_with_range) 
2585         * gtk/gtkvscale.c (gtk_vscale_new_with_range)
2586         * gtk/gtkhscale.c (gtk_hscale_new_with_range): Use a page_size
2587         of zero for the adjustment, since at times we think that the range
2588         is lower to upper - page_size. A page size equally to the 
2589         step_increment is, in any case, not meaningful.
2590
2591 2002-01-29  Tor Lillqvist  <tml@iki.fi>
2592
2593         * README.win32: Add comment about gtk-1-3-win32-production branch
2594         currently being ahead in functionality and code cleanliness (in
2595         gdk/win32). Just in case somebody looks at the code in gdk/win32
2596         here and starts fixing it, when it is going to change soonish
2597         anyway.
2598
2599 2002-01-29  Sven Neumann  <sven@gimp.org>
2600
2601         * gtk/gtkrc.c: don't install an empty icon_set if none of the image
2602         files could be found in the pixmap_path (bug #69398).
2603         
2604 2002-01-29  Sven Neumann  <sven@gimp.org>
2605
2606         * gdk/x11/gdkimage-x11.c (_gdk_x11_copy_to_image): fixed a segfault
2607         that showed up when using the color picker.
2608
2609 Tue Jan 29 11:51:14 2002  Tim Janik  <timj@gtk.org>
2610
2611         * gtk/gtkscale.[hc]: fix default value for ::digits property,
2612         leave as 1 as per havoc's request.
2613         don't apply the draw_digits value to range->round_digits,
2614         so we don't perform gross quantization by default.
2615
2616 2002-01-25  Havoc Pennington  <hp@redhat.com>
2617
2618         * gtk/gtktextbtree.c (_gtk_text_btree_delete): fix assertion
2619         failure by creating the line data, but not validating it at this
2620         stage. Also, remove old code related to the "bogus newline" mess
2621         that removed all tags from the last char in the buffer if you
2622         tried to delete it.
2623         (_gtk_text_line_data_new): put this here and prepend underscore,
2624         remove from gtktextlayout.c
2625
2626 Mon Jan 28 19:57:39 2002  Owen Taylor  <otaylor@redhat.com>
2627
2628         * modules/input/imhangul.c modules/input/imhangul-defs.h
2629         po/POTFILES.in. Add port of Emacs korean-hangul input
2630         method from Yusuke Tabata (#67665)
2631
2632 Mon Jan 28 18:25:10 2002  Owen Taylor  <otaylor@redhat.com>
2633
2634         * gtk/gtkentry.c (gtk_entry_draw_frame): Paint shadow
2635         before focus to give theme engines a bit morea
2636         flexibility. (#69857)
2637
2638 Mon Jan 28 16:23:20 2002  Jonathan Blandford  <jrb@redhat.com>
2639
2640         * gtk/gtktreeview.c (gtk_tree_view_dy_to_top_row): no longer
2641         g_assert.
2642
2643 2002-01-28  Jon Trowbridge  <trow@gnu.org>
2644
2645         * gtk/gtktreeview.c (gtk_tree_view_set_model): When setting the
2646         GtkTreeView's model, set prelight_node, prelight_tree,
2647         button_pressed_node and button_pressed_tree to NULL. (#69603)
2648
2649 2002-01-28 Bill Haneman <bill.haneman@sun.com>
2650
2651         * gtk/gtkstyle.c:
2652         Make sure that the default expanders are drawn with
2653         an outline thickness appropriate to the size of the
2654         expanders (RINT expander_size/7).
2655         Added static gtk_style_draw_polygon_with_gc(), to
2656         reduce code duplication.
2657
2658         * gtk/gtktreeview.c: (gtk_tree_view_bin_expose):
2659         Use focus_line_thickness when drawing focus lines.
2660
2661         * gtk/gtktreeviewcolumn.c:(gtk_tree_view_column_cell_get_size):
2662         Adjust requested width to include focus line thickness.
2663         (gtk_tree_view_column_cell_render_or_focus):
2664         Calculate a focus line rectangle which gets larger as the focus
2665         line thickness increases, to avoid overwriting cell content.
2666         Render left-aligned content at x+focus_line_width.
2667         (gtk_tree_view_column_cell_draw_focus):
2668         Don't draw a focus line around an editable text cell, since the
2669         text caret already indicates keyboard focus.
2670         Pass a GtkStateType appropriate to the focussed cell's state
2671         to gtk_paint_focus.
2672
2673 Mon Jan 28 14:44:40 2002  Jonathan Blandford  <jrb@redhat.com>
2674
2675         * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row): Only
2676         activate/edit the row if shift is not pressed, #69248
2677
2678 2002-01-28  Anders Carlsson  <andersca@gnu.org>
2679
2680         * gtk/gtkcurve.c (gtk_curve_set_vector): Fix build.
2681
2682 2002-01-28  Matthias Clasen  <matthiasc@poet.de>
2683
2684         * gtk/{gtkalignment.c,gtkaspectframe.c,gtkbutton.c,
2685         gtkcellrenderer.c,gtkcellrendererpixbuf.c,gtkcombo.c,
2686         gtkcontainer.c,gtkcurve.c,gtkframe.c,gtklabel.c,
2687         gtkmessagedialog.c,gtknotebook.c,gtkspinbutton.c,gtktable.c,
2688         gtktext.c,gtktextview.c,gtktreeview.c,gtktreeviewcolumn.c,
2689         gtkviewport.c,gtkwidget.c}: General property notification 
2690         cleanup. (#69066)
2691
2692 2002-01-28  Anders Carlsson  <andersca@gnu.org>
2693
2694         * gtk/gtkaccelgroup.c (gtk_accel_groups_activate): & with the
2695         default mod mask so accels work when numlock is on.
2696
2697 Sun Jan 27 23:23:23 2002  Kristian Rietveld  <kris@gtk.org>
2698
2699         * gtk/gtkrbtree.[ch]: add _gtk_rbtree_mark_invalid (my previous
2700         commit already needed this ...)
2701
2702 Sun Jan 27 22:13:02 2002  Kristian Rietveld  <kris@gtk.org>
2703
2704         Fix for bug #69586
2705
2706         * gtk/gtktreeprivate.h: get rid of tab_offset, introduce
2707         expander_size
2708
2709         * gtk/gtktreeview.c: get rid of ->priv->tab_offset, introduce
2710         expander_size caching (from style), fix CELL_HEIGHT macro,
2711         use MAX ("RBNODE_HEIGHT", expander_size) (differs per case) for
2712         row height calculation, added style_set callback
2713
2714 2002-01-27  Anders Carlsson  <andersca@gnu.org>
2715
2716         * gtk/gtklabel.c (gtk_label_create_window): Set the cursor to
2717         GDK_XTERM.
2718
2719         * gtk/gtktextview.h (struct _GtkTextView): add mouse_cursor_obscured.
2720
2721         * gtk/gtkentry.h (struct _GtkEntry): Add mouse_cursor_obscured.
2722
2723         * gtk/gtktextview.c (set_invisible_cursor): New function.
2724         (gtk_text_view_obscure_mouse_cursor): Likewise.
2725         (gtk_text_view_key_press_event): Call obscure_cursor if text 
2726         has been inserted.
2727         (gtk_text_view_motion_event): Restore the mouse cursor.
2728
2729         * gtk/gtkentry.c (gtk_entry_realize): Add GDK_POINTER_MOTION_MASK.
2730         (set_invisible_cursor): New function.
2731         (gtk_entry_obscure_mouse_cursor): Likewise.
2732         (gtk_entry_key_press): call obscure_cursor if text has been inserted.
2733         (gtk_entry_motion_notify): Restore the mouse cursor.
2734
2735 2002-01-27  Sven Neumann  <sven@gimp.org>
2736
2737         * gtk/gtkstyle.c (sanitize_size): removed unused return value.
2738
2739 Sat Jan 26 19:27:23 2002  Owen Taylor  <otaylor@redhat.com>
2740
2741         * gtk/gtksocket.c (gtk_socket_grab_notify): Don't
2742         send MODALITY_ON/OFF if socket->same_app (More fixes for #69735)
2743
2744 Sat Jan 26 19:04:37 2002  Owen Taylor  <otaylor@redhat.com>
2745
2746         * gtk/gtkmain.c (check_is_grabbed): Return FALSE not true
2747         in the grab_widget == NULL case. (Bug reported by 
2748         Padraig O'Briain, #69735)
2749
2750         * gtk/gtkplug.c (handle_modality_on): Realize the modality
2751         window so gtk_widget_event() doesn't complain :-((((.
2752
2753 2002-01-25  Federico Mena Quintero  <federico@ximian.com>
2754
2755         Merge from gdk-pixbuf stable.
2756
2757         * gdk/gdkpixbuf-drawable.c (rgb565msb): Fixed the endianness
2758         conversion --- swap the individual 16 bit values instead of taking
2759         everying as a 32 bit value.
2760         (rgb565lsb): Likewise.
2761         (rgb555lsb): Likewise.
2762         (rgb555msb): Likewise.
2763
2764 2002-01-25  Alex Larsson  <alexl@redhat.com>
2765
2766         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_drawable_impl_fb_class_init):
2767         Implement copy_to_image instead of get_image
2768         
2769         * gdk/linux-fb/gdkimage-fb.c:
2770         Implement _gdk_image_new_for_depth, _gdk_windowing_get_bits_for_depth and
2771         _gdk_fb_copy_to_image.
2772         Based in part on patch from Mathieu Lacage <mathieu_lacage@realmagic.fr>
2773
2774         * gdk/linux-fb/gdkmain-fb.c:
2775         Make ENABLE_FB_MANAGER region larger.
2776
2777         * gdk/linux-fb/gdkprivate-fb.h:
2778         Change _gdk_fb_get_image to _gdk_fb_copy_to_image.
2779
2780 2002-01-25  Sven Neumann  <sven@gimp.org>
2781
2782         * gtk/gtkwindow.c (gtk_window_get_size): changed the comment so
2783         that gtk-doc doesn't get confused.
2784
2785 Fri Jan 25 14:03:36 2002  Tim Janik  <timj@gtk.org>
2786
2787         * gtk/gtkspinbutton.c (gtk_spin_button_draw_arrow): assert
2788         that the passed in arrow is always _UP or _DOWN, this catches
2789         false invocations which lead to drawing artefacts.
2790         (start_spinning): likewise, i.e. sanity check the passed in arrow.
2791         (gtk_spin_button_button_release): fix arrow redrawing.
2792         (gtk_spin_button_button_press): must set click_child for
2793         button3 even if we don't take spinning action right away.
2794
2795         * gtk/gtkspinbutton.h (struct _GtkSpinButton): document
2796         valid values for click_child.
2797
2798 Thu Jan 24 23:03:24 2002  Kristian Rietveld  <kris@gtk.org>
2799
2800         * gtk/gtktreeview.c (gtk_tree_view_get_path_at_pos): update docs,
2801         return current FALSE if x is smaller than the current visible area,
2802         not than the requested area, don't correct y coordinate,
2803         TREE_WINDOW_Y_TO_RBTREE_Y will do that. Fixes #67477.
2804
2805 Thu Jan 24 15:41:08 2002  Jonathan Blandford  <jrb@redhat.com>
2806
2807         * gtk/gtktreeview.c
2808          (gtk_tree_view_motion_draw_column_motion_arrow): fix column
2809          reordering fully.
2810          (gtk_tree_view_size_allocate): fix evil bug.
2811
2812 Thu Jan 24 11:53:19 2002  Owen Taylor  <otaylor@redhat.com>
2813
2814         * gtk/gtktreeview.c (gtk_tree_view_destroy): Don't clear
2815         the model until we clean up all the other objects
2816         that might refer to the object.
2817
2818 2002-01-24  Mark McLoughlin  <mark@skynet.ie>
2819
2820         * gtk/gtkaccessible.h: include gtk/gtkwidget.h
2821
2822 Wed Jan 23 20:28:59 2002  Owen Taylor  <otaylor@redhat.com>
2823
2824         * gtk/gtknotebook.c (gtk_notebook_draw_arrow): 
2825         Use insensitive state for insensitive arrows, not
2826         just an "etched state". (#67172, Adrian Custer)
2827
2828 2002-01-23  Manish Singh  <yosh@gimp.org>
2829
2830         * gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually
2831         been declared.
2832
2833 2002-01-23  Damon Chaplin  <damon@ximian.com>
2834
2835         * configure.in (gtk_doc_min_version): set minimum gtk-doc version to
2836         0.9, since we need to use the new --type-init-func argument for
2837         gtkdoc-scangobj.
2838
2839 2002-01-23  Matthias Clasen  <matthiasc@poet.de>
2840
2841         * gtk/gtkentry.c, gtk/gtkwidget.c: Remove excessive
2842         g_return_if_fail() calls. (#57615)
2843
2844         * gtk/gtkitemfactory.c (gtk_item_factory_delete_entries): Make
2845         it work for paths with underline accelerators. (#69247)
2846
2847 Wed Jan 23 15:12:16 2002  Owen Taylor  <otaylor@redhat.com>
2848
2849         * gtk/gtkspinbutton.c (gtk_spin_button_state_changed): 
2850         Stop spinning if widget becomes insensitive. (#56248)
2851
2852 Wed Jan 23 14:44:12 2002  Owen Taylor  <otaylor@redhat.com>
2853
2854         * gtk/gtkspinbutton.c (EPSILON): Decrease value since
2855         we now use doubles.
2856
2857 Tue Jan 22 16:58:37 2002  Jonathan Blandford  <jrb@redhat.com>
2858
2859         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): Fix sizing bug
2860         I introduced accidentally, #69358
2861
2862 2002-01-22 Padraig O'Briain <padraig.obriain@sun.com>
2863
2864         * gtk/gtktreestore.c (gtk_tree_store_iter_children):
2865         Update last change to prevent core dump
2866
2867 Mon Jan 21 01:21:54 2002  Kristian Rietveld  <kris@gtk.org>
2868
2869         * gtk/gtktreestore.c: add some more stamp checks (pointed out
2870         by Anders Carlsson)
2871
2872         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): don't
2873         assume _row_changed will insert sort (because _row_changed doesn't
2874         need to follow this signal), so apply insert sort here
2875         (gtk_tree_model_sort_level_find_insert): header doesn't need to be
2876         set here, so use a return instead of g_return_val_if_fail.
2877
2878 Mon Jan 21 18:28:17 2002  Jonathan Blandford  <jrb@redhat.com>
2879
2880         * gtk/gtktreeview.c (gtk_tree_view_adjustment_changed): Update
2881         top_row.  Remove extraneous print statements.
2882
2883 2002-01-21  Matthias Clasen  <matthiasc@poet.de>
2884
2885         * gtk/gtkitemfactory.c (gtk_item_factory_popup, 
2886         gtk_item_factory_popup_with_data): Document allowed values
2887         for ifactory.
2888
2889         * gtk/gtkitemfactory.c (gtk_item_factory_delete_entry): Make 
2890         it work for paths with underline accelerators.
2891
2892 Fri Jan 18 16:31:21 2002  Jonathan Blandford  <jrb@redhat.com>
2893
2894         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): only resize the
2895         window.
2896
2897 Mon Jan 21 11:56:31 2002  Owen Taylor  <otaylor@redhat.com>
2898
2899         * gtk/gtkentry.c (gtk_entry_real_activate): Trap the 
2900         case where there is no default widget and the entry
2901         is the focus widget, since this also causes infinite
2902         recursion. (#69158)
2903
2904 Mon Jan 21 11:46:39 2002  Owen Taylor  <otaylor@redhat.com>
2905
2906         * gdk/gdk.c (gdk_init_check): Set the fallback program class here,
2907         rather than lazilygdk_get_program_class(), since we don't want
2908         -name to override it. (#69123, Ryan Lovett)
2909
2910 Mon Jan 21 10:29:45 2002  Owen Taylor  <otaylor@redhat.com>
2911
2912         * gdk/gdk.c: Fix wrong types for command line arguments 
2913         (#69124, Ryan Lovett)
2914
2915         * gdk/gdk.c (gdk_arg_context_parse): Fix bug in parsing
2916         parsing '--arg VALUE'.
2917
2918         * gdk/gdk.c: Remove unused variable gdk_error_trap_free_list.
2919
2920 2002-01-21  Havoc Pennington  <hp@pobox.com>
2921
2922         * gdk/gdkwindow.c (gdk_window_add_filter): mention that window 
2923         arg can be NULL
2924
2925 Sat Jan 19 20:49:41 2002  Kristian Rietveld  <kris@gtk.org>
2926
2927         * demos/gtk-demo/editable_cells.c: fix a load of open line ends
2928         (cell_edited): modified patch from German Poo Caaman~o
2929         to fix up old_text declaration and free the memory
2930         (do_editable_cells): unref the model after creating the treeview
2931
2932         * demos/gtk-demo/list_store.c: fix a load of open line ends,
2933         (add_columns): set the sort column id, so we can sort
2934
2935         * demos/gtk-demo/tree_store.c: fix a load of open line ends,
2936         (do_tree_store): unref the model after creating the treeview
2937
2938 2002-01-19  Havoc Pennington  <hp@pobox.com>
2939
2940         * gtk/gtkwindow.c: link to new X11 section in a lot of places when
2941         mentioning the window manager.
2942
2943         * gtk/gtkwidget.c (gtk_widget_hide_on_delete): don't mention
2944         window manager since we're portable.
2945
2946 Sat Jan 19 08:47:41 2002  Jeff Garzik  <jgarzik@mandrakesoft.com>
2947
2948         * gdk/linux-fb/gdkproperty-fb.c (gdk_atom_name):
2949         Wrap case values in GPOINTER_TO_UINT().  Fixes build with gcc 3.x.
2950
2951         * gtk/gtkmain.c:  Include sys/types.h if G_OS_UNIX.
2952         Fixes build with gcc 3.x and -ansi.
2953
2954 Fri Jan 18 23:01:37 2002  Owen Taylor  <otaylor@redhat.com>
2955
2956         * gtk/gtkrc.c (gtk_rc_parse_style): Fix problems when
2957         an engine declaration occurs in a reopened style, and
2958         g_free() of objects when errors occur.
2959
2960 2002-01-18  Matthias Clasen  <matthiasc@poet.de>
2961
2962         * gtk/gtkitemfactory.c (gtk_item_factory_get_widget_by_action):
2963         Clarify documentation. (#69026)
2964
2965         * gtk/gtkprogressbar.c (gtk_progress_bar_size_request): Fix 
2966         missing initialization of adjustment. (#69025)
2967
2968 2002-01-17  Raja R Harinath  <harinath@cs.umn.edu>
2969
2970         Simplify Makefiles. 
2971         <URL: http://bugzilla.gnome.org/show_bug.cgi?id=68969>
2972         * gdk/Makefile.am: Remove use of automake conditionals to pick
2973         library to build.
2974         * gtk/Makefile.am: Likewise.
2975         
2976         * gdk/Makefile.am (LDFLAGS): Use $(libdir), not @prefix@/lib.
2977         * gtk/Makefile.am (LDFLAGS): Likewise.
2978
2979 Thu Jan 17 20:13:14 2002  Owen Taylor  <otaylor@redhat.com>
2980
2981         * gtk/gtknotebook.c (gtk_notebook_redraw_tabs): Fix
2982         missing allocation.x/y offsets. (#68962, Jacob
2983         Berkman)
2984
2985         * gtk/gtknotebook.c (gtk_notebook_size_allocate):
2986         Queue a redraw on the entire widget if we hide
2987         the last page or show the first. (Also #68962)
2988         
2989 2002-01-17  Havoc Pennington  <hp@redhat.com>
2990
2991         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): change
2992         GTK_MOVEMENT_PARAGRAPHS to go to start/end of paragraph before it
2993         starts to go up/down paragraphs. This makes Ctrl+Up/Ctrl+Down work
2994         as in the keynav spec, though it makes the interpretation of
2995         GTK_MOVEMENT_PARAGRAPHS different from the interpretation of some
2996         of the other GTK_MOVEMENT_ thingies, maybe, as if that enum makes
2997         any sense anyhow.
2998
2999 Thu Jan 17 16:34:55 2002  Jonathan Blandford  <jrb@redhat.com>
3000
3001         * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row): For
3002         some reason, I was activating a row while just selecting it.
3003         Reported by andersca.
3004         (gtk_tree_view_size_request): add a
3005         validate_rows_handler to give us a rough width of the widget.
3006
3007         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_button):
3008         Queue a resize here just in case.  It's needed in over half the
3009         cases, and I don't want to do a diff to figure out exactly when
3010         it's needed.
3011
3012 2002-01-17  Matthias Clasen  <matthiasc@poet.de>
3013
3014         * gtk/gtkinputdialog.c,
3015         gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
3016         Mark children as composite. (#66360)
3017
3018         * gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain
3019         composite children some more. (#66360)
3020
3021 2002-01-17  Havoc Pennington  <hp@redhat.com>
3022
3023         * gtk/gtktextlayout.c (_gtk_text_layout_get_line_xrange): new
3024         function (which I then decided not to use but I think it's needed
3025         to fix #68963
3026
3027         * gtk/gtktextview.c: add page_horizontally action signal and
3028         implement Ctrl+PgUp, Ctrl+PgDown based on patch from Padraig, 
3029         hackily modified to avoid adding GTK_MOVEMENT_ API. Part of 
3030         #53934
3031
3032         * gtk/gtkmarshalers.list: add NONE:INT,BOOL
3033
3034 Thu Jan 17 17:02:38 2002  Owen Taylor  <otaylor@redhat.com>
3035
3036         * gtk/gtkwidget.c (gtk_widget_real_unrealize): Call
3037         gtk_selection_remove_all() here, not in destroy/
3038         finalize. (#66636, Sergey Vlasov)
3039
3040         * gtk/gtkselection.c (gtk_selection_request): Fix
3041         reentrancy problem with multiple conversions.
3042
3043         * gtk/gtkselection.c (gtk_selection_remove_all): 
3044         Don't remove incrs, we don't need the widget for
3045         maintain the incr.
3046
3047         * gtk/gtkselection.c (struct _GtkIncrInfo): Remove
3048         the widget field from here, we don't need it.
3049
3050 Thu Jan 17 13:08:34 2002  Owen Taylor  <otaylor@redhat.com>
3051
3052         * gdk/x11/gdkmain-x11.c (gdk_error_trap_push): Move
3053         here, and save/restore the X error handler to allow
3054         people using GTK+ to set the X error handler to something
3055         custom without disturbing the operation of GDK.
3056
3057         * gdk/linux-fb/gdkmain-fb.c (gdk_error_trap_push) 
3058         * gdk/win32/gdkmain-win32.c (gdk_error_trap_pop): Add
3059         dummy implementations.
3060
3061         * gdk/x11/gdkmain-x11.c gdk/x11/gdkevents-x11.c 
3062         gdk/x11/gdkdnd-x11.c: Use gdk_error_trap_push()/pop()
3063         for all error trapping.
3064
3065         * gdk/x11/gdkdnd-x11.c: Remove '#if 0' code.
3066
3067         * gdk/x11/gdkdnd-x11.c (gdk_window_cache_new): Fix
3068         problem where we would add the results anyways,
3069         and then add it again if no error occurred, and problem
3070         where we could leave _gdk_error_warnings() unset.
3071
3072 Wed Jan 16 20:28:38 2002  Owen Taylor  <otaylor@redhat.com>
3073
3074         * gtk/gtkfilesel.c: Fix "deleting" filename by adding
3075         another boolean parameter to file_selection_populate() -
3076         whether to clear the entry. Also, never fill in the
3077         entry when the user clicks on something in the 
3078         directory list. (#6791, Reported by Jos Dehaes and many,
3079         many, many others.)
3080
3081 2002-01-16  Havoc Pennington  <hp@redhat.com>
3082
3083         * gtk/gtktextview.c (gtk_text_view_scroll_pages): update
3084         cursor_y_pos with clamped delta rather than theoretical delta
3085         (#68788). Also, if we can't page up/down further then jump 
3086         to top/bottom of the document.
3087
3088 Wed Jan 16 19:33:41 2002  Owen Taylor  <otaylor@redhat.com>
3089
3090         * gtk/gtkfilesel.c (gtk_file_selection_map): Refresh
3091         the dialog on map. (#52877, inspired by request from
3092         Murray Cumming)
3093
3094 Wed Jan 16 19:23:04 2002  Owen Taylor  <otaylor@redhat.com>
3095
3096         * gtk/gtkbindings.c (gtk_binding_entry_activate): 
3097         Support "optional" bindings. If a binding signal
3098         has a boolean return value, and returns FALSE it
3099         is as if it didn't exist all.
3100
3101         * gtk/gtkbindings.c (binding_compose_params): Switch
3102         over to GValue.
3103
3104         * gtk/gtknotebook.[ch]: Make the select_page() and
3105         change_current_page() signals only take effect when
3106         the focus is on the tab area so that key presses
3107         in children pass up to the toplevel correctly.
3108
3109 Wed Jan 16 12:16:37 2002  Owen Taylor  <otaylor@redhat.com>
3110
3111         * gtk/gtkoptionmenu.c (gtk_option_menu_size_request): Fix 
3112         calculation error in the (shouldn't happen) case where
3113         option_menu->height < child_requisition.height. (Patch
3114         from Jacob Berkman, #66969)
3115
3116 2002-01-15  Matthias Clasen  <matthiasc@poet.de>
3117
3118         * gtk/gtkenums.h (GtkMatchType): Deprecate. (#68183)
3119
3120         * gtk/gtkscale.h (gtk_scale_value_width): Remove useless 
3121         compatibility macro. (#67730) 
3122
3123 Wed Jan 16 10:54:38 2002  Owen Taylor  <otaylor@redhat.com>
3124
3125         * configure.in: Fix typo in --help output.
3126         (Arnaud Charlet).
3127
3128 Wed Jan 16 10:18:42 2002  Owen Taylor  <otaylor@redhat.com>
3129
3130         * gtk/stock-icons/Makefile.am (EXTRA_DIST): Add 
3131         gtkstockpixbufs.h.
3132
3133         * configure.in: Make TIFF, JPEG, PNG loaders mandatory
3134         unless you configure with --without-libtiff, etc.
3135         (#54045, Brian Cameron)
3136
3137 2002-01-16  Padraig O'Briain <padraig.obriain@sun.com>
3138
3139         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current):
3140         Avoid unexpected warning message when navigating menu (#68517)
3141
3142 2002-01-15  Jody Goldberg <jody@gnome.org>
3143
3144         * gtk/gtklayout.c (gtk_layout_realize) : It is possible that a
3145         GtkLayout may have been scrolled _before_ it was realized.
3146
3147 Tue Jan 15 18:10:24 2002  Owen Taylor  <otaylor@redhat.com>
3148
3149         * gtk/gtkspinbutton.c (gtk_spin_button_grab_notify): Stop
3150         the timer on destroy, or when we are notified that we are
3151         shadowed by a modal dialog.
3152
3153         * gtk/gtkspinbutton.c: Remove explicit gtk_grab_add()/remove() -
3154         not needed any more.
3155
3156         * gtk/gtkmain.c (gtk_grab_notify): Fix problem where notifications
3157         weren't sent out for the default grab group.
3158
3159         * gtk/gtkmain.c (gtk_grab_notify): Fix notification of widgets that
3160         were getting events because they were part of the previous grab.
3161
3162 Tue Jan 15 12:23:33 2002  Owen Taylor  <otaylor@redhat.com>
3163
3164         * gtk/gtknotebook.c (gtk_notebook_mnemonic_activate_switch_page): 
3165         focus the activated tab, not the page. (#53612)
3166
3167         * gtk/gtknotebook.c (gtk_notebook_set_focus_child): Track
3168         the last focus descendant of the page.
3169
3170         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): If the focus
3171         was on the previous page, move it to the last focused widget /
3172         first element on the new page, if possible, or if not, to the 
3173         notebook itself. (#68224, reported by Jonathan Blandford)
3174
3175         * gtk/gtknotebook.c (focus_tabs_in): Don't focus tabs
3176         tabs aren't visible. (#65462, Damon Chaplin, fixed based 
3177         on patch from Anders Carlsson)
3178
3179 2002-01-15            Vitaly Tishkov       <tvv@sparc.spb.su>
3180
3181         * gtk/gtkstyle.c
3182         a misprint in documentation for gtk_style_render_icon () is fixed
3183
3184 Mon Jan 14 23:21:47 2002  Tim Janik  <timj@gtk.org>
3185
3186         * gtk/gtkmenuitem.c (gtk_menu_item_map): map event_window after
3187         mapping child, so we don't loose events.
3188
3189 2002-01-15  Sven Neumann  <sven@gimp.org>
3190
3191         * gtk/gtkaccellabel.h
3192         * gtk/gtkitemfactory.c: fixed documentation by syncing the parameter
3193         names used in headers and code.
3194
3195 2002-01-14  jacob berkman  <jacob@ximian.com>
3196
3197         * gtk/gtkrc.c (gtk_rc_get_im_module_path): close a comment block
3198
3199 Tue Jan 15 01:13:51 2002  Kristian Rietveld  <kris@gtk.org>
3200
3201         * gtk/gtktreemodelsort.c: fix a load of open line ends,
3202         (gtk_tree_model_sort_set_model): only free root level if it's
3203         !NULL
3204
3205 2002-01-14  Matthias Clasen  <matthiasc@poet.de>
3206
3207         * gtk/gtkoldeditable.c, gtk/gtkrc.c, 
3208         gtk/gtkstyle.c: Documentation additions.
3209
3210         * gtk/gtkmenu.c (gtk_menu_set_accel_path),
3211         gtk/gtkmenuitem.c (gtk_menu_item_set_accel_path), 
3212         gtk/gtkwidget.c (gtk_widget_add_accelerator): Typo and markup fixes.
3213
3214         * gtk/gtkitemfactory.c (gtk_item_factory_add_foreign): Document.
3215
3216         * gtk/gtkaccelmap.c (gtk_accel_map_add_filter): Explain intended use.
3217
3218 Mon Jan 14 17:14:13 2002  Owen Taylor  <otaylor@redhat.com>
3219
3220         * gdk/x11/gdkselection-x11.c (sanitize_utf8): Don't
3221         mangle sequences of consecutive \n or \r.
3222
3223 Mon Jan 14 17:42:28 2002  Jonathan Blandford  <jrb@redhat.com>
3224
3225         * gtk/gtktreeview.c (gtk_tree_view_stop_editing): allow cancel to
3226         happen.
3227
3228         * gtk/gtktreeview.c (install_presize_handler): only install the
3229         handler if we're realized, #68056
3230
3231 Mon Jan 14 16:35:58 2002  Owen Taylor  <otaylor@redhat.com>
3232
3233         * gtk/gtkwindow.c (gtk_window_move_resize): Unset 
3234         initial_pos_set after the first configure request.
3235
3236 2002-01-13  Jody Goldberg <jody@gnome.org>
3237
3238         * gtk/gtktexttag.c (get_color_arg) : set_boxed will copy the color
3239           and will use a mem_chunk to do it.  Avoid an unnecessary copy, a
3240           leak, and confusion.
3241
3242 Sun Jan 13 23:23:22 2002  Owen Taylor  <otaylor@redhat.com>
3243
3244         * gtk/gtkwindow.c (gtk_window_compute_hints): Fix problem where
3245         widget->requisition was being used instead of
3246         gtk_widget_get_child_requisition (), causing geometry widgets
3247         with usizes to misbehave.
3248
3249 2002-01-14  Sven Neumann  <sven@gimp.org>
3250
3251         * gtk/gtkrc.c: g_getenv() returns a const string.
3252
3253 2002-01-14  Hasbullah Bin Pit  <sebol@ikhlas.com>
3254
3255         * configure.in: Added ms at ALL_LINGUAS.
3256         * po/ms.po: Added Malay Translation.
3257
3258 2002-01-14  Matthias Clasen  <matthiasc@poet.de>
3259
3260         * gtk/gtkitemfactory.c: Documentation.
3261
3262 2002-01-13  Sven Neumann  <sven@gimp.org>
3263
3264         * gdk/gdkwindow.c: documentation cleanups.
3265
3266 Sun Jan 13 01:15:45 2002  Kristian Rietveld  <kris@gtk.org>
3267
3268         * gtk/gtktreemodelsort.c: various cleanups,
3269         (get_child_iter_from_elt): removed,
3270         (gtk_tree_model_sort_elt_get_path): rewritten to be a lot cleaner
3271         and especially faster,
3272         (gtk_tree_model_convert_iter_to_child_iter): use
3273         gtk_tree_model_sort_elt_get_path
3274
3275 Sat Jan 12 16:57:31 2002  Kristian Rietveld  <kris@gtk.org>
3276
3277         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search):
3278         revert Owen's change (using a strdupped string as object data), so
3279         the interactive search works again
3280
3281 2002-01-11  Havoc Pennington  <hp@pobox.com>
3282
3283         * gtk/gtklabel.c: put in more links to Pango markup format docs
3284         (gtk_label_set_justify): mention gtk_misc_set_alignment
3285
3286 2002-01-12  Tor Lillqvist  <tml@iki.fi>
3287
3288         Fixes contributed by Archaeopteryx Software: This is a first small
3289         part of their changes. Will commit more later.
3290         
3291         * gdk/win32/*.c: Add some more checks for failed GDI calls. If a
3292         call fails, don't use bogus values.
3293
3294          gdk/win32/gdkcursor-win32.c (_gdk_win32_data_to_wcursor): Plug
3295         memory leak: g_free() the AND and XOR bitmaps after use.
3296         (_gdk_cursor_destroy): If we are destroying the current Windows
3297         cursor, set the Windows cursor to none first.
3298
3299         * gdk/win32/gdkgc-win32.c (predraw_set_foreground): Delete the old
3300         brush that was in the DC, like the win32-production branch does.
3301
3302         * gdk/win32/gdkwindow-win32.c (gdk_window_impl_win32_finalize): If
3303         the window has a cursor which is the current Windows cursor,
3304         before destroying it set the current Windows cursor to none.
3305         (gdk_window_set_cursor): Also here, if destroying the current
3306         Windows cursor, set the current Windows cursor to none first.
3307         (gdk_window_get_pointer): Revamp logic.
3308         
3309 2002-01-10  jacob berkman  <jacob@ximian.com>
3310
3311         * gtk/gtkwidget.c (gtk_widget_add_events): actually iterate
3312         through the list rather than infinitely loop
3313
3314 2002-01-08  Matthias Clasen  <matthiasc@poet.de>
3315
3316         * gtk/gtkwidget.c (gtk_widget_set_style_recurse): Rename to
3317         reset_rc_styles_recurse(). (#68084)
3318
3319 2002-01-10            Vitaly Tishkov       <tvv@sparc.spb.su>
3320         * gtk/gtkimage.c
3321         * gtk/gtkimcontext.c
3322         * gtk/gtktreemodel.c
3323         * gtk/gtktreemodelsort.c
3324         * gtk/gtkwindow.c
3325         fix docs        
3326
3327 Wed Jan  9 20:56:42 2002  Jonathan Blandford  <jrb@redhat.com>
3328
3329         * gdk/x11/gdkkeys-x11.c (get_xkb): get the types as well as the
3330         symbols because we need them in MyEnhancedXkbTranslateKeyCode.
3331
3332 2002-01-10  Tor Lillqvist  <tml@iki.fi>
3333
3334         Apply the same fixes and improvements as to the
3335         gtk-1-3-win32-production branch: Bug fixes and cleanup of
3336         selection and DND functionality. Still doesn't work as well as the
3337         win32-production branch, though, but getting closer.
3338
3339         After this, need to add Archaeopteryx Software's OLE2 DND support.
3340
3341         * gdk/win32/gdkselection-win32.c (gdk_selection_owner_set,
3342         gdk_selection_send_notify, generate_selection_notify): Don't use
3343         SendMessage() to generate events for the same app, instead use
3344         gdk_event_put().
3345
3346         * gdk/win32/gdkprivate-win32.h
3347         * gdk/win32/gdkglobals-win32.c
3348         * gdk/win32/gdkmain-win32.c
3349         * gdk/win32/gdkevents-win32.c: Thus, remove declaration, definition,
3350         initialisation and handling of gdk_selection_notify_msg,
3351         gdk_selection_request_msg and gdk_selection_clear_msg. 
3352
3353         * gdk/win32/gdkselection-win32.c (gdk_text_property_to_text_list,
3354         gdk_free_text_list, gdk_string_to_compound_text,
3355         gdk_free_compound_text): Implement trivially, witrh a text_list
3356         always having a single element, and a compound text always
3357         consisting of just a single (UTF-8!) string. Let's see how well
3358         this works.
3359
3360         * gdk/win32/gdkselection-win32.c (gdk_selection_convert): Fix
3361         non-ASCII paste from the clipboard: Try getting the same formats
3362         from the Windows clipboard that gdk_property_change() puts there:
3363         CF_UNICODETEXT, UTF8_STRING or CF_TEXT+CF_LOCALE.
3364
3365         * gdk/win32/gdkproperty-win32.c (gdk_property_change): When
3366         storing text on the clipboard, handle non-ASCII text
3367         correctly. The logic is as follows:
3368
3369         If we have only ASCII characters, use CF_TEXT.
3370
3371         Else, if we are on NT, use CF_UNICODETEXT.
3372
3373         Else (we are on Win9x), if all the characters are present in the
3374         code page of some installed locale, use CF_TEXT and also set
3375         CF_LOCALE to that locale.
3376
3377         Else (still on Win9x) store as RTF. We use a very simple RTF
3378         string, just the text, no fonts or other crap, with the non-ASCII
3379         characters as Unicode \uN keywords. Additionally, also store the
3380         UTF-8 string as such, under the format "UTF8_STRING", so that GDK
3381         can also paste from the Clipboard what it has copied there. (Thus
3382         no need to implement any RTF parser.)
3383         
3384         (find_common_locale): New function, implements the search for a
3385         locale for case 3 above.
3386
3387         * gdk/win32/gdkglobals-win32.c: New global variables
3388         compound_text, text_uri_list, utf8_string, cf_rtf and
3389         cf_utf8_string.
3390
3391         * gdk/win32/gdkim-win32.c (_gdk_ucs2_to_utf8): New function,
3392         converts from a wchar_t string to UTF-8.
3393         (_gdk_utf8_to_ucs2): Rename from _gdk_win32_nmbstowchar_ts.
3394         (_gdk_utf8_to_wcs): Rename from gdk_nmbstowchar_ts.
3395
3396         * gdk/win32/gdkevents-win32.c (build_keypress_event): Use
3397         _gdk_ucs2_to_utf8().
3398
3399         * gdk/win32/gdkselection-win32.c: Remove some unnecessary logging.
3400
3401         * gdk/win32/gdkdnd-win32.c: Plug memory leaks, the
3402         gdk_drag_context_ref() was called unnecessarily in a couple of
3403         places, meaning drag contexts were never freed. The same memory
3404         leaks seem to be present in gdk/linux-fb/gdkselection-fb.c, BTW.
3405
3406         (gdk_drop_reply): For WIN32_DROPFILES drops, free the temporarily
3407         stored file list.
3408
3409         * gdk/win32/gdkselection-win32.c: Clarify the use of the
3410         sel_prop_table. Now it is used only for storing the GDK_SELECTION
3411         "properties".
3412
3413         The file names dropped with WM_DROPFILES -style DND is stored
3414         temporarily (between the drop and the target picking them up) in a
3415         separate place.
3416
3417         Have a separate hash table to map selection atoms to owner
3418         windows. This used to be quite mixed up.
3419
3420         (_gdk_dropfiles_store): New function, to store the dropped file
3421         list for the drop target to possibly fetch, and clear it
3422         afterwards, from gdk_drop_reply().
3423
3424         (gdk_selection_owner_get): Much simplified now.
3425
3426 2002-01-09  jacob berkman  <jacob@ximian.com>
3427
3428         * gtk/gtklayout.c (gtk_layout_style_set): set the background of
3429         our bin window also (fixes #58957)
3430
3431 Wed Jan  9 19:10:07 2002  Jonathan Blandford  <jrb@redhat.com>
3432
3433         * gtk/gtktreeselection.c
3434         (_gtk_tree_selection_internal_select_node): Now we test we can
3435         unselect nodes before selecting new ones.
3436         (gtk_tree_selection_real_select_node): be careful comparing booleans.
3437
3438 Wed Jan  9 21:31:44 2002  Kristian Rietveld  <kris@gtk.org>
3439
3440         * gtk/gtkliststore.c (gtk_list_store_sort): pass NULL to
3441         gtk_tree_model_rows_reordered and not an iter with user_data
3442         set to NULL (which is an invalid liststore iter, so
3443         iter_n_children failed, etc)
3444
3445 2002-01-09  Sven Neumann  <sven@gimp.org>
3446
3447         * tests/prop-editor.c: declared internal functions static.
3448         
3449 Wed Jan  9 11:13:12 2002  Owen Taylor  <otaylor@redhat.com>
3450
3451         * gtk/gtkmenuitem.c (_gtk_menu_item_refresh_accel_path): 
3452         Fix problem with menus without accel groups, such as the
3453         menus for option menus.
3454
3455         * gtk/gtkpaned.c (gtk_paned_expose): Only conditionalize
3456         drawing of handle on whether both children are visible,
3457         not the drawing of the other child!. (#68325, Diego Gonzalez)
3458
3459 Wed Jan  9 10:20:16 2002  Owen Taylor  <otaylor@redhat.com>
3460
3461         * gdk/x11/gdkdrawable-x11.c gdk/x11/gdkgc-c11.c: Check for
3462         RENDER before trying to use it... XRenderFindFormat() prints
3463         warnings if called when extension isn't present.
3464
3465 Wed Jan  9 15:20:40 2002  Tim Janik  <timj@gtk.org>
3466
3467         * gtk/gtkmenuitem.c (gtk_menu_item_parent_set): update the accel
3468         path upon parent changes.
3469
3470 Wed Jan  9 13:20:14 2002  Tim Janik  <timj@gtk.org>
3471
3472         * gtk/gtkviewport.c (gtk_viewport_size_allocate): small but important
3473         fix to force vadjustments at size_alocate time from Xavier Ordoquy
3474         <mcarkan@users.sourceforge.net>.
3475
3476 Wed Jan  9 11:23:39 2002  Tim Janik  <timj@gtk.org>
3477
3478         * gtk/gtklayout.c (gtk_layout_get_property): 
3479         * gtk/gtkspinbutton.c (gtk_spin_button_get_property): 
3480         * gtk/gtktreeview.c (gtk_tree_view_get_property): 
3481         * gtk/gtkwidget.c (gtk_widget_get_property): 
3482         * gtk/gtkfontsel.c (gtk_font_selection_get_property): 
3483         * gtk/gtkrange.c (gtk_range_get_property):
3484         * gtk/gtkviewport.c (gtk_viewport_get_property):
3485         * gtk/gtkprogressbar.c (gtk_progress_bar_get_property): don't cast a
3486         possible NULL pointer.
3487
3488 2002-01-08  Mike Kestner  <mkestner@speakeasy.net>
3489
3490         * gtk/gtkcelleditable.h : Use G_TYPE_INSTANCE_GET_INTERFACE.
3491         * gtk/gtktreednd.h : ditto.
3492         * gtk/gtktreemodel.h : ditto.
3493         * gtk/gtktreesortable.h : ditto.
3494         * gtk/gtkwidget.h : Don't reference incomplete _GdkRectangle type.
3495
3496 2002-01-08  Matthias Clasen  <matthiasc@poet.de>
3497
3498         * gtk/gtkplug.c, gtk/gtksocket.c: Speak of window IDs rather 
3499         than XIDs in the docs.
3500
3501         * gtk/gtkclipboard.c (gtk_clipboard_clear): Fix docs.
3502
3503 Tue Jan  8 18:39:23 2002  Jonathan Blandford  <jrb@redhat.com>
3504
3505         * gtk/gtktreedatalist.c (gtk_tree_data_list_compare_func): wow!
3506         Am I a moron or what 0 < 1 is not equivalent to strcmp ("a", "b")
3507
3508 Tue Jan  8 18:04:01 2002  Owen Taylor  <otaylor@redhat.com>
3509
3510         * gtk/gtktoolbar.c (gtk_toolbar_set_icon_size):
3511         Handle TOGGLE/RADIOBUTTON as well. (#68201,
3512         Damon Chaplin.)
3513
3514         * gtk/gtktoolbar.c (get_first_child): Fix stupid 
3515         bug, just introduced.
3516
3517 Tue Jan  8 15:53:28 2002  Owen Taylor  <otaylor@redhat.com>
3518
3519         * gtk/gtkdnd.c (gtk_drag_find_widget): Fix coordinate
3520         translations, once and for all.
3521
3522         * gtk/gtktextbuffer.c (paste_from_buffer): Free
3523         the ClipboardRequest structure. (#66198, HideToshi
3524         Tajima)
3525
3526 2002-01-08  jacob berkman  <jacob@ximian.com>
3527
3528         * gtk/gtklayout.c (gtk_layout_move_internal): queue a resize on
3529         the child rather than the layout. see bug #68263
3530
3531 Tue Jan  8 14:51:19 2002  Owen Taylor  <otaylor@redhat.com>
3532
3533         * gtk/gtkpaned.c (gtk_paned_expose): Don't draw
3534         the handle if we aren't showing both children.
3535         (#68135, Diego Gonzalez)
3536
3537 Tue Jan  8 14:45:43 2002  Owen Taylor  <otaylor@redhat.com>
3538
3539         * gtk/gtkwidget.c (gtk_widget_add_events): Fix
3540         leak of result of gtk_container_get_children().
3541
3542 Tue Jan  8 14:42:19 2002  Owen Taylor  <otaylor@redhat.com>
3543
3544         * gtk/gtktoolbar.c: Fix leaks of results of
3545         gtk_container_get_children(). (#68199, Damon Chaplin)
3546
3547 Tue Jan  8 14:19:43 2002  Owen Taylor  <otaylor@redhat.com>
3548
3549         * gtk/gtkcheckbutton.c (gtk_check_button_size_allocate): 
3550         Fix problem where child->requisition was accessed
3551         directly instead of calling get_child_requisition()
3552         (#68199, Damon Chaplin)
3553
3554 2001-01-08  James Henstridge  <james@daa.com.au>
3555
3556         * gtk/gtkstyle.c: add trailing */ on doc comment.
3557
3558 Mon Jan  7 22:19:32 2002  Owen Taylor  <otaylor@redhat.com>
3559
3560         * gdk/x11/gdkdrawable-x11.c (draw_with_pixmaps): Fix a
3561         problem where were the offset into the image was passed
3562         into convert_to_format() wrong.
3563
3564         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_pixbuf): Call
3565         gdk_x11_drawable_update_picture_clip () before using
3566         the picture; allow update_picture_clip() to take a NULL gc
3567         to mean no clipping.
3568
3569 2002-01-07  Matthias Clasen  <matthiasc@poet.de>
3570
3571         * gtk/gtksocket.c (gtk_socket_get_id): Doc typo fix. (#68172)
3572
3573         * gtk/gtktreemodel.c (gtk_tree_path_is_descendant): Fix docs.
3574
3575         * gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Document.
3576
3577         * gtk/gtkwindow.c (gtk_window_remove_accel_group): Fix docs.
3578
3579         * gtk/gtkrc.c (gtk_rc_get_style_by_paths),
3580         gtk/gtkwidget.c (gtk_widget_get_toplevel, 
3581         gtk_widget_push_composite_child), gtk/gtkdialog.c 
3582         (gtk_dialog_new_with_buttons, gtk_dialog_run): Keep gtk-doc
3583         from messing up the indentation of inline examples.     
3584
3585         * gtk/gtkmain.c, gtk/gtkrc.c: Consistently call g_getenv() 
3586         instead of getenv().
3587
3588         * gtk/gtktreemodel.c, gtk/gtkaccelgroup.c, gtk/gtkclipboard.c,
3589         gtk/gtkdnd.c, gtk/gtkiconfactory.c, gtk/gtkrc.c,
3590         gtk/gtkstyle.c, gtk/gtkselection.c: Doc fixes.
3591
3592         * gtk/gtkaccelmap.c (gtk_accel_map_add_filter,
3593         gtk_accel_map_foreach_unfiltered, gtk_accel_map_load_scanner):
3594         Document.
3595
3596 2002-01-07  Anders Carlsson  <andersca@gnu.org>
3597
3598         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): Remove
3599         unused pixels and rowstride variables.
3600         (gtk_cell_renderer_pixbuf_get_size): Check for non-NULL width.
3601
3602 Mon Jan  7 08:48:23 2002  Tim Janik  <timj@gtk.org>
3603
3604         * gtk/gtkdnd.c (gtk_drag_find_widget): don't forget to offset
3605         the pointer by x/y_offset into the new window when we found
3606         the drag destination.
3607
3608         * gtk/gtkaccelmap.c (internal_change_entry): fix return code
3609         for simulation when the entry already contains the required
3610         accel key and mod.
3611
3612 2002-01-06  Matthias Clasen  <matthiasc@poet.de>
3613  
3614         * docs/debugging.txt: Replace GTK_NO_CHECK_CASTS by 
3615         G_DISABLE_CAST_CHECKS.
3616
3617         * gtk/gtkaccelgroup.c (gtk_accel_group_from_accel_closure,
3618         gtk_accel_group_query, gtk_accel_group_find,
3619         gtk_accel_groups_from_object): Document.
3620
3621         * gtk/gtkaccellabel.c (gtk_accel_label_set_accel_closure): Document.
3622
3623 2002-01-04  Hans Breuer  <hans@breuer.org>
3624
3625         * gdk/gdkdraw.c gdk/gdkpixbuf-drawable.c : 
3626         need to cast image->mem away from void* to avoid 
3627         'error C2036: 'void *' : unknown size'. Doing pointer 
3628         arithmetics on void pointers is a GCCism afaik.
3629
3630         * gdk/gdkpixbuf-render.c : #include "gdkinternals.h" for
3631         _gdk_draw_pixbuf ()
3632
3633         * gdk/makefile.msc gdk/win32/makefile.msc 
3634         gdk/gtk/makefile.msc.in : use -FI msvc_recommended_pragmas.h
3635
3636         * gdk/win32/gdkdrawable-win32.c : use _gkd_win32_copy_to_image
3637         and take care of image->visual possibly NULL.
3638
3639         * gdk/win32/gdkimage-win32.c : implement _gdk_image_new_for_depth(),
3640         _gdk_win32_copy_to_image() and _gdk_windowing_bits_for_depth().
3641         Again take care of image->visual possibly NULL.
3642
3643         * gdk/win32/gdkprivate-win32.h : declare _gdk_win32_copy_to_image()
3644
3645         * gdk/win32/gdkevents-win32.c : use gdk_drawable_get_colormap
3646         instead of private field access
3647
3648         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_new) : adapt
3649         colormap setting to the gdk-X behaviour
3650
3651 2001-01-04  Matthias Clasen  <matthiasc@poet.de>
3652
3653         * gtk/gtkwidget.c: Documentation additions.
3654
3655 2001-01-04  Matthias Clasen  <matthiasc@poet.de>
3656
3657         * gtk/gtkobject.c (gtk_object_dispose): Fix a comment.
3658
3659         * gtk/gtkwidget.c (gtk_widget_set_sensitive): tiny docs change
3660
3661 2002-01-04  Havoc Pennington  <hp@pobox.com>
3662
3663         * gtk/gtkwidget.c (gtk_widget_set_sensitive): tiny docs change
3664         
3665 Fri Jan  4 13:05:15 2002  Owen Taylor  <otaylor@redhat.com>
3666
3667         * gtk/gtkdnd.c (gtk_drag_find_widget): At least
3668         don't infinite loop if the widget and window heirarchies
3669         don't correspond.
3670
3671         * gtk/gtkdnd.c (gtk_drag_find_widget): Handle changes
3672         in heirarchy in ::drag_motion, ::drag_drop callbacks
3673         by referencing child widget lists. (Patch from Tim)
3674
3675         * gtk/gtkdnd.c (gtk_drag_find_widget): Fix a problem
3676         with widgets where window.x != widget->allocation.x
3677
3678 Fri Jan  4 01:36:48 2002  Owen Taylor  <otaylor@redhat.com>
3679
3680         * gdk/x11/gdkdrawable-x11.c (convert_to_format): Optimize
3681         a little bit. (More for consistency than because it
3682         makes much of a difference.)
3683
3684 Thu Jan  3 22:18:15 2002  Owen Taylor  <otaylor@redhat.com>
3685
3686         * gdk/x11/gdkdrawable-x11.c gdk/x11/gdkprivate-x11.h
3687         (_gdk_x11_have_render): Private function to tell if we have RENDER
3688         extension.
3689
3690         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_get_fg_picture): Return
3691         None if we don't have RENDER extension.
3692
3693         * gdk/x11/gdkpango-x11.c (gdk_pango_context_get): Don't
3694         use Xft unless we have render extension.
3695
3696         * gdk/x11/gdkdrawable-x11.c (gdk_x11_drawable_get_picture):
3697         Handle missing render extension.
3698
3699         * gdk/gdkdraw.c gdk/gdkdrawable.h gdk/gdkpixmap.c gdk/gdkwindow.c
3700         gdk/gdkinternals.h: Add a private copy_to_image() virtual function
3701         to the GdkDrawable vtable that extends get_image() to allow
3702         copying onto existing images.  Make the default implementation of
3703         get_image() use this so that backends don't have to implement
3704         both. Add private wrapper _gdk_drawable_copy_to_image().
3705
3706         * gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.c
3707         gdk/x11/gdkdrawable-x11.c (_gdk_x11_copy_to_image): Implement
3708         copy_to_image() semantics, speed up by using ShmPixmaps and
3709         XCopyArea when possible, XFlush() after ungrabbing the server,
3710         generally redo the logic once again.
3711
3712         * gdk/gdkinternals.h gdk/x11/gdkimage-x11.c
3713         _gdk_windowing_bits_per_depth(): Function to convert from depth to
3714         bits-per-pixel. (We assume only one bpp per depth - X requires
3715         this.)
3716
3717         * gdk/gdkinternals.h gdk/gdkrgb.c gdk/gdkimage.c: Move the GdkRGB
3718         scratch image code into a generic _gdk_image_get_scratch() chunk
3719         of code that we can use other places we need scratch images.
3720
3721         * gdk/gdkimage.c gdk/x11/gdkimage.c gdk/gdkinternals.h:
3722         Add _gdk_image_new_for_depth() as the backend 
3723         to _gdk_image_new() to allowing creating images with
3724         a depth and no visual.
3725
3726         * gdk/gdkpixbuf-drawable.c: Fix so that getting 
3727         parts of images not at 0,0 actually works.
3728
3729         * gdk/gdkdrawable.h gdk/gdkinternals.h gdk/gdkdraw.c
3730         gdk/gdkwindow.c gdk/gdkpixmap.c gdk/gdkpixbuf-render.c: 
3731          - Add a new GdkDrawableClass vfunc _draw_pixbuf, and 
3732           _gdk_draw_pixbuf() [ will be made public later ], to allow 
3733           backends to accelerate drawing pixbufs. 
3734          - Move the implementation of gdk_pixbuf_render_to_drawable_alpha()
3735            to be the default implementation. 
3736          - Update docs for gdk_pixbuf_render_to_drawable_alpha(). 
3737          - Optimize the default implementation by using 
3738            _gdk_image_copy_to_pixmap() and scratch shared images, and
3739            special casing the compositing.
3740
3741         * gdk/x11/gdkdrawable-x11.c: Accelerate _gdk_draw_pixbuf()
3742         with alpha using the RENDER extension.
3743
3744         * gdk/gdkpixbuf-drawable.c (gdk_pixbuf_get_from_drawable):
3745         Optimize by _gdk_image_copy_to_pixmap() and scratch images.
3746
3747         * tests/testrgb.c: Add test for speed of alpha composition,
3748         reduce the number of iterations since alpha composition
3749         can be a bit slow.
3750
3751         * gdk/x11/gdkimage-x11.c gdk/gdkprivate-x11.h (_gdk_x11_image_get_shm_pixmap): 
3752         Private function to get a ShmPixmap for an image, if possible.
3753
3754 2002-01-04  Anders Carlsson  <andersca@gnu.org>
3755
3756         * tests/testtreesort.c: Add my cool list of integers.
3757
3758 Thu Dec 27 18:12:55 2001  Owen Taylor  <otaylor@redhat.com>
3759
3760         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Fix
3761         problem where retrieved atoms weren't properly returned.
3762
3763 2002-01-03  Anders Carlsson  <andersca@gnu.org>
3764
3765         * gtk/gtktextview.c (gtk_text_view_key_press_event): When
3766         tab is pressed and the text view isn't editable, 
3767         move the focus instead.
3768
3769         * gtk/gtkstyle.c (gtk_default_draw_focus): Free dash list if
3770         necessary.
3771
3772         * gtk/gtkhsv.c (gtk_hsv_get_focus_gc): Free dash list.
3773
3774         * gtk/gtkcolorsel.c (get_focus_gc): Free dash list.
3775
3776         * gtk/gtkdnd.c (set_icon_stock_pixbuf): Don't unref the mask
3777         if it's NULL.
3778
3779         * gtk/gtktreeview.c: Rename gtk_tree_view_queue_draw_node to
3780         _gtk_tree_view_queue_draw_node.
3781         (gtk_tree_view_row_has_child_toggled): Only redraw one node.
3782
3783         * gtk/gtktreesortable.c (gtk_tree_sortable_set_sort_func): 
3784         sort_column_id can be 0.
3785
3786         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node):
3787         Only redraw one the node being selected.
3788
3789         * gtk/gtktreeprivate.h: Add _gtk_tree_view_queue_draw_node.
3790         
3791 Wed Jan  2 23:09:06 2002  Tim Janik  <timj@gtk.org>
3792
3793         * gtk/gtkcontainer.c (_gtk_container_queue_resize): don't ignore
3794         realized but visible && !mapped resize containers (which is
3795         possible with unset CHILD_VISIBLE now).
3796
3797 2002-01-02  jacob berkman  <jacob@ximian.com>
3798
3799         * gtk/Makefile.am (LDFLAGS): automake still doesn't support
3800         libsomething_la_LDFLAGS, so fix the build again
3801
3802 2002-01-01  Havoc Pennington  <hp@pobox.com>
3803
3804         * gtk/gtktextview.c (gtk_text_view_expose_event): propagate
3805         exposes to no window children not in the buffer window.
3806         (gtk_text_view_class_init): add move_focus bindings for Ctrl-Tab
3807         - is this the right way to do it?
3808         (gtk_text_view_focus): add focus method, just chains up for now, 
3809         I'm not sure why the GtkContainer implementation doesn't work
3810
3811         * gtk/gtktextbtree.c (_gtk_text_btree_insert_child_anchor): fill
3812         in the text line for the child anchor segment
3813
3814         * tests/testtext.c (do_add_focus_children): add another test
3815         example (to put focusable buttons into the widget)
3816
3817 2002-01-01  Havoc Pennington  <hp@pobox.com>
3818
3819         * docs/README.linux-fb: note that this file is obsolete
3820
3821         * docs/Changes-2.0.txt, docs/Changes-1.2.txt: Add notes to these
3822         files that they should not be edited and look in the reference 
3823         manual instead. Probably these files should just be replaced by 
3824         the note, and their main contents deleted.
3825
3826         * gtk/gtktextview.c: docs
3827
3828         * gtk/gtktextmark.c: docs
3829
3830         * gtk/gtktextchild.c: docs
3831
3832         * gtk/gtktextbuffer.c: docs stuff
3833
3834         * gtk/gtkclipboard.c (gtk_clipboard_get): fool with docs to maybe
3835         give people more leads in sorting out PRIMARY vs. CLIPBOARD
3836
3837 2002-01-01  Tor Lillqvist  <tml@iki.fi>
3838
3839         * demos/Makefile.am (test-inline-pixbufs.h): Append EXEEXT to
3840         ../gdk-pixbuf/gdk-pixbuf-csource.
3841
3842 2001-12-31  Tor Lillqvist  <tml@iki.fi>
3843
3844         * gdk/win32/gdkgc-win32.c (predraw_set_foreground): Improved error
3845         handling.
3846         (gdk_win32_hdc_get,gdk_win32_hdc_release): Silence gcc -Wall.
3847
3848         * gdk/win32/gdkimage-win32.c (_gdk_win32_get_image): Silence gcc
3849         -Wall.  Use GDK_IS_PIXMAP_IMPL_WIN32 instead of GDK_IS_PIXMAP in
3850         one more place.
3851
3852         * gdk/win32/gdkinput-win32.c (_gdk_input_other_event): Silence gcc
3853         -Wall.
3854
3855         * gtk/Makefile.am (libgtk_win32_1_3_la_LDFLAGS): Add -lwsock32.
3856
3857 2002-01-01  Havoc Pennington  <hp@pobox.com>
3858
3859         * gtk/gtktextview.c (gtk_text_view_get_default_attributes): doc 
3860         fix
3861         
3862 2002-01-01  Havoc Pennington  <hp@pobox.com>
3863
3864         * gtk/gtktextview.c (changed_handler): Replace call to
3865         gtk_widget_size_request() that expected to actually compute the
3866         request with a direct use of widget_class->size_request, so we get
3867         our size request right; fixes remaining part of #63065 reported by
3868         Matthias Clasen
3869
3870 2001-12-31  Havoc Pennington  <hp@pobox.com>
3871
3872         * tests/testtext.c (do_insert_and_scroll): remove backward_char
3873         since we no longer have bogus newline
3874         (dialog_response_callback): remove another backward_char horkage, 
3875         reported by Matthias Clasen #63065
3876
3877 2001-12-31  Havoc Pennington  <hp@pobox.com>
3878
3879         * gtk/gtktextbtree.c (gtk_text_btree_node_view_check_consistency):
3880         fix an incorrect assertion that the "valid" flag is always correct
3881         in a node and add explanatory comment. This keeps me from 
3882         reproducing #59101, but I'm remembering that 59101 was actually 
3883         about incorrect pixel totals, so I'm not sure 59101 is actually 
3884         fixed. May just have stopped happening due to some change in 
3885         how C-k works.
3886
3887 2001-12-31  Havoc Pennington  <hp@pobox.com>
3888
3889         * gtk/gtktextview.c (gtk_text_view_start_selection_drag): extend
3890         selection if shift is down, bug #50939
3891         (gtk_text_view_button_press_event): add double/triple click
3892         selection to the current selection if shift is down
3893
3894 2001-12-31  Havoc Pennington  <hp@pobox.com>
3895
3896         * gtk/gtktextiter.c (gtk_text_iter_get_visible_line_index): fix 
3897         to use ensure_byte_offsets not ensure_char_offsets, patch 
3898         from Padraig O'Briain bug #67356
3899         
3900 2001-12-30  Havoc Pennington  <hp@pobox.com>
3901
3902         * gtk/gtkdialog.h (GtkDialogFlags): fix GtkDialogFlags to have 
3903         the right values, reported by Jeff Franks
3904
3905 2001-12-30  Matthias Clasen  <matthiasc@poet.de>
3906
3907         * gtk/gtkwindow.c, gtk/gtkimcontextsimple.c: Minor documentation tweaks.
3908
3909 2001-12-28  Matthias Clasen  <matthiasc@poet.de>
3910
3911         * gdk/x11/gdkproperty-x11.c, gdk/x11/gdkselection-x11.c: 
3912         Minor documentation tweaks.
3913
3914 2001-12-28  Tor Lillqvist  <tml@iki.fi>
3915
3916         * gdk/win32/gdkfont-win32.c: Use G_N_ELEMENTS().
3917         (unicode_classify): Don't return -1 on encountering an
3918         unclassified character, but play it safe and return U_BASIC_LATIN.
3919
3920 Thu Dec 27 16:05:30 2001  Owen Taylor  <otaylor@redhat.com>
3921
3922         * gtk/gtkarrow.c gtk/gtkimage.c gtkpixmap.c: Make interpretation
3923         of misc->xpad/ypad consistent with GtkLabel. Do 
3924         directional flipping when interpreting misc->xalign/yalign.
3925         Fix off-by-one error for negative x,y. (#67472, reported
3926         by Mathieu Lacage)
3927
3928 Thu Dec 27 15:45:41 2001  Owen Taylor  <otaylor@redhat.com>
3929
3930         * gtk/gtkwidget.c (gtk_widget_set_style_internal):
3931         Remove optimization that was causing problems because
3932         we called gtk_widget_size_request() before we called
3933         gtk_widget_queue_resize() so RESIZE_NEEDED was not
3934         set. Optimization shouldn't mattter now that we
3935         are smart about needlessly size requesting or allocating
3936         widgets. (#67598, reported by Jacob Berkman)
3937
3938 Thu Dec 27 15:38:20 2001  Owen Taylor  <otaylor@redhat.com>
3939
3940         * gtk/gtkmenu.c (gtk_menu_stop_navigating_submenu_cb):
3941         Call gdk_window_get_pointer() on menu->bin_window not
3942         menu->window, so we get the correct window for the
3943         menu item. (#65213, Guillermo S. Romero)
3944
3945 Thu Dec 27 15:13:44 2001  Owen Taylor  <otaylor@redhat.com>
3946
3947         * gtk/gtkmenu.c (gtk_menu_set_title): Allow unsetting
3948         the title by setting to NULL. Move docs inline. 
3949         Update the title if the tearoff window already
3950         exists. Code cleanup. (Fixes #65190, reported by
3951         Vitaly Tishkov.)
3952
3953 Thu Dec 27 14:04:22 2001  Owen Taylor  <otaylor@redhat.com>
3954
3955         * gtk/gtksocket.c (gtk_socket_key_press_event): 
3956         gtk/gtkplug.c (gtk_plug_key_press_event): Don't do
3957         special handling of key presses unless we are doing 
3958         iter-app embedding. (Fixes #67590, Anders Carlsson)
3959
3960 Thu Dec 27 16:37:04 2001  Kristian Rietveld  <kris@gtk.org>
3961
3962         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_deleted),
3963         (gtk_tree_model_sort_sort_level),
3964         (gtk_tree_model_sort_insert_value): fix a few places where
3965         I was confused between modelsort iters and other iters. This was
3966         really going to happen someday ;)
3967
3968 Wed Dec 26 23:41:41 2001  Kristian Rietveld  <kris@gtk.org>
3969
3970         * gtk/gtktreeview.c (gtk_tree_view_rows_reordered): ensure
3971         we are unprelighted before reordering
3972
3973         * gtk/gtktreemodel.c (gtk_tree_row_ref_reordered_callback): we
3974         need to break out of the for loop, not return (this fixed
3975         the 'selection freeze' bug).
3976
3977         * gtk/gtktreemodelsort.c: more fixage and cleanups. It seems to
3978         be pretty stable now, though it still needs some more code
3979         cleanups.
3980
3981 Wed Dec 26 12:32:31 2001  Owen Taylor  <otaylor@redhat.com>
3982
3983         * docs/Changes-2.0.txt: Document the fact that
3984         gtk_paned_set_handle_size() has been removed.
3985
3986         * gtk/gtkpaned.h Remove gtk_paned_handle_size() compat macro, 
3987         since it pointed to gtk_paned_set_handle_size(), which
3988         was removed. (#66760, Matt Wilson)
3989
3990 Wed Dec 26 12:28:24 2001  Owen Taylor  <otaylor@redhat.com>
3991
3992         * gtk/gtkdnd.c (gtk_drag_highlight): Connect 
3993         gtk_drag_hightlight_expose _after_, so it works with
3994         widgets that paint there entire background. (#66735)
3995
3996 Wed Dec 26 12:17:06 2001  Owen Taylor  <otaylor@redhat.com>
3997
3998         * gtk/gtkplug.c (gtk_plug_size_allocate): Assign the
3999         allocation to widget->allocation. (Fixes #67290,
4000         Chris Phelps.)
4001
4002 Wed Dec 26 11:49:01 2001  Owen Taylor  <otaylor@redhat.com>
4003
4004         (#67542, reported by Anders Carlsson)
4005         
4006         * gtk/gtkstyle.c (gtk_style_real_init_from_rc): Merge
4007         rc_style->font_desc with defaul style instead of replacing
4008         it.
4009
4010         * gtk/gtkrc.c (gtk_rc_style_real_merge): Allow partial
4011         font descriptions in RC styles by calling
4012         pango_font_description_merge(). 
4013
4014 2001-12-24  James Henstridge  <james@daa.com.au>
4015
4016         * gtk/gtkdialog.h (doc comment): s/<!>/<!-- -->/ to make the doc
4017         valid with both SGML and XML.
4018
4019 Sat Dec 22 12:38:03 2001  Owen Taylor  <otaylor@redhat.com>
4020
4021         * configure.in: 1.3.12, interface, binary age 0.
4022
4023         * configure.in: Require new versions of Glib, Pango, ATK.
4024
4025         * NEWS: Updated.
4026
4027         * configure.in: Make explicit what libtool we are executing.
4028         (Tomas Ogren)
4029
4030         * gdk/gdkcolor.c gdk/gdkgc.c gdk/gdkwindow.c: Doc fixes.
4031
4032         * gtk/gtkwidget.c (gtk_widget_[class]path) gtkrc.h : Fix 
4033         parameter names for docs.
4034
4035 Sat Dec 22 22:35:29 2001  Owen Taylor  <otaylor@redhat.com>
4036
4037         * gtk/gtkwindow.c (gtk_window_realize) 
4038           gtk/gtkplug.c (gtk_plug_realize): Include GDK_KEY_RELEASE_MASK.
4039
4040         * gtk/gtkentry.c (gtk_entry_key_release)
4041           gtk/gtktextview.c (gtk_text_view_key_release_event): Pass
4042         key release events to the input method.
4043
4044         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): 
4045         Handle release of Control/Shift to end hex sequence.
4046
4047         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_filter_keypress): 
4048         Handle key releases as well as presses.
4049
4050 2001-12-21  Matthias Clasen  <matthiasc@poet.de>
4051
4052         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): Trivial doc adjustment.
4053
4054         * gtk/gtklabel.c (gtk_label_new_with_mnemonic),
4055         gtk/gtkbutton.c (gtk_button_new_with_mnemonic): More precise
4056         documentation about underscores and mnemonics. (#66380)
4057
4058         * gtk/gtktextiter.c (gtk_text_iter_backward_word_starts): Fix
4059         cyclic reference in docs.
4060
4061         * gtk/gtklabel.c (gtk_label_set_justify): Correct documentation
4062         of default value. (#65402)
4063
4064         * gtk/gtkmain.c (gtk_set_locale, gtk_disable_set_locale): 
4065         Markup fixes.
4066
4067 2001-12-20  Anders Carlsson  <andersca@gnu.org>
4068
4069         * gtk/gtktreeview.c (gtk_tree_view_realize): Don't call
4070         map here.
4071
4072 Tue Dec 18 16:15:55 2001  Owen Taylor  <otaylor@redhat.com>
4073
4074         * gdk/gdkgc.h: Explicitely deprecate gdk_gc_set_font()
4075         (reported by Jeff Franks.)
4076
4077 Tue Dec 18 16:07:28 2001  Owen Taylor  <otaylor@redhat.com>
4078
4079         * gdk/gdkkeys.h (struct _GdkKeymapClass): Fix 
4080         prototype for direction_changed. (Reported by
4081         Jeff Franks.)
4082
4083 2001-12-18  Padraig O'Briain <padraig.obriain@sun.com>
4084
4085         * gtk/gtktreeview.c (gtk_tree_view_get_expander_column):
4086         Fix typo (list->data becomes list->next)
4087
4088 2001-12-06  Havoc Pennington  <hp@redhat.com>
4089
4090         Add Unicode control char menu, based on patch from Dov.
4091         Bug #63495
4092         
4093         * gtk/gtkentry.c (gtk_entry_commit_cb): share code via
4094         gtk_entry_enter_text
4095         (gtk_entry_enter_text): function to do "typing in text"
4096         (popup_targets_received): add the Unicode menu items
4097
4098         * gtk/gtktextview.c (popup_targets_received): add missing mnemonic
4099         on Input Methods item, and add the unicode menu items.
4100
4101         * gtk/gtktextutil.h, gtk/gtktextutil.c: private utilities to be
4102         used in GtkEntry and GtkTextView - may become public later.     
4103
4104 2001-12-16  Kjartan Maraas  <kmaraas@gnome.org>
4105
4106         * gtk/gtkprogressbar.c: Fix a typo.
4107         * gtk/gtkpaned.c: Fix a typo.
4108         
4109 2001-12-15  Darin Adler  <darin@bentspoon.com>
4110
4111         Fix some warnings.
4112
4113         * gdk/x11/gdkproperty-x11.c: (gdk_property_get): Fix wrong type in
4114         g_new -- bug if sizeof (GtkAtom) != sizeof (GtkAtom *).
4115         * gdk/x11/gdkwindow-x11.c: (create_moveresize_window): FALSE -> NULL
4116         * gtk/gtkaccellabel.c: (gtk_accel_label_refetch): Remove unused local.
4117         * gtk/gtklistitem.c: (gtk_list_item_expose): Remove unused local.
4118         * gtk/gtktextiter.c: (_gtk_text_iter_backward_indexable_segment):
4119         Restructure loop to get rid of uninitialized variable warning. Also
4120         gives a tiny efficiency gain.
4121
4122 2001-12-15  Murray Cumming  <murrayc@usa.net>
4123
4124         * Fixed first arg type of GtkScale's "format_value" signal's
4125         function pointer.
4126
4127 2001-12-14            Vitaly Tishkov       tvv@sparc.spb.su
4128         docs/reference/gtk/tmpl/gtkcelleditable.sgml
4129                 gtkcelleditable -> GtkCellEditable
4130         docs/reference/gtk/tmpl/gtktreesortable.sgml
4131                 gtktreesortable -> GtkTreeSortable
4132
4133 2001-12-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
4134
4135         * demos/testpixbuf-drawable.c, demos/testpixbuf-save.c,
4136         demos/testpixbuf-scale.c, demos/testpixbuf.c: Call g_object_ref
4137         and g_object_unref instead of gdk_pixbuf_ref and gdk_pixbuf_unref
4138         resp.
4139
4140 Thu Dec 13 22:02:41 2001  Kristian Rietveld   <kris@gtk.org>
4141
4142         * gtk/gtktreeview.c (validate_visible_area): free path
4143         at the end
4144
4145 2001-12-13  Matthias Clasen  <matthiasc@poet.de>
4146
4147         * gtk/gtkdialog.c, gtk/gtkrc.c, gtk/gtkwidget.c: Markup fixes.
4148
4149 Thu Dec 13 20:37:27 2001  Kristian Rietveld  <kris@gtk.org>
4150
4151         * gtk/gtktreeview.c (gtk_tree_view_button_press): do not try
4152         to find the clicked node in the tree when tree == NULL
4153
4154 2001-12-13  Anders Carlsson  <andersca@gnu.org>
4155
4156         * gtk/gtktreeview.c (gtk_tree_view_button_press): Compare 
4157         event->state with the default mod mask. 
4158
4159 2001-12-12  jacob berkman  <jacob@ximian.com>
4160
4161         * gtk/gtk*.h (GTK_IS_*_CLASS): s/obj/klass/ where appropriate
4162
4163 Wed Dec 12 17:22:45 2001  Owen Taylor  <otaylor@redhat.com>
4164
4165         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_slave):
4166         Reset the existing slave before removing it to give
4167         it a chance to commit and emit "preedit_changed" 
4168         in case there was still a preedit string.
4169
4170 2001-12-12  Matthias Clasen  <matthiasc@poet.de>
4171         
4172         * gtk/gtktextlayout.c: Typo fixes
4173         * gtk/gtkwindow.c (gtk_window_set_position): Typo fix. (#66746)
4174
4175         * gtk/gtkwidget.c (gtk_widget_send_expose, gtk_widget_get_toplevel, 
4176         gtk_widget_get_default_direction): Doc fixes. (#66727, #66737, #66744)
4177
4178         * gtk/gtkstyle.h (GTK_STYLE_NUM_STYLECOLORS): Remove. (#66467)
4179
4180 Wed Dec 12 16:43:10 2001  Jonathan Blandford  <jrb@redhat.com>
4181
4182         * gtk/gtktreeview.c (gtk_tree_view_unrealize): Remove
4183         validate_rows_timer in unrealize.  Reported by Matthew Wilson.
4184
4185 Wed Dec 12 16:18:26 2001  Owen Taylor  <otaylor@redhat.com>
4186
4187         * gtk/gtkmenu.c (gtk_menu_realize): Remove support for
4188         "prepainting" the menu before realizing other than
4189         via gtk_style_set_background() - this was broken when
4190         we added menu scroll support.
4191
4192         * gtk/gtkmenu.c (gtk_menu_paint): Pay attention to the
4193         window in the expose event -- fixes problem with border
4194         flashing during scrolling.
4195
4196 Wed Dec 12 15:11:49 2001  Owen Taylor  <otaylor@redhat.com>
4197
4198         * gtk/gtksettings.c (gtk_settings_get_property): Support
4199         using names/nicks for the gdk_settings values for enum valued
4200         types. (#57678, reported by Anders Carlsson)
4201
4202 Wed Dec 12 15:01:33 2001  Jonathan Blandford  <jrb@redhat.com>
4203
4204         * gtk/gtknotebook.c (gtk_notebook_set_tab_label): keep in sync
4205         with insert_page_menu.  Code duplication is bad.
4206
4207         * gtk/gtklabel.c (gtk_label_mnemonic_activate): Whoops -- got the
4208         wrong fix yesterday.
4209
4210 Wed Dec 12 14:27:30 2001  Owen Taylor  <otaylor@redhat.com>
4211
4212         * gtk/gtkmenubar.c (window_key_press_handler): Fix check for
4213         modifiers.
4214
4215 2001-12-12  James Henstridge  <james@daa.com.au>
4216
4217         * gtk/gtkmenu.c (gtk_menu_key_press): check GTK_MENU_ITEM
4218         (menu_item)->accel_path first when looking up the accel path.
4219
4220 Tue Dec 11 19:18:21 2001  Owen Taylor  <otaylor@redhat.com>
4221
4222         * tests/testgtk.c (layout_expose_handler): Only draw
4223         for events on the bin window.
4224
4225 Tue Dec 11 18:55:16 2001  Jonathan Blandford  <jrb@redhat.com>
4226
4227         * gtk/gtklabel.c (gtk_label_mnemonic_activate): Small fix to let
4228         mnemonics work with notebooks.
4229
4230 Tue Dec 11 15:25:06 2001  Jonathan Blandford  <jrb@redhat.com>
4231
4232         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): Change
4233         bin_window to be located at y=TREE_VIEW_HEADER_HEIGHT(tree_view).
4234         Makes some flicker while scrolling go away.
4235
4236 2001-12-11  Michael Natterer  <mitch@gimp.org>
4237
4238         * demos/testpixbuf-save.c: added new keyboard shortcut 'a' which
4239         adds alpha to the pixbuf; re-load the saved pixbuf and
4240         pixel-by-pixel compare it with the original one.
4241
4242 Tue Dec 11 15:39:08 2001  Soeren Sandmann  <sandmann@daimi.au.dk>
4243
4244         * ChangeLog: Fix wrong ChangeLog entry
4245         * gtk/gtkstyle.c (gtk_default_draw_shadow_gap): Fix drawing of top
4246         right corner
4247
4248 2001-12-10  jacob berkman  <jacob@ximian.com>
4249
4250         * gdk/x11/gdkinput-xfree.c (_gdk_input_grab_pointer): 
4251         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab): 
4252         (gdk_keyboard_grab): do not grab things if the nograb debug flag
4253         is set
4254
4255         * gdk/gdkinternals.h: 
4256         * gdk/gdk.c: add nograbs debug flag to disable grabs of the
4257         keyboard / mouse
4258
4259 Mon Dec 10 19:42:29 2001  Jonathan Blandford  <jrb@redhat.com>
4260
4261         * gtk/gtktreeview.c (validate_rows_handler): stupid bug where I
4262         didn't reset the timer.
4263
4264 2001-12-10  Matthias Clasen  <matthiasc@poet.de>
4265
4266         * gtk/gtkcontainer.c (gtk_container_child_type): Close comment.
4267
4268 2001-12-09  Matthias Clasen  <matthiasc@poet.de>
4269
4270         * gtk/gtkviewport.c: Add docs.
4271
4272 Mon Dec 10 16:21:38 2001  Jonathan Blandford  <jrb@redhat.com>
4273
4274         * gtk/gtkrbtree.c (_fixup_parity): New function to fixup parity.
4275         RBTree corruption bug--
4276
4277 2001-12-10  Anders Carlsson  <andersca@gnu.org>
4278
4279         * gtk/gtktreeview.c (gtk_tree_view_remove_widget): Return
4280         if edited_column is NULL, also grab focus before removing
4281         the cell_editable.
4282
4283 Sun Dec 09 15:06:51 2001  George Lebl <jirka@5z.com>
4284
4285         * gtk/gtkrange.c (gtk_range_calc_layout): check for 0 value on the
4286           denominator in the horizontal case just like we do in the vertical
4287           case (why I didn't notice that there were two cases the first time
4288           around is beyond me:).  Also fix indentation in the vertical case.
4289
4290 2001-12-09  Anders Carlsson  <andersca@gnu.org>
4291
4292         * gdk/x11/gdkevents-x11.c: Update xsettings name.
4293
4294         * gtk/gtkdnd.c (gtk_drag_check_threshold): Use the
4295         gtk-dnd-drag-threshold GtkSetting.
4296
4297         * gtk/gtksettings.c (gtk_settings_class_init): Add 
4298         setting for dnd drag threshold.
4299
4300 2001-12-09  Matthias Clasen  <matthiasc@poet.de>
4301
4302         * gtk/gtkcontainer.c: Add docs.
4303
4304 2001-12-08  Matthias Clasen  <matthiasc@poet.de>
4305
4306         * gtk/gtkwidget.c: Doc markup fix. 
4307
4308         * gtk/gtktreeviewcolumn.c: Markup fixes. (#66447)
4309
4310         * gtk/gtktreestore.c: Typo fixes. (#66445)
4311
4312         * gtk/gtkaccelgroup.c: Misc doc markup. (#66425) 
4313
4314         * gtk/gtkclipboard.c (gtk_clipboard_get_owner): Fix reference
4315         to gtk_clipboard_set_with_owner(). (#66424)
4316  
4317 Sat Dec  8 16:12:10 2001  Christopher Blizzard  <blizzard@redhat.com>
4318
4319         * gdk/gdk.c (gdk_init_check): Fallback to setting the prgname to
4320         "<unknown>" if someone doesn't pass in a valid argc.  (Patch from
4321         Fabrice Bellet <fabrice@gnu.org>, #54127).
4322
4323 Sat Dec  8 10:04:54 2001  Jonathan Blandford  <jrb@redhat.com>
4324
4325         * gtk/gtkrbtree.c (_gtk_rbtree_debug_spew): Add debug spew to lots
4326         of places, so that people with crashy trees can just run their
4327         program with GTK_DEBUG=TREE.
4328
4329 Sat Dec  8 20:57:24 2001  Kristian Rietveld  <kristian@planet.nl>
4330
4331         * gtk/gtkliststore.c (gtk_list_store_remove): nuke the stamp++,
4332         per jrb's request
4333
4334 2001-12-08  Anders Carlsson  <andersca@gnu.org>
4335
4336         * tests/testgtk.c (layout_expose_handler): Don't return TRUE
4337         since then the default GtkLayout expose handler won't be called.
4338
4339 Fri Dec  7 23:42:50 2001  Jonathan Blandford  <jrb@redhat.com>
4340
4341         * gtk/gtktreeview.c (validate_rows_handler): remove
4342         g_return_if_fail.
4343
4344         * gtk/gtktreeview.c (validate_visible_area): Patch from Manish
4345         Singh <yosh@gimp.org> to fix bug when rendering Tree with an
4346         empty model.
4347
4348 Fri Dec  7 20:06:14 2001  Jonathan Blandford  <jrb@redhat.com>
4349
4350         * gtk/gtktreeview.c (validate_visible_area): get logic right,
4351         #66249
4352
4353         * gtk/gtkrbtree.c (_gtk_rbtree_remove_node): fix bug where
4354         removing a node ended up with a corrupt tree.  Really really nasty
4355         bug.
4356         (_gtk_rbtree_debug_spew): new debug helper function
4357         (_fixup_validation): new inline function to clean up code
4358         readability a lot. 
4359
4360 Fri Dec  7 19:34:51 2001  Owen Taylor  <otaylor@redhat.com>
4361
4362         * gtk/gtktoolbar.c (gtk_toolbar_insert_element):
4363         Close comment.
4364
4365 2001-12-07  Matthias Clasen  <matthiasc@poet.de>
4366
4367         * gtk/gtkstyle.h: Typo fixes.
4368
4369         * gtk/gtkstyle.c, gtk/gtktoolbar.c: Add docs.
4370
4371         * gtk/gtkrc.c (gtk_rc_find_pixmap_in_path): Fix docs.
4372
4373 Fri Dec  7 16:05:22 2001  Owen Taylor  <otaylor@redhat.com>
4374
4375         * modules/input/gtkimcontextxim.c: Display the XIM
4376         status callbacks with a popup window. (Patch from
4377         HideToshi Tajima, #50628, somewhat modified.)
4378
4379 Fri Dec  7 12:07:15 2001  Tim Janik  <timj@gtk.org>
4380
4381         * gtk/Makefile.am: each source generation rule needs to use its own
4382         temporary file, to avoid clashes for parallel builds. fixed rules
4383         for gtkmarshalers.h and gtkmarshalers.c to use their own temp files.
4384
4385 2001-12-07  Havoc Pennington  <hp@pobox.com>
4386
4387         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new): fix up my list of
4388         "cursors that are actually useful" in gdk_cursor_new() docs
4389
4390 Thu Dec  6 23:09:21 2001  Owen Taylor  <otaylor@redhat.com>
4391
4392         * gtk/gtk[hv]paned.c (gtk_[hv]paned_size_allocate): Fix errors
4393         in computing the size of the second child.
4394
4395 Thu Dec  6 16:50:17 2001  Owen Taylor  <otaylor@redhat.com>
4396
4397         * gtk/gtkrange.c: Make button 1 clicks on the trough
4398         do pages, button 3 steps. (Patch from Hans Breuer
4399         #63735)
4400
4401 2001-12-06  Matthias Clasen  <matthiasc@poet.de>
4402
4403         * gtk/gtklabel.c: Fix docs. (#66383)
4404
4405         * gtk/gtkbbox.c (gtk_button_box_set_child_secondary): Fix docs. 
4406         (#66278, #66280)
4407         
4408         * gdk/gdkwindow.h (gdk_window_get_deskrelative_origin),
4409         gdk/gdkimage.h (gdk_image_get): Deprecate. (#66208)
4410
4411         * gtk/gtkcolorsel.c (gtk_color_selection_set_update_policy):
4412         Don't emit a g_warning() about being deprecated. (#66208)       
4413
4414         * gtk/gtkaccellabel.c (gtk_accel_label_set_accel_widget): Add docs.
4415
4416         * gtk/gtkcontainer.c: Doc fixes.
4417         
4418         * gtk/gtkliststore.c (gtk_list_store_clear): Add docs; misc doc fixes.
4419
4420         * gtk/gtkstyle.c (gtk_style_attach): Add docs.
4421
4422 2001-12-05  Sven Neumann  <sven@gimp.org>
4423
4424         * gtk/gtkwidget.c (gtk_widget_reset_shapes): close comment.
4425
4426         * gtk/queryimmodules.c: g_dir_read_name() returns const.
4427
4428 Tue Dec  4 21:46:13 2001  HideToshi Tajima  <hidetoshi.tajima@sun.com>
4429
4430         * gtk/gtktreeprivate.h: restore the else case of #ifdef __GNUC__
4431         #66225
4432         
4433 2001-12-04  Manish Singh  <yosh@gimp.org>
4434
4435         * gtk/gtkmain.c
4436         * gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
4437         a gpointer.
4438
4439         * gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
4440         correction to docs.
4441
4442         * demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
4443
4444 2001-12-04  Havoc Pennington  <hp@redhat.com>
4445
4446         * gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
4447         g_assert_not_reached() that was bogus, since we demand-create the
4448         tag info. reported by Chris Phelps
4449
4450         Jump through assorted hoops to fix bug from Chris Phelps where 
4451         removing tags from the table resulted in btree trying to 
4452         access tag->table
4453         
4454         * gtk/gtktextbuffer.c: set up mechanics of adding/removing 
4455         ourselves to the tag table
4456
4457         * gtk/gtktexttagtable.c (_gtk_text_tag_table_add_buffer) 
4458         (_gtk_text_tag_table_remove_buffer): private cruft to 
4459         let us notify buffer of disappearing tags
4460
4461         * gtk/gtktexttag.h: remove BTreeNode typedef from this public
4462         header, put it in tagprivate    
4463
4464         * gtk/gtktextbtree.c (_gtk_text_btree_new): don't connect to
4465         tag_removed; it's emitted too late.
4466         (_gtk_text_btree_notify_will_remove_tag): rename tag_remove_cb to
4467         this
4468
4469         Padding for ABI-compat expansion
4470         
4471         * gtk/gtktexttag.h (struct _GtkTextAttributes): pad this
4472         (struct _GtkTextAppearance): one pad in here too
4473
4474         * gtk/gtktextlayout.h (struct _GtkTextLayoutClass): padding here
4475
4476         * gtk/gtktextview.h (struct _GtkTextViewClass): more padding,
4477         since action signals etc. seem pretty likely
4478
4479         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): padding
4480
4481         * gtk/gtktexttag.h (struct _GtkTextTagClass): padding
4482
4483         * gtk/gtktexttagtable.h (struct _GtkTextTagTableClass): padding
4484
4485 2001-12-04  Matthias Clasen  <matthiasc@poet.de>
4486
4487         * gdk/gdkcolor.h (gdk_colormap_change): Deprecate. (#65851)
4488
4489         * gdk/gdktypes.h (GdkKeyInfo): Remove. (#66025)
4490
4491         * gtk/gtkwindow.c, gtk/gtkwidget.c: Add docs, markup fixes.
4492
4493 Tue Dec  4 18:51:44 2001  Jonathan Blandford  <jrb@redhat.com>
4494
4495         * gtk/gtktreeviewcolumn.h: remove gtk_tree_view_column_cell_event,
4496         #62084.
4497
4498 Tue Dec  4 18:38:35 2001  Jonathan Blandford  <jrb@redhat.com>
4499
4500         * demos/gtk-demo/main.c: (create_tree): Minor fix.
4501
4502         * docs/tree-column-sizing.txt: Update
4503
4504         * gtk/gtkrbtree.[ch]: Massive work to support validation.
4505
4506         * gtk/gtktreemodel.c: Doc fixes.
4507
4508         * gtk/gtktreeview.c: Incremental reflow added.
4509         * gtk/gtktreeviewcolumn.c: ditto
4510         * gtk/gtktreeviewcolumn.h: ditto
4511
4512 2001-12-04  Havoc Pennington  <hp@redhat.com>
4513         
4514         * gtk/gtktexttag.c (gtk_text_tag_set_property): add a warning for
4515         "invisible" property, #65999
4516
4517 2001-12-04  Matt Wilson  <msw@redhat.com>
4518
4519         * gtk/gtktreestore.c (gtk_tree_store_insert): fixed docs
4520
4521 Tue Dec  4 12:16:31 2001  Owen Taylor  <otaylor@redhat.com>
4522
4523         * gtk/gtksettings.c (gtk_settings_set_property_value):
4524         Simplify, make more efficient and fix memory leak
4525         when turning quark into a string. (#66103, HideToshi
4526         Tajima)
4527
4528         * gtk/gtkcolorsel.c: Ref and sink priv->tooltips in
4529         init() and unref priv->tooltips in destroy rather
4530         than calling gtk_object_destroy() which has no
4531         effect on memory management. (#66104, HideToshi
4532         Tajima)
4533
4534         * gtk/gtkcolorsel.c (palette_set_color): Use g_object_set_data_full()
4535         so we free the when the object is freed. (Fixes memory
4536         leak, #66096, HideToshi Tajima)
4537
4538         * gdk/gdkevents.c (gdk_synthesize_window_state): Use 
4539         a full GdkEvent structure to avoid reads of uninitialized/
4540         invalid memory in gdk_event_put() (#65877, patch
4541         from Hidetoshi Tajima)
4542
4543 Tue Dec  4 11:06:54 2001  Owen Taylor  <otaylor@redhat.com>
4544
4545         * gtk/gtkmenuitem.c: Revert my last mistaken change - 
4546         toggle-size-request doesn't take a requisition.
4547
4548         * gtk/gtkmenuitem.c (gtk_menu_item_class_init): Fix
4549         reference to marshaler that no longer exists.
4550
4551 Mon Dec  3 16:39:17 2001  Owen Taylor  <otaylor@redhat.com>
4552
4553         Patch from Bill Haneman (with many modifications) to make
4554         the focus color work on dark themes and to make the
4555         focus line width configurable. (#61079, #63074)
4556
4557         * gtk/gtkwidget.c: Add style properties, 
4558         ::focus-widget, ::focus-line-width, and ::focus-padding.
4559
4560         * gtk/gtkstyle.[ch]: Make gtk_paint_focus() take a 
4561         state argument as well so we can use fg[STATE] to
4562         draw instead of always drawing with black. 
4563         Cange paint_focus() to respect GtkWidget::focus-width
4564         and GtkWidget::focus-line-pattern. Fix continuity
4565         problem where the default 1-1 stipple had a blob
4566         in one corner and a gap in the other. Change the
4567         interpretation of x/y/width/height to be the bounding
4568         box of the focus rect instead of the rectangle
4569         passed to gdk_draw_rectangle.
4570
4571         * gtk/gtkcheckbutton.c gtk/gtklistitem.c gtk/gtknotebook.c 
4572         gtk/gtkoptionmenu.c gtk/gtkradiobutton.c gtk/gtkspinbutton.c 
4573         gtk/gtktextview.c gtk/gtktreeview.c: Handle ::focus-width 
4574         and ::focus-line-padding.
4575
4576         * gtk/gtkentry.c: Handle :;focus-width property; cleanup
4577         and remove duplicated code; fix drawing of focus rectangle
4578         when interior-focus = FALSE. (#63072, #63073)
4579
4580         * gtk/gtkrange.c gtk/gtktext.c gtk/gtktreeitem.c
4581         gtk/gtktreeviewcolumn.c: Basic fixups to make compile;
4582         Range and TreeViewColumn will need more extensive fixing.
4583
4584         * gtk/gtkcolorsel.c: Honor focus line attributes when
4585         drawing the focus on the color swatches. (#63071)
4586
4587         * gtk/gtkhsv.c: Honor focus line attributes when
4588         drawing the focus for the ring and triangle.
4589
4590         * docs/widget_geometry.txt: Start at documenting how 
4591         various widgets are drawn.
4592
4593         * gtk/gtkbutton.c (_gtk_button_paint): Export 
4594         _gtk_button_paint() librarywide, so we don't have 
4595         duplicate a bunch of code in gtktogglebutton.c.
4596
4597         * gtk/gtktogglebutton.c: Use _gtk_button_paint().
4598
4599 Mon Dec  3 21:04:13 2001  Jonathan Blandford  <jrb@redhat.com>
4600
4601         * gtk/gtkmarshalers.list: remove VOID:BOXED,POINTER and
4602         NONE:POINTER.
4603
4604 2001-12-03  Alex Larsson  <alexl@redhat.com>
4605
4606         * gtk/gtkaccellabel.c:
4607         * gtk/gtkarrow.c:
4608         * gtk/gtkcolorsel.c:
4609         * gtk/gtkcontainer.c:
4610         * gtk/gtklabel.c:
4611         * gtk/gtktextview.c:
4612         * gtk/gtktogglebutton.c:
4613         * gtk/gtktreeview.c:
4614         * gtk/gtkwindow.c:
4615         Return FALSE from expose handlers.
4616
4617 Mon Dec  3 21:15:59 2001  Kristian Rietveld  <kris@gtk.org>
4618
4619         * gtk/gtktreedatalist.c (_gtk_tree_data_list_value_to_node): if
4620         we use pointers, we should free the previous pointer first (if
4621         it exists), before we set a new pointer. (#64726)
4622
4623         * gtk/gtktreeprivate.h: get rid of cursor_drag
4624
4625         * gtk/gtktreeview.c (gtk_tree_view_unrealize): remove check     
4626         for cursor_drag
4627         (gtk_tree_view_bin_expose): don't directly return in the while
4628         loop
4629         (gtk_tree_view_class_init): indentend expanders by default
4630         (gtk_tree_view_header_focus): only give the button focus
4631         if it's clickable, visible and the column is reorderable
4632         (#65539)
4633
4634         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_realize_button):
4635         create and free cursor
4636
4637 Mon Dec  3 10:23:07 2001  Owen Taylor  <otaylor@redhat.com>
4638
4639         * gtk/gtkcalendar.c (gtk_calendar_size_request): Fix
4640         some bugs with size requisition. (From Bill Haneman)
4641
4642         * gtk/gtkcalendar.c: Draw headers and selection in 
4643         base/text[SELECTED] instead of fg/bg[SELECTED].
4644
4645         * gtk/gtkcalendar.c: Miscellaneous cleanups to drawing
4646         code and formatting.
4647
4648 2001-12-03  Havoc Pennington  <hp@pobox.com>
4649
4650         * gtk/gtktextview.c (set_window_height): 
4651         (set_window_width): Hmm, setter functions normally assign the new
4652         value to the object field. Reported by Chris Phelps.
4653
4654 2001-11-30  jacob berkman  <jacob@ximian.com>
4655
4656         * gtk/gtknotebook.c (gtk_notebook_remove_tab_label): set the
4657         signal id to 0 after we disconnect from it
4658
4659 2001-11-30  Matthias Clasen  <matthiasc@poet.de>
4660
4661         * gdk/gdkdrawable.h (gdk_drawable_ref, gdk_drawable_unref),
4662         gdk/gdkcolor.h (gdk_colormap_ref, gdk_colormap_unref),
4663         gdk/gdkdnd.h (gdk_drag_context_ref, gdk_drag_context_unref),
4664         gdk/gdkgc.h (gdk_gc_ref, gdk_gc_unref):  Deprecate.
4665
4666         * gdk/gdkvisual.h: Use GDK_DISABLE_DEPRECATED, not 
4667         GTK_DISABLE_DEPRECATED.
4668
4669         * gdk/gdkcolor.c (gdk_colormap_ref, gdk_colormap_unref),
4670         gdk/gdkgc.c (gdk_gc_ref, gdk_gc_unref): Document.
4671
4672 Fri Nov 30 16:37:01 2001  Owen Taylor  <otaylor@redhat.com>
4673
4674         * gtk/gtkcombo.c (gtk_combo_popup_list): Sanitize
4675         move/resize code, removing various bad, non-functional
4676         hacks. (Fixes #65048, reported by Damon Chaplin.)
4677
4678 Fri Nov 30 16:12:21 2001  Owen Taylor  <otaylor@redhat.com>
4679
4680         * gdk/gdkpango.c: Patch from Hidetoshi Tajima to fix 
4681         bad match error when target drawable is not the 
4682         same depth as the root window. (#65841)
4683
4684         * HACKING: Update.
4685
4686 2001-11-29  Matthias Clasen  <matthiasc@poet.de>
4687
4688         * gdk/gdkwindow.c: Typo fix.
4689
4690 Thu Nov 29 21:35:56 2001  Kristian Rietveld  <kristian@planet.nl>
4691
4692         * gtk/gtkmenu.c (gtk_menu_motion_notify): add checks for
4693         empty menu items to behave like insensitive items (#59456)
4694
4695         * gtk/gtkmenuitem.c (gtk_real_menu_item_activate_item): select
4696         next item if the first item in the menu is a tear off item
4697         (#59456-2, suggestion by Matthias Clasen)
4698
4699         * gtk/gtkmenushell.c (gtk_menu_shell_button_press),
4700         (gtk_menu_shell_button_release), (gtk_menu_shell_entry_notify),
4701         (gtk_menu_shell_leave_notify), (gtk_real_menu_shell_move_current),
4702         (gtk_real_menu_shell_activate_current): add check, so empty
4703         menu items behave like insensitive items (#59456)
4704         
4705         * gtk/gtkmenuitem.[ch]: add _gtk_menu_item_is_selectable to make
4706         the checks more readable ...
4707         
4708         * gtk/gtkmenushell.c (gtk_menu_shell_button_press),
4709         (gtk_menu_shell_button_release): causes the menu to dropdown if the
4710         caption is clicked again (#64977)
4711
4712 2001-11-29  Havoc Pennington  <hp@redhat.com>
4713
4714         * gtk/gtktextiter.c (_gtk_text_iter_forward_indexable_segment):
4715         assertion here that we were at the end iterator was not correct;
4716         change code to move us to the end iterator. bug #65731
4717
4718 Wed Nov 28 20:05:44 2001  Owen Taylor  <otaylor@redhat.com>
4719
4720         * gtk/gtkaccellabel.c (gtk_accel_label_refetch): Remove 
4721         improper use of g_locale_to_utf8() to convert from
4722         latin-1, and do it the easy way by building the string
4723         correctly in the first place.
4724
4725 Wed Nov 28 19:34:15 2001  Owen Taylor  <otaylor@redhat.com>
4726
4727         * gdk/x11/gdkproperty-x11.c (gdk_property_change, gdk_property_get): 
4728         Convert atoms to and from atoms for properties of type XA_ATOM.
4729         (#65555, patch from Hidetoshi Tajima)
4730
4731 Wed Nov 28 18:37:04 2001  Owen Taylor  <otaylor@redhat.com>
4732
4733         * gtk/gtksocket.[ch] (gtk_socket_add_id): Rename 'id' parameter 
4734         to avoid problems with Objective C.
4735
4736 2001-11-28  Matthias Clasen  <matthiasc@poet.de>
4737         
4738         * gtk/gtkaccelmap.c: Typo fixes. (#65607)
4739
4740         * gtk/gtkfixed.c (gtk_fixed_set_has_window, gtk_fixed_get_has_window):
4741         Fix docs. (#65505)
4742
4743         * gtk/gtkwindow.c (gtk_window_set_mnemnonic_modifier): Document.
4744
4745 Wed Nov 28 18:19:12 2001  Owen Taylor  <otaylor@redhat.com>
4746
4747         * gtk/gtkmenu.c (gtk_menu_set_tearoff_hints): Move
4748         accounting of menu->tearoff_scrollbar width to here
4749         and make sure we have the correct requisition.
4750
4751         * gtk/gtkmenu.c (gtk_menu_position): Fix fixme
4752         by using gtk_window_move().
4753
4754         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Force
4755         the requisition to be updated by calling
4756         gtk_widget_size_request() (#65440)
4757
4758         * gtk/gtktearoffmenuitem.c (gtk_tearoff_menu_item_activate): 
4759         queue resize before calling gtk_menu_set_tearoff_state().
4760
4761 Wed Nov 28 22:20:44 2001  Kristian Rietveld  <kristian@planet.nl>
4762
4763         * demos/gtk-demo/editable_cells.c: fix typo
4764
4765         * demos/gtk-demo/list_store.c (add_columns): remove call to
4766         gtk_tree_view_column_set_clickable which didn't make sense
4767
4768 2001-11-28  Havoc Pennington  <hp@redhat.com>
4769
4770         * gtk/gtktextview.c (gtk_text_view_paint): put the warning
4771         explaining the validation error in front of the G_BREAKPOINT
4772
4773         * gtk/gtkrange.c (gtk_range_adjustment_value_changed): call
4774         process updates with include_children = FALSE instead of TRUE, so
4775         we redraw the range only, not the whole darn window.  Making
4776         GtkRange a NO_WINDOW widget had weirdly caused the text widget
4777         Trace/breakpoint trap bug to become much easier to trigger.
4778
4779 Wed Nov 28 14:12:03 2001  Owen Taylor  <otaylor@redhat.com>
4780
4781         * gdk/Makefile.am (gdk_public_h_sources): Remove reference
4782         to gdkcursors.h.
4783
4784 2001-11-28  Matthias Clasen  <matthiasc@poet.de>
4785
4786         * gtk/gtkwindow.c (gtk_window_move): Add markup to docs.
4787
4788         * gdk/gdkcursor.h: Directly include the contents
4789         of gdkcursors.h in the GdkCursorType enum.
4790
4791         * gdk/gdkcursors.h: Deleted.
4792
4793         * gdk/gdkkeysyms.h: Remove XFree86-specific keysyms, add 
4794         header boilerplate.
4795
4796         * gdk/Makefile.am: Remove the X-derived-headers rule.
4797
4798 Tue Nov 27 20:17:55 2001  Owen Taylor  <otaylor@redhat.com>
4799
4800         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_activate):
4801         Notify on the ::active property _here_, not in
4802         gtk_check_menu_item_set_active.
4803
4804 Mon Nov 26 19:11:18 2001  Jonathan Blandford  <jrb@redhat.com>
4805
4806         * gtk/gtkcellrendererpixbuf.c
4807         (gtk_cell_renderer_pixbuf_class_init): add 2 properties
4808         (PIXBUF_EXPANDER_OPEN and PIXBUF_EXPANDER_CLOSED)
4809
4810 Sun Nov 25 21:19:02 2001  Owen Taylor  <otaylor@redhat.com>
4811
4812         * gdk/x11/gdkgeometry-x11.c: Add long, but horribly sketchy
4813         comment about what is going on in this file.
4814
4815         * gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix 
4816         x/y problem.
4817
4818 Sun Nov 25 18:59:19 2001  Owen Taylor  <otaylor@redhat.com>
4819
4820         * gtk/gtkoptionmenu.c (gtk_option_menu_calc_size): 
4821         Calculate size based on the _child_ of the menu item,
4822         not the menuitem. (#65005, Damon Chaplin)
4823
4824         * gtk/gtklistitem.c (gtk_list_item_new_with_label): Add
4825         some extra vertical padding to the label widget ... restores
4826         GTK+-1.2 spacing. (#65085, Damon Chaplin.)
4827
4828 2001-11-26  Tor Lillqvist  <tml@iki.fi>
4829
4830         * demos/pixbuf-demo.c
4831         * demos/gtk-demo/pixbufs.c: M_PI -> G_PI.
4832
4833         * demos/gtk-demo/main.c (read_line): No flockfile() or
4834         getc_unlocked() on Win32.
4835
4836 2001-11-25  Tor Lillqvist  <tml@iki.fi>
4837
4838         * configure.in
4839         * acconfig.h: As we now use GDir, no need to check for dirent.h.
4840
4841 Sun Nov 25 23:18:39 2001  Kristian Rietveld  <kristian@planet.nl>
4842
4843         * gtk/gtktexttag.c (gtk_text_tag_set_property): free font_desc
4844         when finished (#65266)
4845
4846 Sun Nov 25 23:16:29 2001  Kristian Rietveld  <kristian@planet.nl>
4847
4848         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): free
4849         data after we set the property. (#65264)
4850
4851 Sun Nov 25 23:14:06 2001  Kristian Rietveld  <kristian@planet.nl>
4852
4853         * gtk/gtkbutton.c: add destroy method so label_text gets freed
4854         if it has been allocated (#65268)
4855
4856 Sat Nov 24 13:39:51 2001  Manish Singh  <yosh@gimp.org>
4857
4858         * gdk/linux-fb/gdkdrawable-fb2.c
4859         * gdk/linux-fb/gdkpango-fb.c: update to latest Pango API
4860
4861         * gdk/linux-fb/gdkwindow-fb.c: implement gdk_window_show_unraised
4862
4863         * gdk/linux-fb/gdkfont-fb.c (gdk_font_load): plug memleak on
4864         set_family
4865         
4866         * gdk/linux-fb/gdkfbswitch.c: minor cleanups
4867
4868 Sat Nov 24 22:05:27 2001  Kristian Rietveld  <kristian@planet.nl>
4869
4870         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): don't
4871         deactivate menu when menu_item isn't sensitive (#61389)
4872
4873 Sat Nov 24 15:35:26 2001  Kristian Rietveld  <kristian@planet.nl>
4874
4875         * gtk/gtktreemodel.c (gtk_tree_model_foreach): free path before
4876         we return (in case of a failure here)
4877
4878 Fri Nov 23 19:22:50 2001  Owen Taylor  <otaylor@redhat.com>
4879
4880         * gtk/gtknotebook.c: Handle events in windows other
4881         than widget->event_window properly. (#65079, reported
4882         by Damon Chaplin)
4883
4884         * gdk/gdkevents.c (gdk_event_get_coords): Fix x/y bug.
4885
4886 Fri Nov 23 18:57:46 2001  Owen Taylor  <otaylor@redhat.com>
4887
4888         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): Align
4889         the image at the top. (#65020, request from Seth Nickell)
4890
4891 Fri Nov 23 18:49:53 2001  Owen Taylor  <otaylor@redhat.com>
4892
4893         * gtk/{gtkclist,gtkctree.c} (draw_row): Remove some strange
4894         arithmetic that was resulting in rows being drawn too low.
4895         (#65001, reported by Damon Chaplin)
4896
4897 Fri Nov 23 18:36:42 2001  Owen Taylor  <otaylor@redhat.com>
4898
4899         * gtk/gtkrange.c (gtk_range_button_press): Offset 
4900         invalidated range correctly.
4901
4902         * gtk/gtkclist.c (hadjustment_value_changed): Fix scrolling 
4903         of title window. (#65001, reported by Damon Chaplin)
4904
4905         * gtk/gtkcombo.c (gtk_combo_button_event_after): Replace
4906         horrible hack with use of ::event_after.
4907
4908 Thu Nov 22 15:01:03 2001  Owen Taylor  <otaylor@redhat.com>
4909
4910         * Version 1.3.11
4911
4912         * configure.in (ATK_REQUIRED_VERSION): Require
4913         GLib-1.3.11, Pango-0.22, ATK-0.7.
4914
4915         * tests/prop-editor.c (property_widget): Restore
4916         to working as well as it did before.
4917
4918         * gtk/gtklistitem.h: Mark deprecated since it is
4919         an integral part of GtkList.
4920
4921         * demos/gtk-demo/demo-common.h: New header file,
4922         for a common functions not important to the meat
4923         of the demos.
4924         
4925         * demos/gtk-demo/main.c (demo_ifind_file): Add a utility
4926         function to search for a file used by the demo.
4927
4928         * demos/*.c: Use demo_find_file.
4929
4930 2001-11-23  Matthias Clasen  <matthiasc@poet.de>
4931
4932         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag),
4933         gtk/gtkruler.c (gtk_ruler_get_metric): Actually commit typo 
4934         fixes already mentioned in ChangeLog entry on 2001-11-14.
4935
4936         * docs/reference/gtk/tmpl/drawing.sgml: Minor markup fixes.
4937
4938 2001-11-23  Hans Breuer  <hans@breuer.org>
4939
4940         * gdk/win32/gdkfont-win32.c (gdk_font_from_description) : 
4941         reflect Pango API change
4942
4943         * gtk/gtk.def : updated externals
4944
4945         * gtk/gtkfixed.c (gtk_fixed_get_has_window) : use 
4946         g_return_val_if_fail() to avoid 'function must return a value'
4947
4948         * gtk/gtkrc.c : added spaces to fix small coding style issues
4949         * gtk/gtkwidget.c : ... and linebreaks. Also a static for
4950         'static correctness'
4951
4952         * gtk/makefile.msc.in : temporary(?) disable gtk<plug|socket>
4953         because they only can be build on win32 after applying my patch
4954
4955 Wed Nov 21 22:55:37 2001  Tim Janik  <timj@gtk.org>
4956
4957         * gtk/gtkbutton.c (gtk_button_map): raise event window afte
4958         children, in order for the input pnly window to stay *above*
4959         children.
4960
4961 Wed Nov 21 22:44:27 2001  Tim Janik  <timj@gtk.org>
4962
4963         * tests/testtreeview.c: make hackery worse ;) by checking fundamental
4964         type walks againts G_TYPE_FUNDAMENTAL_MAX.
4965         
4966         * tests/prop-editor.c: disable type hackery.
4967
4968 Wed Nov 21 17:41:39 2001  Owen Taylor  <otaylor@redhat.com>
4969
4970         * gdk/gdkimage.c (gdk_image_get): Fix problem with
4971         lost parameter.
4972
4973 Wed Nov 21 17:01:25 2001  Owen Taylor  <otaylor@redhat.com>
4974
4975         * gtk/gtkcellrenderer.h gtk/gtktreemodel.h 
4976         gtk/gtktreeprivate.h gtk/gtktreesortable.h: Remove
4977         trailing commas in enum declarations.
4978
4979 Wed Nov 21 15:21:26 2001  Owen Taylor  <otaylor@redhat.com>
4980
4981         * configure.in (GTK_MICRO_VERSION): Version 1.3.11, 
4982         interface, binary age 0.
4983
4984         * NEWS: Updates
4985
4986         * gtk/gtktreemodel.c gtk/gtkrc.c gtk/gtkentry.c: SGML
4987         fixes in docs.
4988
4989         * gtk/gtkmain.h: Remove unused and misnamespaced
4990         get_gtk_win32_directory() prototype.
4991
4992         * gdk/gdkimage.c (gdk_image_get): Fix parameter names
4993         to match header.
4994
4995         * gdk/gdkwindow.h: Fix parameters to gdk_window_shape_combine_mask(),
4996         gdk_window_set_transient_for(), gdk_window_set_geometry_hints(),
4997         to match docs.
4998
4999         * gdk/gdkevents.c (gdk_event_get_coords)
5000           gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_get_active)
5001           gtk/gtkdnd.c (gtk_drag_set_icon_stock):
5002         Fix parameter names in docs.
5003         
5004         * docs/faq/Makefile.am (FAQ_FILES): Add missing files.
5005         (#64961, Akira Tagoh)
5006
5007 Wed Nov 21 11:41:29 2001  Owen Taylor  <otaylor@redhat.com>
5008
5009         * tests/testgtk.c (create_tooltips): Ref-sink the tooltips object.
5010
5011         * gtk/gtktoolbar.c (gtk_toolbar_init): Ref-sink the tooltips object.
5012
5013         * gtk/gtkfilesel.c (open_new_dir): Fix some constness warnings.
5014
5015         * gtk/gtkaccelgroup.c: Rename gtk_accel_groups_from_acceleratable()
5016         back to gtk_accel_groups_from_object(), change @acceleratable
5017         parameter to gtk_accel_groups_activate() accordingly.
5018
5019         * gtk/gtkaccelmap.c (gtk_accel_map_lookup_entry): Remove
5020         left-over comment about quark return.
5021
5022         * gtk/gtkaccelmap.h: Fix spelling of gtk_accel_map_foreach_unfiltered().
5023
5024         * gtk/gtk-boxed.defs (GtkIconSource): added as a boxed type.
5025         (Patch from Matt Wilson)
5026
5027         * gtk/gtkobject.c (gtk_object_finalize): Warn if a floating
5028         object is finalized.
5029
5030 Tue Nov 20 21:25:08 2001  Tim Janik  <timj@gtk.org>
5031
5032         * applied patch from owen to get rid of accel map notifiers.
5033         changed things to fix reentrancy and API as discussed on gtk-devel.
5034
5035         * gtk/gtkaccelgroup.[hc]:
5036         (gtk_accel_group_finalize): unregister this accel group from all
5037         accel map paths.
5038         (accel_closure_invalidate): handle invalidation of closures by
5039         disconnecting their accelerators.
5040         (quick_accel_add): move closure connection and changed notification
5041         into this function to reduce code duplication. don't emit change
5042         notification on closurers without accelerators.
5043         (quick_accel_remove): rewrite, do the exact opposite of quick_accel_add
5044         for a GtkAccelGroupEntry.
5045         (gtk_accel_group_connect): get rid of the accel_path_quark argument.
5046         (gtk_accel_group_connect_by_path): new function to add accelerators
5047         with an accel path.
5048         (gtk_accel_group_disconnect_closure): new function, disconnect a
5049         closure from of an accel group.
5050         (gtk_accel_group_disconnect): loop over all closure for a accel_ley,
5051         accel_mods pair and remove them.
5052         (_gtk_accel_group_reconnect): new function that basically does
5053         gtk_accel_group_disconnect_closure() and
5054         gtk_accel_group_connect_by_path() once an accel path changed.
5055         (gtk_accel_groups_disconnect_closure): remove this, there's
5056         gtk_accel_group_disconnect_closure().
5057         
5058         * gtk/gtkaccelmap.[hc]: keep list of accel groups per entry now,
5059         nuke notifiers.
5060         (_gtk_accel_path_is_valid): make this non-static for
5061         gtkwidget.c and gtkaccelgroup.c assertions.
5062         (gtk_accel_map_add_notifer): removed this function.
5063         (gtk_accel_map_remove_notifer): same.
5064         (_gtk_accel_map_add_group):
5065         (_gtk_accel_map_remove_group): (un-)register accel groups, with
5066         accel paths for correct propagation.
5067         (gtk_accel_map_add_entry): return void.
5068         (gtk_accel_map_lookup): return gboolean instead of GQuark.
5069         
5070         * gtk/gtkitemfactory.c (gtk_item_factory_add_foreign): always
5071         set accel_path on widgets.
5072         
5073         * gtk/gtkwidget.[hc]:
5074         (accel_path_changed): got rid of this, changes are handled by
5075         accel maps internally now.
5076         (_gtk_widget_set_accel_path): get things to work without notifiers.
5077         (gtk_widget_list_accel_closures): list accel closures of a widget.
5078         
5079         * gtk/gtkwindow.[hc]: rename ::accels_changed, to ::keys_changed.
5080
5081 2001-11-20  Matthias Clasen  <matthiasc@poet.de>
5082
5083         * gtk/gtkcontainer.c (gtk_container_propagate_expose): Typo fix.
5084
5085 Tue Nov 20 23:01:01 2001  Kristian Rietveld  <kristian@planet.nl>
5086
5087         * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path):
5088         replace gboolean free_last in the function parameters with
5089         gint depth. Changes to reflect new situation.
5090
5091         * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path_helper):
5092         replace gboolean free_last, with gint depth, add gint current_depth.
5093         Changes to reflect new situation.
5094
5095         * gtk/gtktreemodel.c (gtk_tree_row_ref_deleted_callback): changes
5096         to reflect new situation
5097
5098         * gtk/gtktreemodel.c (gtk_tree_row_reference_free): ditto
5099
5100 Tue Nov 20 12:37:10 2001  Owen Taylor  <otaylor@redhat.com>
5101
5102         * gtk/gtknotebook.c (gtk_notebook_paint): Fix problem
5103         where notebook gap was double shifted by allocation.x/y
5104
5105         * gtk/gtknotebook.c (gtk_notebook_unmap): Chain up
5106         to unmap children.
5107
5108 Tue Nov 20 14:49:59 2001  Tim Janik  <timj@gtk.org>
5109
5110         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): fix
5111         allocation to be relative to paned->allocation, now
5112         that this is a NO_WINDOW widget.
5113         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): same here.
5114
5115         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): ::closure
5116         needs to be a boxed property.
5117
5118 Mon Nov 19 17:34:40 2001  Owen Taylor  <otaylor@redhat.com>
5119
5120         * gtk/gtkradiobutton.c (gtk_radio_button_draw_indicator):
5121         Use the widget's state when drawing the indicator, as
5122         in GtkCheckButton. This gives us color changes for
5123         un-prelighted checkbuttons. (#63308, Matt Wilson)
5124
5125 Mon Nov 19 17:11:23 2001  Owen Taylor  <otaylor@redhat.com>
5126
5127         (Fixes related to #64428, Michael Meeks)
5128
5129         * gtk/gtkplug.c (gtk_plug_set_is_child): Unmap the
5130         widget, so it gets mapped again properly when we
5131         add to a parent.
5132
5133         * gtk/gtkplug.c (_gtk_plug_add_to_socket): Set
5134         plug->socket_window. 
5135
5136         * gtk/gtkplug.c (_gtk_plug_remove_from_socket): Set
5137         socket_window to NULL, not FALSE.
5138
5139         * gtk/gtkplug.c (_gtk_plug_add_to_socket): Set
5140         socket->same_app to TRUE. (#64612)
5141
5142 Mon Nov 19 15:50:41 2001  Owen Taylor  <otaylor@redhat.com>
5143
5144         * gtk/gtkfixed.[ch] docs/Changes-2.0.txt: Add 
5145         gtk_fixed_set/get_has_window() to remove criticism
5146         about GTK_WIDGET_SET_FLAGS() hacks.
5147
5148 2001-11-19  Michael Natterer  <mitch@gimp.org>
5149
5150         * gtk/gtknotebook.c: show notebook->event_window with
5151         gdk_window_show_unraised(), so it doesn't catch the events which
5152         should go to the tab widgets first.
5153
5154 Mon Nov 19 15:30:51 2001  Jonathan Blandford  <jrb@redhat.com>
5155
5156         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): Add a
5157         "resizable" property, to get rid of the
5158         GTK_TREE_VIEW_COLUMN_RESIZABLE sizing flag.
5159         (gtk_tree_view_column_set_resizable): New function to set resizable.
5160         (gtk_tree_view_column_set_resizable): getter.
5161
5162         * tests/testtreecolumns.c (add_clicked): modify for above change.
5163
5164         * Makefile.am (install-data-hook): remove old .pc files before
5165         installing the new one.  We used to symlink this, and it will
5166         break old installs.
5167
5168 2001-11-19  Havoc Pennington  <hp@pobox.com>
5169
5170         * tests/testtext.c (fill_example_buffer): put in a test for
5171         negative indentation values
5172
5173 Mon Nov 19 14:08:18 2001  Owen Taylor  <otaylor@redhat.com>
5174
5175         * gtk/gtklabel.c (gtk_label_init): Change default for
5176         justify to GTK_JUSTIFY_LEFT. Assuming that multiline
5177         labels are most often wrapped labels, this gives better
5178         compatibility with GTK+-1.2, where justification was
5179         ignored for wrapped labesl and is a more sensible
5180         default in any case. (#64489)
5181
5182         * gtk/gtklabel.c (gtk_label_class_init): Fix default
5183         for wrap property to FALSE.
5184
5185 2001-11-19  jacob berkman  <jacob@ximian.com>
5186
5187         * gtk/Makefile.am (gtk_extra_sources): add gtkmarshal.list
5188
5189 Mon Nov 19 13:56:45 2001  Owen Taylor  <otaylor@redhat.com>
5190
5191         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): Use 
5192         RevertToParent, not RevertToNone. (#64613, 
5193         Matthias Clasen)
5194
5195 Mon Nov 19 12:28:02 2001  Owen Taylor  <otaylor@redhat.com>
5196
5197         * gtk/gtkframe.c (gtk_frame_class_init): label_xalign
5198         and label_yalign need to be float properties to
5199         correspond to GTK+-1.2, to gtk_frame_set_label_align,
5200         and to the types of the xalign and yalign properties of GtkMisc.
5201         (#63484, Vitaly Tishkov)
5202
5203 Mon Nov 19 12:24:30 2001  Owen Taylor  <otaylor@redhat.com>
5204
5205         * gtk/gtksocket.h (struct _GtkSocketClass): Fix return
5206         of plug_added vfunc. (#64408, Jeff Franks)
5207
5208 Mon Nov 19 12:07:20 2001  Owen Taylor  <otaylor@redhat.com>
5209
5210         * configure.in (deps): Undef HAVE_STDLIB_H before
5211         checking for jpeg, because jconfig.h has this
5212         in it too (%#$@!). Fix from Matthias Clasen, #64500.
5213
5214 Mon Nov 19 11:30:03 2001  Owen Taylor  <otaylor@redhat.com>
5215
5216         * gdk/x11/gdkproperty-x11.c (get_atom_name): Fix a 
5217         memory leak when retrieving atom names. (Michael Meeks,
5218         #64508)
5219
5220 2001-11-18  Alex Larsson  <alexl@redhat.com>
5221
5222         * gdk/x11/gdkfont-x11.c (gdk_font_from_description):
5223         Update to new Pango API.
5224         
5225 Sun Nov 18 19:47:29 2001  Owen Taylor  <otaylor@redhat.com>
5226
5227         * gtk/gtkobject.h docs/Changes-2.0.txt: Rename the
5228         GTK_DESTROYED flag to GTK_IN_DESTRUCTION, remove the
5229         GTK_OBJECT_DESTROYED() check macro.
5230
5231         * gtk/gtkbindings.c (gtk_bindings_activate): Remove
5232         instances of GTK_OBJECT_DESTROYED() that weren't
5233         needed any more.
5234
5235         * gtk/gtkdialog.c: Exchange use of GTK_OBJECT_DESTROYED
5236         for a connection to ::destroy.
5237
5238 Sun Nov 18 18:18:11 2001  Owen Taylor  <otaylor@redhat.com>
5239
5240         * gtk/gtkfixed.c: Make a NO_WINDOW widget, as it should
5241         have been since the beginning, but as special hack,
5242         allow clearing the NO_WINDOW flag to get a window widget.
5243
5244 Sun Nov 18 22:01:36  Kristian Rietveld  <kristian@planet.nl>
5245
5246         * gtk/gtktreestore.c: return TRUE when value changed, so
5247         row_changed is being emitted
5248
5249 2001-11-18  Hans Breuer  <hans@breuer.org>
5250
5251         * gtk/gdkaccelmap.c : make it compile with msvc: !HAVE_UNISTD_H;
5252         no label without op, even if it's a no-op.
5253
5254         * gtk/gtk.def :
5255         * gtk/makefile.msc.in : reflect marshaler split, some clean-up  
5256
5257         * config.h.win32.in : remove definition of HAVE_DIRENT_H
5258         * gtk/gtkfilesel.c : due to GDir (new in glib) DIR isn't
5259         required anymore, replace it.
5260         * gtk/queryimmodules.c : DIR -> GDir replacement, also
5261         getcwd() -> g_get_current_dir()
5262
5263         * gdk/win32/gdkgeometry-win32.c : adapt to refactored gdkgeometry-x11.c
5264         Even 'noisy laugh' scolling appears to work, though I still can't
5265         claim to have fully understood what it is supposed to do ...
5266
5267 Sat Nov 17 21:07:46 2001  Owen Taylor  <otaylor@redhat.com>
5268
5269         * gtk/gtkenums.h: Include glib-object.h instead of
5270         gobject/gsignal.h
5271
5272         * gdk/{gdkinternals.h,gdkwindow.c,gdkwindow.[ch],
5273           x11,{fb,win32,x11/gdkwindow-*.c}: Add a dummy GdkScreen
5274         argument to the window_at_pointer() field of
5275         GdkPointerHooks. (Patch from Erwann Chenede)
5276
5277         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Up
5278         to 6 pointers.
5279
5280 2001-11-17  Matt Wilson  <msw@redhat.com>
5281
5282         * gtk/gtkenums.h: must include glib-object.h only
5283
5284 Sat Nov 17 19:26:20 2001  Owen Taylor  <otaylor@redhat.com>
5285
5286         * gtk/gtkwindow.c (gtk_window_key_press_event): Reprioritize
5287         key bindings in order of visibility - mnemonics, then 
5288         accelerators, then send key to the focus widget, then
5289         bindings on the GtkWindow.
5290
5291         * gtk/gtklayout.h docs/Changes-2.0.txt tests/testgtk.c: 
5292         Removed the xoffset, yoffset fields of GtkLayout which were
5293         identically zero for compat with 1.2, but were no longer 
5294         compatible with all uses of these fields in 1.2.
5295
5296         * gtk/gtkwindow.c (gtk_window_set_default): Remove 
5297         unused variable.
5298
5299 Sat Nov 17 19:08:13 2001  Owen Taylor  <otaylor@redhat.com>
5300
5301         * tests/testtreeview.c (gtk_tree_model_types_get_type): 
5302         We no longer need to create the signals here ... they
5303         come from the interface.
5304
5305         * gtk/maketypes.awk: Use GType, not GtkType in output.
5306
5307         * gtk/gtktypeutils.h: Mark virtually all of this
5308         file deprecated.
5309
5310         * gtk/gtkcontainer.h: Deprecate gtk_container_foreach_full;
5311         the only use of this function is the GtkArg using
5312         GtkCallbackMarshal, since destroy notification is
5313         silly here.
5314
5315 Sat Nov 17 18:26:45 2001  Owen Taylor  <otaylor@redhat.com>
5316
5317         * gtk/Makefile.am gtk/gtkmarshal.list gtk/gtkmarshalers.list
5318         gtk/*.c gtk/gtksignal.h: Make gtkmarshal.list/gtkmarshal.h
5319         only for compatibility with GTK+-1.2; and deprecate it; 
5320         put all marshalers we actually use into gtkmarshalers.list 
5321         and use the _gtk_marshal_ prefix for these marshalers.
5322
5323 2001-11-17  Murray Cumming  <murrayc@usa.net>
5324
5325         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init):
5326         The first parameters of the signals are now registered as
5327         GTK_TYPE_TEXT_TAG instead of G_TYPE_OBJECT.
5328         
5329 2001-11-17  Tor Lillqvist  <tml@iki.fi>
5330
5331         * gtk-zip.sh.in: Build separate runtime and developer
5332         packages.
5333
5334         * gtk/gtk.def: Reflect recent accelerator-related changes.
5335
5336 Fri Nov 16 19:44:35 2001  Owen Taylor  <otaylor@redhat.com>
5337
5338         * gtk/gtkwindow.c (gtk_window_set_default): Move 
5339         notification of "has_default" to here, so it
5340         is safe to call gtk_window_set_default() instead
5341         of gtk_widget_grab_default().
5342
5343         * gtk/gtkwindow.c (gtk_window_set_focus): Make it call
5344         gtk_widget_grab_focus(), which then calls 
5345         _gtk_widget_internal_set_focus(). This makes 
5346         gtk_window_set_focus() a safe way of both setting
5347         and unsetting the focus widget.
5348
5349         * gtk/gtkwidget.c (gtk_widget_propagate_state): Use
5350         gtk_widget_get_toplevel(), instead of gtk_widget_ancestor
5351         to find the toplevel.
5352
5353         * gtk/gtkwindow.h: Move gtk_window_set_focus/default
5354         from the "internal functions" section.
5355
5356 2001-11-16  jacob berkman  <jacob@ximian.com>
5357
5358         * tests/testgtk.c (create_radio_buttons): add some no-indicator
5359         radio buttons
5360
5361         * gtk/gtkradiobutton.c (gtk_radio_button_init): since we are
5362         initially active, also initially be depressed
5363         (gtk_radio_button_clicked): also update our depressed state
5364
5365 Thu Nov 15 12:54:36 2001  Owen Taylor  <otaylor@redhat.com>
5366
5367         * gtk/gtkwindow.c (gtk_window_key_press_event): Propagate
5368         key press events not just to focus/window but also to
5369         intermediate widgets.
5370
5371         * gtk/gtknotebook.c: Handle Ctrl-PageUp/Ctrl-PageDown
5372         to switch pages. (Needs some work on handling focus
5373         when switching pages.)
5374
5375 Fri Nov 16 14:06:31 2001  Owen Taylor  <otaylor@redhat.com>
5376
5377         * gtk/gtknotebook.c: Fix child allocations to be relative to 
5378         widget position and some drawing bugs.
5379
5380         * gtk/gtkmenuitem.c (gtk_menu_item_paint): Fix problem
5381         with reading uninitialized variable.
5382
5383 Fri Nov 16 00:16:40 2001  Owen Taylor  <otaylor@redhat.com>
5384
5385         * gtk/{gtkmenuitem.[ch],gtkcheckmenuitem.c,gtkimagemenuitem.c,
5386         gtkradiomenuitem.c,gtktearoffmenuitem.c}: Make Menu items
5387         NO_WINDOW widgets.
5388
5389         * gtk/gtk{h,v,}paned.[ch]: Make NO_WINDOW widgets, some
5390         cleanup.
5391
5392         * gtk/gtkstyle.c (gtk_default_draw_handle): Don't assume
5393         we are drawing in a window when drawing the paned handle.
5394
5395 2001-11-16  Sven Neumann  <sven@gimp.org>
5396
5397         * demos/gtk-demo/appwindow.c
5398         * demos/gtk-demo/menus.c: reduce compiler warnings
5399
5400 Thu Nov 15 19:47:09 2001  Owen Taylor  <otaylor@redhat.com>
5401
5402         * demos/gtk-demo/main.c (button_press_event_cb): Remove 
5403         unused callback to make things compile with 
5404         gtk_tree_view_path_at_pos_change().
5405
5406 Thu Nov 15 18:44:33 2001  Jonathan Blandford  <jrb@redhat.com>
5407
5408         * gtk/gtktreedatalist.c (_gtk_tree_data_list_free): maybe fix #64160
5409
5410 2001-11-15  Matthias Clasen  <matthiasc@poet.de>
5411
5412         * gtk/gtkwindow.c (gtk_window_new): Move '.' out of quote. (#64407)
5413  
5414 Thu Nov 15 16:24:55 2001  Jonathan Blandford  <jrb@redhat.com>
5415
5416         * gtk/gtktreeview.c (gtk_tree_view_get_bin_window): New function
5417         to get a GdkWindow to compare event->window to.
5418
5419         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_left_right): emit
5420         the signal for lateral motion too, #64361
5421
5422         * gtk/gtktreeview.c (gtk_tree_view_get_path_at_pos): remove window
5423         arg as it is useless, #64137
5424
5425 Thu Nov 15 16:07:42 2001  Owen Taylor  <otaylor@redhat.com>
5426
5427         * gtk/gtknotebook.c: Some small drawing fixes for scroll arrows.
5428
5429 Thu Nov 15 14:19:34 2001  Owen Taylor  <otaylor@redhat.com>
5430  
5431         * gdk/gdkwindow.c (gdk_window_invalidate_maybe_recurse): Cal
5432         gdk_window_invalidate_maybe_recurse() for recursion.
5433         (Soeren Sandmann)
5434
5435         * gtk/gtkviewport.c: Make !redraw_on_allocate. (Soeren Sandmann)
5436  
5437         * gtk/gtkcontainer.c (gtk_container_expose): Call
5438         gtk_container_forall() not _foreach() to propagate,
5439         since we need to propagate exposes to internal children
5440         as well.
5441
5442         * gtk/gtkwidget.c (gtk_widget_set_events, gtk_widget_add_events): 
5443         Remove the restriction of only being able to call these
5444         on window widgets, since we have lots of NO_WINDOW widgets
5445         with windows now; for add events, recurse over the children
5446         of widget->window to find one owned by the widget.
5447
5448         * gtk/gtkbutton.[ch]: Make a NO_WINDOW widget, using an input-only
5449         window to catch events.
5450
5451         * gtk/gtktogglebutton.[ch]: Remove the code for switching
5452         between NO_WINDOW and WINDOW widgets based on the mode.
5453
5454         * gtk/gtkcheckbutton.c gtk/gtkoptionmenu.c gtk/gtkclist.c
5455         gtk/gtktreeview.c: Adopt to NO_WINDOW change for GtkButton.
5456
5457         * gtk/gtkrange.[ch]: Make into a NO_WINDOW widget.
5458
5459         * gtk/gtkhscale.c, gtk/gtkvscale.c: Adopt to NO_WINDOW
5460         change for range.
5461
5462         * gtk/gtknotebook.[ch]: Make into a NO_WINDOW widget.
5463  
5464         * docs/Changes-2.0.txt: Add a note about the NO_WINDOW changes.
5465
5466 Thu Nov 15 11:59:35 2001  Owen Taylor  <otaylor@redhat.com>
5467
5468         * gtk/gtkmessagedialog.c: Patch from Murray Cumming to add
5469         "message_type" and "buttons" CONSTRUCT properties. (#64069)
5470
5471         * tests/testsocket.c: Expand tests to add a "local passive
5472         child" (Test case for #64428)
5473
5474 2001-11-14  jacob berkman  <jacob@ximian.com>
5475
5476         * gtk/gtkgamma.c (button_clicked_callback): create the label with
5477         a mnemonic
5478
5479 2001-11-15  Sven Neumann  <sven@gimp.org>
5480
5481         * tests/testgtk.c: make it compile without warnings.
5482
5483 2001-11-14  Alex Larsson  <alexl@redhat.com>
5484
5485         * gtk/gtklabel.c:
5486         Don't recalculate the layout on each gkt_label_ensure_layout () for
5487         wrapped labels.
5488
5489 Wed Nov 14 17:40:23 2001  Jonathan Blandford  <jrb@redhat.com>
5490
5491         * gtk/gtktreeview.c (gtk_tree_view_get_expander_column): Return
5492         the currently selected column when we get the column, #64380
5493
5494         * gtk/gtkentry.c (gtk_cell_editable_key_press_event): Handle Esc
5495         to cancel CellRendererText editting, #63613
5496
5497         * gtk/gtkcellrenderertext.c: ditto
5498
5499         * gtk/gtkcellrenderertext.h: formatting changes
5500
5501 2001-11-14  Matthias Clasen  <matthiasc@poet.de>
5502
5503         * gtk/gtkbutton.c (gtk_button_get_label): Rearrange docs (#64566)
5504
5505         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag): Typo fix (#64474)
5506
5507         * gtk/gtkruler.c (gtk_ruler_get_metric): Typo fix (#64470)
5508
5509         * gtk/gtknotebook.c (gtk_notebook_prepend_page): Typo fix (#64467)
5510
5511         * gtk/gtklabel.c: Documentation fixes (#64452)
5512
5513 2001-11-14  Daniel Egger  <degger@fhm.edu>
5514
5515         * gdk-pixbuf/io-xpm.c: 
5516         (xpm_skip_whitespaces): Remove unused static function.
5517         (xpm_skip_string): Dito.        
5518         (xpm_extract_color): Declare const variable const to avoid warnings. 
5519
5520         * gtk/gtkfixed.c: (gtk_fixed_map): Remove unused static function.
5521         
5522         * gtk/gtkplug.c: #if 0'ed prototype for #if 0'ed code.
5523         
5524         * gtk/gtksocket.c: Change type of mask to g_message to %ld for 
5525         a long.
5526
5527 Wed Nov 14 15:14:48 2001  Owen Taylor  <otaylor@redhat.com>
5528
5529         * gtk/gtkcontainer.c (gtk_container_idle_sizer): Back
5530         out accidental commit of debugging timing code.
5531
5532 2001-11-14  Havoc Pennington  <hp@redhat.com>
5533
5534         * gtk/gtktextview.c (gtk_text_view_move_cursor): fix Control-E so
5535         it doesn't move to a new line each time you press it
5536
5537         * gtk/gtktextiter.c (gtk_text_iter_forward_to_line_end): fix
5538         return value, #62987
5539
5540 2001-11-14  Havoc Pennington  <hp@redhat.com>
5541
5542         * tests/testtextbuffer.c (main): bulk of the tests were commented
5543         out, oops.
5544
5545         * gtk/gtktextiter.c (find_paragraph_delimiter_for_line): make this 
5546         function work, should resolve #63426
5547         (gtk_text_iter_ends_line): return TRUE for the end iterator
5548
5549         * gtk/gtktextiter.h: put padding back in GtkTextIter, I thought of
5550         a couple things that might get cached in here.
5551
5552 Tue Nov 13 21:00:59 2001  Jonathan Blandford  <jrb@redhat.com>
5553
5554         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_class_init): new
5555         "model" construct property for language bindings.
5556
5557         * gtk/gtktreestore.c (gtk_tree_store_set_column_types): New
5558         function to let you set the column types of a GtkTreeStore for
5559         language bindings.
5560
5561         * gtk/gtkliststore.c (gtk_list_store_set_column_types): ditto.
5562
5563 2001-11-13  Havoc Pennington  <hp@redhat.com>
5564
5565         * gtk/gtktextview.c (gtk_text_view_add_child_in_window): docs
5566         including reference to bugzilla bug about how we should have 
5567         a better way of positioning children
5568
5569         * gtk/gtktextview.h (struct _GtkTextViewClass): add some padding
5570
5571         * gtk/gtktextview.c (gtk_text_view_size_allocate): assign zero
5572         size to side rects if they don't exist, #63438
5573
5574 2001-11-13  Havoc Pennington  <hp@redhat.com>
5575
5576         * gtk/gtktextview.c (gtk_text_view_key_press_event): fix to
5577         properly replace selection with Return or Tab
5578
5579         * gtk/gtktextdisplay.c (gtk_text_layout_draw): fix broken code
5580         that didn't locate the end of the line correctly, should fix #63800
5581
5582 2001-11-13  Havoc Pennington  <hp@redhat.com>
5583
5584         * gtk/gtktextview.c (gtk_text_view_size_request): add border width
5585         to requisition, request non-anchored children
5586         (gtk_text_view_size_allocate): handle border width, allocate
5587         non-anchored children
5588         (text_view_child_new_window): set the child as object data
5589         (gtk_text_view_move_child): allow children at negative
5590         coordinates, no reason why not
5591         (gtk_text_view_forall): make it copy the list of children before
5592         walking it, to avoid reentrancy issues  
5593         (gtk_text_view_move_child): short-circuit if position is unchanged
5594         (changed_handler): only queue_resize if requisition has changed
5595         (gtk_text_view_init): don't redraw_on_allocate, since we can do 
5596         a better job of invalidation ourselves
5597
5598         * tests/testtext.c: add tests for the fixed-position children
5599
5600 Tue Nov 13 19:51:43 2001  Tim Janik  <timj@gtk.org>
5601
5602         * gtk/gtkwindow.c (handle_accels_changed): protect idle handle
5603         with gdk threads macro.
5604
5605 Mon Nov 12 23:08:37 2001  Tim Janik  <timj@gtk.org>
5606
5607         * gtk/maketypes.awk: fix type utils generation on unix.
5608
5609         * gtk/gtkaccelmap.[hc]: new files, implementing a global accelerator
5610         registry.
5611
5612         * gtk/gtkaccelgroup.[hc]: major API/implementation revamp:
5613         removed GTK_ACCEL_SIGNAL_VISIBLE, gtk_accel_group_get_default,
5614         gtk_accel_group_get_entry, gtk_accel_group_(un)lock_entry,
5615         gtk_accel_group_add/remove, gtk_accel_group_handle_add/remove,
5616         gtk_accel_group_create_add/remove, gtk_accel_group_entries_from_object.
5617         introduced ::accel_changed signal for change notification, and
5618         gtk_accel_group_connect/disconnect to connect closures to accel groups.
5619         made gtk_accel_group_attach/detach and gtk_accel_group_activate private
5620         functions.
5621         deprecated gtk_accel_group_ref/unref.
5622
5623         * gtk/gtkaccellabel.[hc]: changes to make accellabels pay attention
5624         to accel group changed notification and basically operate on closures.
5625         removed gtk_accel_label_get_accel_object and
5626         gtk_accel_label_set_accel_object.
5627         introduced gtk_accel_label_set_accel_closure, and for convenience,
5628         gtk_accel_label_set_accel_widget.
5629
5630         * gtk/gtkitemfactory.[hc]: removed accelerator propagation code
5631         which mostly moved into gtkaccelmap.[hc].
5632         removed gtk_item_factory_parse_rc*, gtk_item_factory_dump_*
5633         and gtk_item_factory_print_func.
5634
5635         * gtk/gtkmain.c: call _gtk_accel_map_init().
5636
5637         * gtk/gtkmenuitem.[hc]: introduced gtk_menu_item_set_accel_path(),
5638         that associates an accelerator path with menu items, through which
5639         persistent accelerator settings on menu items are enabled.
5640
5641         * gtk/gtkmenu.[hc]: added gtk_menu_set_accel_path() so accelerator
5642         paths of menu item can be default constructed to allow installation
5643         of accelerators on menu items that don't come with an accelerator
5644         binding by default.
5645
5646         * gtk/gtksettings.c: fix STRING type rc settings by special casing
5647         them appropriately in the parser.
5648
5649         * gtk/gtksignal.[hc]: allow a class function offset of 0 for
5650         gtk_signal_newv().
5651
5652         * gtk/gtkwidget.[hc]: accelerator API revamp.
5653         removed ::accelerator_add/remove signals, gtk_widget_accelerator_signal,
5654         gtk_widget_accelerators_locked, gtk_widget_remove_accelerators and
5655         gtk_widget_(un)lock_accelerators.
5656         accelerators maintained through gtk_widget_add/remove_accelerator()
5657         are not runtime changable now, the correct sequence to setup a
5658         widget for runtime changable accelerators is now:
5659           gtk_accel_map_add_entry(accel_path, key, mods);
5660           _gtk_widget_set_accel_path(widget, accel_path, accel_group);
5661
5662         * gtk/gtkwindow.[hc]: accelerator changes, proxy and coalesce accel
5663         group changes (as well as mnemonic changes) through the new signal
5664         ::accels_changed.
5665
5666 Sat Nov 10 12:08:56 2001  Tim Janik  <timj@gtk.org>
5667
5668         * gtk/gtksettings.c (_gtk_settings_parse_convert): properly handle
5669         GString->string conversions.
5670
5671 Mon Nov 12 19:33:52 2001  Owen Taylor  <otaylor@redhat.com>
5672
5673         * gtk/gtkmessagedialog.c (gtk_message_dialog_new): Warn
5674         if GTK_DIALOG_NO_SEPARATOR is passed in and ignore it.
5675
5676 2001-11-12  Matthias Clasen  <matthiasc@poet.de>
5677
5678         * gtk/gtktreeview.c: Documentation fixes. (#64377)
5679         
5680         * gtk/gtktreestore.c: Documentation fixes. (#64376)
5681
5682 2001-11-11  Matthias Clasen  <matthiasc@poet.de>
5683
5684         * gtk/gtkiconfactory.c, gtk/gtktextbuffer.c, gtk/gtktreemodel.c,
5685         gtk/gtkwindow.c, gtk/gtknotebook.c, gtk/gtkradiobutton.c, 
5686         gtk/gtktextiter.c, gtk/gtkdialog.c: Mass fixing of trivial doc bugs.  
5687         (#63544, #57007, #64141, #63472, #57108, #60818, #61562)
5688
5689 2001-11-10  Hans Breuer  <hans@breuer.org>
5690
5691         * gdk/win32/gdkevents-win32.c (gdk_event_translate) : make sure 
5692         we know what we are talking about when asked for MINMAXINFO.
5693         Also some cleaning for !HAVE_DIMM_H etc.
5694
5695 2001-11-10  Matthias Clasen  <matthiasc@poet.de>
5696
5697         * gtk/gtktreeviewcolumn.c: Fix docs for 
5698         gtk_tree_view_column_set_sort_order. (#62647)
5699         
5700         * gtk/gtkcontainer.c: Fix docs for 
5701         gtk_container_set_border_width. (#64139)
5702
5703         * gtk/gtkcolorsel.c: Documentation fixes.
5704
5705 2001-11-10  Hans Breuer  <hans@breuer.org>
5706
5707         * gtk/gtkfontsel.c : use g_strcasecmp(), some poor platforms
5708         don't have strcasecmp()
5709
5710         * gtk/gtktextview.c : to fix crashing on e.g. TextView::find need 
5711         to remove the idle funcs in gtk_text_view_destroy (). To reduce 
5712         code duplication wrap it in its own function and use it in 
5713         gtk_text_view_unrealize () and gtk_text_view_destroy_layout ()
5714
5715         * gdk/win32/gdkdrawable-win32.c : implement the finalize
5716         method like the X11 version does, allow to set_colormap NULL
5717         * gdk/win32/gdkwindow-win32.c : adapt GdkWindowImplWin32::
5718         set_colormap, also some adaption to X11 version :
5719         (gdk_window_hide) call _gdk_window_clear_update_area
5720         (gdk_window_reparent) call _gdk_window_init_position
5721
5722         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints) : 
5723         call gdk_window_resize() after all hints are set, because the
5724         window resizing process (WM_GETMINMAXINFO) takes all of them into 
5725         account
5726
5727         * gdk/win32/gdkfont-win32.c : make gdk_font_equal return a gboolean
5728
5729         * gdk/win32/gdkvisual-win32.c : register GdkVisual with 
5730         sizeof (GdkVisualPrivate)
5731
5732         * gdk/gdk.def gtk/gtk.def : upated externals
5733
5734         * gdk/makefile.msc gdk/win32/makefile.msc gdk-pixbuf/makefile.msc
5735           gdk-pixbuf/pixops/makefile.msc gtk/makefile.msc.in tests/makefile.msc :
5736         from now on use make.msc from $(TOP)/glib/build/win32
5737
5738         * gtk/stock-icons/makefile.msc : add stock_missing_image
5739
5740 2001-11-08  Tor Lillqvist  <tml@iki.fi>
5741
5742         * README.win32: Add headers. Add section about ActiveIMM.
5743
5744         * configure.in: Add --with-ie55 flag to specify the location of
5745         the "IE55 libs and headers" package downloadable from Microsoft,
5746         which contains, among other things, the Active IMM header dimm.h
5747         and UUID library uuid.lib. Use test -f instead of AC_CHECK_FILE.
5748         Require GLib 1.3.10.
5749         
5750         * config.h.win32.in: New version, produced by merging two
5751         configure-generated ones (for gcc and MSVC). Hopefully #defines
5752         the same flags that the previous, hand-written one, did.
5753
5754         * gdk/Makefile.am
5755         * gdk/win32/Makefile.am: Handle the uuid library from the IE55 lib.
5756
5757         * gdk/win32/gdkevents-win32.c: Conditionalize ActiveIMM
5758         stuff. Remove unused GdkIOClosure.
5759
5760         * gdk/win32/surrogate-dimm.h: Remove, use real dimm.h instead (if
5761         available).
5762
5763         * gdk/win32/libie55uuid.la: New file, handwritten libtool wrapper
5764         for uuid.lib. (Does it really have to be this hard to use an
5765         existing library with libtool? Probably I am missing something.)
5766
5767 2001-11-08  Darin Adler  <darin@bentspoon.com>
5768
5769         * gtk/gtklabel.c: (gtk_label_ensure_layout): Fix an obvious
5770         typo where it says LEFT instead of CENTER.
5771
5772 2001-11-07  Darin Adler  <darin@bentspoon.com>
5773
5774         * gtk/gtkdialog.c: (gtk_dialog_set_response_sensitive),
5775         (gtk_dialog_set_default_response): Add g_return_if_fail.
5776
5777 Mon Nov  5 22:34:29 2001  Owen Taylor  <otaylor@redhat.com>
5778
5779         * gtk/gtktreednd.[ch] (struct _GtkTreeDragSourceIface): 
5780         Add row_draggable() vfunc, and wrapper function.
5781
5782         * gtk/gtktreednd.[ch] (struct _GtkTreeDragDestIface): Make
5783         row_drop_possible take a GtkSelectionData, rather than
5784         model/row pair.
5785
5786         * gtk/gtktreestore.c gtk/gtkliststore.c: Update for 
5787         new DND interfaces.
5788
5789         * gtk/gtktreeview.[ch]: Remove the row_draggable_func
5790         location_dropable_func from gtk_tree_view_set_rows_drag_source/dest.
5791         and rename them to enable_model_drag_source/dest.
5792
5793         * gtk/treeviewcolumn.c: Add DND of columns between rows.
5794         Still can't drop _to_ the left tree, but other places
5795         work.
5796
5797         * gtk/gtktreeview.c (unset_reorderable): Unset the
5798         reorderable property if unset/enable_model_drag_source/dest
5799         are called manually.
5800
5801         * gtk/gtktreestore.c (gtk_tree_store_row_drop_possible): 
5802         Correct for change in depth count handling.
5803
5804         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon):
5805         Pass in a expose area to gtk_tree_view_column_cell_render()
5806
5807 2001-11-06  Havoc Pennington  <hp@redhat.com>
5808
5809         * demos/gtk-demo/textview.c (easter_egg_callback): wacky easter egg
5810
5811 Tue Nov  6 10:13:16 2001  Owen Taylor  <otaylor@redhat.com>
5812
5813         * gdk/x11/gdkgc-x11.c: Fix misplaced HAVE_XFT.
5814
5815 2001-11-05  Havoc Pennington  <hp@redhat.com>
5816
5817         * gtk/gtktextview.c (gtk_text_view_paint): expose the child
5818         widgets in here
5819         (gtk_text_view_realize): set parent window of child widgets
5820         (gtk_text_view_size_request): use child req to decide whether
5821         to invalidate layout, not widget->requisition
5822
5823         * gtk/gtktextdisplay.c (render_layout_line): set
5824         shaped_width_pixels for NULL shape objects, so that we properly
5825         draw the "missing pixbuf/widget" thing
5826         (render_layout_line): don't draw the widget here
5827         (gtk_text_layout_draw): pass out a list of widgets that need exposing
5828
5829         * demos/gtk-demo/textview.c (insert_text): add demo of child
5830         widgets
5831
5832         * gtk/gtktextlayout.c (add_child_attrs): remove debug spew
5833
5834         * gtk/gtktextdisplay.c (render_layout_line): remove debug spew
5835
5836         * gtk/gtktextview.c (gtk_text_view_update_child_allocation): add
5837         scroll offsets
5838         (gtk_text_view_value_changed): poke new X and Y into child allocations
5839
5840 2001-11-06  Tor Lillqvist  <tml@iki.fi>
5841
5842         * gtk/gtkmain.c (find_module): Do search GTK_BINARY_VERSION
5843         -specific directory on Windows, too (#63759).
5844
5845 Mon Nov  5 12:46:44 2001  Owen Taylor  <otaylor@redhat.com>
5846
5847         * gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkgc-x11.c
5848         gdk/x11/gdkpixmap-x11.c gdk/x11/gdkprivate-x11.h
5849         gdk/x11/gdkwindow-x11.c: Redo Xft support to go
5850         directly to Picture objects instead of using XftDraw.
5851         This fixes the problem where we weren't able to 
5852         properly destroy XftDraw objects before destroying
5853         the accompanying windows, and probably improves
5854         efficiency a bit too. (#50214)
5855
5856 Mon Nov  5 10:01:49 2001  Owen Taylor  <otaylor@redhat.com>
5857
5858         * gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): 
5859         Clamp max window width/height to 32767, not 32768 since
5860         we have to be able to deal with a dx/y of -32768 without
5861         getting a width of 65536 when guffaw scrolling.
5862
5863         * gdk/x11/gdkgeometry-x11.c: Implement gdk_window_scroll()
5864         for the guffaw scrolling case, fixing some problems with
5865         copy-area case as well. Fix BadValue bug with moving windows
5866         by large amounts.
5867
5868         * gdk/x11/gdkgeometry-x11.c (gdk_window_clip_changed): Update
5869         clip in window structue before calling gdk_window_invalidate_region
5870         since that trims new invalidations to the window's visible
5871         region.
5872
5873         * gdk/x11/gdkwindow-x11.c (gdk_window_set_static_gravities): 
5874         Really set the static window gravity on the children, not
5875         repeatedly on the window.
5876
5877         * gtk/testgtk.c: Add a torture test for big windows and 
5878         gdk_window_scroll().
5879
5880 Sun Nov  4 17:36:08 2001  Manish Singh  <yosh@gimp.org>
5881
5882         * acconfig.h configure.in: sigsetjmp is macroized in some places,
5883         so use AC_TRY_LINK instead of AC_CHECK_FUNCS for the check.
5884
5885 Sun Nov  4 19:16:23 2001  Owen Taylor  <otaylor@redhat.com>
5886
5887         * gdk/gdkcolor.c (gdk_color_parse): Implement gdk_color_parse()
5888         in terms of pango_color_parse().
5889
5890         * gdk/{linux-fb,win32,x11}/gdkcolor-*.c: Remove port-specific
5891         gdk_color_parse() implementations.
5892
5893 Sun Nov  4 18:39:43 2001  Owen Taylor  <otaylor@redhat.com>
5894
5895         * gtk/gtksizegroup.c (gtk_size_group_set_mode): 
5896         queue_resize_on_group with both the old and new mode, not
5897         just the new mode. (#60171, Nicolas Setton). Also, notify
5898         the "mode" property.
5899         
5900 Sun Nov  4 16:02:08 2001  Owen Taylor  <otaylor@redhat.com>
5901
5902         * gdk/gdkwindow.[ch]: Add a function gdk_window_invalidate_maybe_recurse() 
5903         for use in "shallow invalidation" of a widget. (Windows belonging
5904         to the widget, but not to the widget's children)
5905
5906         * gtk/gtkprivate.h gtk/gtkwidget.c gtk/gtksizegroup.c: Add private
5907         flags GTK_ALLOC_NEEDED, GTK_REQUEST_NEEDED.  These flags are set
5908         up on ancestors up to the resize container on queue_resize. Size
5909         requests only actually take place if GTK_REQUEST_NEEDED, size
5910         allocations only take place if GTK_ALLOC_NEEDED or the size
5911         changed.
5912
5913         * gtk/gtkcontainer.c gtk/gtkwidget.c: Remove
5914         container->resize_widgets and the RESIZE_NEEDED flag since the
5915         above flags are sufficient to figure out what needs to be
5916         resized/reallocated. Remove code manipulating
5917         container->resize_widget.
5918
5919         * gtk/gtkwidget.[ch]: Add gtk_widget_set_redraw_on_alloc(); this
5920         allows widgets to turn off being automatically invalidated is when
5921         they are resized.
5922
5923         * gtk/gtkwidget.[ch] (gtk_widget_size_allocate): Invalidation when
5924         a widget is resized or moved is "shallow" as described above -
5925         only the windows that need to be invalidated are invalidated.
5926
5927         * gtk/gtkbox.c gtk/gtktable.c gtk/gtkalignment.c docs/Changes-2.0.txt: 
5928         Make these widget's init functions call 
5929         gtk_widget_set_redraw_on_allocate(widget,FALSE).
5930
5931         * gtk/gtkwindow.c (gtk_window_configure_event): Call 
5932         _gtk_container_queue_resize(), since we don't want
5933         redrawing. (Probably could be done for other 
5934         calls to gtk_widget_queue_resize() in gtkwindow.c,
5935         but this is the most important one.)
5936
5937         * gtk/gtkwindow.c (gtk_window_move_resize): Don't call
5938         gtk_widget_queue_draw() - size_allocate() handles
5939         that as appropriate.
5940
5941         * gtk/gtkframe.c (gtk_frame_size_allocate): Invalidate instead
5942         of queue_clear() to avoid invalidating children.
5943
5944 2001-11-04  jacob berkman  <jacob@ximian.com>
5945
5946         * gtk/gtkmain.c (find_module): don't free the module name until
5947         after we load the module
5948
5949 Sat Nov  3 13:57:21 2001  Owen Taylor  <otaylor@redhat.com>
5950  
5951         * gtk/gtkctree.c: Convert GTK_TYPE_CTREE_NODE to pointer
5952         derivation instead of boxed derivation.
5953  
5954         * gtk/gtkmarshal.list: Remove some now unused marshallers.
5955  
5956 2001-11-04  Tor Lillqvist  <tml@iki.fi>
5957
5958         * gtk/gtkimmodule.c: Can't include gtkprivate.h (I added the
5959         include yesterday, without really thinking), as that defeats the
5960         working of correct_libdir_prefix() (it becomes a no-op.). Add
5961         comment mentioning that. Thanks to Hans Breuer for noticing.
5962         
5963 2001-11-03  Daniel Elstner  <daniel.elstner@gmx.net>
5964
5965         * gtk/gtkwindow.h (frame_event): Use GtkWindow* as first
5966         signal argument (was GtkWidget*).
5967
5968         * gtk/gtkwindow.c (gtk_window_frame_event),
5969           gtk/gtkwindow-decorate.c (gtk_decorated_window_frame_event):
5970         Fixed argument types as above, removed GTK_WINDOW casts and
5971         added some GTK_WIDGET casts instead.
5972
5973 2001-11-03  Hans Breuer  <hans@breuer.org>
5974
5975         * gtk/gtkfilesel.c (gtk_file_selection_finalize) : chain
5976         finalize to parent class to get removed from the toplevel_list.
5977         Should fix 'random' crashes of #63474.
5978
5979         * gtk/gtktreemodelsort.c : chain finalize() to parent class
5980
5981 2001-11-03  Tor Lillqvist  <tml@iki.fi>
5982
5983         * modules/input/Makefile.am: Use -no-undefined on Windows. Look
5984         for .dll or .so as appropriate as module suffix.
5985
5986         * gtk-zip.sh.in: Use correct import library names.
5987
5988         * gtk/gtk.def: Add a couple of missing entry points. (#63585)
5989
5990         * gtk/gtkimmodule.c (correct_libdir_prefix): New function, used on
5991         Windows to turn build-time paths from a gtk.immodules distributed
5992         as part of a binary package into runtime ones in the
5993         end-user-chosen installation directory.
5994         (gtk_im_module_init): Use it for module path and domain
5995         directory.
5996
5997 2001-11-02  Tor Lillqvist  <tml@iki.fi>
5998
5999         * gtk/gtkrc.c (gtk_rc_make_default_dir): Fix typo: extraneous
6000         comma.  Include gtkprivate.h for GTK_LIBDIR etc definitions on
6001         Windows.
6002
6003 2001-10-30  Tor Lillqvist  <tml@iki.fi>
6004
6005         * Makefile (install-data-hook): Use cp, not $(LN_S) on the .pc
6006         files. Configure on Win32 (running on Cygwin) thinks symlinks
6007         exist, but pkg-config is not necesarily a Cygwin program, and
6008         doesn't understand them.
6009
6010 Fri Nov  2 16:45:17 2001  Jonathan Blandford  <jrb@redhat.com>
6011
6012         * gtk/gtkrbtree.c (_gtk_rbtree_remove_node): Clean up height code
6013         a bit.  I don't think it's completely correct yet, but it's
6014         getting there.
6015
6016 Fri Nov  2 16:14:15 2001  Owen Taylor  <otaylor@redhat.com>
6017
6018         * gtk/gtkviewport.c (gtk_viewport_size_request): Remove
6019         random + 5 for width and height. If people want padding,
6020         they should add padding. (Note the +5 isn't padding
6021         that will always appear - it just appears in the case
6022         where the widget is allocated it's requisition.)
6023         (#51018, Janet Davis)
6024
6025 Fri Nov  2 15:53:23 2001  Owen Taylor  <otaylor@redhat.com>
6026
6027         * gtk/gtkimcontext.h (struct _GtkIMContextClass): Pad
6028         the structure for future expansion.
6029
6030 Fri Nov  2 15:30:34 2001  Owen Taylor  <otaylor@redhat.com>
6031
6032         Patch from HideToshi Tajima (#51922)
6033         
6034         * gtk/gtkimmulticontext.c: Proxy set_use_preedit().
6035
6036         * gtk/modules/input/gtkimcontextxim.[ch]: Implement
6037         set_use_preedit().
6038         
6039         * gtk/modules/input/gtkimcontextxim.[ch]: If we have
6040         to destroy the input context because we change the
6041         client window or use_preedit, make sure we empty
6042         the preedit string.
6043
6044 Fri Nov  2 14:55:53 2001  Owen Taylor  <otaylor@redhat.com>
6045
6046         * gtk/{gtkcolorseldialog.c,gtkfilesel.c,gtkfontsel.c,
6047         gtkgamma.c,gtkmessagedialog.c}: Go to the GUP
6048         proposed ordering of buttons with [OK] in the lower
6049         right hand corner. Patch from Gregory Merchan,
6050         #56331.
6051
6052 Fri Nov  2 11:51:49 2001  Jonathan Blandford  <jrb@redhat.com>
6053
6054         * gtk/gtklabel.c (gtk_label_select_region_index): remove
6055         extraneous gtk_label_clear_layout (label)
6056
6057 2001-11-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
6058
6059         * tests/makefile.msc, gtk/makefile.msc.in: Removed
6060         -DGTK_DISABLE_COMPAT_H.
6061
6062         * docs/Changes-2.0.txt:
6063         s/GDK_DISABLE_COMPAT_H/GDK_DISABLE_DEPRECATED/
6064
6065         * gtk/gtkcompat.h.in, gdk/gdkcompat.h: Removed from CVS.
6066
6067 Fri Nov  2 10:21:03 2001  Owen Taylor  <otaylor@redhat.com>
6068
6069         * examples/**/Makefile.am: Convert to use pkg-config
6070         rather than gtk-config. (#53375, Skip Montanaro)
6071
6072 2001-11-02  Matt Wilson  <msw@redhat.com>
6073
6074         * gtk/gtkdialog.c (find_child_by_response_id): remove totally
6075         broken unused, non-compiling, static function.
6076
6077 Fri Nov  2 08:17:06 2001  Owen Taylor  <otaylor@redhat.com>
6078
6079         * gtk/gtkdialog.c (gtk_dialog_set_response_sensitive): 
6080         Iterate through children of the action area, not of
6081         the vbox. (#58278, Sergey Kuzminov)
6082
6083 2001-11-01  Havoc Pennington  <hp@pobox.com>
6084
6085         * gtk/gtktext.c (gtk_text_set_position): handle -1 argument in
6086         order to remove a workaround in Nautilus that forced
6087         GTK_ENABLE_BROKEN
6088
6089         * gtk/gtkwidget.c (gtk_widget_modify_style): fix typos in the docs
6090
6091 Thu Nov  1 20:09:31 2001  Owen Taylor  <otaylor@redhat.com>
6092
6093         * gtk/gtkrange.c: Patch from George Lebl to 
6094         fix division by zero for full scroll bars. (#62114)
6095
6096 Thu Nov  1 19:56:40 2001  Owen Taylor  <otaylor@redhat.com>
6097
6098         * gtk/gtkmain.c (gtk_main_do_event): ref/unref
6099         around gtk_widget_event() if we are going to
6100         set a flag afterwards. (#63464)
6101
6102 Thu Nov  1 19:44:48 2001  Owen Taylor  <otaylor@redhat.com>
6103
6104         * gtk/gtkiconfactory.c gtk/stock-icons/Makefile.am: 
6105         Actually add the missing/broken image icon as the
6106         image for the "missing image" stock icon.
6107
6108 Thu Nov  1 19:18:34 2001  Owen Taylor  <otaylor@redhat.com>
6109
6110         * demos/gtk-demo/stock_browser.c (do_stock_browser): 
6111         Set a reasonable default height for the window.
6112
6113         * demos/gtk-demo/stock_browser.c (id_to_macro): Fix
6114         bug where subsequent '-' weren't converted to '_'.
6115         (#59550, Matthias Clasen)
6116
6117         * demos/gtk-demo/appwindow.c (menu_items): Don't right 
6118         justify the Help menu - just include a comment on
6119         how to do it. (#63539,  Marius Andreiana)
6120
6121         * gtk/gtkiconfactory.c (gtk_icon_set_get_sizes): Don't 
6122         list GTK_ICON_SIZE_INVALID.
6123
6124         * demos/gtk-demo/stock_browser.c: Show the biggest available
6125         size, not a fixed size. (Often reported, including #63539, 
6126         Marius Andreiana)
6127
6128 Thu Nov  1 19:11:35 2001  Jonathan Blandford  <jrb@redhat.com>
6129
6130         * gtk/gtkrbtree.c (gtk_rbtree_reorder_fixup): Fix reorder_fixup,
6131         #59583
6132
6133         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): fix
6134         warning.
6135
6136 Thu Nov  1 16:54:00 2001  Owen Taylor  <otaylor@redhat.com>
6137
6138         * gtk/gtktypeutils.h: Make GtkFunction return boolean, not gint.
6139         (Daniel Elstner).
6140
6141 Thu Nov  1 16:20:56 2001  Owen Taylor  <otaylor@redhat.com>
6142
6143         * gtk/gtkimcontext.[ch]: Add:
6144           - A ::retrieve_surrounding signal that asks the widget for
6145             context around the insertion point.
6146           - A ::delete_surrounding signal that asks the widget to 
6147             delete context aroudn the insertion point.
6148           - gtk_im_context_set_context() for widgets to set context
6149             around the insertion point in response to ::retrieve_context.
6150           - gtk_im_context_get_context() for context to get context
6151             around the insertion point
6152
6153         * gtkmarshal.list: Add BOOL:INT,INT
6154
6155         * gtk/gtkimmulticontext.c: Proxy the get_surrounding() /
6156         set_surrounding() methods, and the ::retrieve_surrounding /
6157         ::delete_surrounding signals.
6158
6159         * gtk/gtkentry.c gtk/gtktreeview.c: Hook up to the
6160         GtkIMContext::retrieve_surrounding / ::delete_surrounding
6161         signals.
6162
6163 Thu Nov  1 15:45:04 2001  Jonathan Blandford  <jrb@redhat.com>
6164
6165         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered):
6166         it's amazing how well things work sometimes, even when they're
6167         completely wrong.
6168
6169         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): Fix bug
6170         where you could try to collapse a node w/o it having children.
6171
6172         (gtk_tree_view_class_init): remove Shift L<->R as they already
6173         existed for expand/collapse.
6174
6175 Thu Nov  1 12:21:31 2001  Jonathan Blandford  <jrb@redhat.com>
6176
6177         * gtk/gtktreeview.c (gtk_tree_view_focus_to_cursor): Fix crash
6178         found by Matt Wilson.
6179
6180 Thu Nov  1 00:44:50 2001  Jonathan Blandford  <jrb@redhat.com>
6181
6182         * gtk/gtktreeview.c (gtk_tree_view_class_init): Support Shift,
6183         Control, and Shift|Control L<->R, #63475
6184
6185 Wed Oct 31 18:53:51 2001  Jonathan Blandford  <jrb@redhat.com>
6186
6187         * gtk/gtktreemodel.c (gtk_tree_row_ref_deleted_callback): fix
6188         infinite loop noticed by yosh.
6189
6190 2001-11-01  Michael Meeks  <michael@ximian.com>
6191
6192         * gtk/gtksocket.c (gtk_socket_unrealize): unset the
6193         GTK_REALIZED flag so we don't re-enter when we are
6194         destroyed from the plug side.
6195
6196 Wed Oct 31 18:23:47 2001  Owen Taylor  <otaylor@redhat.com>
6197
6198         * gtk/gtkoptionmenu.c (gtk_option_menu_detacher): 
6199         Add a "menu" property and notify on it. (#62798,
6200         Padraig O'Briain)
6201
6202         * gtk/gtkselection.[ch] gtk/{gtkentry.c, gtkfilesel.c,
6203         gtkoldeditable.c, gtktextbuffer.c, gtktextview.c}: 
6204         Fix set_text to take a gchar, not a guchar, and to have 
6205         a len argument.
6206
6207 Wed Oct 31 15:31:13 2001  Manish Singh  <yosh@gimp.org>
6208
6209         * gtk/gtkstock.c: fix typo to make it compile
6210
6211 Wed Oct 31 17:27:20 2001  Jonathan Blandford  <jrb@redhat.com>
6212
6213         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): if
6214         the widget is insensitive, draw the text insensitively, #63306
6215
6216 2001-10-31  Matthias Clasen  <matthiasc@poet.de>
6217
6218         * gtk/gtkstock.c: Add stock items for most stock icons. (#61757)
6219
6220 Wed Oct 31 16:53:48 2001  Jonathan Blandford  <jrb@redhat.com>
6221
6222         * gtk/gtktreednd.c (gtk_tree_set_row_drag_data): rename
6223         gtk_selection_data_set_tree_row, #60218
6224         (gtk_tree_get_row_drag_data): rename
6225         gtk_selection_data_get_tree_row, #60218
6226
6227         * gtk/gtktreemodel.c (gtk_tree_row_ref_deleted_callback): Actually
6228         get this right, after the third try, #63122.
6229
6230 2001-10-31  jacob berkman  <jacob@ximian.com>
6231
6232         * gdk/gdkselection.h (GDK_TARGET_STRING): 
6233         (GDK_SELECTION_TYPE_STRING): these should be 31, not 3.  Hooray
6234         for Xatoms (and not using the XA_* macros)!
6235
6236 Wed Oct 31 15:38:14 2001  Owen Taylor  <otaylor@redhat.com>
6237
6238         * gtk/gtkwindow.[ch] (gtk_window_get_focus): Add a
6239         gtk_window_get_focus() getter to determine the currently
6240         focused widget within the window. (#63145, request
6241         from Damian Ivereigh)
6242
6243 Wed Oct 31 14:45:08 2001  Jonathan Blandford  <jrb@redhat.com>
6244
6245         * gtk/gtkenums.h (enum): Add GTK_SELECTION_NONE enum, #61695
6246
6247         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): Handle new
6248         GTK_SELECTION_NONE enum.
6249         (_gtk_tree_selection_internal_select_node): ditto
6250
6251         * gtk/gtkcellrenderer.h (struct _GtkCellRendererClass): add
6252         constness.
6253
6254         * gtk/gtkcellrenderertoggle.c: more yummy constness.
6255
6256         * gtk/gtkclist.c (gtk_clist_set_selection_mode): g_return_if_fail
6257         if mode == GTK_SELECTION_NONE
6258
6259 Wed Oct 31 14:05:17 2001  Jonathan Blandford  <jrb@redhat.com>
6260
6261         * gtk/gtktreeview.c (gtk_tree_view_class_init): Added a
6262         "cursor_changed" signal, #62850.
6263
6264 2001-10-31  Matt Wilson  <msw@redhat.com>
6265
6266         * gtk/gtktreedatalist.c (_gtk_tree_data_list_alloc): after
6267         allocating the treedatalist, zero it to make sure the values are
6268         cleared from any garbage that was in this chunk.
6269
6270 2001-10-31  Murray Cumming  <murrayc@usa.net>
6271
6272         * gtk/cellrenderertext.h: "edited" default signal handler
6273         gchar* args are now const.
6274         gtk/cellrenderertoggle.h: "toggled" default signal handler
6275         gchar* arg is now const.
6276         Also changed other signal handlers for "edited" and "toggled" to
6277         have the same signature.
6278
6279 Tue Oct 30 19:17:57 2001  Jonathan Blandford  <jrb@redhat.com>
6280
6281         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_sort_level): massize
6282         rewrite.  Static models now totally work.  I'm not 100% sure about
6283         row_inserted and row_changed, but I'll get those later.
6284
6285 2001-10-30  Sven Neumann  <sven@gimp.org>
6286
6287         * configure.in: use GLIB_AC_DIVERT_BEFORE_HELP() so we get proper
6288         output for configure --help.
6289
6290 2001-10-30  Havoc Pennington  <hp@pobox.com>
6291
6292         * gtk/gtktextview.c (changed_handler): Update the IM spot location
6293         here, if text was invalidated in the visible area, because the
6294         scroll offset doesn't normally change in that case, and the mark
6295         isn't set, just implicitly moved over as text is added/removed
6296         
6297 Mon Oct 29 19:18:35 2001  Jonathan Blandford  <jrb@redhat.com>
6298
6299         * gtk/gtkseparatormenuitem.c: Code cleanup.
6300         (gtk_separator_menu_item_class_init): Fix bugs in this code.
6301
6302 2001-10-29  jacob berkman  <jacob@ximian.com>
6303
6304         * gdk/Makefile.am (LDFLAGS): 
6305         * gtk/Makefile.am (LDFLAGS): automake doesn't support conditionalized
6306         LDFLAGS, so put win32 flags in here
6307
6308 Mon Oct 29 15:41:58 2001  Jonathan Blandford  <jrb@redhat.com>
6309
6310         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_sort_level): Darn.
6311         I can't believe this took this long to fix.
6312
6313 Mon Oct 29 13:54:49 2001  Jonathan Blandford  <jrb@redhat.com>
6314
6315         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered): fix
6316         reordered signal.
6317
6318 Mon Oct 29 12:27:51 2001  Owen Taylor  <otaylor@redhat.com>
6319
6320         * gtk/gtkfilesel.c (gtk_file_selection_rename_file): Grab
6321         the focus to the fileop entry for create dir / rename
6322         file. (#62838)
6323
6324 Mon Oct 29 12:21:49 2001  Owen Taylor  <otaylor@redhat.com>
6325
6326         * configure.in: Don't use AC_CHECK_FILE to check for a 
6327         file since it always spits warnings about cross compilation,
6328         use -f instead. It's not like we cross compile properly
6329         anyways.
6330
6331         * configure.in (gtktargetlib): Move call to AC_PROG_CC
6332         to suppress autoconf warning.
6333
6334         * acconfig.h: Add some missing #undefs from recent
6335         Win32 additions.
6336
6337 Mon Oct 29 11:31:40 2001  Owen Taylor  <otaylor@redhat.com>
6338
6339         * m4macros/gtk-2.0.m4: Don't try to use pkg-config
6340         when we didn't find it. (#62944, Eric Lemings)
6341
6342         * m4macros/gtk-2.0.m4: Fix problem with spaces around =
6343         sign in assignment. (#63209, Arkadiusz Miskiewicz)
6344
6345 2001-10-29  Anders Carlsson  <andersca@gnu.org>
6346
6347         * gtk/gtktreeview.c (gtk_tree_view_size_request): Calculate
6348         the buttons size request before using it. Fixes #61696.
6349
6350 2001-10-29  Tor Lillqvist  <tml@iki.fi>
6351
6352         * README.win32: Updates.
6353
6354         * gtk-zip.sh.in: New file, used to build distribution package for
6355         Windows.
6356
6357         * gdk/gdkglobals.c: Mark gdk_threads_mutex for DLL export when
6358         applicable with GDKVAR.
6359
6360         * gdk/win32/libwntab32x.la: New file, hand-written wrapper for the
6361         Wintab library.
6362
6363         * gdk/win32/gdkwin32.h
6364         * gdk/win32/gdkprivate-win32.h: Reorganise to match corresponding
6365         X11 headers better, and to enable gdkwin32.h to be installed and
6366         included from applications, but not the *-win32.h headers.
6367
6368         * gdk/win32/*.c: Corresponding small changes, simplifications of
6369         #includes.
6370         
6371         * gdk/win32/gdkregion-win32.c: Remove.
6372
6373         * gdk/win32/gdkevents-win32.c (print_event): Add GDK_SETTING.
6374
6375         * gdk/win32/gdkfont-win32.c
6376         * gdk/win32/gdkgeometry-win32.c: Remove unused variables.
6377
6378         * gdk/win32/gdkproperty-win32.c (gdk_atom_intern): Don't insert
6379         GDK_NONE values into hash table.
6380
6381         * gtk/gtk.def: Update.
6382
6383         * gtk/gtkfilesel.c: Include <winsock.h> (if available) for
6384         gethostname().
6385
6386         * gtk/gtkmain.c 
6387         * gtk/gtkrc.c: (Win32) Save actual DLL name for later use in DLL
6388         entry function. Avoid hardcoded paths GTK_LIBDIR, GTK_SYSCONFDIR,
6389         GTK_DATA_PREFIX and GTK_LOCALEDIR, instead add functions that call
6390         g_win32_get_package_installation_subdirectory() with the actual
6391         DLL name saved above. Redefine above directory name macros to call
6392         these functions. Remove some ifdefs.
6393
6394         * gtk/maketypes.awk: Output GTKTYPEBUILTINS_VAR (that marks
6395         variable for export on Win32) also to the _vars file.
6396
6397         Changes for autoconfiscated build on Win32, and addition of Win32
6398         backend to the related files:
6399         
6400         * configure.in: Like in GLib, set LT_CURRENT_MINUS_AGE for use
6401         when forming DLL name in some files. Set MS_LIB_AVAILABLE is
6402         lib.exe is available. Call AC_LIBTOOL_WIN32_DLL. Set
6403         PLATFORM_WIN32, OS_WIN32 and USE_WIN32 automake conditionals. Add
6404         win32 target, using pangowin32. Don't use the
6405         -export-symbols-regex option on Win32, we use .def files to list
6406         exported symbols. Check <winsock.h> (for gethostname() in
6407         gtkfilesel.c). Enclose nested AC_CHECK_* macros in brackets to
6408         prevent premature m4 expansion.
6409
6410         * acconfig.h: Add HAVE_WINTAB.
6411
6412         * gdk/Makefile.am: Add libgdk-win32-1.3.la target and associated
6413         macros and rules. Use -no-undefined on Win32. Use gdk.def file. If
6414         MS_LIB_AVAILABLE, build MS import library. Install the import
6415         libraries. If HAVE_WINTAB, link with the Wintab library.
6416
6417         * gdk/win32/Makefile.am: Actually enable building the win32
6418         objects here, not just list all files in EXTRA_DIST. Link in the
6419         compiled resource file from rc/gdk-win32res.lo. If HAVE_WINTAB,
6420         copy the Wintab library into the .libs directory. 
6421
6422         * gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Don't assume the
6423         name of the GDK DLL when fetching the icon. Use the HMODULE saved
6424         in gdk_dll_hinstance by DllMain.
6425
6426         * gdk/win32/rc/Makefile.am: Build gdk-win32res.lo using the
6427         build/win32/lt-compile-resource script.
6428
6429         * gdk/win32/rc/gdk.rc.in
6430         * gtk/gtk-win32.rc.in: Use the DLL name that libtool would use.
6431
6432         * gtk/Makefile.am: Add libgtk-win32-1.3.la target and associated
6433         macros and rules. Use -no-undefined on Win32. Use gtk-win32.def
6434         file. Install import libraries.
6435
6436 2001-10-29  Anders Carlsson  <andersca@gnu.org>
6437
6438         * gtk/gtkiconfactory.c (get_default_icons): Fix build.
6439
6440 2001-10-28  Hans Breuer  <hans@breuer.org>
6441
6442         * gdk/gdk.c gdk/gdkevents.c
6443           gdk/win32/gdkcolor-win32.c gdk/win32/gdkdnd-win32.c
6444           gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
6445           gdk/win32/gdkfont-win32.c gdk/win32/gdkgc-win32.c
6446           gdk/win32/gdkim-win32.c gdk/win32/gdkmain-win32.c
6447           gdk/win32/gdkprivate-win32.h gdk/win32/gdkproperty-win32.c
6448           gdk/win32/gdkselection-win32.c gdk/win32/gdkwin32.h
6449           gdk/win32/gdkwindow-win32.c gdk/win32/gdkwindow-win32.h :
6450         static correct-ness, underscore prefixing of library internal 
6451         functions
6452         (applied the undisputed and the win32 part. Of the latter 
6453          I'm probably the one who will change it back again, if Owen
6454          decides that the Gdk*Impl types should not be private to Gdk)
6455
6456         * gdk/gdk.def : added the remaining exported functions
6457
6458 2001-10-28  Matthias Clasen  <matthiasc@poet.de>
6459
6460         * gtk/gtkcellrenderertoggle.c, gtk/gtkimcontextsimple.c,
6461         gtk/gtkimmulticontext.c, gtk/gtkimagemenuitem.c,
6462         gtk/gtkiconfactory.c, gtk/gtkwindow.c: Documentation updates.
6463
6464 2001-10-28  jacob berkman  <jacob@ximian.com>
6465
6466         * gtk/gtkcolorsel.c (gtk_color_selection_class_init): do not call
6467         gtk_settings_get_default() here as that requires an X connection
6468         (which breaks doc building with no X connection) and is not
6469         multihead safe
6470         (gtk_color_selection_init): delay palette loading until realize
6471         time
6472         (gtk_color_selection_realize): load the palette, and initialize
6473         the global palette if it hasn't been already
6474
6475         * gtk/gtkpreview.c (gtk_preview_class_init): don't initialize the
6476         visual/cmap fields of klass->info since they are gone
6477         (gtk_preview_get_visual): just return gdk_rgb_get_visual ()
6478         (gtk_preview_get_cmap): just return gdk_rgb_get_colormap ()
6479         (gtk_preview_realize): don't set VISUAL and COLORMAP attributes
6480
6481         * gtk/gtkpreview.h (struct _GtkPreviewInfo): remove visual and
6482         cmap fields
6483         (gtk_preview_get_visual):
6484         (gtk_preview_get_cmap): mark as deprecated
6485
6486         * docs/Changes-2.0.txt: add a little note about the GtkPreviewInfo
6487         changes
6488
6489 Sun Oct 28 09:15:39 2001  Owen Taylor  <otaylor@redhat.com>
6490
6491         * gtk/gtkimcontext.h (struct _GtkIMContext): Fixed
6492         structure to have GObject not GtkObject as
6493         parent_instance. (Jeff Franks.)
6494
6495 2001-10-27  Matthias Clasen  <matthiasc@poet.de>
6496
6497         * gdk/x11/gdkinput.c: Typo fix.
6498
6499 2001-10-26  Havoc Pennington  <hp@pobox.com>
6500
6501         * gtk/gtktextview.c (gtk_text_view_mark_set_handler): Call
6502         update_im_spot_location here explicitly
6503         (gtk_text_view_reset_im_context): don't update the spot location
6504         here
6505
6506 2001-10-27  Anders Carlsson  <andersca@gnu.org>
6507
6508         * gtk/gtktreemodel.c (gtk_tree_model_get): Fix typo in docs.
6509         This fixes #62942.
6510
6511         * gtk/gtkspinbutton.c (gtk_spin_button_new_with_range): 
6512         Clarify that we're returning a spin button in the _new function.
6513         This fixes #54097.
6514         
6515 Fri Oct 26 20:55:57 2001  Owen Taylor  <otaylor@redhat.com>
6516
6517         * gtk/gtkbutton.c: Revert changes to GTK_RUN_LAST. 
6518         Unfortunately, people apparently erroneously connect
6519         to ::clicked for GtkToggleButton and expect
6520         they know what happened in the default signal handler
6521         instead of appropriately connecting to notification
6522         signal ::toggled. When the revolution comes, such
6523         people will be first against the wall.
6524
6525         We'll just have to go back to the old less-reliable
6526         set-it-back hacks for handling model-view check
6527         buttons and radio buttons. :-(. 
6528
6529 2001-10-27  Hans Breuer  <hans@breuer.org>
6530
6531         * gtk/gtkbbox.c gtk/gtkctree.c gtk/gtkhbbox.c
6532           gtk/gtkimmulticontext.c gtk/gtklabel.c gtk/gtkliststore.c
6533           gtk/gtkmenu.c gtk/gtkpaned.c gtk/gtkrc.c gtk/gtkscale.c
6534           gtk/gtkstyle.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
6535           gtk/gtktexttag.c gtk/gtktexttagtable.c gtk/gtktextview.c
6536           gtk/gtktreestore.c gtk/gtkvbbox.c : 
6537         to simplify parsing for exported functions:
6538         - made implementation signature static, when the local 
6539           prototype already was
6540         - put the functions return value on it's own line
6541         - added as space between the function name and the 
6542           opening bracket
6543
6544         * gtk/gtk.def : added the remaining exported functions
6545
6546 2001-10-27  Anders Carlsson  <andersca@gnu.org>
6547
6548         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width): 
6549         Add note about width having to be greater than 0. This fixes
6550         #55574. 
6551
6552         * gtk/gtktextiter.c (gtk_text_iter_backward_sentence_start): 
6553         Fix docs to say previous instead of next.
6554         (gtk_text_iter_backward_word_start): Likewise.
6555         This fixes bug #62980.
6556
6557         * gtk/gtkcontainer.c (gtk_container_set_border_width): Mention
6558         that the valid width is in range 0-65535 pixels. Fixes bug 
6559         #56754.
6560
6561         * gtk/gtksizegroup.c (gtk_size_group_set_mode): Remove
6562         a dot in the documentation. Fixes bug #62632.
6563
6564         * gdk/x11/gdkmain-x11.c: Replace int and guint with
6565         long and gulong in some places to make the code 64-bit
6566         clean.
6567         (_gdk_windowing_init_check): Replace gint with gulong.
6568         This patch was made by George Lebl and fixes bug #62113.
6569
6570         * tests/testgtk.c (create_range_controls): Don't set a 
6571         fixed height on the hscale widget. This fixes "bug" 
6572         #55840.
6573         (create_window_states): Set up destroy signals so that
6574         all windows will be destroyed when one is. This fixes 
6575         bug #58133.
6576
6577 2001-10-26  Anders Carlsson  <andersca@gnu.org>
6578
6579         * gtk/gtktreeview.c: 
6580         (gtk_tree_view_class_init): Create new "indent_expander"
6581         style property.
6582
6583         (gtk_tree_view_get_arrow_xrange): Add a tree argument
6584         to the function since the xrange can change depending
6585         on where in the tree we are. 
6586         
6587         (coords_are_over_arrow): Update function call to
6588         gtk_tree_view_get_arrow_xrange.
6589         (gtk_tree_view_draw_arrow): Likewise.
6590         
6591         (gtk_tree_view_real_expand_collapse_cursor_row):
6592         Call real_{expand|collapse}_row, so that we'll have an
6593         animation.
6594
6595 Fri Oct 26 20:13:36 2001  Kristian Rietveld  <kristian@planet.nl>
6596
6597         * tests/Makefile.am: fixed a small typo
6598
6599 Fri Oct 26 18:27:11 2001  Kristian Rietveld  <kristian@planet.nl>
6600
6601         * demos/gtk-demo/list_store.c (create_model): Anders
6602         Carlsson suggested to use G_N_ELEMENTS here
6603
6604 2001-10-26  Sven Neumann  <sven@gimp.org>
6605
6606         * gtk/gtkbutton.[ch]
6607         * gtk/gtkdnd.c: fixed inline comments
6608         
6609         * gtk/gtkgamma.c: gtk_entry_get_text() returns a const gchar.
6610
6611 2001-10-26  Hans Breuer  <hans@breuer.org>
6612
6613         * gdk-pixbuf/gdk_pixbuf.def : 
6614         * gdk/gdk.def : 
6615         * gtk/gtk.def : updated externals
6616
6617         * gdk/win32/gdkpixmap-win32.c : removed duplicate of
6618         gdk_window_lookup implementation. It already was in
6619         gdk/win32/gdkwindow-win32.c
6620
6621         * gdk/win32/gdkproperty-win32.c : made it compile again
6622         after GdkAtom API change
6623
6624         * gtk/gtk/makefile.msc.in : updated
6625
6626 Wed Oct 24 11:36:33 2001  Owen Taylor  <otaylor@redhat.com>
6627
6628         * configure.in (GTK_MICRO_VERSION): Version 1.3.10,
6629         require GLib 1.3.10.
6630
6631         * NEWS: updates.
6632
6633 Thu Oct 25 16:27:29 2001  Jonathan Blandford  <jrb@redhat.com>
6634
6635         * gtk/gtkrbtree.c (_gtk_rbnode_rotate_left): Add support for
6636         invalid nodes.
6637          (_gtk_rbnode_rotate_right): Ditto.
6638          (_gtk_rbtree_node_mark_invalid): New function.
6639          (_gtk_rbtree_node_mark_valid): New function.
6640
6641         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_class_init): We're a
6642         GObject, not a GtkObject.
6643         (gtk_tree_model_sort_row_has_child_toggled): Rewrote to be more
6644         correct.
6645         (gtk_tree_model_sort_row_deleted): ditto.
6646         (gtk_tree_model_sort_{un,}ref_node): Fix.
6647
6648         * gtk/gtktreeview.c: Protean incremental reflow support (commented
6649         out)
6650
6651         * gtk/gtktreeview.h (GtkTreeViewSearchEqualFunc): change char *key
6652         to const char *key.
6653
6654         * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path_helper):
6655         Important 1 line fix to fix a lot of refcounting woes.
6656
6657 2001-10-25  Matt Wilson  <msw@redhat.com>
6658
6659         * gtk/gtktextview.c (gtk_text_view_destroy): call
6660         gtk_text_view_destroy_layout after gtk_text_view_set_buffer (which
6661         now invalidates) so that we remove our idle functions.
6662         (gtk_text_view_destroy_layout): remove the first_validate_idle as
6663         well.
6664
6665         * gtk/gtktexttag.c (gtk_text_tag_class_init): the valid range for
6666         the 'indent' property is G_MININT to G_MAXINT.  Don't use
6667         -G_MAXINT for the minimum of the 'rise' property, use G_MININT
6668         instead.
6669
6670 2001-10-24  Anders Carlsson  <andersca@gnu.org>
6671
6672         * gtk/gtktreeview.c: 
6673         (gtk_tree_view_real_expand_row): add an animate argument
6674         (gtk_tree_view_real_collapse_row): likewise
6675         
6676         (gtk_tree_view_button_press), (gtk_tree_view_button_release), 
6677         (gtk_tree_view_collapse_all), (gtk_tree_view_expand_row),
6678         (gtk_tree_view_collapse_row): update functions that call
6679         real_{expand|collapse}_row to set the animate argument 
6680         accordingly.
6681         
6682 2001-10-24  Alex Larsson  <alexl@redhat.com>
6683
6684         * gdk/linux-fb/gdkfont-fb.c:
6685         Update to new Pango APIs
6686
6687         * gdk/linux-fb/gdkproperty-fb.c:
6688         Update to new GdkAtom APIs
6689
6690         * gdk/linux-fb/gdkwindow-fb.c:
6691         Remove warnings
6692
6693 Mon Oct 22 20:07:21 2001  Jonathan Blandford  <jrb@redhat.com>
6694
6695         * gtk/gtktreestore.c (gtk_tree_store_prepend): Fix docs, #62808
6696
6697 Wed Oct 24 22:54:07 2001  Kristian Rietveld  <kristian@planet.nl>
6698
6699         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_inserted): treat
6700         s_path as a child path
6701
6702 Wed Oct 24 20:29:47 2001  Kristian Rietveld  <kristian@planet.nl>
6703
6704         * gtk/gtktreemodelsort.c: more changes in an attempt to get
6705         it right. It's not yet ready for general consumption.
6706
6707         * tests/treestoretest.c: add a button and entry for the new
6708         iter_change function
6709         (iter_change): new function, to test
6710         the row_changed signal implementation of the GtkTreeModelSort
6711
6712         * tests/testtreesort.c: cleanups, changes to test more features
6713         of the GtkTreeModelSort at once
6714
6715 2001-10-24  Havoc Pennington  <hp@redhat.com>
6716
6717         * gtk/gtktextbuffer.c (clipboard_clipboard_buffer_received):
6718         remove hack to strip off the bogus newline, since we killed the
6719         bogus newline; fixes #61779
6720
6721 2001-10-24  Havoc Pennington  <hp@redhat.com>
6722
6723         * gtk/gtktextview.c (gtk_text_view_update_adjustments): don't
6724         create layout if we didn't have one
6725         (gtk_text_view_set_buffer): invalidate so we get the idle handlers
6726         as appropriate, avoids blanking the screen 
6727         (gtk_text_view_invalidate): new function to do invalidation,
6728         containing old guts of invalidated_handler
6729
6730 Wed Oct 24 10:29:47 2001  Owen Taylor  <otaylor@redhat.com>
6731
6732         * gtk/gtkalignment.c (gtk_alignment_class_init): Improve
6733         dreadful tooltips.
6734
6735 Tue Oct 23 17:31:42 2001  Owen Taylor  <otaylor@redhat.com>
6736
6737         * gdk/x11/gdkwindow-x11.c gdk/win32/gdkwindow-win32.c: Always 
6738         set window->parent (except or the root window itself); if 
6739         the window's parent is not a GdkWindow, or is a window of 
6740         type GDK_WINDOW_FOREIGN, set window->parent to the root parent.
6741
6742         * gdk/gdkwindow.c (gdk_window_get_toplevels): Don't include
6743         windows of type GDK_WINDOW_FOREIGN.
6744
6745 2001-10-24  Havoc Pennington  <hp@pobox.com>
6746
6747         * gtk/gtktextiter.c (gtk_text_iter_backward_chars): if we move to
6748         the front of a segment, use the "slow" technique for moving
6749         backward, so we don't mess up the any_segment field in the iter. 
6750         Fixes #57707
6751
6752         * tests/testtextbuffer.c: add code to detect #57707, to avoid
6753         regression
6754
6755 2001-10-23  Havoc Pennington  <hp@redhat.com>
6756
6757         * gtk/gtktextview.c (popup_targets_received): only sensitize Cut
6758         if selection contains some editable text, #60975
6759         (gtk_text_view_scroll_to_iter): remove warning about scrolling
6760         prior to map; it should actually be OK to do so in many cases, 
6761         it would be nice to warn about scrolling when many lines have
6762         height 0, but I don't know what to do about that. Perhaps 
6763         move part of flush_scroll into this function? comment added 
6764         to consider this.
6765
6766 2001-10-23  Havoc Pennington  <hp@redhat.com>
6767
6768         * gtk/gtktextview.c (changed_handler): Correctly keep the same
6769         text on the top of the screen, considering that the changed region
6770         may have overlapped the first paragraph. Should fix msw's "text
6771         widget scrolled to wrong place on map" bug, and probably some
6772         other scrolling cases as well.
6773         (gtk_text_view_set_scroll_adjustments): start adjustments at 0.0, 
6774         instead of some random value
6775
6776         * gtk/gtktextview.c (gtk_text_view_class_init): actually override
6777         grab_focus, so #59708 is really fixed
6778
6779 2001-10-24  Anders Carlsson  <andersca@gnu.org>
6780
6781         * gtk/gtkentry.c: (append_action_signal): Use an image menu item here
6782         (popup_targets_received): Call append_action_signal with stock items
6783         
6784         * gtk/gtklabel.c: (append_action_signal): Use an image menu item here
6785         (gtk_label_do_popup): Call append_action_signal with stock items
6786         
6787         * gtk/gtktextview.c: (append_action_signal): Use an image menu item here
6788         (popup_targets_received): Call append_action_signal with stock items
6789
6790 2001-10-23  Havoc Pennington  <hp@redhat.com>
6791
6792         * gtk/gtktextview.c (changed_handler): queue a resize here; will
6793         temporarily slow down the widget a lot, until we figure out how to
6794         optimize to avoid full redraw everytime we queue a resize.
6795
6796 2001-10-23  Havoc Pennington  <hp@redhat.com>
6797
6798         * gtk/gtktextiter.c (test_log_attrs): handle case where offset ==
6799         0 and char_len == 0, bug #61729
6800
6801 2001-10-23  Havoc Pennington  <hp@redhat.com>
6802
6803         * gtk/gtktextiter.c (gtk_text_iter_forward_cursor_positions): fix
6804         return value, #61714 (Vitaly Tishkov)
6805         (gtk_text_iter_backward_sentence_starts): ditto
6806         (gtk_text_iter_backward_word_starts): ditto
6807         (gtk_text_iter_forward_word_ends): ditto
6808         (gtk_text_iter_forward_sentence_ends): ditto
6809         (gtk_text_iter_backward_cursor_positions): ditto
6810
6811 2001-10-23  Havoc Pennington  <hp@redhat.com>
6812
6813         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_at_pixel): Apply
6814         fix from Dov Grobgeld, #61858
6815
6816 2001-10-23  Havoc Pennington  <hp@redhat.com>
6817
6818         * gtk/gtktextview.c (gtk_text_view_update_im_spot_location): 
6819         Update IM spot location at appropriate times, #50626
6820         (Hidetoshi Tajima)
6821
6822 2001-10-23  Havoc Pennington  <hp@redhat.com>
6823
6824         * gtk/gtktextview.c (gtk_text_view_grab_focus): scroll to cursor
6825         on grab focus, unless it's caused by button click, #59708
6826
6827 Tue Oct 23 11:53:00 2001  Owen Taylor  <otaylor@redhat.com>
6828
6829         * gtk/Makefile.am (INCLUDES): Remove G_DISABLE_CONST_RETURNS.
6830
6831         * gtk/gtkfontsel.[ch]: Make gtk_font_selection_get_font()
6832         G_CONST_RETURN. (Murray Cumming)        
6833
6834         * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_preview_text):
6835         Make G_CONST_RETURN.
6836
6837         * gtk/gtkfilesel.c (open_user_dir): Fix bug with freeing
6838         results of g_get_home_dir().
6839
6840         * gtk/gtkfilesel.c: Make filesel->fileop_file a duplicated 
6841         copy. Storing the return from gtk_entry_get_text() is evil.
6842
6843         * gtk/gtkcombo.c gtk/gtkcellrenderertext.c gtk/gtkbindings.c 
6844         gtk/gtkfilesel.c gtk/gtkfontsel.c gtk/gtkimmodule.c 
6845         gtk/gtkobject.c gtk/gtkoldeditable.c gtk/gtktreedatalist.c
6846         gtk/gtksignal.c: Add const.
6847
6848         * gdk/x11/gdkkeys-x11.c (get_direction): Add missing const.
6849
6850         * gtk/gtktreeview.c: Namespace object data keys to be safe, even 
6851         if we are setting them on private widgets.
6852
6853         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
6854         Duplicate entry->text before setting it as object data.
6855
6856 2001-10-22  Havoc Pennington  <hp@redhat.com>
6857
6858         * gtk/gtktextbuffer.c (gtk_text_buffer_place_cursor): don't back
6859         up a char from the end iterator, fixes #61859 ("can't put cursor
6860         at the end of the buffer")
6861
6862         * gtk/gtktextiter.c (gtk_text_iter_forward_to_line_end): fix this
6863         to work with delimiters other than newline.
6864
6865         * tests/testtextbuffer.c: add some tests for get_chars_in_line,
6866         get_bytes_in_line
6867
6868         * gtk/gtktextiter.c (gtk_text_iter_get_chars_in_line): fix for the
6869         last line, since the newline is no longer counted.
6870         (gtk_text_iter_get_bytes_in_line): ditto
6871
6872 2001-10-22  Havoc Pennington  <hp@redhat.com>
6873
6874         * gtk/gtktextbtree.c (_gtk_text_btree_insert): add assertion that 
6875         #58290 would trigger if it reappeared, I think
6876
6877 2001-10-22  Havoc Pennington  <hp@redhat.com>
6878
6879         * gtk/gtktextiter.c (_gtk_text_iter_forward_indexable_segment):
6880         add temporary code to dump btree contents on assertion failure
6881         described in #62656
6882         
6883         * gtk/gtktextbtree.c (ensure_end_iter_segment): add some
6884         assertions that we're getting the right end iter segment
6885
6886         * gtk/gtktextiter.c (_gtk_text_iter_forward_indexable_segment):
6887         verify that we aren't on the end iterator after moving 
6888         forward one segment - fixes return value in an obscure case. 
6889         Also, some trivial code cleanup/rearranging.
6890         
6891 2001-10-22  Havoc Pennington  <hp@redhat.com>
6892
6893         * gtk/gtktextlayout.h: add a #error unless you define
6894         GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API, so people don't use this accidentally
6895
6896         * gtk/gtktext*.c: #define GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API as appropriate.
6897         
6898 2001-10-22  Havoc Pennington  <hp@redhat.com>
6899
6900         * gtk/gtktextview.c (gtk_text_view_get_border_window_size): fix 
6901         #62365
6902
6903 2001-10-22  Havoc Pennington  <hp@redhat.com>
6904
6905         * gtk/gtktextview.c (gtk_text_view_get_window_type): fix 
6906         #62436
6907
6908 2001-10-22  Havoc Pennington  <hp@redhat.com>
6909
6910         * gtk/gtktextview.c (gtk_text_view_set_border_window_size): Fix 
6911         #62366
6912
6913 Mon Oct 22 11:47:47 2001  Owen Taylor  <otaylor@redhat.com>
6914
6915         * gtk/gtklabel.c: Add cursor-position, selection-bound 
6916         properties. (#62148, reported by Padraig O'Briain)
6917
6918         * gtk/gtkentry.c (gtk_entry_class_init): Rename text_position
6919         to cursor_position. (1.3.x addition, text_position is an awful
6920         name.) Make cursor_position read-only to avoid sticky questions
6921         of interaction with selection_bound. (#62636, reported by
6922         Padraig O'Briain)
6923
6924 Mon Oct 22 16:25:12 2001  Owen Taylor  <otaylor@redhat.com>
6925
6926         Fixing popup menus to have "Paste" sensitized correctly. Original
6927         patches from Damian Ivereigh, much mangled.
6928
6929         * gtk/gtkselection.c: Add functions gtk_selection_data_get_targets(),
6930         gtk_selection_data_targets_include_text(). (#60854)
6931
6932         * gtk/gtkclipboard.c: Add a simple do-it-all non-async "check if
6933         the clipboard has text" function gtk_clipboard_wait_is_text_available.
6934         (#60854)
6935
6936         * gtk/gtkentry.c: Only enable the paste item if the clipboard
6937         contains text. (#60973)
6938
6939         * gtk/gtktextview.c: Only enable the paste item if the clipboard
6940         contains text. (#60975)
6941
6942 2001-10-22  Havoc Pennington  <hp@redhat.com>
6943
6944         * gtk/gtktextview.c (gtk_text_view_class_init): rip out
6945         "height_lines" and "width_columns" properties, it doesn't make
6946         sense to set the size request on a text view really. #62103
6947
6948 Mon Oct 22 15:17:05 2001  Jonathan Blandford  <jrb@redhat.com>
6949
6950         * gtk/gtktreestore.c (gtk_tree_store_iter_depth): Realized
6951         g_node_depth is broken, and that it's not worth being consistent
6952         with it.
6953
6954 2001-10-22  Havoc Pennington  <hp@redhat.com>
6955
6956         * gtk/gtktextiter.c (gtk_text_iter_set_line): Clarify behavior in
6957         docs, #61777
6958         (gtk_text_iter_forward_search) (gtk_text_iter_backward_search):
6959         change the two boolean args to a flags field, so we can extend 
6960         to add case insensitive, regexp searches later. #61852
6961
6962 Mon Oct 22 15:07:17 2001  Jonathan Blandford  <jrb@redhat.com>
6963
6964         * gtk/gtktreestore.c (gtk_tree_store_iter_depth): update docs to
6965         reflect reality, #62810
6966
6967 Mon Oct 22 14:08:26 2001  Jonathan Blandford  <jrb@redhat.com>
6968
6969         * demos/gtk-demo/appwindow.c: Remove handle_box from App demo.
6970
6971         * gtk/gtktreeview.c (size_allocate): Move to a different drawing
6972         system.  Instead of having a window the size of the tree, we have
6973         a window the size of widget->allocation, and simply draw with the
6974         offset.
6975         (coords_are_over_arrow): ditto.  Move to window coordinates.
6976         (do_prelight): ditto
6977         (do_unprelight): ditto
6978
6979         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered):
6980         Minor fix from Kristian Rietveld to fix unsorted case.
6981
6982 2001-10-22  jacob berkman  <jacob@ximian.com>
6983
6984         * gtk/gtkclist.c (cell_size_request): don't cast a PIXTEXT cell to
6985         a PIXMAP cell (fixes crash when using PIXTEXT cells)
6986
6987 Sat Oct 20 18:58:25 2001  Owen Taylor  <otaylor@redhat.com>
6988
6989         * gtk/gtkentry.h: Deprecate gtk_entry_set_editable.
6990         (#58768, Vitaly Tishkov)
6991         
6992         * gtk/gtkobject.h: Deprecate with abandon. 
6993         (#61942, Vitaly Tishkov, Matthias Clasen)
6994
6995         * gtk/gtksignal.h: Deprecate everything.
6996
6997         * gtk/gtkmain.h (GTK_PRIORITY_INTERNAL): Deprecate
6998         all GTK_PRIORITY_* defines other than GKT_PRIORITY_RESIZE>
6999         (#61942, Matthias Clasen)
7000
7001         * gtk/gtkstyle.h: Deprecate gtk_draw_*. (#61140,
7002         Havoc Pennington)
7003
7004         * gtk/gtkitemfactory.h: Deprecate compat functions
7005         for GtkMenuFactory code. (#62071)
7006
7007         * gdk/gdkdrawable.h: Deprecate gdk_draw_string,
7008         gdk_draw_text,gdk_draw_text_wc. (#62071)
7009
7010 Mon Oct 22 10:12:08 2001  Owen Taylor  <otaylor@redhat.com>
7011
7012         * gdk/gdk.c docs/Changes-2.0.txt (gdk_threads_init): Don't call
7013         g_thread_init(), we don't want to link to -lgthread if we don't
7014         have to.
7015
7016 Mon Oct 22 08:51:02 2001  Owen Taylor  <otaylor@redhat.com>
7017
7018         * gdk/gdk.[ch] (gdk_threads_init) docs/Changes-2.0.txt: 
7019         Add a function, gdk_threads_init() that must be explicitely 
7020         called to enable the GDK thread mutex.
7021
7022 2001-10-22  Jakub Steiner <jimmac@ximian.com>
7023
7024         * gtk/stock-icons/stock_stop.png: no body parts
7025         
7026 Sun Oct 21 23:27:00 2001  Owen Taylor  <otaylor@redhat.com>
7027
7028         * gtk/gtkwidget.c (gtk_widget_translate_coordinates): Fix
7029         problem with g_return_if_fail return value.
7030
7031         * gdk/x11/gdkproperty-x11.c docs/Changes-2.0.txt: Move over the 
7032         virtual atom code from the gdk-multihead branch, removing the per-display
7033         part. Virtualizing atoms needs to be done now to prevent compat
7034         breakage in direct Xlib accessing code in the future. (#62208)
7035  
7036         * gdk/x11/gdkx.h: gdk/gdk/x11/gdkproperty-x11.c: Export
7037         gdk_x11_xatom_to_atom, gdk_x11_atom_to_xatom().
7038  
7039         * gdk/gdktypes.h docs/Changes-2.0.txt: Make GdkAtom
7040         an opaque pointer type so the compiler catches attempts
7041         to mingle it with X atoms.
7042
7043         * gdk/x11/{gdkdnd-x11.c,gdkevents-x11.c,gdkglobals-x11.c,
7044           gdkkeys-x11.c, gdkmain-x11.c, gdkprivate-x11.c, 
7045           gdkproperty-x11.c, gdkselection-x11.c, gdkwindow-x11.c}
7046           gtk/{gtkclist.c,gtkctree.c,gtkdnd.c,gtkplug.c,gtksocket.c}
7047           tests/testdnd.c,tests/testselection.c: 
7048         Fix up for above atom changes.
7049
7050         * gdk/gdkselection.h (GDK_SELECTION_CLIPBOARD): Add, since we
7051         now have the ability to add custom predefines.
7052
7053         * gtk/{gtkentry.c,gtklabel.c,gtkoldeditable.c,gtktextview.c}:
7054         Use GDK_SELECTION_CLIPBOARD instead of GDK_NONE in calls
7055         to gtk_clipboard_get().
7056
7057         * gdk/win32/gdkproperty-win32.c: Add CLIPBOARD, fix up
7058         for GdkAtom => pointer change.
7059
7060         * gdk/linux-fb/gdkproperty-fb.c: Fix handling of predefined
7061         atoms, fix for GdkAtom => pointer change.
7062
7063 Mon Oct 22 00:26:46 2001  Kristian Rietveld  <kristian@planet.nl>
7064
7065         * gtk/gtkspinbutton.c: remove ARROW_SIZE constant, use
7066         new function spin_button_get_arrow_size() instead.
7067
7068         * gtk/gtkstyle.c (gtk_default_draw_arrow): actual size of
7069         arrow was hardcoded, it's now variable.
7070
7071         Fixes bug #50200
7072
7073 Sat Oct 20 18:16:04 2001  Manish Singh  <yosh@gimp.org>
7074
7075         * gtk/gtktreeview.c (gtk_treeview_get_property): PROP_MODEL and
7076         PROP_EXPANDER_COLUMN can be NULL, so don't do a object cast check
7077         for those
7078
7079 Sat Oct 20 19:38:16 2001  Owen Taylor  <otaylor@redhat.com>
7080
7081         * demos/*.c demos/gdk-pixbuf/*.c: Eliminate gtk_signal_*
7082         in favor of g_signal_*, gtk_object_* in favor of 
7083         g_object_*.
7084
7085 Fri Oct 19 18:35:22 2001  Manish Singh  <yosh@gimp.org>
7086
7087         * gtk/{gtkentry.c,gtktextview.c}: since GtkIMContext derives directly
7088         from GObject now, we have to use the g_object_* functions, not
7089         gtk_object_*.
7090
7091 Fri Oct 19 22:46:54 2001  Kristian Rietveld  <kristian@planet.nl>
7092
7093         * gtk/gtktreemodelsort.[ch]: we probably have rows_reordered
7094         nailed down now (this code is not yet ready for general consumption)
7095
7096 Fri Oct 19 13:44:51 2001  Manish Singh  <yosh@gimp.org>
7097
7098         * gtk/gtktreeview.c (gtk_treeview_scroll_to_cell): correct docs
7099         for use_align
7100
7101 Fri Oct 19 15:34:06 2001  Owen Taylor  <otaylor@redhat.com>
7102
7103         * gtk/gtk.h gtk/Makefile.am: Export GtkIMContextSimple publically. (#61862)
7104
7105 Fri Oct 19 15:08:30 2001  Owen Taylor  <otaylor@redhat.com>
7106
7107         * gtk/{gtkimcontext.c,gtkimcontextsimple.c,gtkimmulticontext.c}
7108         modules/input/{gtkimcontextxim.c,imcyrillic-translit.c,iminuktitut.c,
7109         imipa.c,imthai-broken.c,imviqr.c}: Make GtkIMContext derive from
7110         GObject, not GtkObject. (#62621)
7111
7112 Fri Oct 19 12:49:12 2001  Owen Taylor  <otaylor@redhat.com>
7113
7114         * tests/testsocket.c: Remove now useless include of unistd.h,
7115         fix wrong argument gtk_socket_steal. (Hans Breuer, #58541)
7116         
7117 Fri Oct 19 12:24:32 2001  Owen Taylor  <otaylor@redhat.com>
7118
7119         * gdk/linux-fb/gdkfont-fb.c: Fix up for change to 
7120         Pango font API. #61933. (Untested, even for compilation.)
7121
7122 Fri Oct 19 11:24:58 2001  Owen Taylor  <otaylor@redhat.com>
7123
7124         * gtk/gtkmain.[ch] (gtk_disable_setlocale): Actually
7125         export gtk_disable_setlocale(). (Caught by Sven Neumann)
7126
7127 2001-10-18  Havoc Pennington  <hp@redhat.com>
7128
7129         * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_lookup): fix compilation
7130
7131 2001-10-18  Havoc Pennington  <hp@redhat.com>
7132
7133         * gtk/gtkbutton.c (gtk_button_class_init): Change button signals
7134         to GTK_RUN_LAST, #50239
7135
7136 2001-10-18  HideToshi Tajima  <hidetoshi.tajima@sun.com>
7137
7138         * gtk/gtkimmodule.c (match_locale):
7139         Support "*" for all locales with least priority
7140         when to select default im module, #58201
7141
7142 2001-10-18  Matthias Clasen  <matthiasc@poet.de>
7143
7144         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): 
7145         Fix docs. (#61976)
7146  
7147         * gtk/gtkplug.c (gtk_plug_get_id) : Fix docs. (#62144)
7148
7149         * gtk/gtkliststore.c: Fix docs. (#61672, #61675)
7150
7151         * gdk/gdkwindow.h, gdk/gdkpixmap.h, gdk/x11/gdkx.h,
7152         gdk/x11/gdkwindow-x11.c, gdk/x11/gdkpixmap-x11.c,
7153         gdk/win32/gdkwin32.h, gdk/win32/gdkwindow-win32.c,
7154         gdk/win32/gdkpixmap-win32.c, gdk/linux-fb/gdkfb.h,
7155         gdk/linux-fb/gdkwindow-fb.c, gdk/linux-fb/gdkpixmap-fb.c:
7156         Add gdk_window_lookup, gdk_window_foreign_new, gdk_pixmap_lookup
7157         and gkd_pixmap_foreign_new to the gdk frontend api. (#62063)
7158
7159         * gtk/gtkselection.c: Remove gdk backend dependencies. (#62063)
7160
7161         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): 
7162         Don't restrict the width of the spinbutton entry field 
7163         to 10 digits. (#58681)
7164
7165 Thu Oct 18 14:58:14 2001  Jonathan Blandford  <jrb@redhat.com>
7166
7167         * tests/testtreeflow.c: new test program for the tree.
7168
7169 Thu Oct 18 14:22:10 2001  Jonathan Blandford  <jrb@redhat.com>
7170
7171         * gtk/gtktreestore.c (gtk_tree_store_remove): fix small bug
7172         reported by (Oleg Maiboroda), #62600
7173
7174 2001-10-18  Michael Meeks  <michael@ximian.com>
7175
7176         * gtk/gtkentry.c (gtk_entry_set_property),
7177         (gtk_entry_get_property): impl 'text'
7178         (gtk_entry_class_init): add the 'text' prop.
7179         (gtk_entry_insert_text): notify 'text' changed.
7180         (gtk_entry_delete_text): ditto.
7181
7182 2001-10-17  Matthias Clasen  <matthiasc@poet.de>
7183
7184         * gtk/gtkdnd.c, gtk/gtkclipboard.c, gdk/x11/gdkmain-x11.c:
7185         Documentation updates.
7186
7187 Wed Oct 17 15:17:20 2001  Owen Taylor  <otaylor@redhat.com>
7188
7189         * gtk/gtkentry.c (gtk_entry_real_insert_text): Fix mistake
7190         in truncating length of text to MAX_SIZE. (Found by 
7191         Padraig O'Briain, #62055)
7192
7193 Tue Oct 16 17:04:44 2001  Owen Taylor  <otaylor@redhat.com>
7194
7195         * gtk/gtkwidget.c: Rename ACTIVATE_MNEMONIC enum to
7196         MNEMONIC_ACTIVATE; signal was changed a long time
7197         ago.
7198
7199         * gdk/x11/gdkim-x11.c (_gdk_x11_initialize_locale): 
7200         Fix wrong return statement. (Reported by HideToshi
7201         Tajima and others.)
7202
7203         * gtk/gtklabel.h (struct _GtkLabelClass): Remove
7204         left over select_all vfunc.
7205
7206 Tue Oct 16 15:50:03 2001  Owen Taylor  <otaylor@redhat.com>
7207
7208         * gtk/gtkwidget.c (gtk_widget_translate_coordinates): Add
7209         a utility function to translate coordinates relative to
7210         one widget's allocation to coordinates relative to another
7211         widget's allocation.
7212
7213         * gtk/gtkradiobutton.c: Add a special ->focus() implementation
7214         that:
7215          - only accepts external focus if there is no active
7216            member of the group or the button is active.
7217          - makes arrow keys move the active button as well
7218            as the focus
7219          - make tab tab out directly.
7220         This makes a radio button group act as a single focus location.
7221         (#53577).
7222         
7223         * gtk/gtkcontainer.c (gtk_container_focus): Remove prefiltering -
7224         it was only a small optimization that didn't matter and made
7225         things more complicated.
7226
7227         * gtk/gtkcontainer.c (gtk_container_focus_tab): Get rid of custom
7228         sorter for FOCUS_TAB as we did for the other focus directions,
7229         sort by center of widgets, not upper-left corner. (Shouldn't
7230         matter in general.)
7231
7232         * gtk/gtkcontainer.c: Restructure code to remove duplicate code
7233         from the different types of focusing: encapsulate sorting the
7234         widgets for the focus direction into one routine
7235         (gtk_container_focus_sort()) and then share the work of moving the
7236         focus between the different focus directions.
7237
7238         * gtk/gtkcontainer.c: Fix bug where arrow navigation might not
7239         work correctly with focus chains containing non-immediate
7240         children. Sorting was being done using allocation coordinates for
7241         each widget in the focus chain, and if there were intermediate
7242         window-widgets, these allocations would not be in the same
7243         coordinate system.
7244
7245 Tue Oct 16 15:12:26 2001  Jonathan Blandford  <jrb@redhat.com>
7246
7247         * gtk/gtkoptionmenu.c (gtk_option_menu_mnemonic_activate): add a
7248         mnemonic_activate function to option menu.
7249
7250 2001-10-15  Murray Cumming <murrayc@usa.net>
7251
7252         * gtk/gtkinputdialog.c, gtk/gtktoolbar.c,  gtk/gtkwidget.c:
7253           Corrected the type names used in some calls to g_signal_new().
7254         
7255 Sat Oct 13 07:09:30 2001  Tim Janik  <timj@gtk.org>
7256
7257         * gtk/gtkbindings.c (gtk_binding_set_add_path): to compare pattern
7258         specs, use g_pattern_spec_equal() instead of direct field accesses.
7259         upon compressing two equal paths of the same type, the resulting
7260         priority has to be the maximum.
7261         * gtk/gtkenums.h (enum): take GTK_PATH_PRIO_MASK out of the
7262         GtkPathPriorityType enum and make it a macro.
7263
7264 2001-10-12  Matthias Clasen  <matthiasc@poet.de>
7265
7266         * gtk/gtkwidget.c: Fix some doc comments.
7267
7268 Fri Oct 12 11:39:20 2001  Joshua N Pritikin  <vishnu@pobox.com>
7269
7270         * gtk/gtktreeview.c (gtk_tree_view_get_path_at_pos): Fix to work
7271         on empty models.
7272
7273 2001-10-11  Matthias Clasen  <matthiasc@poet.de>
7274
7275         * gtk/gtkcolorsel.c, gtk/gtkwidget.c, gtk/gtktreeview.c:
7276         Remove stale gdk backend includes.
7277  
7278 2001-10-10  Michael Meeks  <michael@ximian.com>
7279
7280         * gtk/gtkcombo.c (gtk_combo_class_init): add enable_empty
7281         and value_in_list properties.
7282         (gtk_combo_set_value_in_list): notify change.
7283         (gtk_combo_set_property, gtk_combo_get_property): impl. prop.
7284
7285 2001-10-11  James Henstridge  <james@daa.com.au>
7286
7287         * configure.in: add AS=CC and ASFLAGS=CFLAGS substitutions so
7288         that gtk+ can be built with automake 1.5 while not breaking
7289         things for automake 1.4.
7290
7291 Wed Oct 10 12:48:38 2001  Owen Taylor  <otaylor@redhat.com>
7292
7293         * gtk/gtkmain.c (gtk_init_check): Call setlocale (LC_ALL, "").
7294         (#60606)
7295
7296         * gtk/gtkmain.c (gtk_disable_setlocale): Add function
7297         to disable calling setlocale (LC_ALL, "").
7298
7299         * gtk/gtkmain.c (gtk_set_locale): Indicate in the 
7300         docs that this function is not typically useful.
7301
7302         * gdk/x11/{gdkim-x11.c,gdkmain-x11.c,gdkprivate-x11.h}: 
7303         Automatically initialize GDK for the current locale
7304         on gdk_init(). Don't reset locale to C when
7305         XSupportsLocale() fails.
7306
7307         * gdk/linux-fb/gdkim-fb.c (gdk_set_locale): Remove
7308         useless checks for UTF-8 locale breakage that mattered
7309         only for X.
7310
7311         * examples/calendar/calendar.c
7312         tests/{testgtk.c,testtext.c,testcalendar.c}: Remove calls to 
7313         gtk_set_locale().
7314
7315         * gtk/gtkiconfactory.c gtk/gtkitemfactory.c:
7316         gdk_pixbuf_new_from_stream => gdk_pixbuf_new_from_inline.
7317
7318 Wed Oct 10 21:13:46 2001  Kristian Rietveld  <kristian@planet.nl>
7319
7320         * gtk/gtktreemodel.[ch]: added gtk_tree_model_get_iter_from_string().
7321
7322         Fixes bug #61904
7323
7324 Wed Oct 10 01:19:04 2001  Jonathan Blandford  <jrb@redhat.com>
7325
7326         * gtk/gtktreeselection.c (gtk_tree_selection_iter_is_selected):
7327         new function, #61923
7328         (gtk_tree_selection_path_is_selected): Ditto
7329
7330 Tue Oct  9 17:40:24 2001  Jonathan Blandford  <jrb@redhat.com>
7331
7332         * gtk/gtktreestore.c (gtk_tree_store_finalize): We're a gobject,
7333         not a GtkObject.  Thanks andersca.
7334
7335         * gtk/gtkliststore.c (gtk_list_store_finalize): ditto
7336
7337 Tue Oct  9 14:50:51 2001  Jonathan Blandford  <jrb@redhat.com>
7338
7339         * gtk/gtktreeviewcolumn.c
7340         (gtk_tree_view_model_sort_column_changed): fix broken code.
7341
7342 2001-10-08  Matthias Clasen  <matthiasc@poet.de>
7343
7344         * gtk/gtkselection.c: s/succesfully/successfully/g
7345
7346 2001-10-08  Havoc Pennington  <hp@pobox.com>
7347
7348         * demos/gtk-demo/stock_browser.c: remove unused enum
7349
7350         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node):
7351         pass the current selection state of the node in to the user
7352         selection func
7353
7354 2001-10-06  Matthias Clasen  <matthiasc@poet.de>
7355
7356         * gdk/x11/gdkx.h (GDK_CURSOR_XCURSOR): Replace reference to 
7357         non-existent function gdk_x11_cursor_get_xid 
7358         by gdk_x11_cursor_get_xcursor.
7359
7360 Fri Oct  5 20:50:00 2001  Jonathan Blandford  <jrb@redhat.com>
7361
7362         * gtk/gtktreestore.c (gtk_tree_store_iter_has_child): improve
7363         warning.
7364
7365         * gtk/gtktreemodel.c (gtk_tree_row_reference_new_proxy): ref and
7366         unref nodes, #okay61676
7367
7368         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_sort): we listen
7369         to the property; no need to clear the other columns.  Also, we go
7370         to 'unsorted' if the model supports it.
7371
7372 2001-10-05  Sven Neumann  <sven@gimp.org>
7373
7374         * demos/testpixbuf-save.c
7375         * demos/testpixbuf-scale.c: simple tests for the new PNG tEXt chunk 
7376         feature.
7377
7378 Fri Oct  5 19:06:07 2001  Kristian Rietveld  <kristian@planet.nl>
7379
7380         * gtk/gtktreeview.c (gtk_tree_view_leave_notify): should
7381         destroy the search dialog
7382
7383         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search):
7384         added check to prevent creation of a search dialog if there's
7385         already one around
7386
7387         * gtk/gtktreeview.c: Define GTK_TREE_VIEW_SEARCH_DIALOG_KEY, and use
7388         it instead of "search-dialog" (when getting/setting the search dialog
7389         widget).
7390
7391 2001-10-05  Jakub Steiner <jimmac@ximian.com>
7392
7393         * gtk/stock-icons/stock_broken_image.png: broken images icon
7394
7395 2001-10-04  Havoc Pennington  <hp@pobox.com>
7396
7397         Fix #56586
7398         
7399         * gtk/gtksettings.c (gtk_settings_class_init): move the F10
7400         accelerator setting here...
7401
7402         * gtk/gtkmenubar.c (gtk_menu_bar_class_init): ...from over here,
7403         because we try to use it when a menu bar hasn't necessarily been 
7404         initialized.
7405
7406 2001-10-03  Havoc Pennington  <hp@redhat.com>
7407
7408         * tests/testtextbuffer.c (logical_motion_tests): fix test case, 
7409         it previously verified incorrect behavior
7410
7411         Fixes for #61565
7412         
7413         * gtk/gtktextiter.c (gtk_text_iter_set_line): don't return lines
7414         off the end
7415         (_gtk_text_btree_get_iter_at_line_char): don't return lines off
7416         the end
7417         (_gtk_text_btree_get_iter_at_line_byte): don't return lines off
7418         the end
7419         (gtk_text_iter_forward_lines): if on the last line, move to end of
7420         it
7421
7422         * gtk/gtktextbtree.c (_gtk_text_btree_last_could_contain_tag):
7423         don't return a line off the end
7424
7425 Wed Oct  3 23:47:25  Kristian Rietveld  <kristian@planet.nl>
7426
7427         * gtk/gtkeditable.[ch]: move insert_text and delete_text virtual
7428         functions to do_insert_text and do_delete_text, add signals
7429         insert_text, delete_text and changed
7430
7431         * gtk/gtkentry.[ch]: remove signals insert_text, delete_text
7432         and changed. Updates to match new situation.
7433
7434         * gtk/gtkspinbutton.c: updates to match new situation
7435
7436         * gtk/gtkoldeditable.h: remove signals changed, insert_text
7437         and delete_text
7438
7439         * gtk/gtkoldeditable.c: updates to match new situation
7440
7441         * gtk/gtktext.c: updates to match new situation
7442
7443         Fixes bug #59803
7444
7445 2001-10-03  Havoc Pennington  <hp@redhat.com>
7446
7447         * gtk/gtktextiter.c (test_log_attrs): allow testing the end 
7448         position
7449
7450         * gtk/gtktextbuffer.c (compute_log_attrs): update for pango
7451         changes
7452
7453         * tests/testtextbuffer.c (logical_motion_tests): updates
7454
7455 2001-10-03  jacob berkman  <jacob@ximian.com>
7456
7457         * gtk/gtkwidget.c (gtk_widget_style_get_property): 
7458         * gtk/gtkstyle.c (_gtk_style_peek_property_value): 
7459         * gtk/gtksettings.c (apply_queued_setting): 
7460         * gtk/gtkmain.c (gtk_init_check): 
7461         * gtk/gtkcontainer.c (gtk_container_child_get_property):
7462         s/retrive/retrieve/
7463
7464 Wed Oct  3 20:29:29 2001  Kristian Rietveld  <kristian@planet.nl>
7465
7466         * gtk/gtktreemodelsort.[ch]: preparation for surgery
7467         * tests/testtreesort.c: ditto
7468
7469 2001-10-02  Havoc Pennington  <hp@redhat.com>
7470
7471         Throughout: assorted docs
7472         
7473         * gdk/gdkwindow.h: deprecate gdk_window_set_hints(), it's broken,
7474         gdk_window_set_geometry_hints() should be used instead.
7475
7476         * gdk/gdkimage.h: deprecate gdk_image_ref, gdk_image_unref, and
7477         document them
7478
7479         * gdk/x11/gdkx.h: remove gdk_get_client_window() since it doesn't
7480         seem to exist in any .c files
7481
7482         * gdk/x11/gdkcolor-x11.c (gdk_colormap_query_color): docs, 
7483         g_return_if_fail (pixel < colormap->size).
7484
7485 Wed Oct  3 10:42:54 2001  Owen Taylor  <otaylor@redhat.com>
7486
7487         * gtk/gtkdnd.c (gtk_drag_dest_find_target): Allow
7488         NULL for @target_list to mean, use
7489         gtk_drag_dest_get_target_list (widget).
7490
7491         * gtk/gtkdnd.c (gtk_drag_finish): Fix problem where
7492         drop could hang when calling gtk_drag_finish with 
7493         success == FALSE and del == TRUE.
7494
7495         * gtk/gtkdnd.c (gtk_drag_dest_drop): Fix problem where
7496         drops without a matching target found would propagate
7497         to the parent widget rather than being rejected.
7498
7499         * gtk/gtktextview.c (gtk_text_view_drag_data_received): 
7500         Use text_view->dnd_mark instead of mark name to be
7501         consistent with the rest of the code.
7502
7503         * gtk/gtktextview.c (gtk_text_view_drag_motion): Make
7504         pendantically correct for a drop-only-in-some-places
7505         widget. (Check whether you can insert in drag_drop,
7506         not just in drag_motion ... matters in theory, and
7507         for Motif drag and drop in practice.)
7508
7509         * gtk/gtkentry.c (gtk_entry_drag_drop): Patch from 
7510         Damian Ivereigh to not allow drops on non-editable
7511         entries. (#61124)
7512
7513         * gtk/gtkentry.c (gtk_entry_motion_notify): Don't allow
7514         text to be moved from a non-editable entry.
7515         
7516 2001-10-03  James Henstridge  <james@daa.com.au>
7517
7518         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
7519         s/width/fixed_width/ in order to get things to compile.
7520
7521 Wed Oct  3 00:37:09 2001  Jonathan Blandford  <jrb@redhat.com>
7522
7523         * gtk/gtkcelleditable.c: docs
7524
7525         * gtk/gtktreemodel.h: more docs.
7526
7527 2001-10-02  Havoc Pennington  <hp@redhat.com>
7528
7529         * gdk/x11/gdkwindow-x11.c: docs
7530
7531         * tests/testtextbuffer.c (logical_motion_tests): add sentence
7532         boundary tests
7533
7534 Tue Oct  2 20:18:32 2001  Kristian Rietveld  <kristian@planet.nl>
7535
7536         * demos/gtk-demo/Makefile.am: add editable_cells.c,
7537         list_store.c and tree_store.c
7538
7539         * demos/gtk-demo/appwindow.c: remove tearoff item from
7540         File menu, put menubar and toolbar in handle boxes.
7541
7542         * demos/gtk-demo/genincude.pl: various changes to support trees
7543
7544         * demos/gtk-demo/main.c: various changes to support trees
7545
7546         * demos/gtk-demo/stock_browser.c: changed name of demo
7547         to Stock Item and Icon Browser, so geninclude.pl doesn't see
7548         it as child
7549
7550         * demos/gtk-demo/editable_cells.c: new file/demo
7551         * demos/gtk-demo/list_store.c: new file/demo
7552         * demos/gtk-demo/tree_store.c: new file/demo
7553
7554 Mon Oct  1 16:05:44 2001  Owen Taylor  <otaylor@redhat.com>
7555
7556         * gtk/gtkrc.c gtk/gtksettings.c: 
7557         g_string_printfa => g_string_append_printf.
7558
7559 Mon Oct  1 16:08:23 2001  Jonathan Blandford  <jrb@redhat.com>
7560
7561         * gtk/gtkliststore.c (gtk_list_store_class_init): add a finalize
7562         and destroy handler.
7563
7564         * gtk/gtktreestore.c (gtk_list_store_class_init): ditto, #59963
7565
7566         * gtk/gtktreeview.h (struct _GtkTreeViewClass): Add
7567         'start_editing' flag to select_cursor_row.  Bug spotted by Manish
7568         Singh <yosh@gimp.org>.
7569
7570 2001-10-01  Matthias Clasen  <matthiasc@poet.de>
7571
7572         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_scanner): replace
7573         g_scanner_add/remove_symbol by g_scanner_scope_add/remove_symbol.
7574
7575         * gtk/gtkrc.c (gtk_rc_parse_any): here as well.
7576
7577 Mon Oct  1 14:07:02 2001  Jonathan Blandford  <jrb@redhat.com>
7578
7579         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): change
7580         scroll_to_cell delayed code to happen in size_allocate.
7581
7582         * gtk/gtkstyle.c (gtk_default_draw_expander): change
7583         prelight/normal arrow drawing.
7584
7585         * gtk/gtktreedatalist.c: Change compare func to use g_utf8_collate
7586
7587         * gtk/gtktreestore.c: refactor.
7588
7589 Sun Sep 30 22:15:52 2001  Manish Singh  <yosh@gimp.org>
7590
7591         * gtk/gtkcheckbutton.c (gtk_check_button_size_allocate): Applied
7592         patch from Soeren Sandmann <sandmann@daimi.au.dk>. Vertically
7593         centers the child in relation to the to indicator height.
7594
7595 Sun Sep 30 15:11:59 2001  Jonathan Blandford  <jrb@redhat.com>
7596
7597         * gtk/gtktreestore.c (gtk_tree_store_remove): Make ITERS_PERSIST
7598         correct
7599
7600 Sun Sep 30  07:01:42 2001 CEST <mikeh@bahnhof.se>
7601
7602         * gtk/gtkcellrenderertext.c: I reverted back to old "weight"
7603         property code using g_param_spec_int and changed from
7604         g_value_get_enum to g_value_get_int instead. Probably a better way
7605         to fix the problem :-)
7606
7607 Sun Sep 30  05:31:32 2001 CEST Mikael Hermansson <tyan@linux.se>
7608
7609     * gtk/gtkcellrenderertext.c changed "weight" property type from 
7610       g_param_spec_int to g_param_spec_enum.
7611
7612 Sat Sep 29 12:25:26 2001  Manish Singh  <yosh@gimp.org>
7613
7614         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): typo
7615         fix: s/Wether/Whether/ in reorderable property description
7616
7617 Thu Sep 27 16:46:36 2001  Jonathan Blandford  <jrb@redhat.com>
7618
7619         * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row): only
7620         start editing when you select with a keyboard.
7621
7622         (gtk_tree_view_button_press_event): much more graceful now.
7623
7624         * gtk/gtkstyle.c: Draw togglebutton better.
7625
7626 2001-09-26  Havoc Pennington  <hp@redhat.com>
7627
7628         * demos/gtk-demo/dialog.c (interactive_dialog_clicked): add demo
7629         of passing non-stock label in to gtk_dialog_new_with_buttons
7630
7631         * gtk/gtktextview.c (cursor_blinks): disable cursor blink when
7632         debugging updates
7633
7634         * gtk/gtktextiter.h: comment about how GtkTextIter struct contents
7635         are private
7636
7637         * gtk/gtkbutton.c (gtk_button_new_from_stock): if stock ID doesn't
7638         exist, fall back to mnemonic label, not plain label, bug #61184
7639         
7640 Wed Sep 26 19:48:01 2001  Jonathan Blandford  <jrb@redhat.com>
7641
7642         * gtk/gtktreestore.c (gtk_tree_store_set_valist): Stop being
7643         stupid and emitting the signal every time.
7644
7645         * gtk/gtkliststore.c (gtk_list_store_set_valist): ditto
7646
7647 Wed Sep 26 16:35:59 2001  Owen Taylor  <otaylor@redhat.com>
7648
7649        Patch from Mark McLoughlin <mark@skynet.ie> (#61233)
7650
7651        * contrib/gdk-pixbuf-xlib/Makefile.am: install
7652        gdk-pixbuf-xlib-2.0.pc.
7653
7654 Wed Sep 26 16:15:25 2001  Owen Taylor  <otaylor@redhat.com>
7655
7656         * gtk/gtknotebook.c (gtk_notebook_set_tab_label): Fix
7657         problem where menmonic wasn't removed properly when
7658         setting a label when there already is a label.
7659         Also, handle setting the tab label back to the same
7660         value. (#61160, #61161)
7661
7662         * gtk/gtkentry.c (paste_received): Patch from 
7663         Damian Ivereigh to replace selection if there is 
7664         one. (#61121)
7665
7666 2001-09-25  Darin Adler  <darin@bentspoon.com>
7667
7668         * tests/.cvsignore: Ignore new test program.
7669
7670 2001-09-25  Havoc Pennington  <hp@redhat.com>
7671
7672         * gtk/gtktextview.c: fix for #50317
7673         
7674 2001-09-25  Havoc Pennington  <hp@redhat.com>
7675
7676         * gtk/gtktextview.c (gtk_text_view_key_press_event): use 
7677         gtk_text_iter_can_insert
7678         
7679         * gtk/gtktextbuffer.c: use gtk_text_iter_can_insert
7680
7681         * gtk/gtktextiter.c (find_line_log_attrs): fixes, #57611, #57613
7682          (gtk_text_iter_can_insert): new function to fix #60282, should
7683         also fix msw's "can paste into empty buffer" bug.
7684
7685         * gtk/gtktexttag.c (gtk_text_tag_event): change type check for 
7686         "event object,"  #59091
7687
7688         * gtk/gtktextbtree.c: indentation fixes
7689
7690         * gtk/gtktextiter.c (find_by_log_attrs): fixes
7691
7692 Tue Sep 25 12:41:17 2001  Owen Taylor  <otaylor@redhat.com>
7693
7694         * configure.in: Version 1.3.9, interface age 0, binary age 0.
7695
7696         * configure.in: Require GLib-1.39, Pango 0.20, Atk 0.5.
7697
7698         * NEWS: Updates.
7699
7700 Mon Sep 24 11:59:09 2001  Owen Taylor  <otaylor@redhat.com>
7701
7702         * gtk/gtkstyle.[ch] (_gtk_draw_insertion_cursor): Shared
7703         function for drawing cursors between gtkentry/gtklabel/gtktextview.
7704         Should this be public? It has a bit of an odd interface, but
7705         custom editing widgets probably should be using it.
7706         Function will draw with wider width for taller cursors, and
7707         draws a little indicator arrow to indicate directoin for split 
7708         cursors.
7709
7710         * gtk/gtktextview.c: Add a "cursor_color" property.
7711
7712         * gtk/gtktextdisplay.[ch]: Add a cursor_gc parameter to
7713         gtk_text_layout_draw().
7714
7715         * gtk/gtkentry.c gtk/gtklabel.c gtk/gtktextdisplay.c: Use
7716         _gtk_draw_insertion_cursor().
7717
7718 Tue Sep 25 11:22:23 2001  Owen Taylor  <otaylor@redhat.com>
7719
7720         * gtk/gtkcellrenderertext.c gtk/gtktexttag.c: Restore
7721         the behavior where you could turn family_set (etc) back on
7722         and get back the values you had before.
7723
7724         * demos/gtk-demo/stock_browser.c (id_to_macro): Use
7725         g_string_ascii_up() rather than looping through the
7726         string ourself.
7727
7728 Tue Sep 25 15:32:44 2001  Jonathan Blandford  <jrb@redhat.com>
7729
7730         * gtk/gtktreeviewcolumn.c
7731         (gtk_tree_view_column_set_cell_renderer): Removed
7732         (gtk_tree_view_column_set_alignment): xalign = CLAMP (xalign, 0.0, 1.0);  Fixes 61012.
7733
7734         * gtk/gtktreestore.c (gtk_tree_store_sort_helper): Fixed #61012
7735         Patch from Detlef Reichl
7736
7737 2001-09-25  Havoc Pennington  <hp@redhat.com>
7738
7739         * tests/testtextbuffer.c (line_separator_tests): Add tests for
7740         line separators, addresses bug #57428
7741
7742 Tue Sep 25 12:34:42 2001  Jonathan Blandford  <jrb@redhat.com>
7743
7744         * gtk/gtkentry.c: Make a GtkCellEditable
7745         (get_widget_window_size): Change to let it honor size_allocate
7746         when a CellEditable.
7747
7748         * gtk/gtktreeview.c: M-x clean-line-ends.  Lots of focus and
7749         editable changes.
7750         (gtk_tree_view_set_cursor): Now you can set the cursor
7751         horizontally, as well as start editing.
7752
7753         * gtk/gtkstyle.c (gtk_default_draw_check): changing toggle drawing
7754         code to look more like the other check buttons.
7755
7756         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_get_size):
7757         Change the way we calculate cell size.
7758
7759         * gtk/gtkmarshal.list (VOID:STRING,STRING): new marshaller.
7760
7761         * demos/gtk-demo/sizegroup.c: Add mnemonics.
7762
7763         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_size): Fix docs.
7764         Fix logic.
7765
7766         * gtk/gtkcellrenderertext.c: Change to be editable.
7767
7768         * gtk/gtkcellrenderertoggle.c: Change to be activatable.
7769
7770         * test/testtreesort.c: Fix misspelling
7771
7772         * test/testreecolumns.c: Add mnemonics.
7773
7774         * test/testreeedit.c: New test program.
7775
7776 2001-09-25  Havoc Pennington  <hp@pobox.com>
7777
7778         * gtk/gtkwindow.c: Put notes in gtk_window_set_has_frame(),
7779         etc. docs about how these are not going to do what you want for 
7780         the X/win32 ports. Futile attempt to avoid a FAQ...
7781
7782 2001-09-24  James Henstridge  <james@daa.com.au>
7783
7784         * gtk/gtkmarshal.list (VOID): add marshal function types.
7785
7786         * gtk/gtkctree.c (gtk_ctree_class_init): make arguments have type
7787         GTK_TYPE_CTREE_NODE|G_SIGNAL_TYPE_STATIC_SCOPE rather than
7788         GTK_TYPE_POINTER.
7789         (gtk_ctree_node_get_type): implement boxed type for GtkCTreeNodes
7790         with no-op copy/free functions.
7791
7792         * gtk/gtkctree.h (gtk_ctree_node_get_type): add prototype for
7793         GtkCTreeNode get_type function.
7794
7795 2001-09-24  Havoc Pennington  <hp@redhat.com>
7796
7797         * gtk/gtktextiter.c, gtk/gtktextbuffer.c, gtk/gtktextbtree.c,
7798         gtktextlayout.c:
7799         Get rid of the newline-that-could-not-be-deleted; buffers may 
7800         now be zero-length. Much easier to fix than expected, once 
7801         I figured out the right way to do it. However, there are 
7802         various subtle bugs introduced by this that will have to get 
7803         sorted out. Please use bugzilla.
7804
7805 Mon Sep 24 15:09:08 2001  Owen Taylor  <otaylor@redhat.com>
7806
7807         * gtk/gtkwindow.c (gtk_window_move_resize): Don't wait for a
7808         response back from the window manager if our size hasn't changed 
7809         since we won't get a response back from the window manager;
7810         there was code in there to do this, but it was in the wrong
7811         place so if the hints change and the size didn't we'd expect
7812         a response.
7813
7814         Also, optimize the position-only-changed case by running
7815         the resize queue immediately, and clean up some comments
7816         for the changes.
7817
7818 Mon Sep 24 12:48:25 2001  Owen Taylor  <otaylor@redhat.com>
7819
7820         * gtk/gtknotebook.h: Add a compat macro that got lost.
7821
7822         * gtk/gtktreestore.c: Doc fixes.
7823
7824         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Fix reference
7825         leak for windows that receive events after being destroyed.
7826         (#60863, Joshua N. Pritikin)
7827
7828         * gtk/gtktable.c (gtk_table_remove): Use gtk_widget_queue_resize
7829         rather than gtk_container_queue_resize().
7830
7831         * gtk/{gtkcontainer.c,gtkwidget.c,gtkwindow.c}: _gtk prefix
7832         gtk_container_queue_resize, gtk_container_queue_resize_widgets,
7833         gtk_container_child_composite_name. (#60217.)
7834
7835 2001-09-22  Hans Breuer  <hans@breuer.org>
7836
7837         * gtk/gtkmenu.h : fix compat macros for gtk_menu_<prepend|insert>
7838
7839 Sat Sep 22 16:50:34 2001  Kristian Rietveld  <kristian@planet.nl>
7840
7841         * gtk/gtktexttag.c (gtk_text_tag_set_property): (case PROP_WEIGHT):
7842         weight value should be an int
7843
7844 Sat Sep 22 15:17:41 2001  Kristian Rietveld  <kristian@planet.nl>
7845
7846         * gtk/gtkmenu.c (gtk_menu_select_item): move most code
7847         to gtk_menu_scroll_item_visible(). Only call
7848         gtk_menu_scroll_item_visible() if the menu widget has been
7849         realized. Fixes bug #55310.
7850
7851 2001-09-21  Havoc Pennington  <hp@redhat.com>
7852
7853         * gtk/gtktextview.c (gtk_text_view_key_press_event): don't pass
7854         key press to IM context if cursor isn't in an editable location;
7855         bug #58425, patch from Hidetoshi Tajima
7856
7857 2001-09-21  Havoc Pennington  <hp@redhat.com>
7858
7859         Bug #60862
7860         
7861         * gtk/gtktextbtree.c (gtk_text_btree_node_destroy): 
7862         (_gtk_text_btree_unref): fix up mark memory management
7863
7864         * gtk/gtktextmark.c (mark_segment_delete_func): ditto
7865
7866 2001-09-20  Havoc Pennington  <hp@redhat.com>
7867
7868         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): don't
7869         try to handle alignment here, because it's done by PangoLayout
7870         after we set the layout width. Fix from Dov.
7871
7872 2001-09-21  Hans Breuer  <hans@breuer.org>
7873
7874         * gdk/gdk.def :
7875         * gtk/gtk.def : updated externals
7876
7877         * gtk/gtkmain.h : define get_gtk_win32_directoty () 
7878         * gtk/gtkmain.c (find_module) : don't use module_name after freeing it.
7879         Also handle that Win32 pathes cann't be hard-coded      
7880
7881         * gtk/gtkrc.c : use get_gtk_win32_directoty () to cleanup the various
7882         module, themes etc directory calculations
7883
7884         * gdk/win32/gdkgeometry-win32.c : some more hacking to get coordinates
7885         >16 bit right. The size limit within Win9x appears _not_ to be 32767
7886         but slightly smaller ...
7887
7888         * gdk/win32/gdkwindow-win32.c : use impl->position_info to avoid 
7889         >16 bit clipping. Added dummy body for gdk_window_set_icon_list ()
7890
7891         * gdk/win32/gdkdrawable-win32.c : implement gdk_win32_drawable_get_handle ()
7892
7893         * gdk/win32/gdkevents-win32.c : some tweaking to get better expose
7894         handling. I'm not sure if it is better now, but at least not worse
7895
7896         * gdk/win32/makefile.msc : define INSIDE_GDK_WIN32, some cleanup
7897
7898         * gdk/win32/gdkwin32.h : reflect recent API restrictions
7899
7900 2001-09-21  Matt Wilson  <msw@redhat.com>
7901
7902         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_destroy): set
7903         radio_menu_item->group to NULL after removing it from the list, as
7904         it is no longer in the group. (#60869)
7905
7906         * gtk/gtkradiobutton.c (gtk_radio_button_destroy): likewise
7907
7908 2001-09-20  Havoc Pennington  <hp@pobox.com>
7909
7910         * configure.in (PANGO_REQUIRED_VERSION)
7911         (ATK_REQUIRED_VERSION): add variables and checks for specific 
7912         versions of dependencies. Previously we didn't verify the 
7913         Pango or ATk versions.
7914
7915 2001-09-09  Havoc Pennington  <hp@pobox.com>
7916
7917         * gtk/gtktextiter.c: fool with indentation
7918         (gtk_text_iter_in_range): add g_return_if_fail
7919
7920 Thu Sep 20 17:45:54 2001  Joshua N Pritikin  <vishnu@pobox.com>
7921
7922         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag): Fix
7923         ref count on new tag to be 1.  Update doc.  (#60836)
7924
7925 Thu Sep 20 16:20:47 2001  Owen Taylor  <otaylor@redhat.com>
7926
7927         * gdk/gdkrgb.c (gdk_rgb_allocate_images): Remove unnecessary
7928         call to gdk_image_new_bitmap(). (#59094, reported by
7929         by Sven Neumann)
7930
7931 Thu Sep 20 15:31:35 2001  Owen Taylor  <otaylor@redhat.com>
7932
7933         * gtk/gtkcalendar.c (gtk_calendar_init): Use the current
7934         day, as well as the current month and year.
7935         (#59047, reported by Vitaly Tishkov)
7936
7937 Thu Sep 20 15:10:30 2001  Owen Taylor  <otaylor@redhat.com>
7938
7939         * gtk/gtkdialog.c (gtk_dialog_init): Automatically set
7940         set dialogs to GTK_WIN_POS_CENTER_ON_PARENT. (#60554)
7941         
7942 Thu Sep 20 18:00:56 2001  Kristian Rietveld  <kristian@planet.nl>
7943
7944         * tests/testgtk.c (struct OptionMenuItem): get rid of it,
7945
7946         (build_option_menu): add func argument, connect ::changed
7947         signal to option menu instead of connecting the ::activate
7948         signal to the menu items,
7949
7950         (toplevel): get rid of RADIOMENUTOGGLED macro,
7951
7952         (list_toggle_sel_mode), (clist_toggle_sel_mode),
7953         (ctree_toggle_line_style), (ctree_toggle_expander_style),
7954         (ctree_toggle_justify), (ctree_toggle_sel_mode),
7955         (progressbar_toggle_orientation), (progressbar_toggle_bar_style):
7956         use gtk_option_menu_get_history() instead of RADIOMENUTOGGLED,
7957
7958         (notebook_type_changed): merged standard_notebook(),
7959         notabs_notebook(), scrollable_notebook() and borderless_notebook()
7960         into notebook_type_changed()
7961
7962         (create_list), (create_ctree), (create_notebook),
7963         (create_progress_bar): changed OptionMenuItem arrays into
7964         gchar * arrays. Removed "Extended" item where used.
7965
7966         Fixes bug #59885
7967
7968 2001-09-20  Sven Neumann  <sven@gimp.org>
7969
7970         * configure.in
7971         * gdk/Makefile.am
7972         * gtk/Makefile.am
7973         * gtk/gtkselection.c
7974         * gtk/gtktreeview.c
7975         * gtk/gtkwindow.c: removed remaining traces of nanox GDK backend.
7976
7977 Thu Sep 20 11:19:42 2001  Owen Taylor  <otaylor@redhat.com>
7978
7979         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): Add
7980         a missing pango_layout_iter_free ().
7981
7982 Thu Sep 20 11:03:51 2001  Owen Taylor  <otaylor@redhat.com>
7983
7984         * gtk/gtkobject.c gtk/gtklist.c gtk/gtkplug.c gtk/gtksocket.c
7985         gtk/gtktreemodelsort.c gtk/gtktreeview.c: Small warning cleanups.
7986
7987         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_get_group): Change
7988         the function definition so we don't accidentally rely on
7989         the compat #define from gtk_radio_menu_item_group.
7990         (#60782, Jeff Franks)
7991
7992 Thu Sep 20 16:51:02 2001  Kristian Rietveld  <kristian@planet.nl>
7993
7994         * gtk/gtkwindow.c (gtk_window_get_frame_dimensions): returned
7995         incorrect values for top, right and bottom due to cut-and-paste
7996         bug. Pointed out by Vitaly Tishkov, fixes bug #59008
7997
7998 Wed Sep 19 17:59:27 2001  Owen Taylor  <otaylor@redhat.com>
7999
8000         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Set
8001         _NET_WM_PID and WM_CLIENT_MACHINE properties on each
8002         window, not just on the client leader. (#58463)
8003
8004 Wed Sep 19 17:28:47 2001  Owen Taylor  <otaylor@redhat.com>
8005
8006         * gtk/gtkwidget.c (gtk_widget_new): Add missing cast.
8007
8008         * gtk/gtkmenuitem.[ch] gtk/gtkmenushell.c: Underscore prefix
8009         non-public _gtk_menu_item_set_placement.
8010
8011         * gtk/gtktooltips.h: Deprecate gtk_tooltips_set_delay().
8012
8013 Wed Sep 19 16:16:38 2001  Owen Taylor  <otaylor@redhat.com>
8014
8015         * gdk/win32/gdkcolor-win32.c gdk/x11/gdkcolor-x11.c 
8016           gdk/linux-fb/gdkcolor-fb.c:
8017         Fix propagated (flags && GDK_COLOR_WRITEABLE) typo.
8018         (#59723)
8019
8020 Wed Sep 19 16:12:16 2001  Owen Taylor  <otaylor@redhat.com>
8021
8022         * gdk/gdkpixbuf-render.c: Allow -1 for width/height
8023         to mean "width/height of pixbuf" (Patch from Matthias Clasen,
8024         #59723)
8025
8026 Wed Sep 19 16:01:27 2001  Owen Taylor  <otaylor@redhat.com>
8027
8028         Patch from Frank Belew #59037 for Solaris compilation.
8029
8030         * gtk/maketypes.awk: Change syntax slightly for a call
8031         to sub(), apparently making awk on Solaris happier.
8032
8033         * gtk/gtktreeview.c: Remove C++ comments.
8034
8035 Wed Sep 19 15:46:29 2001  Owen Taylor  <otaylor@redhat.com>
8036
8037         * gtk/gtkwindow.c: Add xgettext:no-c-format comment to
8038         to handle '99% of the time. (#60473, reported by Christian Rose)
8039
8040         * gtk/gtkwidget.h: Remove prototype for gtk_widget_get_usize()
8041         which no longer exists. (#60379, reported by Vitaly Tishkov)
8042
8043 Wed Sep 19 11:06:24 2001  Tim Janik  <timj@gtk.org>
8044
8045         * Released 1.3.8.
8046
8047         * gdk/Makefile.am: kill EXTRA_DIST clearing.
8048         
8049 Wed Sep 19 02:50:40 2001  Tim Janik  <timj@gtk.org>
8050
8051         * demos/Makefile.am ($(testpixbuf_OBJECTS)): don't use BUILT_SOURCES
8052         as its broken in automake 1.4, add explicit object rule to
8053         generate this.
8054         
8055         * gdk-pixbuf/Makefile.am: fix maintainer and normal cleanfiles.
8056         get rid of uneccessary stamps, group stuff more logically, and build
8057         sources due to object rules. fix srcdir!=builddir.
8058
8059 Tue Sep 18 20:47:16 2001  Owen Taylor  <otaylor@redhat.com>
8060
8061         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): Fix 
8062         incorrect parameter to compute_double_length
8063         (#58680, patch from Matthias Clasen)
8064
8065         Fixes for compilation with Forte cc. (#59734, Derek Rafter)
8066
8067         * gtk/gtkwindow.h gtk/gtksizegroup.h: Remove extra ;.
8068
8069         * gdk/gdktypes.h (GdkModifierType): Write 1u << 31
8070         for GDK_RELEASE_MASK to avoid warnings with Forte.
8071
8072         * gtk/gtktexttag.c gtk/gtkcellrendertext.c: Add some missing
8073         break; statements.
8074
8075 2001-09-18  Alex Larsson  <alexl@redhat.com>
8076
8077         * gtk/gtkcheckbutton.c:
8078         * gtk/gtkradiobutton.c:
8079         Don't draw with GTK_STATE_ACTIVE.
8080
8081         * gtk/gtkclist.c:
8082         * gtk/gtkctree.c:
8083         Draw lines between rows with base_gc[GTK_STATE_NORMAL].
8084
8085         * gtk/gtktextdisplay.c:
8086         Focused selection is drawn with base_gc [GTK_STATE_SELECTED] and
8087         unfocused with base_gc [GTK_STATE_ACTIVE].
8088         
8089         * gtk/gtkentry.c:
8090         Add select all menu-item.
8091         Default cursor color is red.
8092         Focused selection is drawn with base_gc [GTK_STATE_SELECTED] and
8093         unfocused with base_gc [GTK_STATE_ACTIVE].
8094
8095         * gtk/gtklabel.[ch]:
8096         Add keynav + menu to selectable lables.
8097         Focused selection is drawn with base_gc [GTK_STATE_SELECTED] and
8098         unfocused with base_gc [GTK_STATE_ACTIVE].
8099
8100         * gtk/gtkfilesel.c:
8101         Add drag and drop support.
8102
8103         * gtk/gtkstyle.c:
8104         (This was checked in earlier)
8105         New default values for text/base SELECTED and ACTIVE
8106         
8107 Tue Sep 18 23:51:49 2001  Tim Janik  <timj@gtk.org>
8108
8109         * configure.in: up version to 1.3.8, interface age 0,
8110         binary age 0, depend on glib 1.3.8.
8111
8112         * NEWS: 1.3.8 updates.
8113
8114 Tue Sep 18 18:46:54 2001  Jonathan Blandford  <jrb@redhat.com>
8115
8116         * gtk/gtktreeview.c (gtk_tree_view_start_editing): centralize all
8117         the editing code
8118
8119         * gtk/gtkcelleditable.c: Got rid of stop_editing, as there was no
8120         reason to call it beyond emiting the two signals.
8121
8122         * gtk/gtkentry.c (gtk_entry_class_init): add "has_frame" property
8123         to GtkEntry.
8124
8125 Wed Sep 12 11:21:14 2001  Owen Taylor  <otaylor@redhat.com>
8126
8127         * gtk/gtkcellrenderertext.[ch] gtk/gtktexttag.[ch]
8128           gtk/gtktextview.c tests/testgtk.c: Fix up for changes to 
8129         PangoFontDescription.
8130
8131         * gtk/gtkentry.c gtk/gtkclist.c gtk/gtkcellrenderertext.c
8132         gtk/gtkspinbutton.c: Fix up for change to PangoMetrics
8133         structure.
8134   
8135         * gtk/gtkfontsel.c: Fix up for new Pango font listing API.
8136
8137         * gtk/gtkstyle.[ch]: Add gtk_style_get_font/set_font to replace
8138         direct access to style->font. Deprecate gtk_style_ref/unref.
8139   
8140         * gtk/gtkclist.c gtk/gtkctree.c gtk/gtkstyle.c gtk/gtkwidget.c:
8141         Remove gtk_style_ref/unref with g_object_ref/unref.
8142   
8143         * gtk/gtkcalendar.c: Remove leftover macros accessing
8144         style->font.
8145   
8146         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): Remove unused
8147         variable.
8148   
8149         * gtk/gtktext.c gtk/gtklabel.c: Use gtk_style_get_font() instead of 
8150         style->font.
8151
8152 Tue Sep 18 13:51:35 2001  Jonathan Blandford  <jrb@redhat.com>
8153
8154         * gtk/gtkcellrenderer.h (enum): Get rid of broken "can_edit" and
8155         "can_activate" properties in favor of
8156         GTK_CELL_RENDERER_MODE_INERT, GTK_CELL_RENDERER_MODE_ACTIVATABLE,
8157         and GTK_CELL_RENDERER_MODE_EDITABLE
8158
8159 Tue Sep 18 12:12:43 2001  Jonathan Blandford  <jrb@redhat.com>
8160
8161         * gtk/gtktreeview.c (gtk_tree_view_put): Add put for use with
8162         editable widgets.  This function is private, and should only be
8163         used by GtkTreeView.
8164
8165 2001-09-18  Matt Wilson  <msw@redhat.com>
8166
8167         * docs/Makefile.am (EXTRA_DIST): don't use += before =
8168
8169         * docs/faq/Makefile.am (EXTRA_DIST): likewise
8170
8171         * docs/tutorial/Makefile.am (EXTRA_DIST): likewise
8172         
8173         * gdk/Makefile.am (MAINTAINERCLEANFILES): likewise
8174         (EXTRA_HEADERS): likewise
8175
8176         * gtk/Makefile.am (MAINTAINERCLEANFILES): likewise
8177         (EXTRA_HEADERS): likewise
8178         (EXTRA_DIST): likewise
8179         (CLEANFILES): likewise
8180
8181         * gtk/stock-icons/Makefile.am (CLEANFILES): likewise
8182
8183         * tests/Makefile.am (EXTRA_DIST): likewise
8184         
8185         * Makefile.am (install-data-local): changed to use
8186         install-data-hook, which runs after install-pkgconfigDATA, so that
8187         the pkgconfigdir will have been created and populated first.
8188
8189 Mon Sep 17 17:39:52 2001  Jonathan Blandford  <jrb@redhat.com>
8190
8191         * gtk/gtkcelleditable.[ch]: Add editable interface.  This should
8192         be the last big GtkTreeView API change.
8193
8194         * gtk/gtkcellrenderer.[ch]: Get rid of the "event" vfunc, and
8195         replace with "activate" and "start_editing".  Also, added a
8196         "can_activate" and "can_edit" property.
8197
8198         * gtk/gtktreeviewcolumn.c: modify to use above.
8199
8200 2001-09-16  Alexander Larsson  <alla@lysator.liu.se>
8201
8202         * gtk/gtkoptionmenu.c:  Handle scroll wheel events.
8203
8204 Fri Sep 14 22:31:25 2001  Matthias Clasen  <matthiasc@poet.de>
8205
8206         * demos/gtk-demo/main.c (setup_default_icon): Use a shaped
8207         icon instead of one with ugly white background.
8208
8209 Fri Sep 14 22:26:01 2001  Matthias Clasen  <matthiasc@poet.de>
8210
8211         * demos/gtk-demo/stock_browser.c (id_to_macro): make
8212         the uppercasing work. (#59550)
8213
8214 2001-09-14  Jakub Steiner <jimmac@ximian.com>
8215
8216         * gtk/stock-icons/dialog_error.png:
8217         * gtk/stock-icons/dialog_question.png: more road signs
8218
8219 2001-09-13  Jakub Steiner <jimmac@ximian.com>
8220
8221         * gtk/stock-icons/dialog_question.png:
8222         * gtk/stock-icons/dialog_warning.png: anders and jonathan seem to
8223           like a road sign.
8224
8225 Wed Sep 12 19:01:05 2001  Jonathan Blandford  <jrb@redhat.com>
8226
8227         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): Rename interface
8228         signals to make them more clear.  Also, change ::range_changed to
8229         ::row_changed.
8230         * gtk/gtktreemodel.c: Adjust to interface change
8231         * gtk/gtktreemodel.h: ditto
8232         * gtk/gtktreemodelsort.c: ditto
8233         * gtk/gtktreestore.c: ditto
8234         * gtk/gtkliststore.c: ditto
8235         * gtk/gtktreeview.c: ditto
8236         * tests/testtreecolumns.c: ditto
8237         * gtk/gtkmarshal.list: Actually remove a marshaller!
8238
8239 2001-09-12  Padraig O'Briain <padraig.obriain@sun.com>
8240
8241         * gtk/gtktextview.c
8242         Add support for Ctrl+Up/Down arrow to move cursor to beginning
8243         of previous/next paragraph. If within a paragraph cursor moves to
8244         beginning of that paragraph.
8245
8246 2001-09-12  Jakub Steiner <jimmac@ximian.com>
8247
8248         * gtk/stock-icons/dialog_question.png: replacing the shaky
8249           question mark with a sans-serif one.
8250         * gtk/stock-icons/stock_top.png, stock_bottom.png,
8251      stock_first.png, stock_last.png: using the new style arrows
8252         * gtk/stock-icons/stock_font.png: simple one to replace the ugly
8253      colors.
8254         * gtk/stock-icons/stock_refresh.png: anti-aliased and changed
8255      color.
8256         * gtk/stock-icons/stock_zoom*: anti-aliased
8257         * gtk/stock-icons/dialog_error.png, dialog_warning.png: confused
8258      '-' with a '_', removed the wrong files
8259
8260 Sat Sep  8 16:19:02 2001  Owen Taylor  <otaylor@redhat.com>
8261  
8262         * gtk/gtkmain.c: Implement a search path for GTK+ modules.
8263  
8264         * configure.in gtk/gtkrc.c gtk/Makefile.am: Look for modules
8265         in gtk-2.0/<type>/major.minor.(micro-binary_age) rather
8266         than in gtk-2.0/major.minor.micro/<type>/. This
8267         works better for a search path for modules.
8268  
8269         * gtk+-2.0.pc.in gtk+-2.0-uninstalled.pc.in: Add
8270         gtk_binary_version variable holding major.minor.(micro-binary_age).
8271  
8272         * modules/input/Makefile.am (moduledir): Fix installation
8273         directory to match change in lookup location.
8274  
8275         * gtk/gtkmain.c (gtk_init_check): Remove OS/2 code for dll 
8276         suffixes. Needs to be handled in g_module_build_path().
8277
8278         * gtk/gtkrc.c gtk/queryimmodules.c: Use g_build_filename() where
8279         appropriate.
8280  
8281 Tue Sep 11 13:59:12 2001  Owen Taylor  <otaylor@redhat.com>
8282
8283         * gtk/gtkrc.c (insert_rc_property): Fixed reversed comparison
8284         causing RC properties not to work.
8285
8286 2001-09-11  Jakub Steiner <jimmac@ximian.com>
8287
8288         * gtk/stock-icons/dialog-error.png: less drastic
8289         * gtk/stock-icons/dialog-warning.png: no body parts. (I hope
8290           "STOP" is international enough.
8291         * gtk/stock-icons/stock_dnd*.png: get rid of the cursor
8292         * gtk/stock-icons/stock_menu_properties.png: 16x16 version
8293
8294 Mon Sep 10 21:26:24 2001  Joshua N Pritikin  <vishnu@pobox.com>
8295
8296         * gtk/gtktextview.c (gtk_text_view_set_buffer): Make
8297         (add|remove)_selection_clipboard symmetric. (bug #59836)
8298
8299         * gtk/gtktreeview.c (gtk_tree_view_unref_and_check_selection_tree): 
8300         Avoid SEGV for empty tree. (bug #60243)
8301
8302 Mon Sep 10 20:47:22 2001  Tim Janik  <timj@gtk.org>
8303
8304         * tests/testgtk.c (create_idle_test): slight fix for
8305         g_object_set() not usable for nesting anymore.
8306
8307         * gtk/gtkhandlebox.c (gtk_handle_box_class_init): 
8308         * gtk/gtkframe.c (gtk_frame_class_init): deprecate ::shadow
8309         properties, supply ::shadow_type properties instead as most
8310         other widgets do.
8311
8312 2001-09-10  Alex Larsson  <alexl@redhat.com>
8313
8314         * demos/gtk-demo/stock_browser.c:
8315         * gdk/gdkcolor.c:
8316         * gdk/gdkfont.c:
8317         * gdk/gdkcursor.c:
8318         * gdk/gdkevents.c:
8319         * gdk/gdkrectangle.c:
8320         * gtk/gtktypeutils.c:
8321         Update to use the new g_boxed_type_register_static API.
8322
8323 2001-09-10  Padraig O'Briain <padraig.obriain@sun.com>
8324
8325         * gtk/gtktreestore.c:
8326         Fix looping in gtk_tree_store_init() waiting for zero random int.
8327
8328 Mon Sep 10 16:55:49 2001  Tim Janik  <timj@gtk.org>
8329
8330         * gtk/gtkalignment.c (gtk_alignment_init): fix xscale and yscale
8331         behaviour which havoc broke. they have to default to 1.0 for
8332         expand behaviour.
8333
8334         * gtk/gtkwindow.c (gtk_window_get_property): don't cast NULL objects.
8335
8336 2001-09-10  Padraig O'Briain <padraig.obriain@sun.com>
8337
8338         * gtk/gtkstyle.c (_gtk_style_peek_property_value)
8339         Amend previous change to avoid runtime error in g_param_spec_ref()
8340
8341 Mon Sep 10 06:58:56 2001  Owen Taylor  <otaylor@redhat.com>
8342
8343         * gtk/gtkrc.c (insert_rc_property): Fix blank line
8344         in the wrong place.
8345
8346 Mon Sep 10 06:50:39 2001  Owen Taylor  <otaylor@redhat.com>
8347
8348         * gtk/gtkstyle.c (_gtk_style_peek_property_value): Don't
8349         do a lookup immediately after creating style->property_cache,
8350         since bsearch crashes on zero length for Solaris.
8351         (Found by Padraig O'Briain.)
8352
8353 2001-09-09  Alexander Larsson  <alla@lysator.liu.se> 
8354
8355         * gtk/gtkwidget.c (_gtk_widget_peek_colormap):
8356         Really return NULL if not set.
8357         (gtk_widget_init): Remove unused varaible.
8358         
8359 2001-09-09  Alexander Larsson  <alla@lysator.liu.se> 
8360
8361         * configure.in:
8362         Remove gdk/nanox/Makefile from AC_OUTPUT(), since it is no longer
8363         in cvs.
8364
8365 2001-09-08  Havoc Pennington  <hp@pobox.com>
8366
8367         * gtk/gtkaccelgroup.c: add docs to functions that I can imagine 
8368         people might want to use
8369
8370 2001-09-08  Havoc Pennington  <hp@pobox.com>
8371
8372         * gtk/gtkalignment.c (gtk_alignment_class_init): default
8373         xscale/yscale to 0.0, not 0.5, 0.5 isn't useful
8374
8375         * tests/testtextbuffer.c: fix usage of gtk_text_iter_spew
8376
8377         * gtk/gtktextiter.c: fix docs
8378         (gtk_text_iter_spew): get rid of this
8379
8380         * gtk/gtklayout.c: docs
8381
8382         * gtk/gtkbutton.c (gtk_button_construct_child): add an alignment
8383         to center image and label together, instead of having image on
8384         left and label centered, patch/suggestion from Jacob
8385
8386         * gtk/gtkdialog.c: docs
8387
8388 Sat Sep  8 14:19:49 2001  Jonathan Blandford  <jrb@redhat.com>
8389
8390         * gtk/gtkliststore.c: Write documentation
8391         * gtk/gtktreestore.c: Write documentation
8392
8393 Sat Sep  8 13:53:09 2001  Owen Taylor  <otaylor@redhat.com>
8394
8395         * gtk/gtkrc.[ch] gtk/gtkstyle.[ch]: Replace uses of GBSearchArray
8396         with GArray and bsearch(), to remove dependency on a still
8397         evolving interface that we want to keep private to glib/gobject. 
8398
8399 2001-09-08  Havoc Pennington  <hp@pobox.com>
8400
8401         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_add_attribute):
8402         docs fixes
8403
8404         * gtk/gtktable.c (gtk_table_get_col_spacing): docs fixes
8405
8406         * gtk/gtkspinbutton.c (gtk_spin_button_get_increments): docs fixes
8407
8408         * gtk/gtksocket.c (gtk_socket_steal): docs fixes
8409
8410         * gtk/gtkscrolledwindow.h: docs fixes
8411
8412         * gtk/gtkimage.c (gtk_image_new): docs fixes
8413
8414 Sat Sep  8 01:49:22 2001  Owen Taylor  <otaylor@redhat.com>
8415
8416         * gdk/x11/gdkmain-x11.c (_gdk_windowing_init_check): Prevent a 
8417         false alarm  constness warning with a cast.
8418
8419         * gdk/x11/gdkx.h: Undefine GDK_ROOT_PARENT before redefining it
8420         for the inside-gdk case.
8421
8422 Sat Sep  8 01:44:18 2001  Jonathan Blandford  <jrb@redhat.com>
8423
8424         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_set_dirty):
8425         remove g_print.
8426
8427         * gtk/gtktreeview.c (gtk_tree_view_set_model): unref model when we
8428         change models, #59899
8429
8430 2001-09-07  Havoc Pennington  <hp@pobox.com>
8431
8432         * gtk/gtkmain.c: move some docs inline
8433
8434 2001-09-07  Havoc Pennington  <hp@pobox.com>
8435
8436         * gtk/gtk.h: tsk tsk, jrb broke the build
8437
8438 Fri Sep  7 20:45:29 2001  Jonathan Blandford  <jrb@redhat.com>
8439
8440         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_pack_{start,end}):
8441         Removed 'fill' attribute.  It was silly b/c that was a property of
8442         the cell renderer, anyway.
8443         (gtk_tree_view_column_render): Actually render the packed
8444         renderers.
8445         * doc/tree-column-sizing.txt: initial devel documentation.
8446         * gtk/gtktreeview.c (gtk_tree_view_expand_all): Fix bug.
8447         * gtk/gtkcellrenderertextpixbuf.[ch]: removed.
8448
8449         * tests/testtreefocus.c: fix up to reflect above changes.
8450         * tests/testtreeview.c: ditto
8451         * demos/gtk-demo/stock_browser.c: ditto
8452
8453 2001-09-07  Alex Larsson  <alexl@redhat.com>
8454
8455         * gdk/linux-fb/gdkcolor-fb.c:
8456         Removed unused function.
8457         
8458         * gdk/linux-fb/gdkdrawable-fb2.c
8459         * gdk/linux-fb/gdkfont-fb.c:
8460         Use PangoLanguage functions.
8461
8462         * gdk/linux-fb/gdkinput.c:
8463         * gdk/linux-fb/gdkselection-fb.c:
8464         Fix const warnings.
8465         
8466         * gdk/linux-fb/gdkwindow-fb.c:
8467         Fix warning. Implement gdk_window_set_icon_list() and
8468         gdk_window_get_frame_extents(). (No icon support yet though.)
8469
8470         * gtk/gtkwindow.c (gtk_window_get_position):
8471         If window->frame is set get the extents of it instead.
8472         
8473 Fri Sep  7 18:50:59 2001  Owen Taylor  <otaylor@redhat.com>
8474
8475         * gtk/gtkwidget.c (gtk_widget_get_default_colormap): 
8476         Make the default default colormap the GdkRGB colormap,
8477         not the system colormap.
8478
8479         * gtk/gtkinvisible.c (gtk_invisible_init) 
8480           gtk/gtkwindow.c (gtk_window_init): Set the current
8481         colormap, as returned by _gtk_widget_peek_colormap()
8482         on the widget.
8483
8484         * gtk/gtkwidget.[ch]: Export _gtk_widget_peek_colormap
8485         to GTK+. Make it return %NULL instead of the default
8486         colormap if no colormap has explicitely been pushed.
8487
8488         * gtk/gtkwidget.c (gtk_widget_get_colormap): Check for
8489         colormaps on ancestral widgets before defaulting the
8490         the system default colormap.
8491
8492         * docs/Changes-2.0.txt: explain colormap changes.
8493
8494 2001-09-07  Havoc Pennington  <hp@redhat.com>
8495
8496         * gtk/gtktextiter.c: add some lame code to handle G_MININT, fixes 
8497         #57424
8498
8499 Fri Sep  7 18:17:47 2001  Owen Taylor  <otaylor@redhat.com>
8500
8501         * gdk/gdk.h gdk/x11/gdkmain-x11.c: Deprecate gdk_set/get_use_xshm, 
8502         make gdk_set_use_xshm a noop. Remove --no-xshm command line
8503         option. If we aren't autodetecting properly, we need
8504         to fix the problem, or at least make it an environment
8505         variable setting, to avoid problems with propagating
8506         to embedded children, plugins, etc.
8507
8508         * gdk/gdkcolor.h: Deprecate gdk_colormap_get_system_size().
8509
8510         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf.h
8511         (gdk_pixbuf_render_pixmap_and_mask_for_colormap):
8512         New function to render a pixmap and mask for a particular colormap.
8513
8514         * gtk/gtkwindow.c (get_pixmap_and_mask): Change to use
8515         gdk_pixbuf_render_pixmap_and_mask_for_colormap () instead
8516         of internal implementation of the same.
8517
8518 2001-09-07  Havoc Pennington  <hp@redhat.com>
8519
8520         * gtk/gtktextlayout.c (gtk_text_layout_get_lines): remove some
8521         debug code that seems to have caused a breakpoint in valid cases
8522         
8523         * gtk/gtktextbtree.c (_gtk_text_btree_add_view): set the prev
8524         pointer on the first view when adding the second view, fixes
8525         crash when closing gtk-demo text test with active selection
8526
8527         * gtk/gtktextbuffer.c
8528         (gtk_text_buffer_remove_selection_clipboard): don't leave dead
8529         clipboards in the list of clipboards - probably fixes #59836
8530
8531 Fri Sep  7 11:51:44 2001  Owen Taylor  <otaylor@redhat.com>
8532
8533       Make gdkx.h the only installed header from gdk/x11.
8534       All structures in gdk/x11 are opaque.
8535
8536         * gdk/x11/Makefile.am gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h:
8537         Don't install gdk{drawable,pixmap,window}-x11.h.
8538
8539         * gdk/x11/{gdkcolormap-x11.c, gdkfont-x11.c, gdkx.h, gdkvisual-x11.c: 
8540         Move GdkColormapPrivateX11, GdkFontPrivateX GdkImagePrivateX11, 
8541         GdkVisualClass into C files.
8542
8543         * gdk/gdkpixmap-x11.[ch]: Make gdk_pixmap_impl_get_type() static.
8544
8545         * gdk/x11/{gdkcolor-x11.c, gdkcursor-x11.c, gdkdrawable-x11.c,
8546         gdkfont-x11.c, gdkgc-x11.c, gdkx.h, gdkimage-x11,gdkvisual-x11.c}
8547         Add public functions to replace previously exported direct
8548         structure access.
8549         gdk_x11_colormap_get_{xdisplay,xcolormap} 
8550         gdk_x11_cursor_get_{xdisplay,xcursor},
8551         gdk_x11_drawable_get_{xdisplay,xcursor,gdk_x11_visual_get_xvisual, 
8552         gdk_x11_font_get_{xdisplay,xfont}, gdk_x11_image_get_{xdisplay,ximage},
8553         gdk_x11_gc_get_{xdisplay,ximage}
8554         
8555         * gdk/gdkprivate.h gdk/gdkinternals.h: Move GdkColorInfo,
8556         GdkEventFilter, GdkClientFilter, GdkFontPrivate to gdkinternals.
8557
8558       Fix a number of variables and functions that were exported
8559       "accidentally" from GDK.
8560
8561         * gdk/**.[ch]: gdk => _gdk for gdk_visual_init,
8562         gdk_events_init, gdk_input_init, gdk_dnd_init, gdk_image_exit, 
8563         gdk_input_exit, gdk_windowing_exit, gdk_event_func, gdk_event_data,
8564         gdk_event_notify, gdk_queued_events, gdk_queued_tail,
8565         gdk_event_new, gdk_events_queue, gdk_events_unqueue,
8566         gdk_event_queue_find_first, gdk_event_queue_remove_link,
8567         gdk_event_queue_append, gdk_event_button_generate,
8568         gdk_debug_flags, gdk_default_filters, gdk_parent_root.
8569
8570         * gdk/x11/{gdkevents-x11.c, gdkglobals-x11.c, gdkimage-x11.c, 
8571            gdkmain-x11.c, gdkprivate-x11.h, gdk/x11/gdkwindow-x11.c}:
8572         gdk => _gdk for gdk_event_mask_table, gkd_nevent_masks, 
8573         gdk_wm_window_protocols, gdk_leader_window, gdk_xgrab_window,
8574         gdk_use_xshm, gdk_input_ignore_core.
8575
8576         * gdk/x11/xsettings-common.h (xsettings_list_insert): Add
8577         #defines to namespace functions into the private _gdk_ 
8578         namespace.
8579
8580         * gdk/gdkwindow.[ch] gdk/x11/gdkx.h: Add gdk_get_default_root_window ()
8581         to replace gdk_parent_root exported variable. Adjust and
8582         deprecate GDK_ROOT_PARENT().
8583
8584         * demos/{testpixbuf-drawable.c,testpixbuf-save.c}: Fix
8585         GDK_ROOT_PARENT usage, remove includes of port-specific
8586         headers.
8587
8588         * gdk/{win32,x11,fb}/gdkinput*.[ch]: s/gdk/_gdk/ for 
8589         _gdk_input_gxid_host, _gdk_input_gxid_port, _gdk_input_ignore_core, 
8590         gdk_input_devices, _gdk_input_windows, gdk_init_input_core.
8591
8592         * gdk/x11/{gdkevents-x11.,c gdkglobals-x11.c, gdkmain-x11.c}
8593         docs/Changes-2.0.txt: Remove gdk_wm_protocols, 
8594         gdk_wm_delete_window functions, gdk_wm_take_focus, 
8595         use gdk_atom_intern() instead.
8596
8597         * gdk/linux-fb/{gdkselection-fb.c, gdkmain-fb.c, gdkprivatefb.h}
8598           gdk/win32/{gdkselection-win32.c, gdkmgdkwin32.h, gdkprivate-win32.h} 
8599           gdk/x11/{gdkselection-x11.c gdkx.h, gtkprivate-x11.h}
8600           gtk/gtkselection.c 
8601         Unexport gdk_selection_property, just use 
8602         gdk_atom_intern ("GDK_SELECTION").
8603
8604         * gdk/x11/{gdkprivate-x11.h,gdkdrawable-x11h,gdkgc-x11.c,gdkx.h}: 
8605         Unexport gdk_drawable_impl_x11_get_type, gdk_gc_x11_get_type, 
8606         GDK_GC_X11 cast macros, GdkGCX11 structures, GdkCursorPrivate, 
8607         GdkVisualprivate, gdk_x11_gc_flush.
8608
8609       Make a number of public exports of variables into functions
8610       to increase encapsulation.
8611
8612         * gdk/gdkinternals.h gdk/gdkinput.h gdk/gdkevents.h 
8613         gdk/linux-fb/gdkmouse-fb.c: gdk_core_pointer => _gdk_core_pointer, 
8614         move to gdkinternals.h. Add gdk_device_get_core_pointer ().     
8615
8616         * gdk/gdkprivate.h gdk/gdkpango.c gdk/gdkinternals.h
8617         docs/Changes-2.0.txt: Unexport gdk_parent_root, gdk_error_code, 
8618         gdk_error_warnings.
8619
8620         * gdk/x11/{gdkcolormap-x11.c, gdkmain-x11.c, gdkx.h}
8621           docs/Changes-2.0.txt: 
8622         s/gdk_screen/_gdk_screen/, add gdk_x11_get_default_screen()
8623         s/gdk_root_window/_gdk_root_window/, add gdk_x11_get_default_root_xwindow()
8624         Add gdk_x11_get_default_xdisplay().
8625
8626         * gdk/gdk.h gdk/gdk.c linux-fb/gdkfb.h linux-fb/gdkglobals-fb.c 
8627         win32/gdkwin32.h x11/gdkglobals-x11.c gdk/x11/gdkmain-x11.c 
8628         gdk/x11/gdkx.h: gdk/gdk.def: Add gdk_get/set_program_class, 
8629         Don't export gdk_progclass, move --class command line
8630         option and handling to common portion of GDK.
8631
8632       Miscellaneous fixes:
8633
8634         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Fix
8635         g_return_val_if_fail that should have been g_return_if_fail.
8636
8637         * gdk/gdkinternals.h gdk/gdkprivate.h: Move
8638         gdk_synthesize_window_state() to the semi-public gdkprivate.h.
8639
8640         * gtk/gtkdnd.c (_gtk_drag_source_handle_event): Remove uneeded
8641         X11 dependency.
8642
8643         * gdk/linux-fb/gdkmain-fb.c gdk/win32/gdkmain-win32.c gdk/TODO: 
8644         Remove unused gdk_key_repeat_disable/restore.
8645
8646         * linux-fb/gdkglobals-fb.c win32/gdkglobals-win32.c 
8647         x11/gdkglobals-x11.c x11/gdkprivate-x11.h gdk/gdk.def:
8648         Remove unused gdk_null_window_warnings variable.
8649
8650         * gdk/Makefile.am (DIST_SUBDIRS) nanox/*: cvs remove nanox;
8651         it can be retrieved from the repository; it is too far
8652         from functional to be worth having people check out;
8653         it would be easier to start from scratch, I suspect.
8654
8655         * gdk/x11/gdkpixmap-x11.c: Fix lvalue usage of GDK_PIXMAP_XID().
8656
8657         * gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c 
8658         gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c: 
8659         Fix some accidentally global variables and unused global variables.
8660
8661         * gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c 
8662         gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c: 
8663         Fix some accidentally global variables and unused global variables.
8664
8665       Add some space for future expansion to multihead.
8666
8667         * gdk/gdkdrawable.h: Add four reserved function pointers
8668         for future expansion of GdkDrawableClass.
8669
8670         * gtk/gtkwindow.h gtk/gtkinvisible.h: Add reserved pointer
8671         where we can put a GdkScreen * later.
8672
8673 2001-09-07  Havoc Pennington  <hp@redhat.com>
8674
8675         * gtk/gtktextview.c (gtk_text_view_flush_scroll): update
8676         adjustments after validating destination yrange; fixes #53918
8677         (This may cause other issues, but I hope it won't)
8678         
8679 2001-09-05  Havoc Pennington  <hp@redhat.com>
8680
8681         * gtk/gtktextbtree.c (_gtk_text_btree_delete): when merging end
8682         line into start line, update the character counts in parent nodes; 
8683         caused a bug when end and start line had different parent nodes.
8684
8685 2001-08-30  Havoc Pennington  <hp@redhat.com>
8686         
8687         * gtk/gtktexttag.c (_gtk_text_attributes_fill_from_tags): add
8688         assertion that tag is in a table
8689
8690 Fri Sep  7 12:48:56 2001  Matthias Clasen  <matthiasc@poet.de>
8691
8692         * gdk/x11/gdkkeys-x11.c (get_direction): Don't call
8693         g_strcasecmp on NULL strings. (#59058)
8694
8695 2001-09-06  Alex Larsson  <alexl@redhat.com>
8696
8697         * gtk/gtkbin.c:
8698         * gtk/gtkfontsel.c:
8699         * gtk/gtkspinbutton.c:
8700         * gtk/gtktipsquery.c:
8701         Use GtkType/GType instead of uint.
8702
8703 Tue Sep  4 18:13:43 2001  Jonathan Blandford  <jrb@redhat.com>
8704
8705         * gtk/gtkliststore.c (gtk_list_store_init): fix initial val for
8706         sort column.
8707
8708         * gtk/gtktreestore.c (gtk_list_store_init): ditto
8709
8710         * gtk/gtktreesortable.c: add docs.
8711
8712 Tue Sep  4 09:37:19 2001  Owen Taylor  <otaylor@redhat.com>
8713
8714         * Version 1.3.7
8715
8716         * configure.in docs/Makefile.am docs/gtk-config.1.in: Remove 
8717         docs for gtk-config
8718
8719         * modules/input/Makefile.am (install-data-local): Don't
8720         run gtk-query-immodules if DESTDIR is set.
8721
8722         * NEWS: Various additions.
8723
8724 Tue Sep  4 03:12:25 2001  Tim Janik  <timj@gtk.org>
8725
8726         * NEWS: updates for 1.3.7 release.
8727
8728 Mon Sep  3 18:03:56 2001  Jonathan Blandford  <jrb@redhat.com>
8729
8730         * gtk/gtktreestore.c (gtk_tree_store_set_default_sort_func):
8731         handle default sort feature
8732
8733         * gtk/gtktreesortable.c (gtk_tree_sortable_set_default_sort_func):
8734         new function to handle default sort.
8735         (gtk_tree_sortable_has_default_sort_func): check if default sort
8736         is set.
8737
8738         * gtk/gtkliststore.c (gtk_list_store_set_default_sort_func): 
8739         handle default sort feature
8740
8741 Sun Sep  2 20:32:36 2001  Jonathan Blandford  <jrb@redhat.com>
8742
8743         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): patch from
8744         vishnu@pobox.com (Joshua N Pritikin) to fix math and an assertion,
8745         #59731
8746
8747 Sun Sep  2 17:38:42 2001  Jonathan Blandford  <jrb@redhat.com>
8748
8749         * gtk/gtktreeview.c (gtk_tree_view_deleted): Patch from
8750         vishnu@pobox.com (Joshua N Pritikin) to emit signal at the correct
8751         time, #59727
8752
8753         * gtk/gtkbutton.c (gtk_button_update_state): Get depressed
8754         correctly.
8755
8756 Sun Sep  2 21:41:21 2001  Owen Taylor  <otaylor@redhat.com>
8757
8758         * gdk/x11/gdkkeys-x11.c (update_keymaps): Set current serial
8759         so that we don't eternally update the keymap after we
8760         get a change notification.
8761
8762         * gtk/gtkmenuitem.c (gtk_menu_item_set_right_justified): Fix
8763         incorrect cast.
8764
8765 Sun Sep  2 23:27:16 2001  Kristian Rietveld  <kristian@planet.nl>
8766
8767         * gtk/gtktreemodelsort.[ch]: much changes in an attempt to make
8768         it working. It mostly works now, although there're still a few issues
8769         to be worked out.
8770
8771         * tests/testtreesort.c (main): changes to have a better test
8772         application for the GtkTreeModelSort.
8773
8774 Sun Sep  2 23:19:07 2001  Kristian Rietveld  <kristian@planet.nl>
8775
8776         * gtk/gtktreeview.c (gtk_tree_view_search_iter): code cleaup,
8777         fix for bug #59222.
8778
8779         * gtk/gtktreeview.c (gtk_tree_view_search_equal_func): add
8780         gpointer search_data argument to function definition and
8781         prototype, to match GtkTreeViewSearchEqualFunc typedef.
8782
8783 Sat Sep  1 21:57:27 2001  Kristian Rietveld  <kristian@planet.nl>
8784
8785         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): add warnings
8786         per jrb's request.
8787
8788 Fri Aug 31 20:01:23 2001  Jonathan Blandford  <jrb@redhat.com>
8789
8790         * gtk/gtktreeview.c (gtk_tree_view_search_iter): pass in user data.
8791
8792         * gtk/gtktreeview.c (gtk_tree_view_destroy): destroy search_data.
8793
8794 Wed Aug 29 20:40:58 2001  Owen Taylor  <otaylor@redhat.com>
8795
8796         * gtk/gtktextbuffer.[ch] (gtk_text_buffer_add/remove_selection_clipboard): 
8797         Instead of always mirroring the selection to a single PRIMARY
8798         selection, allow it to be mirrored to any number of clipboards.
8799
8800         * gtk/gtktextbuffer.[ch] (gtk_text_buffer_paste_primary): Remove, 
8801         just use gtk_text_buffer_paste_clipboard with the appropriate clipboard.
8802
8803         * gtk/gtktextbuffer.[ch] (gtk_text_buffer_cut/copy/paste_clipboard): Add a
8804         GtkClipboard argument, and for paste_clipboard, the
8805         @override_location argument from @paste_primary.
8806
8807         * gtk/gtktextview.c: Adapt to above change.
8808         
8809 2001-08-30  Havoc Pennington  <hp@redhat.com>
8810
8811         * gtk/gtktextview.c (invalidated_handler): put validate idle at
8812         resize - 2 just for flexibility
8813
8814 2001-08-30  Havoc Pennington  <hp@redhat.com>
8815
8816         * gtk/gtktextdisplay.c (render_layout_line): handle NULL shaped
8817         object from the empty-child-anchor case by drawing a little box.
8818         
8819         * gtk/gtktextlayout.c (add_child_attrs): Still set shape attribute
8820         if the child anchor has no anchored widgets - fixes #59328.
8821
8822         Also, remove bizarre deletion of preedit string that seems to have
8823         gotten in here somehow.
8824
8825 2001-08-30  Havoc Pennington  <hp@redhat.com>
8826
8827         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): apply fix
8828         to #58420 from Hidetoshi Tajima and Matthias Clasen
8829
8830 Wed Aug 29 17:28:04 2001  Jonathan Blandford  <jrb@redhat.com>
8831
8832         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
8833         change color when the GtkTreeView loses focus.
8834
8835         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render):
8836         ditto.
8837         
8838         * gtk/gtkstyle.c (gtk_default_draw_flat_box): ditto
8839
8840 2001-08-28  Havoc Pennington  <hp@pobox.com>
8841
8842         * gtk/gtkwindow.c (gtk_window_set_icon_list): fix g_object_notify
8843
8844 2001-08-28  Havoc Pennington  <hp@pobox.com>
8845
8846         * demos/gtk-demo/main.c (setup_default_icon): add default icon
8847
8848         * gtk/gtkradiobutton.c (gtk_radio_button_new_with_mnemonic):
8849         warning fix
8850         (gtk_radio_button_new_with_label): warning fix
8851
8852         * gtk/gtkdnd.c: used some random GtkImage private structs, 
8853         update to reflect GtkImage changes
8854
8855         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): don't check
8856         whether the hint is supported, just always set the icon. A task
8857         list might want to use it even if the WM doesn't, and the WM may
8858         change over time. Also, XDeleteProperty() if list == NULL.
8859
8860         * gtk/gtkwindow.c (gtk_window_set_icon_list)
8861         (gtk_window_get_icon_list)
8862         (gtk_window_set_icon)
8863         (gtk_window_get_icon)
8864         (gtk_window_set_default_icon_list)
8865         (gtk_window_get_default_icon_list):
8866         new functions
8867
8868         * gtk/gtk-boxed.defs (GtkIconSet): add GtkIconSet
8869
8870         * gtk/gtkimage.c: Implement property support, bug #59408
8871
8872         * gtk/gtkcontainer.c (gtk_container_add): make the warning message
8873         on reparent-without-removing-first a bit more helpful.
8874         Let's just destroy this FAQ.
8875
8876 Tue Aug 28 21:37:11 2001  Matthias Clasen  <matthiasc@poet.de>
8877
8878         * demos/gtk-demo/appwindow.c (do_appwindow): Use g_signal_connect_object
8879         instead of gtk_signal_connect, to avoid warnings at destruction time. (#58161)
8880
8881 Tue Aug 28 21:00:44 2001  Matthias Clasen  <matthiasc@poet.de>
8882
8883         * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
8884         of use_text_format to the end of the function. (#56447)
8885
8886 Tue Aug 28 20:06:07 2001  Matthias Clasen  <matthiasc@poet.de>
8887
8888         * demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
8889         only in response to an area_prepared signal.
8890
8891 2001-08-28  Alex Larsson  <alexl@redhat.com>
8892
8893         * gtk/gtkwidget.c (gtk_widget_class_init):
8894         Make unrealize GTK_RUN_LAST.
8895
8896 Mon Aug 27 22:00:41 2001 Manish Singh <yosh@gimp.org>
8897
8898         * gtk/gtkradiobutton.c: fix silly cut'n'paste error,
8899         with_label and with_mnemonic should create radio buttons, not
8900         check buttons
8901
8902 Mon Aug 27 15:28:56 2001  Jonathan Blandford  <jrb@redhat.com>
8903
8904         * tests/testtreefocus.c (main): Fix to use GtkSelectionMode.
8905         * tests/treestoretest.c (make_window): ditto
8906         * demos/gtk-demo/main.c (create_tree): ditto
8907         * demos/gtk-demo/stock_browser.c (do_stock_browser): ditto.
8908
8909 Mon Aug 27 15:18:14 2001  Jonathan Blandford  <jrb@redhat.com>
8910
8911         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): Use the
8912         GTK selection types rather than GtkTreeSelectionMode.
8913
8914         * docs/Changes-2.0: Add comment about selection change.
8915
8916 Mon Aug 27 14:21:30 2001  Jonathan Blandford  <jrb@redhat.com>
8917
8918         * gtk/gtkenums.h (GtkSelectionMode): deprecate
8919         GTK_SELECTION_EXTENDED.
8920
8921         * gtk/gtkclist.c: Remove old GTK_SELECTION_MULTIPLE behavior.
8922         Make GTK_SELECTION_EXTENDED be GTK_SELECTION_MULTIPLE.
8923
8924         * gtk/gtkctree.c: ditto
8925
8926         * gtk/gtklist.c: ditto
8927
8928         * gtk/gtktree.c: ditto
8929
8930 Mon Aug 27 14:18:12 2001  Owen Taylor  <otaylor@redhat.com>
8931
8932         * gtk/gtkmenubar.h (gtk_menu_bar_prepend): Fix a cuple
8933         of typos in compat macros. (#59624, Skip Montaro)
8934
8935 Sun Aug 26 20:00:00 2001  Owen Taylor  <otaylor@redhat.com>
8936
8937         * configure.in acinclude.m4: Use autoconf 2.13/2.50 compat
8938         macro.
8939
8940          (patch from ERDI Gergo  <cactus@cactus.rulez.org>, #58920)
8941  
8942         * gtk/gtkmenuitem.c (gtk_menu_item_set_right_justified): Change
8943         interface to be a standard setter from gtk_menu_item_right_justify.
8944         (gtk_menu_item_get_right_justified): a getter to go with the setter
8945
8946         * gtk/gtkmenuitem.h: Add a deprecated compat macro for
8947         gtk_menu_item_right_justify.
8948
8949         * demos/gtk-demo/menus.c tests/testgtk.c: Switch to 
8950         gtk_menu_item_set_right_justified.
8951  
8952 2001-08-27  Jens Finke <jens@gnome.org>
8953
8954         * gtk+.spec.in: Updated to match gpp requirements, reworked the
8955         files section to make it work with 1.3.x releases.
8956
8957 2001-08-26  Alexander Larsson  <alla@lysator.liu.se>
8958
8959         * gtk/gtkbutton.[ch]:
8960         Add properties for labels, mnemonics and stock items.
8961         Added C accessor functions for the properties.
8962         Removed deprecated button->child.
8963
8964         * gtk/gtkradiobutton.c:
8965         * gtk/gtktogglebutton.c:
8966         Update to use the functions in GtkButton.
8967
8968         * gtk/gtkcheckbutton.c:
8969         Update to use the functions in GtkButton.
8970         Changed size allocation of child. Now only gets as much
8971         space as it requests.
8972
8973         * gtk/gtkclist.c:
8974         Don't use GtkButton->child
8975
8976         * gtk/gtklabel.c:
8977         Fixed typo in docs
8978         
8979 2001-08-26  Alexander Larsson  <alla@lysator.liu.se>
8980
8981         * tests/testgtk.c:
8982         * tests/Makefile.am:
8983         Ressurect the properties test.
8984         I don't care if it is inferior, I just want to test my property code.
8985
8986 2001-08-25  Chema Celorio  <chema@celorio.com>
8987
8988         * gtk/gtktable.c (gtk_table_set_child_property): pass ->nrows to
8989         gtk_table_resize as the first argument for CHILD_PROP_RIGHT_ATTACH
8990         and CHILD_PROP_LEFT_ATTACH v.s. using ->ncols
8991
8992 2001-08-24  Havoc Pennington  <hp@pobox.com>
8993
8994         * gtk/gtkcompat.h: remove gtk_menu_* compat defines; 
8995         these are already in gtkmenu.h, and the copies
8996         here were broken.
8997
8998         Also, change GTK_DISABLE_COMPAT_H to GTK_DISABLE_DEPRECATED
8999
9000         * gdk/gdkpixbuf-drawable.c (gdk_pixbuf_get_from_image):
9001         special-case bitmaps to allow no colormap
9002         (bitmap1): implement no-colormap bitmap-getting
9003         (bitmap1a): implement no-colormap bitmap-getting to pixbuf with
9004         alpha
9005         (rgb8): indentation
9006         (rgb1a, rgb1): change the way we read the data out of the image, 
9007         old way didn't seem to work quite right.
9008
9009         I'm pretty sure a lot of the rgbconvert code is still broken.
9010         
9011         * gtk/gtkwindow.c (gtk_window_move_resize): move hints comparison
9012         above position constraint (I really intended to do this before,
9013         don't know what's up with that)
9014         (gtk_XParseGeometry): shut up gcc
9015
9016         * gdk/gdkpixbuf-drawable.c (rgb1a): fix bug where "x1" was used
9017         and "0" should have been. remove the attempted 4-bytes-at-once
9018         optimization, it was totally broken.
9019
9020 Sat Aug 25 19:02:39 2001  Owen Taylor  <otaylor@redhat.com>
9021
9022         * gtk/gtkbutton.[ch] gtk/gtktogglebutton.c: Add optional movement
9023         on push to buttons (based on patch from Soeren Sandmann, #54720)
9024
9025           - Add child_displacement_x/y style properties to control how far the
9026             child moves when the button is depressed.
9027
9028           - Add non-exported function _gtk_button_set_depressed to clean
9029             up the handling of the in/out shadow and separate it frmo
9030             widget->state.
9031
9032           - Lots of code cleanup and simplification of state handling
9033             for GtkButton/GtkToggleButton.
9034  
9035         * tests/testgtkrc: Set the x/y displacement to 1 to provide a test
9036         of button movement. testgtk + testgtkrc == test ugly GTK+, as always.   
9037
9038 Fri Aug 24 23:09:05 2001  Owen Taylor  <otaylor@redhat.com>
9039
9040         * gtk/gtkimage.[ch] docs/Changes-2.0.txt: Break compatibility 
9041         and make gtk_image_new() take no arguments. The compiler will
9042         catch it, and it is vastly more useful than having
9043         gtk_image_new() be a deprecated alias for gtk_image_new_from_image().  
9044
9045         * gtk/gtkmenu.c (gtk_menu_set_property): Apply patch
9046         to add tearoff-title property (#51319, Lee Mallabone)
9047
9048 Fri Aug 24 22:12:32 2001  Owen Taylor  <otaylor@redhat.com>
9049
9050         * gtk/gtkmenuitem.[ch]: Remove unused and useless function
9051         gtk_menu_item_configure(). (#58925)
9052
9053 Fri Aug 24 16:03:45 2001  Jonathan Blandford  <jrb@redhat.com>
9054
9055         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): Add
9056         "use_align" to give people the option to just make a cell visible.
9057
9058         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_point): fix bug where
9059         we were scrolling past the end of the tree.
9060
9061         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_pack_start):
9062         rename gtk_tree_view_column_pack_start_cell_renderer to
9063         gtk_tree_view_column_pack_start.  Same for pack_end, and clear.
9064
9065 Fri Aug 24 12:02:08 2001  Owen Taylor  <otaylor@redhat.com>
9066
9067         * gtk/gtktextbuffer.c (gtk_text_buffer_new): Remove
9068         a stray g_object_ref() left over from gtk_object_ref/sink.
9069         (Pointed out by Josh Pritikin.)
9070
9071 Thu Aug 23 19:33:54 2001  Owen Taylor  <otaylor@redhat.com>
9072
9073         * gtk/gtkcontainer.[ch]: Rename gtk_container_children()
9074         to gtk_container_get_children. Added deprecated compatibility
9075         macro. (Suggested by Vitaly Tishkov, #59051)
9076
9077         * gtk/gtktoolbar.c gtkdialog.c: Fix gtk_container_children()
9078         calls.
9079
9080 Thu Aug 23 19:10:01 2001  Owen Taylor  <otaylor@redhat.com>
9081
9082         * gtk/gtkmenubar.h (gtk_menu_bar_insert): Deprecate 
9083         gtk_menu_bar_append/prepend/insert, forgot to do this
9084         when we deprecated gtk_menu_append/prepend/insert.
9085
9086         * gtk/gtkmenu.h (gtk_menu_insert): Add casts to deprecated
9087         compat macros.
9088
9089         * gtk/gtkmenu.c: Fix problem with static gtk_menu_insert() being
9090         renamed by compat macro.
9091
9092         * gtk/gtkfontsel.h: Deprecated gtk_font_selection_get_font(),
9093         gtk_font_selection_dialog_get_font(). (Suggested by
9094         Vitaly Tishkov, #59383)
9095
9096 Thu Aug 23 18:23:31 2001  Owen Taylor  <otaylor@redhat.com>
9097
9098         * gtk/gtktexttag.c (gtk_text_tag_table_get_size): 
9099         Rename from gtk_text_tag_table_size(). (#59366)
9100
9101 Thu Aug 23 20:01:41 2001  Kristian Rietveld  <kristian@planet.nl>
9102
9103         * gtk/gtktreemodelsort.[ch], gtk/gtktreesortable.[ch],
9104         gtk/gtktreestore.[ch], gtk/gtktreeviewcolumn.[ch],
9105         gtk/gtkliststore.[ch]: use GtkSortType instead of GtkTreeSortOrder.
9106         (#59173).
9107
9108 Thu Aug 23 16:26:47 2001  Tim Janik  <timj@gtk.org>
9109
9110         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize): 
9111         * gtk/gtktextmark.c (gtk_text_mark_finalize): chain parent class
9112         handlers, pointed out by Joshua N Pritikin <vishnu@pobox.com>.
9113
9114 Wed Aug 22 19:15:39 2001  Owen Taylor  <otaylor@redhat.com>
9115
9116         [ Patch from Sebastian Wilhelmi, 52790 ]
9117
9118         * gtk/gtkversion.h.in gtk/gtk.h: New file replacing gtkcompat.h
9119
9120         * gdk/gdkcompat.h gdk/gdk*.h gtk/gtkcompat.h.in gtk/gtk*.h: 
9121         Move compatibility macros from g[dt]kcompat.h to within 
9122         #ifndef G[DT]K_DISABLE_DEPRECATED in each file.
9123
9124         * gdk/gdk-pixbuf-csource.c: Fix up include of gtkcompat.h.
9125
9126         * demos/Makefile.am demos/gtk-demo/Makefile.am 
9127           docs/reference/gdk-pixbuf/Makefile.am modules/input/Makefile.am
9128           tests/Makefile.am: Remove references to -G[DT]K_DISABLE_DEPRECATED.
9129
9130         * demos/{pixbuf-demo.c,testpixbuf-drawable.c,testpixbuf-save.c,
9131                  testpixbuf.c}: Fix usages of deprecated functions.
9132
9133 Wed Aug 22 19:03:27 2001  Jonathan Blandford  <jrb@redhat.com>
9134
9135         * gtk/gtktreeview.c (gtk_tree_view_set_model): clean up selection
9136         when changing models.
9137
9138 Wed Aug 22 18:25:46 2001  Jonathan Blandford  <jrb@redhat.com>
9139
9140         * gtk/gtktreeview.c: Fix selection.  I think it's all dandy now.
9141         We check the current event for modifiers rather than try to trap
9142         all presses.
9143
9144 2001-08-22  Anders Carlsson  <andersca@gnu.org>
9145
9146         * gtk/gtkliststore.h (GTK_LIST_STORE_CLASS): Fix a small typo.
9147         It's LIST_STORE, not LISTSTORE.
9148
9149 Tue Aug 21 12:43:29 2001  Owen Taylor  <otaylor@redhat.com>
9150
9151         * gtk/gtk.h: Remove commented out gtkpacker reference.
9152
9153 2001-08-21  Matthias Clasen  <matthiasc@waldgeist.poet.de>
9154
9155         * configure.in (all_loaders): Add tga loader, 
9156         patch by Nicola Girardi. (#56067)
9157
9158 Tue Aug 21 02:57:13 2001  Jonathan Blandford  <jrb@redhat.com>
9159
9160         * gtk/gtktreeview.c (gtk_tree_view_button_press): Fix up selection
9161         a little.  More needs to be done tomorrow.
9162
9163 Tue Aug 21 00:45:55 2001  Jonathan Blandford  <jrb@redhat.com>
9164
9165         * gtk/gtktreeview.c (gtk_tree_view_destroy): Grr... Get it right.
9166
9167 Mon Aug 20 23:48:18 2001  Jonathan Blandford  <jrb@redhat.com>
9168
9169         * gtk/gtktreeview.c (gtk_tree_view_get_cell_area): Fix bug
9170         reported by Kristian Rietveld <kristian@planet.nl> to handle row
9171         == NULL.
9172         (gtk_tree_view_destroy): Fix bug reported by Kristian Rietveld
9173         <kristian@planet.nl> to change destroy order.
9174
9175 Mon Aug 20 11:39:44 2001  Jonathan Blandford  <jrb@redhat.com>
9176
9177         * gtk/gtktreeselection.c (gtk_tree_selection_class_init): Use
9178         correct marshaller.
9179
9180 Sun Aug 19 03:22:59 2001  Jonathan Blandford  <jrb@redhat.com>
9181
9182         * gtk/gtkliststore.c: Fix up warnings, #58928.
9183
9184         * gtk/gtktreeselection.h: Change signal prototype, #58647
9185
9186         * gtk/gtktreeview.c (_gdk_tree_view_find_node): Make more robust,
9187         #59221.
9188
9189         * gtk/gtkstyle.c: Actually prelight arrow, #50981
9190         
9191 2001-08-18  Hans Breuer  <hans@breuer.org>
9192
9193         * gdk/gdk.def : updated externals
9194
9195         * gdk/win32/gdkselection-win32.c : returning TRUE with gdk_selection_set
9196         is required to get (at least) visible in entry fields. Some selections
9197         are really handled now - even on win32 - but copying via middle
9198         mouse button into a different app needs to wait ... 
9199
9200         * gdk/win32/gdkdnd-win32.c : implemented inter-app drag&drop
9201         mostly by stealling code from gdkdnd-fb.c. Thanks to who ever wrote it!
9202
9203         * gdk/win32/gdkevents-win32.c : some tweaking to get better expose
9204         handling. I'm not sure if it is better now, but at least not worse
9205
9206         * gdk/win32/gdkgeometry-win32.c : replaced every call to MoveWindow
9207         with SetWindowPos () which allows more fine-tuning backing-store wise
9208
9209         * gdk/win32/gdkwindow-win32.c : allow unraised gdk_window_show ().
9210         Also changed move/resize to be more like the X version.
9211
9212         * gtk/gtk.def : updated externals
9213
9214 2001-08-19  Sven Neumann  <sven@gimp.org>
9215
9216         * gtk/gtktooltips.c
9217         * tests/testtreesort.c
9218         * tests/treestoretest.c: inserted some casts to get rid of compiler
9219         warnings.
9220
9221 Sun Aug 19 01:44:44 2001  Jonathan Blandford  <jrb@redhat.com>
9222
9223         * gtk/gtktreeviewcolumn.c
9224         (gtk_tree_view_column_pack_{start,end}_cell_renderer): sink cell.
9225
9226         * gtk/gtktreeview.c (gtk_tree_view_insert_column): sink column.
9227         (_gtk_tree_view_find_node): If *node is NULL,
9228         *tree should be NULL too.
9229
9230         * demos/gtk-demo/stock_browser.c (do_stock_browser): don't unref
9231         column/renderers.
9232         * tests/testtreecolumns.c: ditto
9233         * tests/testtreefocus.c: ditto
9234         * tests/testtreesort.c: ditto
9235         * tests/testtreeview.c: ditto
9236         * tests/treestoretest.c: ditto
9237
9238 Sat Aug 18 04:34:31 2001  Jonathan Blandford  <jrb@redhat.com>
9239
9240         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 2 new
9241         signals; is_expander/is_expanded.
9242
9243         * gtk/gtlcellrendererpixbuf.c: Allow other expanded and closed
9244         pixbufs.
9245
9246         * gtk/gtktreeview.c: set above properties.
9247
9248 Sat Aug 18 23:01:33 2001  Owen Taylor  <otaylor@redhat.com>
9249
9250         * gtk/gtkwidget.h: Really remove set_default_style().
9251
9252         * docs/Changes-2.0.txt: added a note about
9253         gtk_widget_push/pop/set_default_style.
9254
9255 2001-08-18  Havoc Pennington  <hp@pobox.com>
9256
9257         * gtk/gtkwindow.c (gtk_window_move_resize): constrain position on
9258         hints_changed in addition to the other cases.
9259         (gtk_window_move_resize): include last position from configure
9260         notify in debug spew
9261
9262 2001-08-18  James Henstridge  <james@daa.com.au>
9263
9264         * gtk/gtkaccelgroup.c (gtk_accel_group_object_destroy): use the
9265         second argument to the weak ref notify, cleaning up some uglyness.
9266         (gtk_accel_group_attach): remove and add the weak notifier when
9267         changing the accel groups slist.
9268         (gtk_accel_group_detach): same here.
9269
9270 2001-08-17  Darin Adler  <darin@bentspoon.com>
9271
9272         * gtk/gtktreeview.c: (gtk_tree_view_search_equal_func): Add
9273         missing parameters to utf8 functions to make it compile.
9274
9275 Fri Aug 17 19:30:14 2001  Jonathan Blandford  <jrb@redhat.com>
9276
9277         * gtk/gtktreeprivate.h:
9278         * gtk/gtktreeview.c: (gtk_tree_view_class_init),
9279         (gtk_tree_view_init), (gtk_tree_view_set_property),
9280         (gtk_tree_view_get_property), (gtk_tree_view_destroy),
9281         (gtk_tree_view_key_press), (gtk_tree_view_leave_notify),
9282         (gtk_tree_view_focus_out), (gtk_tree_view_set_model),
9283         (gtk_tree_view_set_destroy_count_func),
9284         (gtk_tree_view_set_enable_search),
9285         (gtk_tree_view_get_enable_search),
9286         (gtk_tree_view_get_search_column),
9287         (gtk_tree_view_set_search_column),
9288         (gtk_tree_view_get_search_equal_func),
9289         (gtk_tree_view_set_search_equal_func),
9290         (gtk_tree_view_search_dialog_destroy),
9291         (gtk_tree_view_search_position_func),
9292         (gtk_tree_view_interactive_search),
9293         (gtk_tree_view_search_delete_event),
9294         (gtk_tree_view_search_button_press_event),
9295         (gtk_tree_view_search_key_press_event),
9296         (gtk_tree_view_search_move), (gtk_tree_view_search_equal_func),
9297         (gtk_tree_view_search_iter), (gtk_tree_view_search_init):
9298         * gtk/gtktreeview.h:
9299         Add heavily modified patch from Kristian Rietveld to handle
9300         interactive searching.
9301
9302 Fri Aug 17 17:30:34 2001  Tim Janik  <timj@gtk.org>
9303
9304         * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): const correct
9305         string parameter.
9306
9307         * gtk/gtkoptionmenu.c (gtk_option_menu_set_menu): connect to
9308         GtkMenuShell::selection_done, now that we have it, instead of 
9309         ::deactivate so we're not tearing the menu apart and notify
9310         the user prematurely.
9311
9312 Thu Aug 16 05:22:01 2001  Tim Janik  <timj@gtk.org>
9313
9314         * gtk/gtkwindow.c (gtk_window_move_resize): if we actually move our
9315         window, clear window->need_default_position to avoid infinite loops.
9316         some comment fixups and GTK_RESIZE_IMMEDIATE fixups.
9317
9318 Wed Aug 15 12:36:55 2001  Tim Janik  <timj@gtk.org>
9319
9320         * gtk/gtktreeview.c (gtk_tree_view_set_model): move all model setup
9321         code into this place. get rid of GTK_TREE_VIEW_MODEL_SETUP usage.
9322         (gtk_tree_view_set_property): don't cast possible NULL objects.
9323         (gtk_tree_view_destroy): reset the model to NULL.
9324
9325         * gtk/gtktreeselection.c (gtk_tree_selection_finalize): chain
9326         parent_class handler.
9327
9328 2001-08-17  Matthias Clasen  <matthiasc@waldgeist.poet.de>
9329
9330         * gtk/demos/gtk-demo/*: Remove all uses of deprecated functions.
9331
9332 2001-08-17  Anders Carlsson  <andersca@gnu.org>
9333
9334         * gtk/gtkstyle.c (create_expander_affine): Divide with floating
9335         point numbers so that the result will be floating point.
9336
9337 2001-08-16  Matthias Clasen  <matthiasc@waldgeist.poet.de>
9338
9339         * tests/testgtk.c (create_handle_box): 
9340         (create_toolbar): Replace gtk_window_set_policy calls by
9341         gtk_window_set_resizable.
9342
9343 2001-08-16  Jakub Steiner <jimmac@ximian.com>
9344
9345         * gtk/stock-icons/dialog_info.png: new style bulb
9346         * gtk/stock-icons/dialog_error.png: maybe a little drastic ;)
9347         * gtk/stock-icons/dialog_warning.png: need a hand?
9348         * gtk/stock-icons/stock_add.png, stock_remove.png: I hope 
9349           the aa border gets chopped off ok
9350         * gtk/stock-icons/stock_colorselector.png: using the new hand
9351         * gtk/stock-icons/stock_dnd_multiple.png: I'm not totally sure what 
9352           this one is for, but the old icon was butt ugly.
9353         * gtk/stock-icons/stock*_insert_image.png: not sure if it belongs here
9354         * gtk/stock-icons/stock*_insert_object.png: "
9355         * gtk/stock-icons/stock_index.png: using new hand icon
9356         * gtk/stock-icons/stock*_new.png: the document template being used 
9357           elsewhere too
9358         * gtk/stock-icons/stock*_print*.png: new print and print preview 
9359           icons (panel/menu)  
9360         * gtk/stock-icons/stock*_save*.png, stock*_revert.png: new save/revert 
9361           icons based on Tuomas' floppy image.
9362         * gtk/stock-icons/stock*_search*.png: search and s'n'r icons for panel/menu
9363         * gtk/stock-icons/stock*_stop.png: replacing the old 'x' button
9364         * gtk/stock-icons/stock*_trash.png: based on Tuomas' trash icon
9365         * gtk/stock-icons/stock*_undelete.png: "
9366         * gtk/stock-icons/stock_preferences.png: I have a version with a 
9367           document base if the sliders are no good.
9368         * gtk/stock-icons/stock_properties.png: properties 
9369         
9370
9371         * gtk/stock-icons/stock*_copy.png, stock*_cut.png, stock*_paste.png: Tuomas' 
9372           (tigert@ximian.com) clipboard icons
9373         * gtk/stock-icons/stock_{up,down,left,right}_arrow.png: tigert's new arrows
9374         * gtk/stock-icons/stock*_{undo,redo}.png: tigert's undo/redo icons.
9375         * gtk/stock-icons/stock_open.png: shaded open icon by Tuomas. we should make it a
9376           little bigger IMHO
9377
9378 2001-08-16  Sven Neumann  <sven@gimp.org>
9379
9380         * gtk/gtkbox.c (gtk_box_class_init): removed unused widget_class.
9381
9382 2001-08-15  Padraig O'Briain  <padraig.obriain@sun.com>
9383
9384         * gtk/gtkcellrenderertext.c:
9385         Avoid warning when specifying NULL for "attributes" property
9386
9387 2001-08-15  Matthias Clasen  <matthiasc@waldgeist.poet.de>
9388
9389         * docs/debugging.txt: Add a warning about --enable-debug=no,
9390         some editorial changes.
9391
9392 2001-08-13  Matthias Clasen  <matthiasc@waldgeist.poet.de>
9393
9394         * gtk/docs/debugging.txt, gdk/gdk.c, gdk/gdkinternals.h, 
9395         gdk/x11/gdkmain-x11.c, gtk/gtkdebug.h, gtk/gtkmain.c: Update 
9396         debugging info, remove unused debug flags. (#58330)
9397
9398 Mon Aug 13 13:17:32 2001  Jonathan Blandford  <jrb@redhat.com>
9399
9400         * gtk/gtktreeselection.c (gtk_tree_selection_select_all): 
9401         (gtk_tree_selection_select_all): Remove strict checking for rows.
9402
9403 2001-08-13  Matthias Clasen  <matthiasc@waldgeist.poet.de>
9404         
9405         * gtk/gtktooltips.c (gtk_tooltips_set_tip, gtk_tooltips_draw_tips): 
9406         Don't remove the tooltip window when the tip text changes. (#15891)
9407
9408 Sun Aug 12 12:02:09 2001  Owen Taylor  <otaylor@redhat.com>
9409
9410         * gtk/Makefile.am ($(srcdir)/gtkmarshal.c): Remove extra
9411         $(srcdir).
9412
9413 Sun Aug 12 10:39:12 2001  Owen Taylor  <otaylor@redhat.com>
9414
9415         * Makefile.am (EXTRA_DIST): Fix problem with trying to
9416         dist files from intl/, which is no longer there.
9417
9418 2001-08-11  Hans Breuer  <hans@breuer.org>
9419
9420         * gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c,
9421           gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c, 
9422           gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c, 
9423           gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c, 
9424           gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c,
9425           gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies
9426
9427         * gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c,
9428           gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all
9429         GDK_TYPE_EVENT signals
9430
9431         * gtk/gtkalignment.c : removed 'direct allocation bug',
9432         which Tim discovered while reading the patch
9433
9434 Sat Aug 11 14:32:14 2001  Owen Taylor  <otaylor@redhat.com>
9435
9436         * gtk/gtkwidget.h (gtk_widget_set_default_visual): Add some
9437         compat macros for push/pop/set_visual that were supposed
9438         to be added a long time ago, but got dropped. 
9439
9440 Fri Aug 10 16:55:53 2001  Tim Janik  <timj@gtk.org>
9441
9442         * gtk/gtkwindow.c (gtk_window_set_policy): coalesce multiple
9443         property notifies.
9444
9445 2001-08-07  Havoc Pennington  <hp@pobox.com>
9446
9447         * gtk/gtkfilesel.c (open_ref_dir): fix a typo.
9448
9449         * gtk/gtkplug.c (gtk_plug_init): remove setting of auto_shrink;
9450         some fixage is needed here, but nothing simple. Owen understands
9451         it. ;-)
9452
9453         * gtk/gtkwindow.h, gtk/gtkwindow.c: Rework code and API for window
9454         sizing and positioning.  Also, fix bug in compute_geometry_hints
9455         (width/height confusion for setting min size). 
9456         (gtk_window_move): new function
9457         (gtk_window_resize): new function
9458         (gtk_window_get_size): new function
9459         (gtk_window_get_position): new function
9460         (gtk_window_parse_geometry): new function
9461         
9462         * gtk/gtkwidget.c (gtk_widget_set_size_request): new function
9463         (gtk_widget_get_size_request): new function
9464         (gtk_widget_get_usize): delete, that was a short-lived function
9465         ;-)
9466         (gtk_widget_set_usize): deprecate
9467         (gtk_widget_set_uposition): deprecate, make it a trivial 
9468         gtk_window_move() wrapper
9469         (gtk_widget_class_init): remove x/y/width/height properties,
9470         add width_request height_request
9471         
9472         * demos/*: update to avoid deprecated functions
9473         
9474         * gtk/gtklayout.c: add x/y child properties
9475
9476         * gtk/gtkfixed.c: add x/y child properties, and get rid of 
9477         uses of "gint16"
9478
9479         * tests/testgtk.c (create_window_sizing): lots of tweaks to window
9480         sizing test
9481
9482         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Ensure that
9483         configure events on toplevel windows are always in root window
9484         coordinates, following ICCCM spec that all synthetic events 
9485         are in root window coords already, while real events are 
9486         in parent window coords. Previously the code assumed that 
9487         coords of 0,0 were parent window coords, which was 
9488         really broken.
9489   
9490         * gtk/gtkcontainer.c (gtk_container_get_focus_chain): fix
9491         warning
9492  
9493         * gdk/gdkwindow.h (GdkWindowHints): add GDK_HINT_USER_POS 
9494         and GDK_HINT_USER_SIZE so we can set USSize and USPosition 
9495         hints in gtk_window_parse_geometry()
9496  
9497         * gdk/x11/gdkwindow-x11.c (gdk_window_set_geometry_hints): support
9498         new USER_POS USER_SIZE hints    
9499
9500 2001-08-09  Matthias Clasen  <matthiasc@waldgeist.poet.de>
9501
9502         * tests/prop-editor.c (properties_from_type): Use 
9503         g_object_class_list_properties to get the param specs 
9504         for a given type. (#58609)
9505
9506 2001-08-09  Matthias Clasen  <matthiasc@waldgeist.poet.de>
9507
9508         * gtk/gtkstyle.c (gtk_style_real_unrealize): Don't forget to
9509         free the text_aa parts. (#57549)
9510
9511 2001-08-09  Matthias Clasen  <matthiasc@waldgeist.poet.de>
9512
9513         * gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color,
9514         not the foreground color. (#57621)
9515
9516 2001-08-09  Alexander Larsson <alexl@redhat.com>
9517
9518         * gdk/win32/gdkfont-win32.c:
9519         Update to the new pango win32 api.
9520
9521 2001-08-08  HideToshi Tajima  <tajima@eng.sun.com>
9522
9523         * gtk/gtkclipboard.c (request_text_received_func): ask apps for
9524         COMPOUND_TEXT instead of TEXT
9525         * gdk/x11/gdkselection-x11.c (gdk_utf8_to_compound_text): correctly
9526         interpret the return value of g_string_to_compound_text()
9527         (#55152)
9528
9529 2001-08-08  Matthias Clasen  <matthiasc@waldgeist.poet.de>
9530
9531         * gtk/gtktreestore.c (gtk_tree_store_iter_n_children): Don't
9532         fail if iter is NULL. (#58347)
9533
9534 2001-08-07  Matthias Clasen  <matthiasc@waldgeist.poet.de>
9535
9536         * gtk/gtktextdisplay.c (render_para, gtk_text_layout_draw): Fix
9537         some off-by-one issues, fixing selection of line-ends. (#50323)
9538
9539 2001-08-07  Matthias Clasen  <matthiasc@waldgeist.poet.de>
9540
9541         * gtk/gtkhsv.c (gtk_hsv_map, gtk_hsv_unmap): Reinstate these
9542         functions in order to make mouse operation work again in the
9543         color wheel. (#58604)
9544
9545 2001-08-07  James Henstridge  <james@daa.com.au>
9546
9547         * gtk/gtkaccellabel.c (gtk_accel_label_set_accel_object): refetch
9548         the accelerator when the accel object is changed.  Fixes bug
9549         #58628.
9550
9551 2001-08-06  HideToshi Tajima  <tajima@eng.sun.com>
9552
9553         * modules/input/gtkimcontextxim.c (mb_to_utf8), xim_text_to_utf8):
9554         Skip g_convert when to_codeset and from_codeset are both 'UTF-8'
9555         (gnome bugzilla #58202)
9556
9557 2001-08-06  Havoc Pennington  <hp@pobox.com>
9558  
9559         * gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): The whole 
9560         GDK_IS_WINDOW() branch of this was a bit screwed up, because 
9561         it was expecting a GdkWindow, not a GdkWindowImplX11.
9562  
9563         Also, we were getting the window rect in screen coords 
9564         and the screen rect in window coords then intersecting 
9565         them; instead, get window rect in window coords.
9566  
9567         Finally, there were codepaths that resulted in a stuck server grab
9568         (when the window was fully onscreen, or on gdk_image_new()
9569         failure); make the server ungrab thing a bit more
9570         robust/consistent.
9571
9572 2001-08-06  Sven Neumann  <sven@gimp.org>
9573
9574         * gdk/gdkpango.c (gdk_pango_context_destroy): 
9575         check if info->colormap != NULL before unref'ing it. It might have
9576         been set to NULL using gdk_pango_context_set_colormap().
9577
9578 Sun Aug  5 11:24:27 2001  Owen Taylor  <otaylor@redhat.com>
9579
9580         * gtk/gtkcolorsel.c (gtk_color_selection_set_current_alpha): 
9581         Fix conversion from float to int so that we don't get
9582         skew in the int => float => int roundtrip. 
9583         (#58120, reported by Vitaly Tishkov). Also fix problem
9584         where if no alpha was set, the returned alpha
9585         from (say) set_current_alpha() was returned as 1, not 65535.
9586
9587 Sun Aug  5 09:48:08 2001  Owen Taylor  <otaylor@redhat.com>
9588
9589         * gtk/gtklist.c (gtk_list_clear_items): Fix
9590         problem with selecting a new focus child.
9591
9592         * gtk/gtklist.c (gtk_list_clear_items): Clear 
9593         list->undo/list_focus_child after unparenting
9594         child, since unparenting the child can result
9595         in list->last_focus_child being set. (#58024)
9596
9597         * Makefile.am (SUBDIRS): Add target specific pc
9598         files to DISTCLEANFILES.
9599
9600         * gtk/Makefile.am: add @GTK_DEBUG_FLAGS@
9601         (58327, Matthias Clasen)
9602
9603 Sat Aug  4 19:28:21 2001  Owen Taylor  <otaylor@redhat.com>
9604
9605         * tests/testgtk.c: Patch from Hans (with various modifications),
9606         to add the ability to use testgtk as a rough-and-ready
9607         benchmark. Try, 'testgtk --bench all:5' (if you want decent
9608         numbers, run without a window manager)
9609
9610 2001-08-04 Alexander Larsson <alexl@redhat.com>
9611
9612         * gdk/win32/gdkinput.c:
9613         Add #ifdef HAVE_WINTAB around wintab.h include.
9614
9615         * gtk/gtk.def:
9616         Removed marshals that have been moved to glib.
9617         Commented out plug and socket. They didn't compile for me 
9618         on win32.
9619
9620 2001-08-04  Hans Breuer  <hans@breuer.org>
9621
9622         * gtk/stocks-icons/makefile.msc : new file
9623         * gtk/makefile.msc.in : use it
9624
9625         * gtk/gtkstyle.c : not all platforms do provide M_PI and
9626         friends, but luckily there is G_PI
9627
9628         * gtk/gtk.def : updated
9629
9630         * gdk/win32/gdkwindow.c (gdk_window_new) : don't make all TEMP 
9631         windows WS_POPUP, but only those without a parent. This fixes the 
9632         mis-alignment between the selectable (temp, input only) window and 
9633         the window text of GtkLabel.
9634
9635         (gdk_window_show) : respect private->state when actually showing
9636         the window.
9637
9638         (gdk_window_set_transient_for) : Implementation from Wolfgang 
9639         Sourdeau <wolfgang@contre.com> ported to 2.0 and added some 
9640         error handling. Should fix #50586.
9641
9642         * gdk/win32/gdkevents-win32.c : beautify log output
9643
9644 2001-08-04  Michael Natterer  <mitch@gimp.org>
9645
9646         * gtk/gtkitemfactory.c (gtk_item_factory_create_item):
9647         Need to show the image after adding it to the GtkImageMenuItem.
9648         This used to work without in testgtk because of the
9649         gtk_widget_show_all() at the end of the function.
9650         (Closes #54978).
9651
9652 Tue Jul 31 22:59:33 2001  Tim Janik  <timj@gtk.org>
9653
9654         * gtk/gtknotebook.c (gtk_notebook_get_child_property): 
9655         (gtk_notebook_set_child_property): fix finding of child's page,
9656         since we have to validly deal with labels and menus here as well.
9657         (gtk_notebook_get_child_property): fix warning.
9658         (gtk_notebook_class_init): property tab_pack is of type
9659         GTK_TYPE_PACK_TYPE (enum) not boolean.
9660         (gtk_notebook_find_child): don't always warn, we might be looking
9661         for a label or menu child.
9662         (gtk_notebook_map): fix mapping of panel.
9663
9664         * gtk/gtkwidget.c (gtk_widget_set_child_visible): always constrain
9665         widget's mapped state, regardless of the value being set equals
9666         old settings, since things like REALIZED(parent) or MAPPED(parent)
9667         may have changed since the old value was set. make it an error to
9668         invoke this function on a toplevel widget.
9669
9670 2001-07-31  Darin Adler  <darin@bentspoon.com>
9671
9672         * gdk/gdkprivate.h:
9673         * gdk/x11/gdkx.h:
9674         Put all mentions of GdkFont inside #ifndef GDK_DISABLE_DEPRECATED.
9675
9676         * demos/gtk-demo/menus.c: (do_menus): Cast to G_OBJECT, not
9677         GTK_OBJECT.
9678
9679 Tue Jul 31 15:34:57 2001  Jonathan Blandford  <jrb@redhat.com>
9680
9681         * gtk/gtktreeview.c (gtk_tree_view_remove_column): Whoops.  Stupid
9682         scoping error pointed out by matthiasc@poet.de.
9683
9684 2001-07-31  Sven Neumann  <sven@gimp.org>
9685
9686         * demos/gtk-demo/appwindow.c
9687         * demos/gtk-demo/item_factory.c
9688         * tests/testgtk.c: gtk_accel_group_attach() takes a GObject.
9689
9690 Mon Jul 30 10:49:16 PDT 2001 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
9691
9692         * gtk/gtksignal.h (gtk_signal_handler_pending): corrected the wrong
9693         argument order for g_signal_has_handler_pending.
9694
9695 Sun Jul 29 17:14:01 2001  Tim Janik  <timj@gtk.org>
9696
9697         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): use g_file_test()
9698         instead of long deprecated g_scanner_stat_mode().
9699
9700 2001-07-29  Hans Breuer  <hans@breuer.org>
9701
9702         * gdk/makefile.msc : build in the backend dir after
9703         auto-generating files
9704
9705         * gdk/win32/gdkfont-win32.c (gdk_font_load) : reimplement
9706         with code from win32-production-branch.
9707
9708         *  gdk/win32/gdkwindow-win32.c : set the private->destroyed flag
9709         before calling DestroyWindow, which indirectly calls 
9710         gdk_window_destroy_notify ()
9711
9712         (performance patch merged from win32-production-branch)
9713         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_segments): 
9714         Use PatBlt() instead of LineTo() when possible (solid single-pixel pen, 
9715         R2_COPYPEN rop). It is claimed to be much faster.
9716
9717 Fri Jul 27 11:31:15 2001  Jonathan Blandford  <jrb@redhat.com>
9718
9719         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_property):
9720         add an "attributes" property to the text renderer for ATK.
9721
9722 2001-07-26  Alex Larsson  <alexl@redhat.com>
9723
9724         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image):
9725         Initialize image->bits_per_pixel from the drawable, not from
9726         the root window.
9727
9728         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_get_depth):
9729         Fix cast. argument is an IMPL already.
9730
9731 2001-07-15  James Henstridge  <james@daa.com.au>
9732
9733         * gtk/gtkwindow.c (gtk_window_add_accel_group): cast to GObject.
9734         (gtk_window_remove_accel_group): same here.
9735         (gtk_window_key_press_event): same here.
9736
9737         * gtk/gtkwidget.c (gtk_widget_add_accelerator): cast to GObject.
9738         (gtk_widget_remove_accelerator): same here.
9739         (gtk_widget_remove_accelerators): same here.
9740
9741         * gtk/gtkplug.c (gtk_plug_accel_entries_changed): same here.
9742
9743         * gtk/gtkmenushell.c (gtk_menu_shell_key_press): cast to GObject
9744         instead of GtkObject.
9745
9746         * gtk/gtkmenu.c (gtk_menu_key_press): update since GtkAccelGroup
9747         now takes GObjects.
9748
9749         * gtk/gtkitemfactory.c (gtk_item_factory_propagate_accelerator):
9750         pass a GObject to gtk_accel_group_entries_from_object.
9751         (gtk_item_factory_create_item): s/accel_widget/accel_object/
9752
9753         * gtk/gtk-boxed.defs: remove GtkAccelGroup boxed def.
9754
9755         * gtk/gtkaccellabel.c: convert to handle GObject accel objects.
9756
9757         * gtk/gtkaccellabel.h: fix header to reflect that arbitrary
9758         GObjects can have accelerators set now.  Add compatibility
9759         defines.
9760
9761         * gtk/gtkmarshal.list: add missing marshallers.
9762
9763         * gtk/gtkaccelgroup.[ch]: convert to a GObject, and allow setting
9764         accelerators on plain GObjects.  gtk_accel_group_object_destroy
9765         has been converted into a weak reference, and
9766         gtk_accel_group_delete_entries is now a destroy notify for that
9767         piece of data.
9768
9769 2001-07-23  Ron Steinke  <rsteinke@w-link.net>
9770
9771         * gdk/gdkdraw.c: Added a check on the colormap depth to
9772         gdk_drawable_set_colormap()
9773         * gdk/x11/gdkimage-x11.c: combination of Matthias Clasen's
9774         patch to fix colorsel and my patch to fix gdk_drawable_get_image()
9775         for pixmaps without visuals (more specifically, bitmaps)
9776         * gdk/x11/gdkpixmap-x11.c: Fixed gdk_pixmap_new() so it
9777         doesn't set a colormap with the wrong depth
9778
9779
9780 2001-07-22  Anders Carlsson  <andersca@gnome.org>
9781
9782         * gtk/gtktreeview.c (gtk_tree_view_class_init): Replace the
9783         expander_height and expander_width properties with a single
9784         property, expander_size.
9785         (gtk_tree_view_init): Set the tab_offset to expander_size
9786         plus some padding.
9787         (gtk_tree_view_unrealize): Remove the expand/collapse
9788         timeout if it exists.
9789         (coords_are_over_arrow): Fix a small bug.
9790         (gtk_tree_view_motion_draw_column_motion_arrow): Use
9791         expander_size.
9792         (gtk_tree_view_draw_focus): Use "treeview" instead of
9793         "add-mode" as detail when drawing the focus.
9794         (gtk_tree_view_bin_expose): Use "treeview-drop-indicator"
9795         instead of "add-mode" as detail when drawing the focus.
9796         (gtk_tree_view_deleted): If we have a node currently being
9797         expanded or collapsed, remove the timeout and set the node 
9798         to NULL.
9799         (gtk_tree_view_queue_draw_arrow): New function that just
9800         redraws the arrow of a node.
9801         (gtk_tree_view_draw_arrow): Use expander_size instead of
9802         expander_width/expander_height, also pass a different
9803         expander_style to gtk_paint_expander depending on the 
9804         state of the node being drawn.
9805         (expand_collapse_timeout): New function for expanding 
9806         or collapsing a node depending on the previous state.
9807         (gtk_tree_view_real_expand_row): Add timeout and set 
9808         correct state for node being expanded.
9809         (gtk_tree_view_real_collapse_row): Add timeout and set
9810         correct state for node being collapsed.
9811
9812         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): Add
9813         information about the node currently being expanded or
9814         collapsed, and also a timeout id.
9815
9816         * gtk/gtkstyle.h (struct _GtkStyleClass): Replace is_open
9817         with expander_style for draw_expander.
9818
9819         * gtk/gtkstyle.c (gtk_draw_expander): Replace is_open with
9820         expander_style.
9821         (create_expander_affine): New function for creating an 
9822         expander affine.
9823         (apply_affine_on_point): New function for applying an 
9824         affine to a point.
9825         (gtk_default_draw_expander): Modified to take expander_style
9826         instead of is_open, and to draw the rectangle rotated differently
9827         depending on the expander style.
9828         (gtk_paint_expander): Replace is_open with expander_style.
9829
9830         * gtk/gtkrbtree.h: Add expander states to GtkRBNodeColor.
9831
9832         * gtk/gtkenums.h: Add expander style enum.
9833
9834 2001-07-21  Jonas Borgström  <jonas@codefactory.se>
9835
9836         * gtk/gtktreemodel.c (gtk_tree_model_foreach): Check the return
9837         value from gtk_tree_model_get_iter, the model might be empty.
9838
9839 2001-07-20  Hans Breuer  <hans@breuer.org>
9840
9841         * gdk/win32/gdkinput-win32.c : gdk_device_get_history moved to
9842         gdk/gdkinput.c like the other backends
9843
9844         * gdk/win32/gdkinput-win32.h :
9845         * gdk/win32/gdkinput.c :
9846         * gdk/win32/gdkvisual-win32.c :
9847         * gdk/win32/gdkwin32.h : mechanical adaption to GdkDevice and
9848         GdkVisual GObjectification. UNTESTED for pen-devices because
9849         I simply have none.
9850
9851         * gdk/gdk.def :
9852         * gtk/gtk.def : updated externals
9853
9854         * gtk/gtkiconfactory.c :
9855         * gtk/gtkoldeditable.c : GError *error needs to be initialized (= NULL) 
9856         before passing &error to functions to avoid strange crashes
9857         
9858         * gtk/gtkcontainer.c (gtk_container_real_set_focus_child) : is static
9859
9860         * gtk/gtkwidget.c (gtk_widget_get_child_visible): use g_return_val_if_fail
9861
9862         * gtk/makefile.msc.in : updated
9863
9864 Thu Jul 19 15:35:32 2001  Owen Taylor  <otaylor@redhat.com>
9865
9866         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_vadjustment):
9867         Add property support. (#51858)
9868
9869 Thu Jul 19 14:56:33 2001  Owen Taylor  <otaylor@redhat.com>
9870
9871         * gtk/gtkaccellabel.c (gtk_accel_label_class_init) 
9872         * gtk/gtkinputdialog.c (gtk_input_dialog_set_key):
9873         Use Shift/Ctrl instead of Shft/Ctl. (#53807)
9874
9875 Thu Jul 19 11:41:00 2001  Owen Taylor  <otaylor@redhat.com>
9876
9877         * gtk/gtkcolorsel.c: Add propery support (roughly
9878         based on patch from Lee Mallabone, #51014)
9879
9880         * gtk/gtkcolorsel.h: Mark gtk_color_selection_set_update_policy as
9881         deprecated, since we already g_warning() on it.
9882
9883 Thu Jul 19 14:24:34 2001  Owen Taylor  <otaylor@redhat.com>
9884
9885         * gtk/gtkentry.c (gtk_entry_set_positions): Fix
9886         typo that sometimes caused selection not to work properly.
9887
9888         * gtk/gtkentry.c (gtk_entry_grab_focus): Select text in
9889         entry when tabbing in. (#57743)
9890         
9891         * gtk/gtkentry.c (gtk_entry_motion_notify): If the
9892         user drags up above or down below the entry, move
9893         to the end or the beginning of the entry. (Suggestion
9894         from Jay Cox, #50940)
9895
9896         * gtk/gtkentry.c (gtk_entry_move_cursor): If we have
9897         a current selection, then when moving by chars or
9898         words, move to the end of the selection rather than
9899         from entry->current_pos. (Suggestion from Jay Cox,
9900         #50942)
9901         
9902 Thu Jul 19 12:14:28 2001  Owen Taylor  <otaylor@redhat.com>
9903
9904         * gtk/gtkwindow.c (gtk_window_set_decorated): Actualy
9905         set window->decorated. (Patch from Hidetoshi Tajima,
9906         #55846)
9907
9908 Sat Jul  7 02:50:14 2001  Owen Taylor  <otaylor@redhat.com>
9909
9910         * gtk/gtkwidget.c (gtk_widget_set_parent): Enforce
9911         the widget/child realization/mapping invariants.
9912
9913         * gtk/gtkwidget.[ch] gtk/gtkprivate.h: Add functions 
9914         gtk_widget_[get/set]_child_visible() to control
9915         whether visible children of a mapped window are
9916         mapped.
9917
9918         * docs/widget_system.txt: Updated for changes in
9919         container contract, and addition of GTK_CHILD_VISIBLE.
9920
9921         * gtk/gtkcontainer.c: Add generic map()/unmap()
9922         functions that work for almost all containers.
9923
9924         * gtk/gtknotebook.c gtk/gtkpacker.c: Use 
9925         gtk_widget_set_child_visible() where necessary.
9926
9927         * gtk/*.c: Remove excess map(), unmap(), and 
9928         realization/mapping invariant enforcing code
9929         from many containers.
9930
9931 Wed Jul 18 19:51:45 2001  Owen Taylor  <otaylor@redhat.com>
9932
9933         * gtk/gtktextview.c (gtk_text_view_set_attributes_from_style): 
9934         Get the foreground color from 'text', nor 'fg'. (#57568)
9935
9936 Wed Jul 18 19:28:46 2001  Owen Taylor  <otaylor@redhat.com>
9937
9938         * gtk/*.c: Patch from Matthias Clasen to remove remove
9939         all instances of g_return_if_fail (foo != NULL); that are
9940         immediately before a g_return_if_fail (GTK_IS_FOO (foo));
9941         since the second check catches the NULL anyways.
9942
9943 Wed Jul 18 18:23:05 2001  Owen Taylor  <otaylor@redhat.com>
9944
9945         * gtk/gtkbutton.c gtk/gtkentry.c gtk/gtkmenu.c gtk/gtktextview.c
9946         gtktreeview.c: Fix idles and timeouts to be properly surrounded by 
9947         GDK_THREADS_ENTER()/LEAVE() pairs.
9948
9949         * gtk/gtkdialog.c gtk/gtkclipboard.c: Surround calls
9950         to g_main_loop_run() with GDK_THREADS_LEAVE()/ENTER()
9951         pairs. (Problem found by M. Meeks)
9952
9953 2001-07-18  Darin Adler  <darin@bentspoon.com>
9954
9955         * gtk/gtkiconfactory.c: (gtk_icon_size_register): Reorder code so
9956         that we don't get a g_warning message every time we register a new
9957         icon size.
9958
9959         * gdk/x11/gdkcolor-x11.c: (gdk_colormap_alloc1): Fix warning by
9960         using pixel variable of the correct type.
9961         
9962 Fri Jul 13 15:33:32 2001  Owen Taylor  <otaylor@redhat.com>
9963
9964         * gdk/gdkwindow.[ch]: Add a function gdk_window_get_internal_paint_info(),
9965         so that using X functions on a GdkWindow is possible, if
9966         a little hairy.
9967
9968         * gdk/gdkgc.c (gdk_gc_offset): Add a function to offset the clip
9969         and ts_origin of a GC, so that external parties can offset/restore
9970         a GC, when using gdk_window_get_internal_paint_info().
9971
9972 2001-07-17  Darin Adler  <darin@bentspoon.com>
9973
9974         * .cvsignore: Ignore the sgml directory made by gtkdoc.
9975         * demos/pixbuf-demo.c: (main): Use gtk_window_set_resizable
9976         instead of the deprecated gtk_window_set_policy.
9977         * demos/testpixbuf-scale.c: Add missing <stdlib.h> include.
9978         * gdk/gdkkeys.c: (gdk_keymap_class_init): Remove empty finalize
9979         function to get rid of warning and some code too.
9980         * gdk/x11/gdkfont-x11.c: (gdk_font_charset_for_locale): Add
9981         missing const.
9982         * gdk/x11/gdkmain-x11.c: (_gdk_windowing_init_check): Remove
9983         unused local.
9984         * gdk/x11/gdkpango-x11.c: (gdk_pango_context_get): Add missing
9985         const.
9986         * gdk/x11/gdkselection-x11.c: (gdk_text_property_to_utf8_list),
9987         (gdk_utf8_to_compound_text): Add missing const.
9988         * gtk/gtkimage.c: (gtk_image_expose): Remove unused local.
9989         * gtk/gtkmenubar.c: (gtk_menu_bar_hierarchy_changed): Add missing
9990         cast and get rid of an unnecessary one.
9991         * gtk/gtksettings.c: (gtk_settings_notify): Remove unused local.
9992         * gtk/gtkstatusbar.c: (gtk_statusbar_size_allocate): Remove unused
9993         local.
9994         * gtk/gtktreemodelsort.c: (gtk_tree_model_sort_build_level):
9995         Remove unused local.
9996         * modules/input/gtkimcontextxim.c: (gtk_im_context_xim_new): Add
9997         missing const.
9998         * tests/testsocket.c: (add_child): Add cast so the printf format
9999         doesn't make us implicitly depend on what integer type
10000         gtk_socket_get_id returns.
10001         * tests/testtextbuffer.c: Add missing const.
10002         * tests/testtreefocus.c: (main): Remove unused local.
10003         * tests/treestoretest.c: (iter_remove): Remove unused local.
10004         (uppercase_value): Remove unused function.
10005         (make_window): Add statement to quiet the compiler's uninitialized
10006         variable warning.
10007
10008 Sat Jul 14 12:47:35 2001  Tim Janik  <timj@gtk.org>
10009
10010         * gtk/gtkrange.c:
10011         (second_timeout): 
10012         (initial_timeout): 
10013         (update_timeout): add GDK_THREADS_ENTER/GDK_THREADS_LEAVE.
10014         (gtk_range_calc_layout): compute the new layout based on an
10015         adjustment->value being passed in as argument.
10016         (gtk_range_button_press): for button2 slider warps, first recalc
10017         the layout, then adjust the value. also, use update_slider_position()
10018         for adjusting the value, so we keep pixel quantisation at which we
10019         usually operate (upon motion or button releases). the reason for this
10020         is that, we can't change the adjustment upon button2 presses to a non
10021         quantised value and upon button2 release re-quantise the value since
10022         that'd alter the value even if we didn't get any motion events (causing
10023         unexpected scroll area warps upon release and/or slider pixel-jitter).
10024         (gtk_range_motion_notify): update the slider position from queried
10025         coordinates, not event coordinates.
10026
10027 Fri Jul 13 09:47:52 2001  Tim Janik  <timj@gtk.org>
10028
10029         * gtk/gtkstyle.c (gtk_default_draw_focus): fix line style resetting,
10030         the default gc values are: width=0, CapBut, JoinMiter.
10031
10032 2001-07-13  Anders Carlsson  <andersca@codefactory.se>
10033
10034         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): Take
10035         into account the xpad and ypad when calculating the width and the
10036         height of the pixbuf cel.
10037
10038 Thu Jul 12 18:29:40 2001  Owen Taylor  <otaylor@redhat.com>
10039
10040         * gtk/gtkradiomenuitem.[ch] (gtk_radio_menu_item_group): 
10041         Rename to gtk_radio_menu_item_get_group(), add deprecated
10042         alias. (#57044)
10043
10044         * gtk/gtkfilesel.c: Indentation fix.
10045
10046 Thu Jul 12 17:33:00 2001  Owen Taylor  <otaylor@redhat.com>
10047
10048         * gtk/gtkbbox.h gtk/gtkcompat.h: Patch from Mathias 
10049         Hasselmann to fix warnings in compat macros. 
10050         (#56773)
10051
10052         * gtk/gtkmenubar.c (gtk_menu_bar_hierarchy_changed): Fix 
10053         stupid wrong cast added in last patch.
10054
10055 Thu Jul 12 16:51:34 2001  Owen Taylor  <otaylor@redhat.com>
10056
10057         * gtk/gtkwidget.c: Replace a couple of inappropriate calls to 
10058         GTK_WIDGET_HAS_FOCUS() with gtk_widget_is_focus(). (#57067)
10059
10060 Thu Jul 12 14:06:19 2001  Owen Taylor  <otaylor@redhat.com>
10061
10062         * gtk/gtkmenubar.c (gtk_menu_bar_hierarchy_changed): Add
10063         missing cast.
10064
10065         * gtk/gtkcontainer.c (gtk_container_get_focus_chain): Fix
10066         NULL/FALSE return value confusion.
10067
10068         * gtk/gtkrange.c (coord_to_value): Fix division-by-zero
10069         problem when scrollbar completely fills range. (Patch
10070         from  Matthias Clasen, #57047)
10071
10072 Thu Jul 12 13:53:28 2001  Owen Taylor  <otaylor@redhat.com>
10073
10074         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Properly
10075         clean up when handling events for move-resize emulation.
10076         (Problem traced down by Matthias Clasen, #57271)
10077
10078 Thu Jul 12 13:43:27 2001  Owen Taylor  <otaylor@redhat.com>
10079
10080         * gtk/gtkclist.c gtk/gtkcolorsel.c gtk/gtkcombo.c
10081           gtk/gtkctree.c gtk/gtkcurve.c gtk/gtkentry.c
10082           gtk/gtkfontsel.c gtk/gtkhandlebox.c 
10083           gtk/gtkimcontextsimple.c gtk/gtkmain.c gtk/gtkmenu.c
10084           gtk/gtkmenuitem.c gtk/gtkoptionmenu.c gtk/gtkpixmap.c
10085           gtk/gtkselection.c gtk/gtktextdisplay.c gtk/gtktextview.c
10086           gtk/gtktooltips.c gtk/gtkwidget.c gtk/gtkwindow.c:
10087         Formatting fixes from multihead brnach. [ mostly foo(bar) => foo (bar) ]
10088
10089 2001-07-09  Peter Williams  <peterw@ximian.com>
10090
10091         * gtk/Makefile.am ($(srcdir)/stamp-gtk.defs): Add a cd $(srcdir)
10092         for when srcdir != builddir
10093
10094 Mon Jul  9 12:50:51 2001  Jonathan Blandford  <jrb@redhat.com>
10095
10096         * gtk/gtktreemodel.c: remove gtk_tree_model_get_first in favor of
10097         gtk_tree_model_get_iter_root.
10098
10099         * gtk/gtkliststore.c: Add a bunch of g_return statements.
10100         (gtk_list_store_iter_n_children): Fix up.
10101
10102         * gtk/gtktreestore.c: Add a bunch of g_return statements.
10103
10104 Fri Jul  6 15:38:33 2001  Owen Taylor  <otaylor@redhat.com>
10105
10106         * gtk/gtkwidget.c (gtk_widget_class_init):
10107         G_SIGNAL_TYPE_STATIC_SCOPE GtkSelectionData to
10108         restore some workingness.
10109
10110         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Fix 
10111         handle of window type for input-only windows.
10112
10113 Thu Jul  5 21:53:46 2001  Owen Taylor  <otaylor@redhat.com>
10114
10115         * gtk/gtkbbox.[ch] gtk/gtkbox.[ch] gtk/gtk[hv]bbox.c:
10116         Patch from Gregory Merchan to add 
10117         gtk_button_box_set_secondary(), which separates
10118         the child into a separate group from the normal
10119         buttons. (#56331)
10120
10121         * gtk/gtkdialog.c: Make help buttons secondary by
10122         default.
10123
10124         * gtk/gtkbbox.c: Added a child property "secondary".
10125
10126         * gtk/testgtk.c: Turn on the help button for the 
10127         color selector to check that it properly appears
10128         as secondary.
10129
10130 Mon Jul  2 01:09:37 2001  Owen Taylor  <otaylor@redhat.com>
10131  
10132         * gdk/gdkwindow.[ch] gdk/gdkinternals.h gdk/x11/gdkwindow-x11.c
10133         gdk/linux-fb/gdkwindow-fb.c gdk/x11/gdkwindow-x11.c gdk/gdk:
10134         Add gdk_set_pointer_hooks() to allow pointer-querying to
10135         be hooked by an event record/playback system like GERD.
10136         (#56914)
10137         
10138 Thu Jul  5 08:57:07 2001  Owen Taylor  <otaylor@redhat.com>
10139
10140         * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Pass
10141         in the right value of initial_emission to
10142         gtk_widget_set_style_internal (#57091)
10143
10144 Wed Jul  4 23:17:04 2001  Owen Taylor  <otaylor@redhat.com>
10145
10146         * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed):
10147         Make compile.
10148
10149         * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Fix problem
10150         with calling gtk_widget_set_style_internal() with
10151         the old style, not the new style. (#56989)
10152
10153 Wed Jul  4 22:35:40 2001  Owen Taylor  <otaylor@redhat.com>
10154
10155         * gtk/gtklabel.c gtk/gtkmenubar.c gtk/gtktreeviewcolumn.c
10156           gtk/gtkwidget.c:
10157         Check GTK_WIDGET_TOPLEVEL(gtk_widget_get_toplevel (widget)),
10158         not GTK_WIDGET_GET_ANCESTOR ... see 
10159         http://mail.gnome.org/archives/gtk-devel-list/2001-July/msg00072.html.
10160         Indicate the best practice in the docs for gtk_widget_get_toplevel().
10161
10162         * gtk/gtkwidget.[ch]: Expose a private _gtk_widget_hierarchy_changed(),
10163         so GtkPlug can give the correct signals when transforming
10164         from a child to a toplevel.
10165         
10166         * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed): Handle
10167         reparentation correctly.
10168
10169         * gtk/gtkwidget.c (gtk_widget_propagate_hierarchy_changed):
10170         Propagate the previous_toplevel argument down properly.
10171
10172         * gtk/gtklabel.c (gtk_label_finalize): Fix unrefing
10173         of wrong atr list.
10174
10175         * gtk/gtkplug.[ch]: Add an "embedded" signal.
10176
10177         * gtk/gtksocket.[ch]: Add "child_added", "child_removed"
10178         signals.
10179
10180         * gtk/gtkplug.[ch] gtk/gtksocket.[ch]: Add 
10181         functions gtk_plug_get_id(), gtk_socket_get_id(),
10182         to avoid the user having to worry about realization,
10183         and gdkx.h.
10184
10185         * tests/testsocket.c: Extend to try out the new signals
10186         and gtk_plug/socket_get_id().
10187
10188         * gtk/gtklabel.c (gtk_label_set_pattern_internal): Fix
10189         setting of underline attributes.
10190
10191         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Ignore
10192         DestroyNotify events from SubstructureNotifyMask
10193
10194         * gdk/x11/gdkwindow-x11.c (gdk_window_reparent):
10195         Switch GDK_WINDOW_TYPE (window) as needed.
10196
10197         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Clean up,
10198         allow creation of toplevel windows as children of
10199         foreign windows.
10200
10201         * gtk/gtkplug.c: Remove hacks involving changing private
10202         fields of GdkWindow.
10203
10204         * gtk/gtkplug.[ch] gtk/gtksocket.c: Work to make 
10205         exactly the same signals and notification
10206         be emitted for local embedding as for inter-process
10207         embedding.
10208
10209 2001-07-04  James Henstridge  <james@daa.com.au>
10210
10211         * gtk/gtkliststore.h: add missing gtk_list_store_newv prototype.
10212
10213 Mon Jul  2 16:53:25 2001  Owen Taylor  <otaylor@redhat.com>
10214
10215         * gtk/xembed.h gtk/gtkplug.c gtk/gtksocket.c: For
10216         XEMBED embedding add a _XEMBED_INFO property to the
10217         client with version number and a "mapped" flags.
10218         Use the mapped flag instead of the racy MapRequestEvent
10219
10220         * gtk/gtksocket.c: Clean up the gtk_socket_steal()
10221         code to reliably set things (when the child is a passive
10222         embedder participating in the XEMBED protocol) intead
10223         of just being a hack for embedding non-participating
10224         programs. Fix various bugs and race conditions.
10225         
10226         * gtk/gtksocket.[ch] gtk/gtkplug.[ch]: Make local embedding
10227         work by simply making the GtkSocket the gtk parent
10228         of the GtkPlug. Set a flag in this case and make
10229         the GtkPlug work like a normal container by overriding
10230         methods such as check_resize and "chaining past" GtkWindow
10231         to GtkBin.
10232
10233         * gtk/gtkentry.c (gtk_entry_real_activate)
10234           gtk/gtkmain.c (gtk_propagate_event): 
10235         Eliminate use of gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW).
10236         
10237         * gtk/gtkwidget.c (gtk_widget_get_toplevel,
10238         gtk_widget_get_ancestor):
10239         Explain why gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW)
10240         might not give the expected result and recommend
10241         an alternative.
10242
10243         * tests/testsocket.c tests/testsocket_child.c
10244         tests/testsocket_common.c tests/Makefile.am: Extended
10245         to test different type of adding plugs to sockets
10246         (local,active,passive), and to test mapping/unmapping
10247         the plug.
10248
10249         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Don't
10250         mark the window as destroyed until after we
10251         called _gdk_windowing_window_destroy().
10252         (_gdk_windowing_window_destroy() may use GDK functions
10253         on the window.)
10254
10255         * gdk/x11/gdkinput.c: Remove the check for finalization - 
10256         devices can be finalized under some circumnstances.
10257  
10258         * gdk/x11/gdkinput-x11.c (gdk_input_device_new): Fix 
10259         small problem with GDK_TYPE_DEVICE.
10260  
10261 2001-07-02  Havoc Pennington  <hp@pobox.com>
10262
10263         * gdk/x11/gdkwindow-x11.c (gdk_wmspec_change_state): fix to 
10264         use constants not atoms.
10265
10266 2001-07-02  James Henstridge  <james@daa.com.au>
10267
10268         * gtk/gtktextview.c (gtk_text_view_class_init): same here for
10269         PANGO_TYPE_TAB_ARRAY.
10270
10271         * gtk/gtktexttag.c (gtk_text_tag_class_init): same here, but also
10272         for PANGO_TYPE_TAB_ARRAY.
10273
10274         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
10275         s/GTK_TYPE_PANGO_FONT_DESCRIPTION/PANGO_TYPE_FONT_DESCRIPTION/
10276
10277         * gtk/gtk-boxed.defs: move all the boxed definitions to the top of
10278         the file.  Remove Pango types from defs -- they are now defined in
10279         libpango.
10280
10281 Mon Jul  2 06:35:10 2001  Tim Janik  <timj@gtk.org>
10282
10283         * gdk/gdkkeys.c (gdk_keymap_class_init): s/signal_newc/signal_new/
10284
10285         * gtk/gtkobject.c (gtk_object_destroy): invoke
10286         g_object_run_dispose().
10287
10288         * gtk/gtkwindow.c: 
10289         * gtk/gtkwidget.c: 
10290         * gtk/gtkobject.c:
10291         * gtk/gtklist.c: s/shutdown/dispose/ for the GObject
10292         method.
10293
10294 Sat Jun 30 20:44:48 2001  Owen Taylor  <otaylor@redhat.com>
10295
10296         * gtk/gtktypeutils.c (gtk_type_class): Remove
10297         change check for GTK_TYPE_OBJECT derivation to
10298         G_TYPE_OBJECTS - it's Tim-approved to use this 
10299         for arbitary objects.
10300
10301         * gtk/gtkwindow.c gtk/gtkcontainer.[ch]: underscore
10302         prefix gtk_container_dequeue_resize_handler().
10303
10304         * gtk/gtkwidget.[ch]: Add a previous_toplevel argument
10305         to the hierarachy_changed signal, since you otherwise
10306         have to always keep that around.
10307
10308         * gtk/gtkmenubar.c gtk/gtklabel.c gtk/gtksocket.c: Adapt
10309         for extra argument to hierarchy_changed.
10310
10311 Tue Jun 26 19:39:03 2001  Owen Taylor  <otaylor@redhat.com>
10312
10313         * gtk/gtkwidget.c (gtk_widget_set_style): Allow %NULL
10314         for style to mean "revert to default style"
10315
10316         * gtk/gtkwidget.[ch] (gtk_widget_set_rc_style,
10317           gtk_widget_restore_default_style): Make this functions
10318         deprecated aliases for gtk_widget_set_style (widget, NULL).
10319
10320         * gtk/gtkwidget.[ch]: Remove:
10321            gtk_widget_set_default_style ()
10322            gtk_widget_push_style ()
10323            gtk_widget_pop_style ()
10324         These functions interact are overriden by RC files, and
10325         thus virtually useless, and complicated.
10326
10327 Fri Jun 22 18:49:48 2001  Owen Taylor  <otaylor@redhat.com>
10328
10329         * gtk/gtkrc.c: Add a GtkRcContext structure to hold 
10330         most of the previous global variables in gtkrc.c. This is
10331         in preparation for multi-head, since each screen can
10332         have different GtkSettings and RC information.
10333
10334         * gtk/gtkrc.[ch]: 
10335
10336         * gtk/gtkrc.h (struct _GtkRcStyleClass): Add a
10337         GtkSettings parameter to GtkRcStyle::parse.
10338
10339         * gdk/x11/gdkevents-x11.c gtk/gtksettings.c gtk/gtkrc.c: 
10340         Add two new settings gtk-theme-name, gtk-key-theme-name,
10341         for RC files that are loaded by name after reading
10342         the default RC files.
10343         
10344         * gtk/gtkrc.c: Allow priorities for styles, as wll as
10345         bindings.
10346
10347         * gtk/gtkenums.h gtk/gtkrc.c: Add GTK_PATH_PRIO_THEME,
10348         and use it by default for RC files loaded via 
10349         gtk-theme-name, gtk-key-theme-name.
10350
10351         * gtk/gtkiconfactory.c (gtk_icon_source_set_filename)
10352         gtk/gtkrc.c (gtk_rc_parse_pixmap_path_string) 
10353         tests/testgtkrc: Require pathnames to be absolute.
10354
10355         * gtk/gtkrc.c gtk/gtkiconfactory.c: Look up the full filename for
10356         the source when parsing, since the operation of looking up a
10357         pixmap from an RC file depends on the parsing context.
10358
10359         * gtk/gtkrc.c (gtk_rc_context_reparse_all): Automatically
10360         reset RC styles on all widgets when files are reparsed.
10361
10362         * tests/testgtk.c (create_rc_file) 
10363           gtk/gtkwindow.c (gtk_window_read_rcfiles): 
10364         Simplify, now that gtk_rc_reparse_all() resets styles on
10365         all widgets itself.
10366
10367         * gtk/gtkmain.c (gtk_get_default_language): Fix broken
10368         return value.
10369
10370         * gtk/gtksettings.[ch] (gtk_settings_install_property[_ch]): Remove
10371         GtkSettings argument.
10372
10373         * gtk/gtksettings.[ch] (gtk_settings_get_default): Rename from
10374         gtk_settings_get_global().
10375
10376         * gtk/gtkwidget.[ch]: Add a function gtk_widget_Get_settings()
10377         to get the appropriate GtkSettings for a widget. (For now,
10378         just gets the default GtkSetttings.) 
10379
10380         * gtk/gtkcolorsel.c gtk/gtkentry.c gtk/gtkmenu.c gtk/gtkmenubar.c
10381           gtk/gtktextview.c gtk/gtktoolbar.c: Fixes for GtkSettings
10382         changes.
10383
10384         * gtk/gtkrc.[ch]: Add gtk_rc_get_style_by_paths() to allow
10385         getting a style for a path without actually having a widget.
10386         (Allows using a style for a subpart of a widget, for
10387         example.)
10388
10389         * gtk/gtkrc.[ch]: Add gtk_rc_reparse_all_for_setting() to allow forcing
10390         the RC files to be reloaded for just one GtkSettings
10391         (not sure how useful this really is.)
10392
10393         * gtk/gtkrc.h: Deprecate
10394         gtk_rc_add_widget_name/widget_class/class_style
10395
10396 2001-06-30  Alex Larsson  <alexl@redhat.com>
10397
10398         * gdk/linux-fb/gdkinput-none.c:
10399         * gdk/linux-fb/gdkinput.c:
10400         * gdk/linux-fb/gdkinputprivate.h:
10401         Convert GdkDevice to a GObject.
10402
10403         * linux-fb/gdkprivate-fb.h:
10404         * linux-fb/gdkvisual-fb.c:
10405         Convert GdkVisual to a GObject.
10406
10407 2001-06-29  Alex Larsson  <alexl@redhat.com>
10408
10409         * gdk/gdkvisual.h:
10410         * gdk/gdkcolor.c:
10411         * gdk/x11/gdkx.h:
10412         * gdk/x11/gdkvisual-x11.c:
10413         Convert GdkVisual to a GObject.
10414
10415         * gdk/gdkinput.h:
10416         * gdk/gdkevents.c:
10417         * gdk/x11/gdkinputprivate.h:
10418         * gdk/x11/gdkinput-gxi.c:
10419         * gdk/x11/gdkinput-none.c:
10420         * gdk/x11/gdkinput-x11.c:
10421         * gdk/x11/gdkinput-xfree.c:
10422         * gdk/x11/gdkinput.c:
10423         Convert GdkDevice to a GObject.
10424
10425 Fri Jun 29 22:13:28 2001  Jonathan Blandford  <jrb@redhat.com>
10426
10427         * gtk/gtktreestore.c (gtk_tree_store_new): changed new_with_types
10428         to just plain new, fixing the number of columns, and column types
10429         at creation time.
10430
10431         * gtk/gtkliststore.c (gtk_list_store_new): ditto.
10432
10433         * gtk/gtkcellrenderertext.c
10434         (gtk_cell_renderer_text_set_fixed_height_from_font): FIX the
10435         height to a specific font.
10436
10437         * gtk/gtktreeview.c (gtk_tree_view_is_expander_column): fix brokenness.
10438
10439         * tests/*c: change to work with new store models.
10440
10441 2001-06-29  Havoc Pennington  <hp@redhat.com>
10442
10443        * Throughout: fixes to compile with G_DISABLE_COMPAT
10444         (s/g_signal_connectc/g_signal_connect/,
10445         s/g_signal_newc/g_signal_new/,
10446         s/g_signal_disconnect_by_func/g_signal_handlers_disconnect_by_func/)
10447
10448 Fri Jun 29 03:14:16 2001  Jonathan Blandford  <jrb@redhat.com>
10449
10450         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach):
10451         add path argument to selection callbacks.
10452
10453 Fri Jun 29 00:13:34 2001  Jonathan Blandford  <jrb@redhat.com>
10454
10455         * gtk/gtktreemodel.c (gtk_tree_model_foreach): New function to
10456         walk through a model in a depth first manner, with the option to
10457         break out.
10458
10459 Fri Jun  8 18:52:10 2001  Jonathan Blandford  <jrb@redhat.com>
10460
10461         * gtk/gtktreeview.[hc]: Patch Thomas Broyer from
10462         <tbroyer@ltgt.net>. Expander arrows are now attached to a specific
10463         column and follow it when draged, rather than a location in the
10464         view. "expander_column" property and drawing functions changed
10465         accordingly.  Fixes bug #55942.
10466
10467         (gtk_tree_view_{set,get}_expander_column): Now works with a
10468         GtkTreeViewColumn* instead of int.
10469
10470 Thu Jun 28 22:53:18 2001  Owen Taylor  <otaylor@redhat.com>
10471
10472         *  gdk/gdk.c gtk/gtktypeutils.c: Fix args to g_type_init(). 
10473
10474 2001-06-28  Havoc Pennington  <hp@pobox.com>
10475
10476         * gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
10477         image data to the screen, using a server grab to avoid race
10478         conditions.
10479
10480         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove 
10481         check for NULL return from gtk_image_new_from_stock(), it never
10482         returns NULL.
10483         (gtk_item_factory_create_item): fix bug where we parsed the stock
10484         ID as an inline pixbuf
10485
10486         * gtk/gtktext.c (gtk_text_key_press): numeric keypad support
10487
10488         * gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
10489         support (should be using binding set here)
10490
10491         * gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
10492         support (should be using binding set here)
10493
10494         * gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad 
10495         support
10496
10497         * gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
10498
10499         * gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
10500
10501         * gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
10502
10503         * gtk/gtkimcontextsimple.c
10504         (gtk_im_context_simple_filter_keypress): keypad
10505
10506         * gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad 
10507
10508         * gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
10509
10510         * gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
10511
10512         * gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
10513         should be binding-setted)
10514
10515         * gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
10516
10517         * gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
10518
10519         * gtk/gtkcalendar.c: numeric keypad fixes
10520
10521         * gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
10522         support
10523
10524         * gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
10525         screwup
10526
10527         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha): 
10528         clip the render area to the drawable's clip region in advance,
10529         so we don't get data from the server that we don't need.
10530
10531         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
10532         check return value of gdk_pixbuf_get_from_drawable(), fall back 
10533         to bilevel alpha if we can't get the pixbuf to composite against.
10534
10535         * gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
10536
10537         * gdk/gdkimage.c (gdk_image_get_colormap): add
10538         gdk_image_set_colormap, gdk_image_get_colormap
10539
10540         * gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
10541         take a region of the image, instead of converting the entire
10542         image.
10543
10544         * gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
10545         keybinding signal. Add default bindings for it. Add default
10546         handler for show_help that shows the tooltip for the widget.
10547
10548         * gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
10549         "close" keybinding signal, remove key press handler.
10550
10551         * gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
10552         it's not our usual practice to leave a deprecated function around
10553         with a runtime warning, plus we don't want it to appear in docs,
10554         plus if we make them yellow no one will want to change them
10555         anyhow.
10556
10557 Thu Jun 28 23:53:31 2001  Tim Janik  <timj@gtk.org>
10558
10559         * gtk/gtkwidget.c (gtk_widget_hide): !GTK_OBJECT_DESTROYED() ->
10560         GTK_WIDGET_REALIZE() for resize queueing.
10561
10562         * gtk/gtkmain.c (gtk_main_do_event): !GTK_OBJECT_DESTROYED() ->
10563         GTK_WIDGET_REALIZE() for post event delivery destruction upon
10564         GDK_DESTROY.
10565         
10566         * gtk/gtkwidget.c: added GtkWidget::event-after notification signal, to
10567         sompensate for former (pre-2.0) connect_after() facility.
10568         (gtk_widget_send_expose): 
10569         (gtk_widget_event): assert the widget is realized, since event delivery
10570         to non-realized widgets is essentially a bug. event handlers should
10571         be able to unconditionally rely on widget->window (unless they
10572         emit events on their own which can trigger widget destruction).
10573         (gtk_widget_event_internal): removed old outdated GTK_OBJECT_DESTROYED()
10574         logic. event delivery happens as follows:
10575         a) emission of GtkWidget::event (RUN_LAST handler). returns was_handled.
10576         b) if !was_handled in (a) and the widget is still realized, emit event-
10577            specific signal (RUN_LAST handler). returns was_handled.
10578         c) emission of GtkWidget::event-after for notification if the widget is
10579            still realized (regardless of was_handled from previous stages, no
10580            class handler). no return value.
10581         d) was_handled gets passed on to caller, to determine further
10582            propagation. if the widget got unrealized meanwhile, was_handled
10583            is returned as TRUE.
10584
10585         * gdk/gdkevents.[hc]: added gdk_event_get_root_coords() and
10586         gdk_event_get_coords().
10587
10588 Thu Jun 28 17:18:41 2001  Tim Janik  <timj@gtk.org>
10589
10590         * configure.in (GTK_MICRO_VERSION): up version to 1.3.7, interface
10591         age 0, binary age 0. depend on glib 1.3.7.
10592
10593         * gtk/gtkcontainer.c: remove g_signal_handlers_disconnect_by_func() hack.
10594
10595         * gtk/gtkmenubar.c: same here.
10596         
10597         * gtk/gtkcontainer.c (gtk_container_focus_tab): fix param-spec retrival.
10598
10599         * gtk/gtkcolorsel.c (gtk_color_selection_init): fix connect_data() usage.
10600
10601         * gtk/gtkentry.c (gtk_entry_focus_in): same here.
10602         
10603         * gtk/gtkmenubar.c (add_to_window): likewise.
10604         
10605         * gtk/gtktextbtree.c: and here...
10606         
10607         * gtk/gtktextview.c (gtk_text_view_ensure_layout): same thing.
10608         
10609         * gtk/gtktoolbar.c (gtk_toolbar_init): once more.
10610         
10611         * gtk/gtktreemodel.c (connect_ref_callbacks): and another time.
10612         
10613         * gtk/gtktreeviewcolumn.c:
10614         (_gtk_tree_view_column_set_tree_view): yet again.
10615
10616         * demos/gtk-demo/images.c (progressive_timeout): demonstrate
10617         signal connections without g_signal_connect_data().
10618         
10619         * demos/gtk-demo/stock_browser.c (do_stock_browser): second
10620         demo of the matter.
10621         
10622         * demos/testpixbuf.c (main): running out of equality phrases for the
10623         ChangeLog, but had to adapt connections here as well.
10624         
10625         * demos/testanimation.c (progressive_timeout): and for the fun of it,
10626         tackled this the same way.
10627         
10628         * tests/testtext.c (create_view): ok, it's becoming a pain at this
10629         point, but had enough enery for one more fix.
10630
10631         * tests/testtreecolumns.c (main): stand up man, do your work!
10632
10633         * tests/testtreeview.c (set_columns_type): ok, this is the last file i
10634         fix, either that's been all of it or CVS gtk is broken yet again.
10635         
10636 2001-06-29  James Henstridge  <james@daa.com.au>
10637
10638         The following changes correspond to bug #56812
10639
10640         * gdk/gdkinput.h, gdk/gdkevents.c (GDK_TYPE_DEVICE): register type
10641         code for GdkDevice.
10642
10643         * gdk/gdkcursor.[ch] (GDK_TYPE_CURSOR): register type code for
10644         GdkCursor.
10645
10646 2001-06-19  Havoc Pennington  <hp@pobox.com>
10647
10648         * gdk/x11/gdkwindow-x11.c (gdk_window_show_unraised): new function
10649         for mapping a window without fooling with stacking order, but
10650         updating the "withdrawn" flag
10651
10652         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Do event
10653         filtering as soon as possible, moving move resize and wmspec_check
10654         handling after the event filter.  Make default filter apply to all
10655         events, not just those with no GdkWindow wrapped around the X
10656         window. Fix a FIXME about how the window could be a pixmap using 
10657         RTTI; this of course assumes GDK_IS_WINDOW() is optimized. 
10658
10659         Also, be robust against events not on a known GdkWindow.
10660
10661         * gdk/x11/gdkmain-x11.c (gdk_x11_grab_server,
10662         gdk_x11_ungrab_server): export reference-counted server grabs, so
10663         other people can grab server over a GDK function that also does
10664         so.
10665
10666 Wed Jun 27 19:40:31 2001  Jonathan Blandford  <jrb@redhat.com>
10667
10668         * gtk/gtktreeviewcolumn.c
10669         (gtk_tree_view_column_pack_start_cell_renderer): New function to
10670         reflect that you can (hypothetically) pack cell renderers into a
10671         column.
10672         (gtk_tree_view_column_pack_end_cell_renderer): ditto.
10673         (gtk_tree_view_column_cell_is_visible): Move more functionality to
10674         the column.
10675         (gtk_tree_view_column_cell_can_focus): Move more functionality to
10676         the column.
10677
10678         * gtk/gtktreeview.c: Move to use new column-packing code.
10679         (gtk_tree_view_real_expand_row): remove totally braindead code.
10680         (gtk_tree_view_real_collapse_row): ditto.
10681
10682 2001-06-27  Kjartan Maraas  <kmaraas@gnome.org>
10683
10684         * gtk/gtktreeviewcolumn.c: Fix a typo.
10685         
10686 2001-06-26  Joel Becker  <jlbec@evilplan.org>
10687
10688         * gdk-pixbuf/gdk-pixbuf-csource.c: remove '#include "x"' line
10689           at the end of the file
10690
10691 2001-06-26  Havoc Pennington  <hp@redhat.com>
10692
10693         * gtk/gtkwindow.c (gtk_window_set_policy): forgot a notification
10694
10695 2001-06-26  Havoc Pennington  <hp@redhat.com>
10696
10697         * gtk/gtkwindow.c (gtk_window_class_init): add "resizable"
10698         property
10699
10700 Tue Jun 26 12:59:28 2001  Jonathan Blandford  <jrb@redhat.com>
10701
10702         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_model): fix
10703         stupid missing statement
10704
10705         * gtk/gtktreeview.c (gtk_tree_view_set_destroy_count_func): New
10706         private function for ATK.  It notifies you of how many _visible_
10707         children are deleted when a node is deleted.  Should be used by
10708         atk only.
10709
10710 Tue Jun 26 11:06:34 2001  Owen Taylor  <otaylor@redhat.com>
10711
10712         * gtk/gtkclist.c gtk/gtkentry.c gtk/gtkspinbutton.c:
10713         Use new pango_context_get_metrics() to fix problems
10714         with font lists in descriptions. (#56184, reported by
10715         Jonas Borgström)
10716
10717 Tue Jun 26 10:04:30 2001  Tim Janik  <timj@gtk.org>
10718
10719         * gtk/gtkiconfactory.c:
10720         * gtk/gtkitemfactory.c: use gdk_pixbuf_new_from_stream(). fixed up
10721         item factory so inlined pixbufs actually work.
10722
10723 2001-06-25  Havoc Pennington  <hp@redhat.com>
10724
10725         * gtk/gtktreeviewcolumn.h, gtk/gtktreeviewcolumn.c:
10726         s/RESIZEABLE/RESIZABLE/
10727
10728         * gtk/gtkwindow.c, gtk/gtkwindow.h: s/resizeable/resizable/
10729
10730 2001-06-25  Alexander Larsson  <alexl@redhat.com>
10731
10732         * configure.in:
10733         Added --enable-fbmanager. This is some experimental code
10734         that lets several GtkFB apps coordinate their access to the
10735         framebuffer.
10736         
10737         * acconfig.h:
10738         Added ENABLE_FB_MANAGER.
10739
10740         * gdk/linux-fb/Makefile.am:
10741         Added gdkfbmanager and gdkfbswitch.
10742
10743         * gdk/linux-fb/gdkkeyboard-fb.c:
10744         * gdk/linux-fb/gdkmouse-fb.c:
10745         * gdk/linux-fb/gdkprivate-fb.h:
10746         Split device init and open so that
10747         they can be opened and closed while switched
10748         away.
10749
10750         * gdk/linux-fb/gdkmain-fb.c:
10751         Add the basic manager communication.
10752
10753         * gdk/linux-fb/gdkrender-fb.c:
10754         Don't update to the shadow fb if we're
10755         blocked by the fb manager.
10756
10757 Sun Jun 24 22:15:16 2001  Owen Taylor  <otaylor@redhat.com>
10758
10759         * docs/Changes-2.0.txt: Add note about child property
10760         changes.
10761
10762 Sun Jun 24 21:34:32 2001  Owen Taylor  <otaylor@redhat.com>
10763
10764         * gtk/gtkenums.h gtk/gtkiconfactory.c: Add a special size for
10765         drag-and-drop GTK_ICON_SIZE_DND (Default to 32x32)
10766
10767         * gtk/gtkdnd.c (gtk_drag_dest_set_target_list): Fix problem
10768         with un'reffing wrong list reported by Jeff Franks.
10769
10770         * gtk/gtkdnd.[ch] (_gtk_drag_{source,}dest_handle_event): _prefix.
10771
10772         * gtk/gtkdnd.c (gtk_drag_set_icon_default): Use GTK_STOCK_DND
10773         for the default icon. Remove inline XPM.
10774
10775         * gtk/gtkstock.h gtk/gtkiconfactory.c:
10776         Add GTK_STOCK_DND GTK_STOCK_DND_MULTIPLE (Currently, stock_new
10777         is used for GTK_STOCK_DND, but it is a bit too small.)
10778
10779         * gtk/stock-icons/stock_dnd_multiple.png
10780         gtk/stock-icons/Makefile.am: New stock icon moved from gnome-libs.
10781
10782         * gtk/gtkdnd.c (gtk_drag_source_event_cb): Only return
10783         TRUE when starting a drag. In other cases, we are
10784         just observing. (#52995)
10785
10786         * gtk/gtkdnd.[ch] (gtk_drag_set_icon_{stock,pixbuf}): Add 
10787         function to set the icon for a drag from a GdkPixbuf
10788         or stock ID.
10789
10790         * gtk/gtkdnd.[ch] (gtk_drag_source_set_icon_{stock,pixbuf}): 
10791         Likewise, for drag sources.
10792
10793         * gtk/gtkdnd.h: Deprecate gtk_drag_set_default_icon.
10794         (Now should be done using the stock system.)
10795
10796 Sun Jun 24 12:06:47 2001  Owen Taylor  <otaylor@redhat.com>
10797
10798         * gtk/gtktextview.[ch] (gtk_text_view_set_text_window_size): 
10799         Removed - didn't work and not particularly useful anyways
10800         if it did. 
10801
10802 Sun Jun 24 11:29:35 2001  Owen Taylor  <otaylor@redhat.com>
10803
10804         * gdk/x11/gdkimage-x11.c (gdk_image_new): Fix stupid error
10805         introduced last night that was making things decidedly not work.
10806
10807         * gtk/*.[ch]: Patch from Kristian Rietveld adding 80 getters
10808         so that we have getter/setter pairing everywhere it makes
10809         sense. (#55767)
10810
10811         * gtk/gtkradiobutton.[ch] gtk/gtktoolbar.c tests/testgtk.:
10812         Rename gtk_radio_button_group to gtk_radio_button_get_group, add a
10813         deprecated compat macro. (#55516)
10814
10815         * gtk/gtklabel.[ch]: Add functions
10816         gtk_label_set/get_use_underline(), gtk_label_set/get_use_markup(),
10817         gtk_label_set_label(), which mirror the property API for GtkLabel.
10818         Make gtk_label_get_attributes() only reflect the attributes
10819         set by gtk_label_set_attributes.
10820
10821         * gtk/gtknotebook.c (gtk_notebook_set_current_page) gtk/gtkcompat.h: Rename
10822         from gtk_notebook_set_page().
10823
10824 Sat Jun 23 18:02:46 2001  Owen Taylor  <otaylor@redhat.com>
10825
10826         * configure.in: Fix tests for XShm.h.
10827
10828         * gdk/x11/gdkimage-x11.c: Cleanup error handling in
10829         gdk_image_new() by use of goto, properly use g_object_unref().
10830
10831 Sat Jun 23 22:03:20 2001  Tim Janik  <timj@gtk.org>
10832
10833         * gdk/x11/gdkimage-x11.c (gdk_image_init): disabled g_free (image)
10834         calls, as GdkImage is an object. these should be g_obejct_unref()
10835         instead but that won't work because of the g_error() statement
10836         in gdk_x11_image_destroy(). so for now, i did s/g_free/LEAK_IMAGE/
10837         to spot these places.
10838
10839 Sat Jun 23 10:27:53 2001  Owen Taylor  <otaylor@redhat.com>
10840
10841         * modules/input/gtkimcontextxim.c: Fixup some problems with 
10842         text length handling in error cases.
10843
10844         * gtk/gtkwidget.c (gtk_widget_size_allocate): Reorder
10845         a bit to make test actually warn on attempt to allocation
10846         a negative size. (#56101, Matthias Clasen)
10847
10848 Fri Jun 22 14:06:08 2001  Jonathan Blandford  <jrb@redhat.com>
10849
10850         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): Fix bug
10851         noticed by Brian Cameron.
10852         (gtk_tree_view_real_expand_row): Fix bug noticed by Brian
10853         Cameron.
10854
10855 2001-06-22  Hans Breuer  <hans@breuer.org>
10856
10857         * gdk/gdk.def : updated externals
10858
10859         * gdk/win32/gdkdrawable-win32.c : corrected some casts
10860         in GDK_NOTEs
10861
10862         * gdk/win32/gdkevents-win32.c : use _gdk_windowing_window_get_offsets
10863         to translate coordinates to the internal > 16 bit system
10864         Try to handle WM_WINDOWPOSCHANGED to get better performance for
10865         when moving/resizing
10866
10867         * gdk/win32/gdkkeys-win32.c : implement gdk_keymap_get_default ()
10868         and gdk_keymap_get_direction (). The latter is untested for
10869         the RTL case
10870
10871         * gtk/gtk.def : updated externals
10872
10873         * gtk/gtkmain.c : gtk_get_default_language () should reurn the result
10874         from pango_language_from_string (), not an already freed pointer
10875
10876         * gtk/stock-icons/stock_menu_sort_ascending.png : PNGs need to be 
10877         binary (-kb) to be useable on windoze
10878  
10879 2001-06-21  Alexander Larsson  <alexl@redhat.com>
10880
10881         * gdk/linux-fb/gdkfont-fb.c (gdk_font_from_description): 
10882         Update to new PangoLanguage changes.
10883         
10884         * gtk/gtkwindow-decorate.c:
10885         * gtk/gtkwindow.[ch]:
10886         Added setting argument to gtk_window_set_has_frame ()
10887         
10888 Thu Jun 21 13:42:01 2001  Owen Taylor  <otaylor@redhat.com>
10889
10890         * gdk/x11/gdkkeys-x11.c (gdk_keymap_get_direction): Handle
10891         the case without XKB properly.
10892
10893         * gtk/gtkrc.c (gtk_rc_set_default_files): Remove
10894         unused gtk_rc_auto_parse variable.
10895
10896         * gtk/gtkrc.[ch] gtk/gtkstyle.c docs/Changes-2.0.txt:
10897         Remove gtk_rc_set_image_loader(), gtk_rc_load_image(), no
10898         longer needed with GdkPixbuf.
10899
10900         * gtk/gtkrc.c (_gtk_rc_init): Make private.
10901
10902 Fri Jun 15 16:26:12 2001  Owen Taylor  <otaylor@redhat.com>
10903
10904         * gtk/gtkentry.h: Mark deprecated functions with
10905         GTK_DISABLE_DEPRECATED.
10906
10907 Mon Jun 11 18:15:16 2001  Owen Taylor  <otaylor@redhat.com>
10908
10909         * gdk/gdk.h: Add missing gdk_rectangle_get_type() prototype.
10910
10911         * gtk/gtk[hv]scale.c: Include math.h, stdlib.h
10912
10913         * gdk/gdkpango.h gtk/gtkclist.c gtk/gtkentry.c gtk/gtkmain.[ch]
10914           gtk/gtkspinbutton.c gtk/gtkstyle.c gtk/gtktextbuffer.c
10915           gtk/gtktextdisplay.c gtk/gtktextiter.[ch]
10916           gtk/gtktextlayout.c gtk/gtktexttag.[ch] gtk/gtkwidget.c: Adapt
10917           to recent changes in Pango.
10918
10919         * tests/testgtk.c: Set language tags with gtk_label_set_markup()
10920           to test whether the basic engine honors them.
10921
10922 Thu Jun 21 02:13:40 2001  Tim Janik  <timj@gtk.org>
10923
10924         * gtk/gtkcontainer.[hc]: added gtk_container_child_set_property() and
10925         gtk_container_child_get_property().
10926
10927 Wed Jun 20 19:19:15 2001  Jonathan Blandford  <jrb@redhat.com>
10928
10929         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_up_down): clean up
10930         (gtk_tree_view_move_cursor_page_up_down): implement.
10931
10932 Wed Jun 20 05:32:05 2001  Tim Janik  <timj@gtk.org>
10933
10934         * gtk/gtkspinbutton.c: make maximum digits compile time configurable
10935         via MAX_DIGITS and up to 20. 5 was just ridiculously small.
10936         don't use automatic fixed size buffer for printf-ing floats, doubles
10937         can expand to really _huge_ strings, use g_strdup_printf() instead.
10938
10939 Wed Jun 20 04:28:24 2001  Tim Janik  <timj@gtk.org>
10940
10941         * gtk/gtkrange.c (gtk_range_class_init): hum, "adjustment" was a
10942         construct property in 1.2 and still needs to be.
10943
10944         * gtk/gtkwidget.c: "composite_child" is not a settable property.
10945
10946 Tue Jun 19 19:13:19 2001  Jonathan Blandford  <jrb@redhat.com>
10947
10948         * gtk/gtkliststore.c (gtk_list_store_clear): 
10949         * gtk/gtktreestore.c (gtk_tree_store_clear): New functions to
10950         clear a model.
10951
10952 Mon Jun 18 02:00:49 2001  Tim Janik  <timj@gtk.org>
10953
10954         * gtk/gtkwidget.c (gtk_widget_get_property): fix PROP_EVENTS.
10955
10956         * gtk/Makefile.am:
10957         * gtk/gtk.h: disabled GtkPacker compilation.
10958
10959         * gtk/gtkarg.[hc], gtk/gtkargcollector.c: got rid of these.
10960
10961         * gtk/gtknotebook.c:
10962         * gtk/gtktable.c:
10963         * gtk/gtkbox.c: ported this over to child properties.
10964
10965         * gtk/gtksettings.c: fetch class properties via
10966         g_object_class_list_properties().
10967
10968         * gtk/gtkcontainer.[hc]: implemented child properties, got rid of the
10969         child arg interface. use gobjectnotifyqueue.c for child property
10970         notification.
10971
10972         * gtk/gtkwidget.[hc]: provide necessary means for container child
10973         properties, i.e. ::child_notify signal,
10974         gtk_widget_freeze_child_notify(),
10975         gtk_widget_child_notify(),
10976         gtk_widget_thaw_child_notify().
10977
10978         * tests/testgtk.c: removed inferior property handling code, for
10979         property editing, a generic module should be used, and GLE
10980         coincidentally fullfills that purpose.
10981
10982         * docs/reference/Makefile.am: disabled gtk docs building, gtk-doc
10983         needs to be adapted to g_object_class_list_properties() before this
10984         builds again.
10985
10986 Mon Jun 18 20:06:10 2001  Jonathan Blandford  <jrb@redhat.com>
10987
10988         * gtk/gtktreeview.c (gtk_tree_view_row_expanded): New function to
10989         test if a node is expanded.
10990
10991 Mon Jun 18 19:41:38 2001  Jonathan Blandford  <jrb@redhat.com>
10992
10993         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): Fix bug
10994         where collapsing a selected row would result in the cursor/anchor
10995         getting screwed up.
10996
10997 Fri Jun 15 18:53:48 2001  Jonathan Blandford  <jrb@redhat.com>
10998
10999         * gtk/gtktreesortable.c (gtk_tree_sortable_set_sort_func): Rename
11000         gtk_tree_sortable_sort_column_id_set_func.  It's much shorter now.
11001         * gtk/gtktreeview.c (gtk_tree_view_sort_iter_changed): WOOO!!!
11002         Now I can really reorder/sort all Store widgets.  treesorttest
11003         seems to just work now.
11004         * gtk/gtklistview.c (gtk_list_store_iter_changed): Whoops.
11005         testtreesort worked through a big coincidence all this time.
11006         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): Nasty bug fix in nasty
11007         code.
11008         * tests/testtreecolumns.c: Big 'ol warning at the top letting
11009         people know that this code should never ever ever be copied.
11010
11011 2001-06-15  Jonas Borgström  <jonas@codefactory.se>
11012
11013         * gtk/gtkwindow.h: Fixed a small typo, it should be
11014         GTK_WINDOW_GROUP_GET_CLASS and not GTK_WINDOW_GET_CLASS
11015         on line 134.
11016
11017 2001-06-14  Havoc Pennington  <hp@redhat.com>
11018
11019         Docs fixups, and:
11020         
11021         * gtk/gtkcompat.h: remove GTK_DISABLE_COMPAT_H, replace with
11022         GTK_DISABLE_DEPRECATED
11023
11024 Thu Jun 14 19:21:27 2001  Jonathan Blandford  <jrb@redhat.com>
11025
11026         * gtk/gtktreestore.c (gtk_tree_store_sort_helper): Whoops.  Forgot
11027         this a couple months ago.  Now GtkTreeStore sort of sorts.  I'll
11028         finish it off tonight, though it basically works now when it's a
11029         list.  Also, I have a sinking feeling neither GtkTreeStore or
11030         GtkListStore actually resort when adding a new item.  I'll look
11031         into it.
11032
11033 2001-06-14  Havoc Pennington  <hp@redhat.com>
11034
11035         * demos/gtk-demo/main.c (load_file): fix bug identified by
11036         warnings I just added to gtktextbuffer
11037
11038 2001-06-14  Havoc Pennington  <hp@redhat.com>
11039
11040         * gtk/gtkwindow.c (window_group_cleanup_grabs): fix other typo
11041
11042         * gtk/gtkwidget.c (gtk_widget_propagate_state): fix typo
11043
11044         * gtk/gtktextbtree.c: don't leak node data all over the place.
11045
11046         * demos/gtk-demo/main.c (main): create fontify tags for the right
11047         buffer
11048
11049         * gtk/gtktextbuffer.c, gtk/gtktexttagtable.c: enhance docs
11050         to mention tags in the same table can't have the same name,
11051         suggested by Skip Montanaro
11052
11053 2001-06-11  Havoc Pennington  <hp@redhat.com>
11054
11055         * gtk/gtktexttagtable.c (gtk_text_tag_table_add): improve warning 
11056         for trying to add two tags with same name to the tag table
11057
11058         * demos/gtk-demo/main.c (main): fix colors ;-)
11059
11060 `Fri Jun  8 17:56:52 2001  Owen Taylor  <otaylor@redhat.com>
11061
11062         * gtk/gtkwindow.[ch] gtk/gtkmain.c: Add a GtkWindowGroup struct
11063         that allows grouping together multiple windows so that grabs
11064         within that set of windows only affect those windows.
11065
11066         * gtk/gtkmain.c gtk/gtkwidget.[ch]: Add a "grab_notify"
11067         signal for notification when a widget becomes shadowed
11068         by a grab or is no longer shadowed by a grab.
11069
11070         * gtk/gtkwidget.c (gtk_widget_propagate_state)
11071           gtk/gtkmain.c: (gtk_widget_grab_add): Don't allow
11072         insenstive widgets to maintain a grab.
11073
11074 2001-06-14  Alexander Larsson  <alexl@redhat.com>
11075
11076         * docs/README.linux-fb:
11077         Add some example config files that can be used with the URW fonts.
11078         
11079         * gdk/linux-fb/gdkvisual-fb.c (gdk_visual_init): 
11080         Set up the color ramps for DirectColor mode.
11081
11082 2001-06-11  Havoc Pennington  <hp@redhat.com>
11083
11084         * Release 1.3.6
11085          
11086 2001-06-13  Alexander Larsson  <alla@lysator.liu.se>
11087
11088         * gdk/linux-fb/gdkwindow-fb.c:
11089         Unify shaped window code and make it repaint the area that used
11090         to be part of the shape, but isn't anymore.
11091
11092 2001-06-11  Havoc Pennington  <hp@redhat.com>
11093
11094         * NEWS: Updates
11095
11096         * configure.in (GTK_MINOR_VERSION): bump version to 1.3.6
11097
11098         * gtk/Makefile.am: glib_genmarshal already contains top_builddir
11099         
11100 2001-06-13  Alexander Larsson  <alla@lysator.liu.se>
11101
11102         * gdk/linux-fb/gdkdnd-fb.c (gdk_drag_status):
11103         Don't pass on GDK_ACTION_DEFAULT. The Xdnd code
11104         passes zero instead, so do we.
11105         
11106 2001-06-13  Alexander Larsson  <alla@lysator.liu.se>
11107
11108         * gdk/linux-fb/gdkgc-fb.c (gdk_gc_copy):
11109         Deep copy dash_list too.
11110         (_gdk_fb_gc_new): Set default cap_style before
11111         setting values.
11112
11113 2001-06-12  Alexander Larsson  <alla@lysator.liu.se>
11114
11115         * gdk/linux-fb/gdkkeyboard-fb.c (gdk_keymap_get_default,
11116         gdk_keymap_get_direction): New functions.
11117
11118 Tue Jun 12 12:41:27 2001  Jonathan Blandford  <jrb@redhat.com>
11119
11120         * gtk/gtktreemodel.h (GTK_TREE_MODEL_LIST_ONLY): further justify
11121         gtk_tree_model_get_flags by adding a second flag for atk.
11122
11123         * gtk/gtktreemodel.c: make cursor behavior interact better with
11124         mouse presses.
11125
11126 Mon Jun 11 12:43:08 2001  Jonathan Blandford  <jrb@redhat.com>
11127
11128         * gtk/gtktreeview.c (gtk_tree_view_class_init): changed
11129         expand_row/collapse_row to be 2 signals each -- test_expand_row
11130         and row_expanded as well as test_collapse_row and row_collapsed.
11131
11132 2001-06-10  Anders Carlsson  <andersca@codefactory.se>
11133
11134         * demos/gtk-demo/stock_browser.c (do_stock_browser): Update
11135         signal name to be changed instead of selection_changed.
11136
11137 2001-06-08  Havoc Pennington  <hp@redhat.com>
11138
11139         * gtk/gtkentry.c (gtk_entry_class_init): add read-only
11140         "scroll_offset" property for notification when the layout offsets
11141         may have changed
11142         (gtk_entry_adjust_scroll): add notify for scroll_offset
11143         (gtk_entry_layout_index_to_text_index): function to compensate for
11144         preedit string when doing coordinate stuff on the entry's layout
11145         (gtk_entry_text_index_to_layout_index): inverse function
11146         (gtk_entry_get_layout_offsets): hook to get current position of
11147         the layout      
11148         (gtk_entry_get_layout): hook to get the layout itself.
11149
11150         * gtk/gtklabel.c (gtk_label_get_layout): new function
11151
11152 Fri Jun  8 19:49:29 2001  Jonathan Blandford  <jrb@redhat.com>
11153
11154         * gtk/gtktreeview.c (gtk_tree_view_real_select_cursor_row): New
11155         keybinding.
11156         (gtk_tree_view_focus): Fix merge conflict.
11157
11158 Fri Jun  8 18:41:30 2001  Jonathan Blandford  <jrb@redhat.com>
11159
11160         * gtk/gtktreeview.c (gtk_tree_view_set_cursor): new function to
11161         clean up cursor handling.
11162
11163 2001-06-08  Havoc Pennington  <hp@redhat.com>
11164
11165         * gtk/gtktextbuffer.c (gtk_text_buffer_get_start_iter): added this
11166         function
11167
11168         * gtk/gtktextview.c (gtk_text_view_get_default_attributes): added
11169         this function
11170
11171 2001-06-08  Alex Larsson  <alexl@redhat.com>
11172
11173         * gtk/gtkcompat.h.in:
11174         Added compat macros for all old GTK_TYPE_GDK_xxx types.
11175         Fixes bug #52892
11176
11177 2001-06-08  Havoc Pennington  <hp@redhat.com>
11178         
11179         * gtk/gtkhsv.h (struct _GtkHSVClass): had GtkContainerClass as
11180         parent still
11181
11182 2001-06-08  Havoc Pennington  <hp@redhat.com>
11183
11184         * gtk/gtktextbuffer.c (gtk_text_buffer_remove_all_tags): geez,
11185         don't call g_list funcs on GSList
11186
11187         * gtk/gtkwidget.c (gtk_widget_child_focus): replaces
11188         gtk_container_focus(), since some widgets have focusable locations
11189         which are not other widgets. These widgets should not have to be 
11190         containers just to manage the focus. For example, GtkHSV is
11191         currently a container for no good reason. Also, this cleans
11192         up the "if (is_container && is_sensitive && is_drawable)
11193         container_focus ()" mess in widget implementations.
11194
11195         * gtk/gtkcontainer.c (gtk_container_focus): deprecate this
11196         function, and have it just call gtk_widget_child_focus().
11197
11198         * gtk/gtkhsv.c: derive from widget not container
11199         
11200         Throughout: fix to reflect GtkContainer::focus change
11201         
11202 Fri Jun  8 12:38:49 2001  Jonathan Blandford  <jrb@redhat.com>
11203
11204         * gtk/gtktable.c (gtk_table_resize): warn if row/cols are out of
11205         range.  Fix bug #55921
11206
11207         * gtk/gtkliststore.c (gtk_list_store_new_with_types): fix doc bug
11208         (#55920).
11209
11210 Fri Jun  8 12:03:07 2001  Owen Taylor  <otaylor@redhat.com>
11211
11212         * gdk/gdkkeys.[ch]: Add a direction-changed signal,
11213         and gdk_keymap_get_current_direction().
11214
11215         * gdk/x11/gdkevents-x11.c gdk/x11/gdkkeys-x11.c
11216           gdk/x11/gdkmain-x11.c gdk/x11/gdkprivate-x11.h: Track
11217         the current locked group, use it to set the keymap
11218         direction.
11219
11220         * gtk/gtksettings.c: Add a new gtk-split-cursor setting
11221         to determine whether we draw a split cursor or use
11222         a jumping cursor based on the current direction.
11223
11224         * gtk/gtkentry.c gtk/gtktextview.c gtk/gtktextlayout.[ch]:
11225         Obey the split cursor setting. 
11226
11227 Fri Jun  8 11:57:50 2001  Owen Taylor  <otaylor@redhat.com>
11228
11229         * gtk/gtkimmulticontext.c (activate_cb): Only activate
11230         when toggling on, not when toggling off... (#55906)
11231
11232 Wed Jun  6 10:37:07 2001  Owen Taylor  <otaylor@redhat.com>
11233
11234         * gtk/gtkwidget.c (gtk_widget_set_double_buffered): 
11235         s/gdk_window_begin_paint/gdk_window_begin_paint_region/
11236         in docs. (#55812, Vitaly Tishkov)
11237
11238 2001-06-08  Anders Carlsson  <andersca@codefactory.se>
11239
11240         * demos/gtk-demo/main.c (create_tree): Changed signal name from
11241         selection_changed to changed in signal connection to GtkTreeSelection,
11242         also used g_signal_connectc since GtkTreeSelection is now a GObject.
11243
11244 Thu Jun  7 18:25:42 2001  Jonathan Blandford  <jrb@redhat.com>
11245
11246         * gtk/gtktreeselection.c: Now it's a GObject instead of a
11247         GtkObject.  The GtkTreeSelection::selection_changed signal is now
11248         the GtkTreeSelection::changed signal.
11249
11250         * gtk/gtktreeview.c: Modified to deal with new GtkTreeSelection
11251         object.
11252
11253         * tests/gtktree*.c: Modified to deal with new GtkTreeSelection
11254         object.
11255
11256 2001-06-07  Havoc Pennington  <hp@redhat.com>
11257
11258         * gtk/Makefile.am: fix glib-mkenums and glib-genmarshal again
11259
11260 2001-06-07  Havoc Pennington  <hp@redhat.com>
11261         
11262         * gtk/Makefile.am: fixups for glib-mkenums and glib-genmarshal
11263         (not tested yet because with absolute path to srcdir I can't build
11264         atk, but it was broken anyway so this may help) 
11265
11266 2001-06-07  Havoc Pennington  <hp@redhat.com>
11267
11268         * configure.in: output m4macros/Makefile
11269         
11270 Wed Jun  6 21:59:16 2001  Jonathan Blandford  <jrb@redhat.com>
11271
11272         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): hook up arrow
11273         buttons.  Fixes #55460 reported by matthiasc@poet.de.
11274
11275 Wed Jun  6 21:18:54 2001  Jonathan Blandford  <jrb@redhat.com>
11276
11277         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): centralize
11278         expansion/collapsing so it only happens in one place.
11279         (gtk_tree_view_real_expand_row): ditto.
11280
11281 2001-06-07  Havoc Pennington  <hp@redhat.com>
11282
11283         * tests/Makefile.am: add missing -I flag
11284
11285         * gtk/Makefile.am: use @GLIB_MKENUMS@, @GLIB_GENMARSHAL@, etc.
11286
11287         * configure.in: use pkg-config to see if GModule is
11288         supported; fix to properly turn on included loaders 
11289         when GModule isn't supported; don't use AC_CHECK_LIB 
11290         when libs are not installed yet
11291
11292         * autogen.sh: add support for AUTOGEN_SUBDIR_MODE
11293
11294         * Makefile.am (SUBDIRS): add m4macros subdir
11295
11296         * gtk/Makefile.am: $(srcdir)/foo targets must be $(srcdir)/foo in
11297         dependencies also.
11298
11299 Wed Jun  6 19:31:11 2001  Jonathan Blandford  <jrb@redhat.com>
11300
11301         * gtk/gtktreeview.c (gtk_tree_view_set_model): fix silly bug
11302         reported by "Padraig O'Briain" <Padraig.Obriain@Sun.COM>.
11303
11304 Wed Jun  6 20:01:38 2001  Jonathan Blandford  <jrb@redhat.com>
11305
11306         * gtk/gtktreeview.c
11307         (gtk_tree_view_real_expand_collapse_cursor_row): Handle key
11308         bindings to expand and collapse rows.
11309         (gtk_tree_view_real_select_cursor_parent): New key binding.
11310         (gtk_tree_view_real_toggle_cursor_row): New key binding.
11311
11312         * gtk/gtkmarshal.list: new
11313         marshaller. (VOID__BOOLEAN_BOOLEAN_BOOLEAN)
11314
11315 2001-06-06  Havoc Pennington  <hp@redhat.com>
11316
11317         * gtk/gtkrange.c (gtk_range_class_init): add "inverted" property
11318
11319         * gtk/gtkscale.c (gtk_scale_class_init): Change Page Up and Page
11320         Down to move visually rather than logically, since it confuses 
11321         people. Add -/+ and Ctrl--/+ bindings for logical movement.
11322
11323 2001-06-06  Alex Larsson  <alexl@redhat.com>
11324
11325         * gdk/linux-fb/gdkmain-fb.c (_gdk_windowing_init_check):
11326         Fix up error messages.
11327
11328 Wed Jun  6 10:34:42 2001  Owen Taylor  <otaylor@redhat.com>
11329
11330         * gtk/gtktooltips.h: Include gtkwidget.h 
11331         (#55798, Karl Nelson)
11332
11333         * gdk/x11/gdkwindow-x11.c (utf8_is_latin1): 0xff is
11334         a valid latin-1 character. (Marc Lehmann, #35467)
11335
11336         * gdk/x11/gdkwindow-x11.c: Fix minor typo in comment. 
11337         (Marc Lehmann, #35467)
11338         
11339 2001-06-05  Alex Larsson  <alexl@redhat.com>
11340
11341         * demos/gtk-demo/appwindow.c (do_appwindow):
11342         Don't swap the order of the args to gtk_widget_destroyed.
11343
11344         * tests/testgtk.c (destroy_properties):
11345         Don't crash when the properties window is destroyed.
11346
11347         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_from_stock):
11348         Use with_mnemonics to handle the case of stock items with
11349         underscores in them.
11350
11351 2001-06-05  Havoc Pennington  <hp@redhat.com>
11352
11353         * gtk/gtktextiter.c (gtk_text_iter_order): rename from 
11354         gtk_text_iter_reorder
11355
11356 2001-06-05  Havoc Pennington  <hp@redhat.com>
11357
11358         * gtk/gtktoolbar.c (gtk_toolbar_remove_space): new function
11359
11360 2001-06-05  Havoc Pennington  <hp@redhat.com>
11361
11362         * gtk/gtkspinbutton.c (gtk_spin_button_set_range): clamp the value 
11363         to the range that was set
11364
11365         * gtk/gtkrange.c: add value_changed signal, primarily 
11366         intended for use with GtkScale
11367         (gtk_range_set_increments): new function
11368         (gtk_range_set_range): new function with weird name
11369         (gtk_range_set_value): new function
11370         (gtk_range_get_value): new function
11371
11372         * gtk/gtkspinbutton.c (gtk_spin_button_get_value): rename 
11373         from gtk_spin_button_get_value_as_float(). Compat #define
11374         added for get_value_as_float.
11375
11376         * gtk/gtkhscale.c (gtk_hscale_new_with_range): new function
11377
11378         * gtk/gtkvscale.c (gtk_vscale_new_with_range): new function
11379
11380 Tue Jun  5 14:57:18 2001  Jonathan Blandford  <jrb@redhat.com>
11381
11382         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_get_size): Fix bug #55573
11383
11384 Mon Jun  4 12:41:25 2001  Owen Taylor  <otaylor@redhat.com>
11385
11386         * gtk/gtkwidget.h: Deprecate gtk_widget_set().
11387
11388         * tests/testgtk.c (create_tooltips): Remove usage of
11389         gtk_widget_set().
11390
11391 2001-06-05  Havoc Pennington  <hp@redhat.com>
11392
11393         * gtk/gtkcolorsel.c: Use new mnemonic convenience functions
11394
11395         Applying patch from Jeff Franks, with function docs added.
11396         
11397         * gtk/gtkcheckbutton.c (gtk_check_button_new_with_mnemonic):
11398         remove call to set_mnemonic_widget, change docs a bit.  
11399
11400         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_new_with_mnemonic):
11401         new function
11402
11403         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_new_with_mnemonic):
11404         new function
11405
11406         * gtk/gtkmenuitem.c (gtk_menu_item_new_with_mnemonic): new function
11407
11408         * gtk/gtkradiobutton.c (gtk_radio_button_new_with_mnemonic): new
11409         function
11410         (gtk_radio_button_new_with_mnemonic_from_widget): new function
11411
11412         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_new_with_mnemonic):
11413         new function
11414
11415         * gtk/gtktogglebutton.c (gtk_toggle_button_new_with_mnemonic): new
11416         function        
11417
11418         * gtk/gtklabel.c (gtk_label_new_with_mnemonic): Improve docs on 
11419         auto-selection of mnemonic widget.
11420
11421 Mon Jun  4 15:05:24 2001  Jonathan Blandford  <jrb@redhat.com>
11422
11423         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_max_width):
11424         Fix segfault found by Vitaly Tishkov <tvv@sparc.spb.su>.
11425         (gtk_tree_view_column_set_min_width): ditto.
11426
11427 Tue Jun  5 11:04:06 2001  Owen Taylor  <otaylor@redhat.com>
11428
11429         * gdk/gdkpixmap.h (GDK_PIXMAP_GET_CLASS): 
11430         s/GdkPixmapClass/GdkPixmapObjectClass/. (#51890, Jeff Franks)
11431
11432 Mon Jun  4 12:50:11 2001  Owen Taylor  <otaylor@redhat.com>
11433
11434         * gtk/gtkctree.c (gtk_ctree_insert_gnode): Add a missing
11435         gtk_clist_thaw().
11436
11437 2001-06-04  Havoc Pennington  <hp@pobox.com>
11438
11439         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Ignore 
11440 r       eleases for buttons 6, 7
11441
11442 2001-06-04  Havoc Pennington  <hp@redhat.com>
11443
11444         * gtk/gtkseparatormenuitem.h: Fix a search-and-replace screwup
11445         (s/CHECK/SEPARATOR/ gone awry). Patch from Jeff Franks, bug
11446         #55562
11447
11448 2001-06-04  Havoc Pennington  <hp@redhat.com>
11449
11450         * gtk/gtktextview.c (gtk_text_view_size_request): handle case
11451         where text_view->layout == NULL by assuming its size is 0, 
11452         i.e. same as if we haven't done any reflow. Reported by 
11453         Hidetoshi Tajima #55448 
11454
11455 2001-06-04  Havoc Pennington  <hp@redhat.com>
11456
11457         * gdk/x11/gdkevents-x11.c (gdk_event_translate): support button 6
11458         and 7 for scroll left/right, from Thomas Broyer
11459
11460 2001-05-10  Havoc Pennington  <hp@redhat.com>
11461
11462         * gtk/gtksettings.c (gtk_settings_get_property): Handle case where
11463         we need to parse the xsetting as if it were an RC file string.
11464
11465         * gtk/gtkcolorsel.c (gtk_color_selection_class_init): load initial
11466         value of palette from settings, not from static variable
11467
11468         * gdk/x11/gdkevents-x11.c: add color palette, toolbar mode to
11469         xsettings translation table
11470
11471         * gtk/gtktoolbar.c (gtk_toolbar_new): Remove arguments, because 
11472         hardcoding the toolbar style conflicts with new customizable 
11473         toolbar style philosophy
11474         (gtk_toolbar_class_init): add settings for default toolbar style;
11475         these are used unless the app specifically forces a toolbar style
11476
11477         * gtk/gtksettings.c (settings_install_property_parser): only
11478         return at the start if we warn and parser == NULL
11479
11480         * gtk/gtkcolorsel.c (gtk_color_selection_finalize): disconnect the
11481         palette changed handler so we don't notify dead color selections
11482
11483         * gtk/gtkstyle.c (gtk_default_draw_shadow): handle
11484         xthickness/ythickness of 0 or 1 properly 
11485         (gtk_default_draw_resize_grip): clear the background behind the
11486         resize grips, and align to bottom right if we square the 
11487         area to be drawn.
11488
11489         * gtk/gtkstatusbar.c (gtk_statusbar_init): set horizontal usize on 
11490         statusbar label to 1, so it doesn't make toplevels resize oddly
11491         (gtk_statusbar_size_request): add grip size to request
11492         (gtk_statusbar_size_allocate): hack so the hbox still works with 
11493         the grip size in the request
11494
11495         * gtk/gtktoolbar.c (gtk_toolbar_show_all): override to fix 
11496         bug where showing all on a toplevel makes the toolbar 
11497         button text appear despite the toolbar mode
11498
11499         * gtk/gtkmenubar.c: add internal padding style property
11500
11501         * gtk/gtktoolbar.c: Add internal padding style property; add
11502         shadow type style property
11503
11504         * gtk/gtkmenubar.c (gtk_menu_bar_paint): paint box with widget
11505         state; and put Container::border_width outside the frame
11506
11507         * gtk/gtktextview.c: don't draw focus rectangle if we're in
11508         interior focus mode, we just use blinking cursor
11509
11510 2001-06-04  Havoc Pennington  <hp@redhat.com>
11511
11512         * configure.in: Make gdk-pixbuf have same version number as GTK
11513
11514 2001-06-04  Havoc Pennington  <hp@redhat.com>
11515
11516         * gtk/gtkspinbutton.c: Get rid of stupid g_return_if_fail on 
11517         digits greater than 6. If there actually are limits (which there
11518         likely aren't), should clamp to them not warn.
11519         (gtk_spin_button_new_with_range): don't take log of 0
11520         (gtk_spin_button_size_request): use digits to compute size
11521         request, rather than step increment.
11522
11523         * tests/testgtk.c (create_spins): test larger values of digits
11524         
11525         * gtk/gtkfontsel.c (gtk_font_selection_init): scroll to selected
11526         font on map not expose, so we don't get weirdness during scrolling
11527
11528 2001-06-04  Havoc Pennington  <hp@redhat.com>
11529
11530         * gtk/gtkclist.c (vadjustment_value_changed): Apply fix from
11531         Sam Solon, bug #54577, update value even if not drawable.
11532
11533 2001-06-04  Havoc Pennington  <hp@redhat.com>
11534
11535         * gtk/gtkrange.c (gtk_range_scroll_event): change SCROLL_RIGHT to
11536         SCROLL_LEFT, reported by Thomas Broyer.
11537
11538 2001-06-04  Havoc Pennington  <hp@redhat.com>
11539
11540         * gtk/gtkrange.c (gtk_range_adjustment_value_changed): 
11541         Process updates immediately, to prevent funny lag effect
11542         when scrolling, at some mild potential efficiency cost.
11543
11544 2001-06-04  Havoc Pennington  <hp@redhat.com>
11545
11546         * gtk/gtkrange.c (gtk_range_button_press): on middle click, center
11547         slider on the click.
11548
11549 2001-06-03  Havoc Pennington  <hp@pobox.com>
11550
11551         * gtk/gtkstyle.c (gtk_default_draw_slider): make this special-case
11552         hscale/vscale details, so we can use it for scrollbar as well.
11553
11554         * tests/testgtk.c (reformat_value): honor digits from GtkScale
11555
11556         * gtk/gtkenums.h (GtkTroughType): Remove this enum
11557         (GtkScrollType): add START and END from GtkTroughType
11558
11559         * gtk/gtkstyle.c (gtk_default_draw_slider): was not properly using
11560         its x/y arguments
11561
11562         * gtk/gtkrange.h, gtk/gtkrange.c, gtk/gtkscrollbar.h,
11563         gtk/gtkscrollbar.c, gtk/gtkscale.h, gtk/gtkscale.c,
11564         gtk/gtkhscrollbar.h, gtk/gtkhscrollbar.c, gtk/gtkvscrollbar.h,
11565         gtk/gtkvscrollbar.c, gtk/gtkhscale.h, gtk/gtkhscale.c,
11566         gtk/gtkvscale.h, gtk/gtkvscale.c: Rewrite GtkRange and subclasses.
11567
11568         Notable changes in the process:
11569          
11570         - stepper_size style property is the height for vertical 
11571           ranges, width for horizontal; the other dimension matches
11572           the trough size
11573         - add ability to do NeXT-style steppers (and several other styles
11574           that don't make any sense)
11575         - added min_slider_length, fixed_slider_length properties to
11576           GtkScrollbar
11577         - cleaned some private (or at least useless) functions out of
11578           gtkscale.h    
11579         - moved bindings to GtkScale from subclasses, even arrow keys,
11580           since blind users don't know scale orientation.
11581         - change move_slider action signal to use new GtkScrollType,
11582           remove GtkTroughType argument
11583         - digits rounds the values a range will input to the given 
11584           number of decimals, but will not try to force adjustment 
11585           values set by other controllers. That is, we no longer
11586           modify adjustment->value inside a value_changed handler.
11587         - added getters for GtkScale setters
11588         - middle-click begins a slider drag
11589         
11590 Fri Jun  1 18:54:47 2001  Jonathan Blandford  <jrb@redhat.com>
11591
11592         * gtk/gtktreeview.c: (gtk_tree_view_focus): Initial stab at
11593         getting the focus code to work.
11594         (gtk_tree_view_class_init): Add a bunch of keybindings.
11595
11596         * gtk/gtktreeviewcolumn.c
11597         (gtk_tree_view_column_set_cell_data_func):
11598         s/GtkCellDataFunc/GtkTreeCellDataFunc.
11599         (_gtk_tree_view_column_set_tree_view): Use "notify::model" instead
11600         of "properties_changed" to help justify the death of the latter
11601         signal. (-:
11602
11603         * tests/testtreefocus.c (main): Let some columns be focussable to
11604         test focus better.
11605
11606 2001-06-01  Havoc Pennington  <hp@redhat.com>
11607
11608         * gtk/gtkentry.c (gtk_entry_commit_cb): implement overwrite mode
11609         
11610         * gtk/gtktextview.c (gtk_text_view_commit_handler): don't
11611         overwrite in overwrite mode if we already deleted the selection
11612         and replaced it with new text.  
11613
11614         * gtk/gtklabel.c (gtk_label_select_region_index): if you set the
11615         selection to an empty range, clear the clipboard if we owned it.
11616         (gtk_label_set_selectable): give up selection if we become
11617         unselectable.
11618         (gtk_label_state_changed): override state changed to unselect text
11619         when insensitive
11620         (get_text_callback): add paranoia check that indexes aren't
11621         outside of label->text
11622         (gtk_label_select_region): make -1 for start_offset mean "end of
11623         label," for consistency with GtkEditable
11624
11625         * gtk/gtkmessagedialog.c (gtk_message_dialog_new): honor
11626         GTK_DIALOG_NO_SEPARATOR flag
11627
11628 Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>
11629
11630         * gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix 
11631         notifications on non-existant "enable_arrow_keys".
11632         (#53753, Skip Montanaro)
11633
11634 Fri Jun  1 11:31:55 2001  Owen Taylor  <otaylor@redhat.com>
11635
11636         * gdk/gdkrectangle.c (gdk_rectangle_get_type): Add 
11637         GDK_TYPE_RECTANGLE.
11638
11639         * gtk/gtkwidget.c (gtk_widget_class_init): Fix type
11640         of allocation argument be GDK_TYPE_RECTANGLE.
11641
11642 Thu May 31 12:43:57 2001  Owen Taylor  <otaylor@redhat.com>
11643
11644         * gtk/gtkoptionmenu.c: Account for the fact that the border
11645         width is _outside_ the window. (Fixes #54585, bug found
11646         by Bastien Nocera.)
11647
11648 Wed May 30 15:56:30 2001  Owen Taylor  <otaylor@redhat.com>
11649
11650         * gtk/gtksettings.c (gtk_settings_get_property): Validate
11651         value from GDK settings against parameter spec.
11652
11653         * gdk/x11/gdkevents-x11.c (gdk_setting_get): Add assignments
11654         to temporary values and use g_value_transform(), since
11655         thinking that GValue was going to be easy or efficient
11656         to use was, of course, a mistake.
11657
11658         * gtk/gtksettings.c: Add cursor blink setting.
11659         
11660         * gdk/x11/gdkevents-x11.c: Add cursor blink X settings.
11661
11662         * gtk/gtkentry.c: Add cursor blinking.
11663
11664         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): Use
11665         cursor blink global settings.
11666
11667         * gtk/gtkentry.c (gtk_entry_button_press): Add notification
11668         for :text_position in places where it is missing.
11669
11670 Tue May 29 18:17:11 2001  Owen Taylor  <otaylor@redhat.com>
11671
11672         * autogen.sh (have_libtool): Fix GNU sedism (#55430)
11673
11674 Tue May 29 17:40:29 2001  Owen Taylor  <otaylor@redhat.com>
11675
11676         * configure.in (GTK_DEP_CFLAGS): Use $PKG_CONFIG,
11677         not pkg-config. (#51032)
11678
11679         * gdk/gdkproperty.h: Remove inappropriate G_GNUC_CONST
11680         (fixes #51952, James Henstridge)
11681         
11682 2001-05-27  Alexander Larsson  <alla@lysator.liu.se>
11683
11684         * gtk/gtkstock.h (GTK_STOCK_GO_UP):
11685         Rename to the more correct gtk-go-up.
11686
11687         * gtk/stock-icons/stock_menu_sort_ascending.png:
11688         Added new file.
11689         
11690         * gtk/stock-icons/stock_menu_sort_descending.png:
11691         Changed to show descending instead of ascending.
11692
11693         * gtk/gtkiconfactory.c:
11694         Added menu size icon to sort ascending.
11695
11696         * gtk/stock-icons/Makefile.am:
11697         Added stock_menu_sort_ascending.png.
11698         
11699         * gtk/gtkseparatormenuitem.c:
11700         Use correct typenames.
11701
11702 Sun May 20 20:07:35 2001  Tim Janik  <timj@gtk.org>
11703
11704         * gtk/gtksignal.[hc] (gtk_signal_connect_full): make hanlder id a
11705         gulong as in GSignal.
11706
11707 Fri May 25 19:04:17 2001  Jonathan Blandford  <jrb@redhat.com>
11708
11709         * gtk/gtktreeview.c (gtk_tree_view_calc_size): Remove almost all
11710         instances of GtkCellRenderer in code (all but dnd icon code).
11711         Virtualized in GtkTreeViewColumn.  Now I need to move focus in
11712         there, and I can do multiple Cells per column.
11713
11714         * gtk/gtktreeviewcolumn.c: Proxy all cell calls correctly
11715
11716         * gtk/gtktreemodel.c (gtk_tree_row_reference_new_proxy): fix bug
11717         when model was unreffed prior to removing the row reference.
11718
11719 2001-05-25  Havoc Pennington  <hp@redhat.com>
11720
11721         * gtk/gtkiconfactory.c: fix so that default icons are created if 
11722         you call gtk_stock_list_ids()
11723
11724         * demos/gtk-demo/stock_browser.c (create_model): sort stock items
11725         in list
11726
11727 2001-05-25  Havoc Pennington  <hp@redhat.com>
11728
11729         * gtk/gtkiconfactory.c (gtk_icon_set_get_sizes): get sizes an icon
11730         set can render without falling back to missing image icon
11731
11732         * gtk/gtktextview.c (gtk_text_view_size_request): request full
11733         size of text, instead of random values
11734
11735         * gtk/gtktreeview.c (gtk_tree_view_size_request): request full
11736         size of tree view, instead of random values
11737
11738         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): render fallback
11739         image in an appropriate size
11740
11741         * gtk/gtkstock.h: Rename the stock items including _BUTTON_,
11742         etc. not to include that. i.e. s/GTK_STOCK_BUTTON_OK/GTK_STOCK_OK/
11743
11744         Throughout: fix GTK_STOCK_BUTTON_ instances
11745         
11746         * gtk/gtkstock.h, gtk/gtkstock.c, gtk/gtkiconfactory.h,
11747         gtk/gtkiconfactory.c, gtk/stock-icons/Makefile.am:
11748         Add a bunch of new stock items/icons
11749
11750         * gtk/gtktreeview.c (gtk_tree_view_insert_column_with_data_func):
11751         new function, convenience for inserting columns with a data func
11752
11753         * gtk/gtkiconfactory.c: keep a list of all existing icon factories
11754         (_gtk_icon_factory_list_ids): use list of all factories to
11755         generate a list of all known IDs
11756
11757         * gtk/gtkstock.c (gtk_stock_list_ids): replace
11758         gtk_stock_list_items() with a function that returns all IDs known
11759         including those for GtkIconFactory.
11760
11761 2001-05-25  Hans Breuer  <hans@breuer.org>
11762
11763         * gdk/win32/gdkgc-win32.c : made fil mode GDK_STIPPLED actually
11764         work -> check boxes and radio buttons are drawn now, even on win9x.
11765         Improved line settings a bit, still no clue how to get really dotted
11766         lines on win9x, on NT it's PS_ALTERNATE.
11767
11768         * gdk/win32/gdkwindow-win32.c : use SafeAdjustWindowRect for 
11769         GDK_HINT_MIN_SIZE as well
11770
11771         * gdk/win32/makefile.am : added gdkkeys-win32.c to EXTRA_DIST
11772
11773         * gtk/gtk.def : updated
11774
11775         * gtk/gtktreeprivate.h : change column_drop_func to be a function
11776         pointer not a function pointer pointer
11777
11778         * tests/testdnd.c : include <stdlib.h> for putenv prototype
11779
11780         * tests/testsocket.c : made it compile on win32 again
11781
11782         * tests/makefile.msc : one more test-app uses prop-editor.obj
11783
11784 2001-05-22  Havoc Pennington  <hp@pobox.com>
11785
11786         * gtk/gtkbin.c (gtk_bin_get_child): New function
11787
11788 Wed May 23 20:07:53 2001  Owen Taylor  <otaylor@redhat.com>
11789
11790         * gtk/gtkimcontextsimple.c: Add Mode_Switch to list of keys
11791         to ignore when doing compose processing.
11792
11793 2001-05-22  Joe Shaw  <joe@ximian.com>
11794
11795         * gtk/gtktextiter.c (_gtk_text_btree_get_iter_at_last_toggle): 
11796         Simplify as suggested by Havoc. Just get the last iter and work
11797         backward to the tag instead of getting a line and working back from
11798         there. Fixes passing in an invalid offset to
11799         iter_init_from_byte_offset().
11800
11801 Tue May 22 16:25:27 2001  Jonathan Blandford  <jrb@redhat.com>
11802
11803         * gtk/gtktreeview*.h: 
11804         * gtk/gtkcell*.h:
11805         * gtk/gtk*store.h:
11806         Added patch from Jeff Franks <jcf@tpg.com.au> to add GET_CLASS
11807         macros to all objects.
11808
11809 Tue May 22 15:13:52 2001  Jonathan Blandford  <jrb@redhat.com>
11810
11811         * gtk/gtkcellrenderertext.c
11812         (gtk_cell_renderer_text_set_fixed_size): Evil function to deal
11813         with very large (TM) amounts of text.  May be moved to
11814         GtkCellRenderer in the future, though I'm not sure it wants to be
11815         this accessible.
11816
11817         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_button):
11818         More sanity brought to this class.  I like it.
11819
11820         * tests/testtreecolumns.c (ViewColumnModel): Amazingly scary test
11821         case.  Kids, don't try this at home.
11822
11823         * gtk/gtktreemodel.c (gtk_tree_model_get_iter_root): new
11824         convenience function.
11825
11826         * gtk/gtkwindow.c (gtk_window_set_geometry_hints): Fix typo in docs.
11827
11828 2001-05-21  Alexander Larsson  <alexl@redhat.com>
11829
11830         * gtk/gtkfontsel.c:
11831         Added properties. Based on patch by Lee Mallabone.
11832
11833         * gtk/gtkruler.c:
11834         * gtk/gtkhruler.c:
11835         * gtk/gtkvruler.c:
11836         * gtk/gtktext.c:
11837         * gtk/gtktextview.c:
11838         Converted GtkArg to GParam. Based on patches by John Margaglione.
11839
11840         * tests/Makefile.am:
11841         * tests/testtext.c:
11842         Add a property editor to testtext.
11843         
11844 Mon May 21 11:29:21 2001  Owen Taylor  <otaylor@redhat.com>
11845
11846         * gtk/gtk{h,v,}paned.c: Only show the separator if 
11847
11848         * configure.in: Fixed reversed conditional causing all image
11849         libraries to be linked in.
11850
11851 2001-05-21  Joe Shaw  <joe@ximian.com>
11852
11853         * gtk/gtklayout.c (gtk_text_layout_get_lines): Remove the assertion
11854         that top_y needs to be >= 0.
11855
11856 2001-05-11  Havoc Pennington  <hp@pobox.com>
11857         
11858         * gdk/x11/gdkmain-x11.c: Improve error messages for X errors and
11859         losing connection to the X server.
11860
11861 Sun May 20 13:59:20 2001  Owen Taylor  <otaylor@redhat.com>
11862
11863         * configure.in: Start checks for X from pangox/pangoxft
11864         CFLAGS to avoid duplicate libraries.
11865
11866         * gdk/Makefile.am (LDFLAGS): Remove extra -lm.
11867
11868         * configure.in (GDK_PIXBUF_PACKAGES): Fix GDK_PIXBUF_PACKAGES
11869         to include gobject.
11870         
11871 2001-05-18  Alexander Larsson  <alexl@redhat.com>
11872
11873         * gtk/gtkspinbutton.c:
11874         Convert GtkArgs to GParams. Based on patch by John Margaglione.
11875         Also do size request reasonable for MAXDOUBLE. Previously it printed
11876         the limits to a buffer and overran it. Instead do it using log10() and
11877         limit the width to 10 digits.
11878         
11879         * gtk/gtkwidget.c (gtk_widget_get_property):
11880         Correctly handle setting the parent property to NULL.
11881
11882 Fri May 18 15:26:26 2001  Owen Taylor  <otaylor@redhat.com>
11883
11884         * gtk/gtktextview.c (gtk_text_view_style_set): Reset 
11885         style attributes even if the widget isn't realized.
11886
11887         * demos/gtk-demo/main.c: Use a slightly smaller font.
11888
11889 Fri May 18 14:25:20 2001  Owen Taylor  <otaylor@redhat.com>
11890
11891         * gtk/gtkcontainer.c: Remove reallocate-redraws property.
11892         This is something that only a widget writer would ever want
11893         to change.
11894
11895         * gtk/gtksignal.c: Handle G_SIGNAL_TYPE_STATIC_SCOPE for
11896         gtk_signal_emit_by_name().
11897
11898         * gtk/gtkviewport.c: Fix some warnings.
11899
11900         * gtk/gtkwidget.c gtk/gtksizegroup.c: Add "size group" facility
11901         allowing the requisitions of multiple widgets to be grouped
11902         together.
11903
11904         * tests/testgtk.c: Add GtkSizeGroup test
11905
11906         * demos/gtk-demo/sizegroup.c: Add GtkSizeGroup demo.
11907
11908         * demos/gtk-demo/main.c demos/gtk-demo/pixbufs.c: Fix some
11909         warnings.
11910
11911         * configure.in: Switch to using AM_GLIB_GNU_GETTEXT.
11912
11913 2001-04-28  Martin Baulig  <baulig@suse.de>
11914
11915         * gtk/gtkimagemenuitem.[ch]: Renamed gtk_image_menu_item_add_icon()
11916         to gtk_image_menu_item_set_icon() and made it work if there's already
11917         an image.
11918         (gtk_image_menu_item_new): This function doesn't take any arguments anymore.
11919         (gtk_image_menu_item_new_with_label): New function.
11920
11921 Thu May 17 16:20:04 2001  Jonathan Blandford  <jrb@redhat.com>
11922
11923         * demos/gtk-demo/main.c (fontify): It's the worlds ugliest
11924         highlighting code!!!!  The result is okay so long as you don't try
11925         to stress it.  It also highlights a bug in the TextView so it's in
11926         an unproportional font right now until it's fixed.
11927
11928         *demos/gtk-demo/*.c: Clean up code a bit to make it
11929         ugly-parser(TM) friendly. (-:
11930
11931 2001-05-17  Joe Shaw  <joe@ximian.com>
11932
11933         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Remove the assertions
11934         that x_offset and y_offset must be >= 0. Clip the cursor being drawn
11935         if it is only partially onscreen.
11936
11937 Thu May 17 17:10:13 2001  Owen Taylor  <otaylor@redhat.com>
11938
11939         * gtk/gtkentry.c: Make logical motion and deletion by graphemes, 
11940         not by characters.
11941
11942         * gtk/gtkentry.c: Handle "trailing" returns from Pango when they
11943         are not zero or one; that is, when graphemes of multiple characters
11944         are involved.
11945
11946         * gtk/gtktextlayout.c (line_display_index_to_iter): Remove unnecessary
11947         FIXME.
11948
11949 2001-05-17  Alexander Larsson  <alla@lysator.liu.se>
11950         
11951         * gtk/gtkbbox.c:
11952         Add properties, based on patch by Lee Mallabone.
11953
11954         * gtk/gtknotebook.c:
11955         * gtk/gtktoolbar.c:
11956         Convert from GtkArg to GParam, based on patch by John Margaglione.
11957         
11958         * gtk/gtkhscale.c:
11959         * gtk/gtkvscale.c:
11960         * gtk/gtkhscrollbar.c:
11961         * gtk/gtkvscrollbar.c:
11962         * gtk/gtkrange.c:
11963         Move adjustment property to GtkRange.
11964
11965         * gtk/gtklabel.c:
11966         Setup mnemonics on property changes
11967
11968         * gtk/gtkwidget.c (gtk_widget_get_property):
11969         GdkExtensionMode is an enum, not a flag. Set it with
11970         g_value_set_enum ().
11971
11972         * tests/prop-editor.c:
11973         Better propery editor.
11974
11975         * tests/testgtk.c:
11976         Add new property test. Pass zero to the property editor to
11977         get properties from all derived types.
11978         
11979 Sun May 13 12:01:12 2001  Owen Taylor  <otaylor@redhat.com>
11980
11981         * autogen.sh (have_automake): Require libtool-1.4,
11982         automake-1.4p1.
11983
11984         * acinclude.m4: Remove libtool macros.
11985
11986         * gdk-pixbuf/Makefile.am: Add dependencies to loade
11987         modules.
11988
11989         * gdk/Makefile.am: Add dependency on libgdk_pixbuf.la
11990         for libgdk.
11991
11992         * gtk/Makefile.am: Add dependency on libgdk_pixbuf.la
11993         libgdk.la for libgtk.
11994
11995         * modules/input/Makefile.am: Make modules have full
11996         dependencies.
11997
11998 Wed May 16 14:06:01 2001  Jonathan Blandford  <jrb@redhat.com>
11999
12000         * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): fix bug
12001         #54699 where paths weren't being checked for correctness.
12002
12003 Tue May 15 20:13:24 2001  Jonathan Blandford  <jrb@redhat.com>
12004
12005         * gtk/gtktreeviewcolumn.c: You can now set all sorts of properties
12006         in any order you wan, whether or not the column is added to the
12007         tree, or the tree is realized.  Yay!
12008
12009         * gtk/gtktreeviewcolumn.c
12010         (gtk_tree_view_column_setup_sort_column_id_callback): handle
12011         sorting columns a lot saner
12012
12013         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_reorderable):
12014         new function to actually set wether or not a column is
12015         reorderable.
12016
12017         * gtk/gtktreeview.c (gtk_tree_view_unrealize): Only destroy things
12018         if we have 'em.
12019
12020         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_set_tree_view):
12021         Fix nasty bug where we were showing the button just before
12022         realizing it.  As a result, the parent window was
12023         tree_view->window instead of tree_view->priv->header_window.
12024
12025         * gtk/gtktreeview.c (gtk_tree_view_set_reorderable): new property
12026         to let you easily reorder a list or tree.
12027
12028 2001-05-15  Alexander Larsson  <alla@lysator.liu.se>
12029
12030         * gtk/gtkpacker.c: Apply patch from John Margaglione that converts
12031         from args to properties.
12032
12033 Tue May 15 10:11:59 2001  Owen Taylor  <otaylor@redhat.com>
12034
12035         * gtk/gtkpreview.c: Apply patch from John Margaglione converting
12036         from args to properties. (#51957)
12037
12038         * gtk/gtkscale.c (gtk_scale_class_init): Move install property
12039         calls to after ->set_property call.
12040
12041 Mon May 14 14:56:21 2001  Owen Taylor  <otaylor@redhat.com>
12042
12043         * tests/prop-editor.c: Block against redundant changes.
12044
12045         * gtk/gtkpaned.c gtk/gtk[hv]paned.c: Add position, position_set
12046         properties.
12047
12048 Sun May 13 18:40:04 2001  Owen Taylor  <otaylor@redhat.com>
12049
12050         * gdk/gdkpixmap.h: Remove creative formatting.
12051
12052 Thu May 10 19:22:28 2001  Owen Taylor  <otaylor@redhat.com>
12053
12054         * gtk/gtktogglebutton.c:  Patch from John Margaglione converting to
12055         property API. (#51669)
12056
12057         * gtk/gtkscale.c: Patch from John Margaglione converting to
12058         property API. (#51891)
12059
12060         * gtk/gtkaccellabel.c: Applied patch from Lee Mallabone, converting
12061         to property API. (#50985)
12062
12063 Fri May 11 20:13:44 2001  Tim Janik  <timj@gtk.org>
12064
12065         * gtk/gtkmain.c (gtk_main_do_event): remember widget's double
12066         buffering state across expose event, so we still call end_paint().
12067
12068 2001-05-11  Alexander Larsson  <alexl@redhat.com>
12069
12070         * gtk/gtkhsv.c (paint_triangle):
12071         Expose the ring in the triangle at the correct place when
12072         exposing just a part of the triangle.
12073
12074         * gtk/gtkwindow-decorate.c (gtk_decorated_window_focus_change):
12075         Return FALSE, or window focusing will not work.
12076
12077 2001-05-11  Havoc Pennington  <hp@pobox.com>
12078
12079         * gtk/gtkimage.c (gtk_image_new_from_stock): docs, fixes bug
12080         #54144
12081
12082         * gtk/gtkcolorsel.c (gtk_color_selection_new): docs, fixes
12083         bug #54330
12084
12085 Fri May 11 02:53:57 2001  Tim Janik  <timj@gtk.org>
12086
12087         * gtk/gtktogglebutton.c (gtk_toggle_button_expose): don't
12088         propagate exposes to NULL child.
12089
12090         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed): guard
12091         against not having one of the scrollbars.
12092
12093         * gtk/gtklabel.c (gtk_label_setup_mnemonic): clean up after us,
12094         we don't keep a mnemonic window if we have no mnemonic installed.
12095
12096 Fri May 11 01:05:00 2001  Tim Janik  <timj@gtk.org>
12097
12098         * gtk/gtktypeutils.h: grum, gtk_type_class() is not GNUC_CONST
12099         it has the _important_ side effect of initializing a class.
12100
12101 2001-05-10  Alexander Larsson  <alexl@redhat.com>
12102
12103         * gdk/linux-fb/gdkprivate-fb.h:
12104         Make sure you can compile out the implementation/wrapper assert
12105         macros.
12106
12107         * gdk/linux-fb/gdkdrawable-fb2.c:
12108         Check implementation/wrappers, initialize type for pixmap dummys.
12109
12110         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image):
12111         Hide the cursor if reading from the screen.
12112
12113         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic):
12114         Fix sign bug in tiling code.
12115
12116         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_clear_area):
12117         Handle background pixmaps.
12118
12119 Wed May  9 15:27:22 2001  Jonathan Blandford  <jrb@redhat.com>
12120
12121         * gtk/gtktreeview.c (gtk_tree_view_set_column_drag_function): New
12122         function to let user control where columns are dragged.
12123
12124         * gtk/gtktreeview.c (gtk_tree_view_key_press): Cancel drags if
12125         Escape is pressed.
12126
12127 Wed May  9 09:08:44 2001  Jonathan Blandford  <jrb@redhat.com>
12128
12129         * gtk/gtktreeview.c (gtk_tree_view_class_init): New
12130         "columns_changed" signal.
12131         (gtk_tree_view_motion_draw_column_motion_arrow): Change column
12132         motion code to draw arrows to the side if indicator is outside the
12133         widget.
12134         (gtk_tree_view_map_expanded_rows): Implement.
12135
12136 2001-05-07  Alexander Larsson  <alexl@redhat.com>
12137
12138         * demos/testpixbuf-save.c: 
12139         * demos/testpixbuf-drawable.c:
12140         Include gdkfb.h on linux-fb.
12141
12142 2001-05-07  Alexander Larsson  <alexl@redhat.com>
12143
12144         * gdk/linux-fb/gdkdnd-fb.c (get_toplevel_window_at):
12145         New function for getting toplevel window at position.
12146         (gdk_drag_find_window): Use get_toplevel_window () instead
12147         of gdk_window_get_pointer(). (gdk_drag_status): Use
12148         correct context for getting window.
12149
12150         * gdk/linux-fb/gdkproperty-fb.c (gdk_atom_name):
12151         g_strdup the atom name.
12152
12153         * gdk/linux-fb/gdkwindow-fb.c:
12154         Costmetic fix.
12155
12156         * gtk/gtkdnd.c (gtk_drag_source_handle_event):
12157         Add code for changing cursor on linux-fb backend (same as
12158         win32).
12159
12160 2001-05-07  Federico Mena Quintero  <federico@ximian.com>
12161
12162         * gtk/gtkwindow.c (gtk_window_focus): Test for bin->child being
12163         present before doing anything with it.  Patch from HÃ¥vard KvÃ¥len
12164         <havardk@netcom.no>.  Fixes Ximian bugzilla #2492 (OK, the bug
12165         report was not for the development branch of GTK+, but it applies
12166         anyways).
12167
12168 2001-05-04  Havoc Pennington  <hp@redhat.com>
12169
12170         * configure.in: fix some shell typos
12171
12172         * gtk/gtkcolorsel.c (gtk_color_selection_destroy): warning fix
12173
12174         * gtk/gtkimage.c: handle animations
12175
12176         * gtk/gtkcheckbutton.c (gtk_check_button_size_request): request
12177         border_width * 2, not just border_width
12178
12179         * gtk/gtkscale.c: add "format_value" signal to allow people
12180         to override the way values are drawn.
12181         (gtk_scale_get_value_size): fix width/height mistake,
12182         and compute size from actual displayed text, not 
12183         from made-up text.
12184
12185         * gtk/gtktexttag.c (gtk_text_tag_class_init): fix return type in 
12186         signal registration
12187
12188         * tests/testtext.c: Add "Remove all tags" menu item for testing
12189
12190         * gtk/gtktextbuffer.c (gtk_text_buffer_remove_all_tags): implement
12191
12192         * demos/gtk-demo/main.c (main): add hack so we can find modules
12193         without installing gtk
12194
12195         * demos/gtk-demo/textview.c (insert_text): demo font scaling
12196
12197         * gtk/gtkcellrenderertext.c: Add "scale" property (font scaling
12198         factor)
12199         (gtk_cell_renderer_text_set_property): remove some bogus
12200         g_object_notify
12201
12202         * gtk/gtktexttag.c: add "scale" property which is a font scaling
12203         factor
12204
12205         * gtk/gtktextlayout.c (add_text_attrs): add font scale attribute 
12206         to layout
12207
12208         * gtk/gtktextiter.c (gtk_text_iter_is_start): rename from
12209         gtk_text_iter_is_first
12210
12211 2001-01-06  Hans Breuer  <hans@breuer.org>
12212
12213         * gdk/gdk.def : updated exports
12214
12215         * gdk/win32/makefile.msc : -DGDK_ENABLE_BROKEN otherwise
12216         gdk won't compile anymore
12217  
12218         * gdk/win32/gdkevents-win32.c : initialize ret_val when
12219         processing GDK_FILTER functions, initialize event.key->hardware_keycode.
12220         Improved gdk_flush () to not only do pending drawing operations
12221         but also process all currently pending events. This should make
12222         the behaviour more similar to the X11 version.  
12223
12224         * gdk/win32/gdkgc-win32.c (predraw_set_background) : a background
12225         option needs to be set even if there is no GDK_GC_BACKGROUND.
12226         (gdk_win32_hdc_get) : use predraw_set_background () independent
12227         of value_mask. This allows to draw dashed lines leaving the original
12228         background intact.
12229
12230         * gdk/win32/gdkimage-win32.c (gdk_image_new_bitamp) : free data
12231         after processing, because we can't reuse it as the X11 version does.
12232
12233         * gtk/gtk.def : updated exports
12234
12235         * gtk/makefile.msc.in : added ATK, removed all test apps. (I
12236         would like to get rid of this file again, and use straight
12237         makefile.msc again, as the other Gtk+ subdirs do)
12238
12239         * test/makefile.msc (new file) : build the test apps here
12240
12241 2001-05-05  ERDI Gergo  <cactus@cactus.rulez.org>
12242
12243         * gdk/gdkpango.c (gdk_pango_get_item_properties): Peek
12244         strike-through setting
12245         (gdk_draw_layout_line_with_colors): Render strike-through
12246
12247 Sat May  5 10:06:24 2001  Owen Taylor  <otaylor@redhat.com>
12248
12249         * Release 1.3.5
12250
12251         * configure.in (GTK_MICRO_VERSION): Up to 1.3.5
12252
12253         * NEWS: Updated
12254
12255         * demos/gtk-demo/Makefile.am (EXTRA_DIST): Fix minor
12256         Makefile breakage.
12257
12258 Sat May  5 09:18:30 2001  Owen Taylor  <otaylor@redhat.com>
12259
12260         * demos/gtk-demo/images.c (progressive_timeout): Fix
12261         typo in filename.
12262
12263         * gtk/gtktreeview.c (gtk_tree_view_row_activated): Comment
12264         out FIXME warning; just too annoying.
12265
12266 2001-05-04  Alex Larsson  <alla@lysator.liu.se>
12267
12268         * gdk/linux-fb/gdkcolor-fb.c:
12269         Better error messages.
12270
12271         * gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_new):
12272         Initialize abs_x and abs_y.
12273         
12274         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic):
12275         Correct handling of stipple offset.
12276
12277         * gdk/linux-fb/gdkvisual-fb.c (gdk_visual_init):
12278         Treat directcolor framebuffers as truecolor.
12279         
12280 Thu May  3 14:13:49 2001  Owen Taylor  <otaylor@redhat.com>
12281
12282         * INSTALL.in HACKING gtk/gtkaccessible.[ch] gtk/gtk.c: Add
12283         dependency on Atk for accessibility support.
12284
12285         * configure.in **/Makefile.am: Major reworking of substituted
12286         variables for CFLAGS/LIBS to make a lot more sane and 
12287         keep the the compile/link lines a bit shorter.
12288
12289         * gdk/x11/gdkkeys-x11.c: Fix #endif with trailing stuff.
12290
12291 Thu May  3 08:10:54 2001  Owen Taylor  <otaylor@redhat.com>
12292
12293         * gtk/gtktexttag.c (gtk_text_tag_class_init): Fix return
12294         value to be G_TYPE_BOOLEAN, not G_TYPE_INT, also,
12295         use _gtk_boolean_handled_accumulator.
12296
12297 Thu May  3 07:00:09 2001  Owen Taylor  <otaylor@redhat.com>
12298
12299         * gtk/gtktextview.c: Patch from Juan Pablo Mendoza Mendoza
12300         to fix things so clicking inside selection leaves cursor
12301         at point where clicked. (#50324)
12302
12303         * gtk/gtksettings.c (gtk_settings_class_init): Restore
12304         sane value for default double click time.
12305
12306         * tests/testtext.c (test_init): Really path to input modules.
12307
12308 2001-05-03  Sven Neumann  <sven@convergence.de>
12309
12310         * demos/testpixbuf-save.c: include target-specific headers as
12311         done in testpixbuf-drawable.c
12312
12313 Wed May  2 20:36:38 2001  Owen Taylor  <otaylor@redhat.com>
12314
12315         * gtk/gtkentry.c (gtk_entry_real_insert_text): Reduce
12316         new_text_length appropriately when we run into the 
12317         size limit for the entry. (#53445, reported by Jeff Franks)
12318
12319         * tests/testgtk.c (create_entry): Remove most of the
12320         property toggle buttons. Replace with a "Props" button
12321         that brings up a property editor.
12322
12323         * tests/prop-editor.[ch] test/testtreeview.c tests/Makefile.am:
12324         Split the property editor code out for reuse, improve.
12325
12326 Wed May  2 17:26:22 2001  Owen Taylor  <otaylor@redhat.com>
12327
12328         * gdk/x11/gdkevents-x11.c gdk/x11/gdkwindow-x11.c: Always
12329         trap errors around calls to XSetInputFocus since we have
12330         no way of knowing reliably whether we are viewable or
12331         not. (#53947)
12332
12333 Tue May  1 09:21:23 2001  Jonathan Blandford  <jrb@redhat.com>
12334
12335         * gtk/gtktreeview.c (gtk_tree_view_button_release_drag_column):
12336         fix bug in dropping columns.  Moving columns now basically works
12337         modula some fine tuning.
12338
12339 Tue May  1 19:09:21 2001  Jonathan Blandford  <jrb@redhat.com>
12340
12341         * gtk/gtktreeview.c (gtk_tree_view_horizontal_autoscroll): Add
12342         autoscroll support.  It mostly works, but could use some fine
12343         tuning.
12344         * gtk/gtktreeview.c (gtk_tree_view_button_release_drag_column):
12345         Actually move the column.
12346
12347 Mon Apr 30 20:29:27 2001  Owen Taylor  <otaylor@redhat.com>
12348
12349         * gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtkoptionmenu.c 
12350           gtk/gtkspinbutton.c gtk/gtkstyle.c gtk/gtkwidget.c:
12351           New default theme! A slighly improved version of the 2.0 Raleigh
12352           theme, with Windows-esque focus/drawing default. 
12353           (GtkWidget::interior_focus defaults to TRUE.)
12354
12355         * gtk/gtkstyle.[ch]: Add a text_aa color halfway between text and base.
12356
12357 2001-04-30  Havoc Pennington  <hp@pobox.com>
12358
12359         * tests/testtext.c (line_numbers_expose): fix to work with
12360         gtk_paint_layout change
12361
12362 Mon Apr 30 19:18:07 2001  Owen Taylor  <otaylor@redhat.com>
12363
12364         * gtk/gtkstyle.[ch] gtk/gtkaccellabel.c gtk/gtkcellrenderertext.c
12365           gtk/gtkhruler.c gtk/gtkhscale.c gtk/gtklabel.c gtk/gtkprogressbar.c
12366           gtk/gtkvruler.c gtk/gtkvscale.c: Add an extra parameter
12367           use_text to gtk_paint_label() to deal with style->bg[] vs style->text[].
12368
12369         * gtk/gtkbbox.c gtk/gtkdialog.c: Tweak padding some to deal
12370           with GtkWidget::interior_focus = TRUE better.
12371
12372         * gtk/gtkbutton.c: Switch ::default_spacing to ::default_border,
12373         ::default_outside_border for more flexibility.
12374
12375         * gtk/gtkwidget.c (gtk_widget_style_get_valist): Remove 
12376         G_VALUE_NO_COPY_CONTENTS, to correspond with the recent
12377         change that had to be made with g_object_get.
12378
12379 Sun Apr 29 20:13:40 2001  Jonathan Blandford  <jrb@redhat.com>
12380
12381         * gtk/gtktreeview.c (gtk_tree_view_get_columns): new function.
12382         (gtk_tree_view_move_column_after): Clean up interface. 
12383
12384 Sun Apr 29 03:02:02 2001  Tim Janik  <timj@gtk.org>
12385
12386         * gtk/gtkpacker.h:
12387         * gtk/gtkenums.h: moved GtkAnchorType and GtkSideType from gtkpacker.h
12388          to gtkenum.h.
12389
12390         * gtk/gtkmain.c (gtk_main_do_event): silence compiler (GDK_SETTING not
12391         handled in switch).
12392
12393         * gtk/Makefile.am:
12394         (gtk.defs): generate enum portions with  glib-mkenums.
12395         (gtktypebuiltins_evals.c): generate this with glib-mkenums.
12396         got rid of makeenums.pl and makeenums.awk in distributed tarballs.
12397         
12398         * gtk/gtkaccelgroup.c (gtk_accel_group_add): refined havocs warning
12399         addition.
12400
12401         * docs/Changes-2.0.txt: keep a note on signal handlers now
12402         not getting emitted during the emission they were connected within.
12403
12404 2001-04-28  Havoc Pennington  <hp@pobox.com>
12405
12406         * gtk/gtkcolorsel.c (palette_new): fix bug in tooltip
12407
12408 2001-04-24  Havoc Pennington  <hp@redhat.com>
12409
12410         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_previous_line): 
12411         (gtk_text_layout_move_iter_to_next_line): fix these two for
12412         invisible text, lots of other stuff still hosed.
12413
12414         * gtk/gtkcolorsel.c (gtk_color_selection_set_change_palette_hook):
12415         new function, replaces the get/set palette stuff. This function 
12416         is intended for use by libgnomeui which should set the hook to a
12417         thing which sets the palette in GConf, and we need the
12418         GConf-to-xsettings proxy which will result in the change being
12419         propagated back to the GTK app.
12420
12421         * gtk/gtkaccelgroup.c (gtk_accel_group_add): add note to warning 
12422         about unusable signals that it may be because the signal has 
12423         parameters.
12424
12425         * gtk/gtkwidget.c (gtk_widget_modify_style): always copy the
12426         style, otherwise gtkrc.c won't know to create a new GtkStyle for
12427         it.
12428         (gtk_widget_modify_color_component): call
12429         gtk_widget_modify_style() so the rc style will get copied.
12430         (gtk_widget_modify_font): ditto
12431
12432         * gtk/gtkrc.c: make a couple variables static
12433
12434         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): hide
12435         help button by default, since it does nothing
12436
12437         * gtk/gtkcolorsel.c: add tooltips, work on key navigation, fool
12438         around with UI
12439
12440         * gtk/gtkentry.c (gtk_entry_realize): request enter/leave notify
12441         so we can have tooltips
12442
12443         * gtk/gtkhsv.c (gtk_hsv_realize): request enter/leave notify so we
12444         can have tooltips
12445
12446         * gdk/gdkimage.h: mark gdk_image_new_bitmap with
12447         GDK_ENABLE_BROKEN, because its memory behavior is completely
12448         hosed.
12449
12450         * gtk/gtknotebook.c: remove key press handler, replace with
12451         binding set, add numeric keypad support
12452
12453         * gtk/gtktextview.c (gtk_text_view_class_init): accept KP_Delete
12454
12455         * gtk/gtktext.c (gtk_text_key_press): add a bunch of KP keysyms
12456
12457         * gtk/gtkentry.c (gtk_entry_class_init): accept GDK_KP_Delete in
12458         addition to plain Delete
12459
12460         * gtk/gtktextview.c (gtk_text_view_key_press_event): accept
12461         GDK_KP_Enter in addition to GDK_Return
12462
12463         * gtk/gtkfontsel.c (gtk_font_selection_size_key_press): connect to
12464         activate on entry instead of key press
12465         (gtk_font_selection_on_clist_key_press): get
12466         rid of this signal handler, not needed with new font sel.
12467
12468         * gtk/gtkfilesel.c (gtk_file_selection_key_press): remove a
12469         no-longer-needed emit_stop_by_name(), just return TRUE
12470
12471         * gtk/gtkhscrollbar.c, gtk/gtkvscrollbar.c: remove keybindings
12472         cruft, this widget is no longer focusable.
12473
12474         * gtk/gtkrange.h, gtk/gtkrange.c, gtk/gtkvscale.c,
12475         gtk/gtkhscale.c: Get rid of trough_keys virtual function, add
12476         move_slider action signal, add binding set for vscale/hscale, in
12477         the process support numeric keypad
12478
12479         * gtk/gtkentry.c (gtk_entry_class_init): Add keypad bindings; 
12480         make GDK_Return and GDK_KP_Enter activate the entry via 
12481         binding set, instead of hardcoded.
12482
12483 Fri Apr 27 20:27:21 2001  Jonathan Blandford  <jrb@redhat.com>
12484
12485         * gtk/gtktreeview.[hc]: Massive reorder/cleanup of a lot of the
12486         code.  Some documentation added.
12487
12488 2001-04-27  Havoc Pennington  <hp@redhat.com>
12489
12490         * gtk/gtkcombo.c (gtk_combo_popup_button_press): fix warning
12491
12492         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): make messages selectable
12493
12494         * gtk/gtkentry.c (gtk_entry_real_insert_text): don't strip
12495         line/para separators
12496         (gtk_entry_create_layout): set single paragraph mode on the layout
12497
12498         * gtk/gtkbutton.c (gtk_button_new_from_stock): don't put much
12499         spacing between the image and label; instead, inside a button box 
12500         the button will get extra space that will go there, but if people 
12501         configure button box for 0 chubbiness, then there's no spacing.
12502
12503         * gtk/gtkbbox.c (gtk_button_box_class_init): Make child ipadding
12504         and min/max size style properties, so people can tune their
12505         chubbiness.
12506
12507         * tests/testgtk.c (make_toolbar): remove calls to removed toolbar
12508         functions
12509
12510         * gtk/gtktoolbar.c (gtk_toolbar_class_init): Make space_size,
12511         space_style, and button_relief into style properties, remove
12512         functions for setting them
12513         
12514         * gtk/gtkmenu.c (gtk_menu_key_press): handle menu bar accel to pop 
12515         it back down
12516
12517         * gtk/gtkoptionmenu.c (gtk_option_menu_get_props): free boxed
12518         types from gtk_widget_style_get
12519
12520         * gtk/gtkmenubar.c (gtk_menu_bar_set_shadow_type): Remove, replace
12521         with a style property.
12522
12523         * gdk/x11/gdkevents-x11.c: namespace the settings
12524
12525         * gtk/gtkmenubar.c: Add F10 accelerator to move between menubars.
12526
12527         * gtk/gtksettings.c (gtk_settings_class_init): remove code with
12528         side effects from inside g_assert(), so that G_DISABLE_ASSERT can
12529         be used. Also, translate doc strings for settings. Also, namespace
12530         the double-click-time property. Also, remove bell properties crap.
12531
12532 2001-04-27  Sven Neumann  <sven@gimp.org>
12533
12534         * Makefile.am: before creating links, check if pkg-config files
12535         exist for the default target. Otherwise link to the pkg-config files
12536         that got installed with this build.
12537
12538 Thu Apr 26 19:11:46 2001  Jonathan Blandford  <jrb@redhat.com>
12539
12540         * gtk/gtktreeview.c (gtk_tree_view_motion): clean up column
12541         dragging code.  Revealed some (potential) GdkWindow bugs.
12542
12543         * gdk/x11/gdkwindow-x11.c (gdk_window_reparent): add
12544         _gdk_window_init_position to the end of reparent to fix the case
12545         of reparenting when new_x != old_x and new_y != old_y.
12546
12547 Thu Apr 26 10:54:50 2001  Owen Taylor  <otaylor@redhat.com>
12548
12549         * gtk/gtkentry.c (strstr_len): Fix optimization that
12550         was correct for the use here, but completely incorrect
12551         in general.
12552
12553 Thu Apr 26 10:40:41 2001  Owen Taylor  <otaylor@redhat.com>
12554
12555         * gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size()
12556         until patch adding gtk_window_set_size() is recommitted. 
12557
12558         * **Makefile.am configure.in gdk/x11/gdkim-11.c
12559           gtk/gtkmain.c gtk/gtkimmulticontext.c gtk/gtkmain.c
12560           gtk/gtkrc.c: Remove all traces of -DX_LOCALE support.
12561           (#10784)
12562
12563 Wed Apr 25 12:16:36 2001  Owen Taylor  <otaylor@redhat.com>
12564
12565         * gdk/X11/gdkevents-x11.c (gdk_event_translate): Test for 
12566         window == NULL in a number of cases.
12567
12568         * tests/testdnd.c: Set module path for gdk-pixbuf.
12569
12570 Thu Apr 19 16:11:07 2001  Owen Taylor  <otaylor@redhat.com>
12571
12572         * gtk/Makefile.am xembed.h: File containing #defines
12573         for XEMBED protocol.
12574
12575         * gtk/gtkplug.[ch] gtk/gtksocket.[ch]: 
12576
12577         - Change protocol from old plug/socket specific protocol
12578           to XEMBED draft
12579         - Various fixes to work with GTK+-2.0
12580
12581         Still quite a bit of work to do here to handle initiation
12582         from the socket side (as specified by XEMBED), to handle
12583         the more advanced features of XEMBED, and to figure out
12584         a good way to handle same-app embedding with less overhead
12585         than using full XEMBED.
12586
12587 Wed Apr 18 16:04:28 2001  Owen Taylor  <otaylor@redhat.com>
12588
12589         * gtk/gtkwindow.[ch] (gtk_window_real_set_focus): Keep
12590         track of whether the toplevel has the focus; only send
12591         focus-in events to the focus widget when the window
12592         actually has the focus.
12593
12594 2001-04-25  Havoc Pennington  <hp@pobox.com>
12595
12596         * gtk/gtkwindow.h: set_decorations_hint and set_functions_hint
12597         were still in the header
12598
12599 2001-04-24  Alexander Larsson  <alexl@redhat.com>
12600
12601         * gtk/gtkclist.[ch]:
12602         * gtk/gtkctree.c:
12603         When there is a row highlighted for D'n'D it must alse
12604         be painted hightlighted on exposes. Otherwise exposes from
12605         the icon being dragged will mess up the hightlight.
12606
12607         * gtk/gtkfontsel.c:
12608         Don't recenter selected font when exposing the font family
12609         clist. This means you can now actually scroll the font family
12610         list.
12611
12612         * gtk/gtknotebook.c:
12613         Fix focus movement on scrolling tabs that are placed on the left
12614         and right.
12615
12616 2001-04-21  Havoc Pennington  <hp@pobox.com>
12617
12618         * gtk/gtktextdisplay.c (gtk_text_layout_draw): handle 0-height
12619         empty/invisible lines.
12620
12621         * gtk/gtktextiter.c (gtk_text_iter_set_visible_line_offset)
12622         (gtk_text_iter_set_visible_line_index): new functions to set
12623         indexes excluding invisible text
12624
12625         * gtk/gtktextlayout.c (line_display_iter_to_index): get visible 
12626         index
12627
12628         * gtk/gtktextiter.c (gtk_text_iter_get_visible_line_index)
12629         (gtk_text_iter_get_visible_line_offset): new functions to 
12630         get indexes excluding invisible text
12631
12632         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): strip out a
12633         bunch of extra padding that served no purpose
12634
12635         * gtk/gtkdialog.c: Make all the spacings configurable via style
12636         properties, for chubbiness configuration in themes
12637
12638         * tests/testtext.c: fix path to the immodules.
12639         
12640 Mon Apr 23 18:57:03 2001  Jonathan Blandford  <jrb@redhat.com>
12641
12642         * gtk/gtksocket.c (gtk_socket_filter_func): add missing '}' that
12643         got munched by #endif.
12644
12645         * gtk/Makefile.am (gtk_plug_c_sources): add missing '\'
12646
12647         * gtk/gtktreeview.c: Refactored code to clean up a number of
12648         events.
12649
12650         * gtk/gtktreemodel.c (gtk_tree_path_compare): Switched return
12651         values to make consistent with other functions.  Spotted by Jeff
12652         Franks <jcf@tpg.com.au>.
12653
12654         * gtk/gtktreeview.h (struct _GtkTreeViewClass): Fixes to signal
12655         declaration spotted by Jeff Franks <jcf@tpg.com.au>.
12656
12657 2001-04-23  Sven Neumann  <sven@gimp.org>
12658
12659         * gtk/Makefile.am
12660         * gtk/gtkplug.c
12661         * gtk/gtksocket.c: on request of Owen, reverted my last change 
12662         and exclude gtkplug.c/gtksocket.c from the build for non-X11 targets
12663
12664 2001-04-23  Sven Neumann  <sven@gimp.org>
12665
12666         * gtk/gtkplug.c: put into #ifdef GDK_WINDOWING_X11 to make GTK+
12667         compile for non-X11 targets again
12668
12669 2001-04-20  Alexander Larsson  <alexl@redhat.com>
12670
12671         * gtk/gtkcolorsel.[ch]:
12672         API Change. Take GdkColor arguments instead of gdouble *.
12673         Leave the old gtk_color_selection_set_color for compatibility,
12674         but marked deprecated.
12675         Do correct rounding when converting RGB <-> HSV.
12676         
12677         * gtk/gtkcolorseldialog.c:
12678         * tests/testgtk.c:
12679         Use new GtkColorSelection API.
12680
12681         * gtk/gtkhsv.c:
12682         Fix problem selecting colors in triangle when Hue is 330.
12683         Fix some black dots around the HSB triangle.
12684         
12685         * gtk/gtkfilesel.c:
12686         return FALSE from the focus_in_event handler to fix focus problems.
12687
12688 2001-04-18  Havoc Pennington  <hp@redhat.com>
12689
12690         * gtk/gtkwindow.c (gtk_window_class_init): add signals and binding
12691         set, so keybindings are configurable    
12692         (gtk_window_activate_default): Change to activate the focus widget
12693         instead if there's a focus widget, to be consistent with the
12694         behavior that previously existed in key_press_event
12695
12696 2001-04-18  Havoc Pennington  <hp@redhat.com>
12697
12698         * gdk/gdkkeyuni.c: Handle numeric keypad keysyms; bug #50201
12699
12700 2001-04-18  Havoc Pennington  <hp@redhat.com>
12701
12702         Close bug #50615:
12703         
12704         * gtk/gtkstyle.c (gtk_default_draw_layout): Use text_gc to draw
12705         the layout
12706
12707         * gtk/gtktext.c: Use base/text instead of bg/fg throughout
12708
12709         * gtk/gtkentry.c: Use base/text instead of bg/fg throughout
12710
12711         * gtk/gtktextdisplay.c: Use base/text instead of bg/fg throughout
12712         
12713         * gtk/gtkstyle.c (gtk_style_init): make GTK_STATE_SELECTED default
12714         to blue for base, in addition to bg
12715         
12716 2001-04-18  Havoc Pennington  <hp@redhat.com>
12717
12718         * tests/testgtk.c (create_image): allow shrinking the image window
12719         to test that we clip to allocation.
12720
12721         * gtk/gtkimage.c (gtk_image_expose): clip to allocation,
12722         #9845
12723
12724         * gtk/gtkenums.h: move GtkWrapMode in here, #50472
12725
12726 Wed Apr 18 14:23:14 2001  Owen Taylor  <otaylor@redhat.com>
12727
12728         * gdk/x11/gdkimage-x11.c (gdk_image_new): Try changing
12729         mode on shm segments to 0600. We'll see who complains.
12730
12731         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Call
12732         _gdk_windowing_window_destroy() AFTER recursing through
12733         children.
12734
12735         * tests/Makefile.am (noinst_PROGRAMS): Build testsocket,
12736         testsocket_child on X.
12737
12738         * tests/testsocket[_child].c: Fix uses of
12739         gtk_window_get_default_accel_group().
12740
12741         [ Merge patch from Ramiro Estrugo  <ramiro@eazel.com> from gtk-1-2 ]
12742
12743         * gdk/gdkimage.c: (gdk_image_get):
12744         Deal with the possibility that XGetImage() might return NULL.
12745         Allocate the GdkImagePrivate structure only after XGetImage()
12746         succeeds in order not to dereference a NULL ximage pointer.  This
12747         prevents a core dump when XGetImage() fails - which is unlikely,
12748         but can happen due to race conditions accessing the geometries of
12749         drawables.  An x error will still be triggered, but the gdk image
12750         wrapper at least wont seg fault.
12751         
12752 2001-04-18  Havoc Pennington  <hp@redhat.com>
12753
12754         * gtk/gtkimage.c: fix to properly queue resizes when the image is
12755         set
12756
12757         * gtk/gtktextview.c (gtk_text_view_do_popup): desensitize Paste
12758         if the insertion point isn't editable
12759
12760         * demos/gtk-demo/images.c: Added a GtkImage demo
12761
12762         * demos/gtk-demo/drawingarea.c: drawing area demo
12763         
12764         * demos/gtk-demo/menus.c (create_menu): cleanups
12765
12766 Wed Apr 18 12:15:52 2001  Owen Taylor  <otaylor@redhat.com>
12767
12768         * gdk/x11/gdkwindow-x11.c gdk/x11/gdkwindow-x11.h 
12769           gdk/x11/gdkevents-x11.c: Introduce an extra child
12770         of toplevel windows that serves to hold the focus to
12771         avoid events being delivered to embedded windows.
12772
12773         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Introduce
12774         some extra variables to clean up code and reduce the
12775         number of casts.
12776
12777         * gdk/x11/gdkwindow-x11.h (struct _GdkXPositionInfo): Use
12778         guint for 1 bit bit fields, not gboolean.
12779
12780 Wed Apr 18 10:04:23 2001  Owen Taylor  <otaylor@redhat.com>
12781
12782         * gtk/gtktooltips.c (gtk_tooltips_paint_window): Return FALSE,
12783         not TRUE. (Fixes #52925)
12784
12785 Tue Apr 17 18:05:34 2001  Owen Taylor  <otaylor@redhat.com>
12786
12787         * Released 1.3.4
12788
12789         * NEWS: Updated
12790
12791         * gtk/gtktextview.c (gtk_text_view_class_init): Fix to not
12792         use GTK_TYPE_ENUM.
12793
12794 Tue Apr 17 13:47:12 2001  Owen Taylor  <otaylor@redhat.com>
12795
12796         * configure.in: Don't put -lgthread in GLIB_LIBS, GLIB_DEPLIBS
12797
12798         * gtk/gtktypeutils.h gtk/gtksignals.h: Restore proper parameter
12799         names to compatibility #defines so docs work.
12800
12801         * gtk/gtkenums.h: Remove GtkMenuFactoryType
12802
12803         * gtk/gtkwindow.c gtk/gtkdnd.c: Docs cleanups.
12804
12805         * configure.in: Don't include -lgthread in GLIB_LIBS, GLIB_DEPLIBS
12806
12807         * tests/testgtkrc: No magenta cursors, please.
12808
12809         * README.in INSTALL.in HACKING README.cvs-commits: Updated.
12810
12811         * gtk/gtkenums.h (enum): Remove left over GtkMenuFactoryType.
12812         
12813 Mon Apr 16 14:38:41 2001  Owen Taylor  <otaylor@redhat.com>
12814
12815         * gtk/gtklist.c gtk/gtklistitem.c: Remove explicit pointer
12816         grabs, since they are no longer necessary.
12817
12818         * gtk/gtkcombo.c (gtk_combo_popup_button_press): Fix #52926
12819         by signal_connect() and call gtk_button_pressed() rather
12820         than signal_connect_after().
12821
12822         * tests/testgtk.c: Restore radio menu items to combos 
12823         since they'll look OK with Raleigh, and it is easier
12824         than finishing the process of removing them that was
12825         started earlier.
12826
12827 2001-04-16  Hans Breuer  <hans@breuer.org>
12828
12829         * gdk/gdk.def :
12830         * gtk/gtk.def : added all exports required to link PyGtk 0.7.1
12831
12832         * gdk/gdkfont.h : #define GDK_TYPE gdk_font_get_type ()
12833         we are interested in the functions return value not the function address
12834         * gdk/gdkvisual.h : same for GDK_TYPE_VISUAL
12835
12836         * gtk/makefile.msc.in : reflect movement of GDK_TYPEs from gtk to gdk
12837
12838 2001-04-14  Hans Breuer  <hans@breuer.org>
12839
12840         * gdk/gdk.def :
12841         * gdk/makefile.msc : updated
12842
12843         * gdk/win32/gdkdrawable.win32 (gdk_win32_draw_rectangle) : if modus is 
12844         "fill with tile" do so with new helper function gdk_win32_draw_tiles 
12845         (the testgtk::text backgound pixmap is drawn again)
12846         Changed SetTextAlign before pango_win32_render to TA_BASELINE to reflect 
12847         Win32 Pango change
12848         * gdk/win32/gdkprivate-win32.h : prototype for gdk_win32_draw_tiles
12849
12850         * gdk/win32/gdkproperty-win32.c : first implementation of gdk_setting_get
12851         Not sure if the returned settings have the right unit, because I couldn't
12852         find any docs for the X version ...
12853
12854         * gtk/gtk.def :
12855         * gtk/makefile.msc.in : updated
12856
12857 Thu Apr 12 17:41:17 2001  Owen Taylor  <otaylor@redhat.com>
12858
12859         * gtk-2.0.m4: Fix up to refer to GTK+, not to GLib; fix some
12860         wording problems. (Compared to version from Johannes Stezenbach to
12861         check correctness.)
12862
12863 Thu Apr 12 21:04:26 2001  Tim Janik  <timj@gtk.org>
12864
12865         * gtk/gtktreeview.c (_gtk_tree_view_column_start_drag): get
12866         this to compile.
12867
12868 2001-04-12  Anders Carlsson  <andersca@codefactory.se>
12869
12870         * gtk/gtkcellrenderertextpixbuf.c (gtk_cell_renderer_text_pixbuf_class_init): It's pixbuf_pos,
12871         not pixbufpos.
12872
12873         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): Fix small typo.
12874
12875         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_property): xpad and ypad
12876         are unsigned insts, therefore use g_value_set_uint.
12877         (gtk_cell_renderer_set_property): Likewise, use g_value_get_uint.
12878
12879 Sun Apr  8 05:36:06 2001  Jonathan Blandford  <jrb@redhat.com>
12880
12881         * gtk/gtktextview.c (gtk_text_view_class_init): fix a fixme.
12882
12883         * gtk/gtkcellrendertoggle.c: change GTK_TYPE_POINTER to
12884         GTK_TYPE_STRING.
12885
12886         * gtk/gtktreeview.c: New functions to allow initial column
12887         dragging work.
12888
12889         * gtk/gtktreeviewcolumn.c: Initial column dragging support.
12890
12891         * tests/testtreefocus.c: give dave some love.
12892
12893         * tests/testtreesort.c: Modify test to check really long samples.
12894
12895 2001-04-11  Alexander Larsson  <alexl@redhat.com>
12896
12897         * gtk-2.0.m4: Pass pkg-config options
12898         before the other args so it works even if
12899         POSIXLY_CORRECT is set.
12900
12901 Mon Apr  9 19:02:07 2001  Tim Janik  <timj@gtk.org>
12902
12903         * configure.in (GTK_MICRO_VERSION): increment version to 1.3.4 (binary
12904         0, interface 0).
12905
12906 2001-04-04  Denis Oliver Kropp  <dok@convergence.de>
12907
12908         * gtk/gtkcalendar.c (gtk_calendar_button_press):
12909         check for action_func != NULL
12910
12911 2001-04-04  Sven Neumann  <sven@gimp.org>
12912
12913         * tests/testgtk.c (test_init): corrected path to gtk.immodules
12914
12915 Wed Apr  4 09:18:18 2001  Tim Janik  <timj@gtk.org>
12916
12917         * Released Gtk+-1.3.3.
12918
12919 Wed Apr  4 07:42:23 2001  Tim Janik  <timj@gtk.org>
12920
12921         * gdk/Makefile.am (EXTRA_DIST): add makeenums.pl to EXTRA_DIST.
12922
12923 Wed Apr  4 04:13:18 2001  Tim Janik  <timj@gtk.org>
12924
12925         * gtk/stock-icons/Makefile.am: stay in builddir and read/write
12926         files to/from source dir. (if we don't stay in builddir, we
12927         can't reach make-inline-pixbuf.
12928
12929         * gdk/Makefile.am (gdkenumtypes.c): add $(srcdir) to mekeenums.pl
12930         deps.
12931
12932         * configure.in (GTK_MICRO_VERSION): up and away (1.3.3 bin/interface
12933         ages 0).
12934
12935 Tue Apr  3 15:04:45 2001  Jonathan Blandford  <jrb@redhat.com>
12936
12937         * gtk/gtktreemodelsort.h:  removed set_sort_column, as it was
12938         moved to the GtkTreeSortable interface.
12939
12940         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach):
12941         Make more efficient (fixes #50262).
12942
12943 Tue Apr  3 13:55:37 2001  Owen Taylor  <otaylor@redhat.com>
12944
12945         * NEWS: Updated.
12946
12947         * configure.in: Remove support for uninstalled glib.
12948
12949         * gtk/gtkdnd.c (gtk_drag_highlight_expose): Return FALSE as
12950         so as not to stop emission.
12951
12952         * gtk-config-2.0.in: Exit with an error message that gtk-config-2.0
12953         is no longer supported.
12954
12955         * Makefile.am gtk/Makefile.am tests/*: Moved all tests
12956         into tests, change build order to build modules before
12957         gtk/.
12958
12959         * modules/input/Makefile.am: Move gtk-query-immodules-2.0 invocation
12960         to here.
12961
12962 Tue Apr  3 13:52:57 2001  Tim Janik  <timj@gtk.org>
12963
12964         * gtk/gtkitemfactory.[hc]: changed gtk_item_factory_dump_items()
12965         and gtk_item_factory_dump_rc() GtkPatternSpec argument to
12966         GPatternSpec. this is actually unlikely to cause breakage in
12967         third-party apps since except for gle, pretty much ever caller
12968         passes NULL here.
12969
12970         * gtk/gtkbindings.[hc]: removed gtk_pattern_*() API.
12971
12972         * *.c: use g_pattern_*() API.
12973
12974         * docs/Changes-2.0.txt: GtkPatternSpec->GPatternSpec updates.
12975
12976         * gtk/gtkstyle.c (gtk_default_draw_resize_grip): assert unhandled
12977         directions aren't passed in.
12978
12979         * gtk/gtksettings.[hc] (_gtk_settings_parse_convert): export conversion
12980         functionality to be usable from gtkstyle.c as well, give precedence
12981         for conversion to user-supplied parsers.
12982         s/_gtk_rc_property_parser_for_type/_gtk_rc_property_parser_from_type/;
12983
12984         * gtk/gtkstyle.c (_gtk_style_peek_property_value): use
12985         _gtk_settings_parse_convert() for rcporperty value conversion.
12986
12987 2001-04-03  Alexander Larsson  <alexl@redhat.com>
12988
12989         * gdk/linux-fb/gdkevents-fb.c:
12990         Add empty gdk_setting_get().
12991
12992 Tue Apr  3 05:09:07 2001  Tim Janik  <timj@gtk.org>
12993
12994         * gtk/gtkmain.c (_gtk_boolean_handled_accumulator): use more elaborate
12995         variable names.
12996         
12997         * gtk/makeenums.pl: touch this so enum files get remade.
12998
12999 Mon Apr  2 19:36:57 2001  Jonathan Blandford  <jrb@redhat.com>
13000
13001         * gtk/gtktreestore.c (gtk_tree_store_init):  Bug fix to make trees
13002         work again when not sorted.
13003
13004         * gtk/gtktreeview.c (gtk_tree_view_class_init): Add "collapse_row"
13005         and "expand_row" signal, closing bug 52578.
13006
13007         * gtk/gtktreeview.c (gtk_tree_view_expand_row): Add signal
13008         support.
13009
13010         * gtk/gtktreeview.c (gtk_tree_view_collapse_row): Add signal
13011         support.
13012
13013 Mon Apr  2 18:18:07 2001  Owen Taylor  <otaylor@redhat.com>
13014
13015         * gdk/gdkevents.h: Add GdkEventSetting event for notification
13016         of changes to system settings, gdk_setting_get() to retrieve
13017         a single system setting.
13018
13019         * gdk/x11/gdkevents-x11.c: Bridge gdk_setting_get() and GdkEventSetting
13020         to the draft XSETTINGS mechanism.
13021
13022         * gdk/x11/xsettings-{common,client}.[ch]: Sample-implementation of
13023         XSETTINGS.
13024
13025         * gtk/gtkmain.c gtk/gtksettings.[ch]: Propagate notification
13026         of GDK settings changes to the GtkSettings object.
13027
13028         * gdk/gdkevents.[ch] gdk/gtk/gtksettings.c: Hook up the
13029         double-click-timeout property to GDK.
13030
13031         * gdk/gdkcolor.[ch] gdk/gdkvisual.h gdk/gdkevent.[ch] gdk/gdkfont.[ch]:
13032         Define GDK boxed types here.
13033
13034         * gdk/Makefile.am gdk/makeenums.pl: Generate source files
13035         gdk/gdkenumtypes.[ch] for enum definitions.
13036
13037         * gtk/gtkcompat.h: Add defines for GTK_TYPE_GDK_*
13038         * gtk/gtk-boxed.defs: Comment out GDK types
13039         * gtk/gtktypeutils.h: Remove GDK types
13040         * gtk/Makefile.am: No longer scan GDK headers for enumerataions
13041
13042 Mon Apr  2 16:41:08 2001  Owen Taylor  <otaylor@redhat.com>
13043
13044         * Applied patch from Ron Steinke to add signal accumulators
13045         so that signals with the convention 'TRUE return means
13046         handled' stop emission on a TRUE return.
13047
13048         * gtk/gtkmain.[ch]: Add private accumulator 
13049         _gtk_boolean_handled_accumulator, used throughout GTK+.
13050         
13051         * gtk/gtkspinbutton.c: Add accumulator for ::output.
13052
13053         * gtk/gtktipsquery.c: Add accumulator for ::widget_selected
13054         
13055         * gtk/gtkwidget.c: Add accumulators for event signals,
13056         ::drag_motion, ::drag_drop. Use _gtk_boolean_handled_accumator
13057         for ::mnemonic-activate.
13058
13059         * gtk/gtkwindow.c: Add accumulator for ::frame_event
13060
13061 Mon Apr  2 16:24:21 2001  Owen Taylor  <otaylor@redhat.com>
13062
13063         * gtk/gtkwidget.c: Add missing include.
13064
13065 Mon Apr  2 16:56:15 2001  Jonathan Blandford  <jrb@redhat.com>
13066
13067         * gtk/gtkmarshal.list (VOID:BOXED,BOXED,BOXED,BOXED): new
13068         marshaller.
13069
13070         * gtk/gtktreemodel.c (gtk_tree_model_range_changed): change
13071         "changed" signal to "range_changed".
13072
13073         * gtk/gtktreeview.c (gtk_tree_view_set_model): fix small bug where
13074         removing a tree from one model would remove all trees from that
13075         model.
13076         * gtk/gtktreeview.c (gtk_tree_view_range_changed): use range
13077         changed signal instead.
13078
13079 Mon Apr  2 16:13:58 2001  Owen Taylor  <otaylor@redhat.com>
13080
13081         * gtk/gtkinvisible.c (gtk_invisible_style_set): Avoid
13082         chaining up to parent impl, since we have a INPUT_ONLY
13083         window.
13084
13085         * gtk/gtkentry.[ch]: Add a cursor_color property to set the
13086         foreground color for the cursor.
13087
13088 Mon Apr  2 15:06:13 2001  Owen Taylor  <otaylor@redhat.com>
13089
13090         * gtk/gtkstyle.c (_gtk_style_peek_property_value): Reference 
13091         param spec when caching property values, since we unref it
13092         later when we free the style.
13093
13094         * gtk/gtkoptionmenu.c (gtk_option_menu_get_props): Dont' free
13095         values since they are retrieved with G_VALUE_NO_COPY_CONTENTS.
13096
13097 Mon Apr  2 10:47:57 2001  Owen Taylor  <otaylor@redhat.com>
13098
13099         * gtk/gtkwidget.c (gtk_widget_class_init): Fix 
13100         G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE
13101         stupidity.
13102
13103 Mon Apr  2 00:51:11 2001  Owen Taylor  <otaylor@redhat.com>
13104
13105         [ First pass at adding style properties. Still needs some definite
13106         fine-tuning. ]
13107
13108         * gtk/gtkbutton.c: Add ::default_spacing style property.
13109          
13110         * gtk/gtkcheckbutton.[ch] gtkradiobutton.c: Add ::indicator_size,
13111         ::indicator_spacing style properties.
13112
13113         * gtk/gtkoptionmenu.c: Add ::indicator_size, ::indicator_spacing
13114         style properties.
13115
13116         * gtk/gtk{,h,v}paned.[ch]: Make handle_size a style property
13117         rather than a normal property.
13118
13119         * gtk/gtkwidget.c: Add an ::interior_focus style property to
13120         draw focus inside buttons, in the Windows/Java Metal/etc. style.
13121
13122         * gtk/gtkbutton.c gtk/gtkcheckbutton.c gtk/gtktogglenbutton.c:
13123         Honor ::interior_focus.
13124         
13125         * gtk/gtkentry.c: Don't draw focus at all when ::interior_focus is 
13126         TRUE.
13127
13128         * gtk/gtkrange.[ch] gtk/gtk{h,v}scrollbar.c gtk/gtk{h,v}scale.c:
13129         Add ::slider_width, ::trough_border, ::stepper_size,
13130         ::stepper_spacing style properties.
13131
13132         * gtk/gtkscale.[ch] Add ::slider-length style property.
13133
13134 2001-04-02 Alexander Larsson   <alexl@redhat.com>
13135
13136         * gdk/linux-fb/gdkwindow-fb.c:
13137         Add gdk_window_begin_resize_drag and gdk_window_begin_move_drag. Remove some
13138         warnings that were spewed on startup.
13139
13140         * gtk/gtkwindow-decorate.c:
13141         gtk_window_reposition -> _gtk_window_reposition
13142
13143 Sun Apr  1 21:37:22 2001  Owen Taylor  <otaylor@redhat.com>
13144
13145         * gtk/gtkwidget.[ch] gtk/gtktypeutils.c gtk/gtk-boxed.defs:
13146         Add boxed type for GtkRequistion. Use it for ::size-request.
13147
13148         * gtk/gtkstyle.[ch] gtk/gtktypeutils.c gtk/gtk-boxed.defs:
13149         Add a new GtkBorder structure useful for geometry properties
13150         for widgets. Add corresponding GTK_TYPE_BORDER.
13151         
13152         * gtk/gtkwidget.c (gtk_widget_class_install_style_property):
13153         Support automatic parser selection like
13154         gtk_settings_install_property_parser().
13155
13156         * gtk/gtksettings.c (_gtk_rc_property_select_parser): Export
13157         functionality for use by gtk_widget_class_install_style_property.
13158         Support GTK_TYPE_BORDER, GTK_TYPE_REQUISITION.
13159
13160 Sun Apr  1 20:48:59 2001  Owen Taylor  <otaylor@redhat.com>
13161
13162         * gtk/gtkentry.c (gtk_entry_class_init): Make invisible-char
13163         g_param_spec_unichar(). 
13164
13165 Sun Apr  1 23:41:37 2001  Tim Janik  <timj@gtk.org>
13166
13167         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): raise window for non
13168         _NET window managers.
13169
13170         * gtk/gtkmenufactory.[hc]: cvs removed those files now.
13171
13172 Sun Apr  1 08:00:13 2001  Tim Janik  <timj@gtk.org>
13173
13174         * gtk/gtkwidget.[hc]: got rid of gtk_widget_popup(), a function that
13175         bad needs to be nuked, not just deprecated.
13176
13177         * gtk/gtktooltips.c (gtk_tooltips_draw_tips): don't use 
13178         gtk_widget_popup().
13179
13180         * gtk/*.[hc]: s/activate_mnemonic/mnemonic_activate/g;
13181         
13182         * gtk/gtkmenufactory.[hc]: removed this long-standingly deprecated
13183         widget.
13184         
13185         * docs/Changes-2.0.txt: updates.
13186         
13187 Sun Apr  1 01:02:54 2001  Jonathan Blandford  <jrb@redhat.com>
13188
13189         * gtk/gtktreestore.c (gtk_tree_store_sort_iter_changed):
13190         for (i = 0; i < 100; i ++)
13191           g_print ("I will confirm it compile before committing\n");
13192
13193 Sun Apr  1 00:52:06 2001  Jonathan Blandford  <jrb@redhat.com>
13194
13195         * gtk/gtktreestore.c: Initial work on implementing the
13196         GtkTreeSortable interface.  Basicaly a big cut'n'paste job.
13197
13198 Sun Apr  1 03:28:14 2001  Tim Janik  <timj@gtk.org>
13199
13200         * gtk/gtkwidget.c: fixed a bunch of notifications, added
13201         reference counts around emissions where the widget is used afterwards.
13202         added freeze/thaws around multiple properties being notified.
13203         (_gtk_widget_get_aux_info): cleanups.
13204         
13205         * gtk/gtksettings.c (gtk_settings_install_property): provide
13206         default parsing functions for gdkcolor, enums and flags.
13207
13208         * gtk/gtkwindow.[hc]: partially reverted patch from havoc,
13209         applied by owen.
13210         backed out gtk_window_get_location(), gtk_window_set_location(),
13211         gtk_window_get_size() and gtk_window_set_size(), these
13212         have to be sorted out wrg x/y/width/height/default_with/default_height
13213         properties.
13214         kept a flag in GtkWindowGeometryInfo to handle user
13215         resetting default sizes.
13216         cleaned up ZVT comments.
13217         bunch of assorted bug fixes, notification fixes.
13218         (_gtk_window_reposition): make this a really internal function.
13219         
13220         * gtk/testgtk.c: fixups.
13221         
13222 2001-03-31  Hans Breuer  <hans@breuer.org>
13223
13224         * config.h.win32.in : disable USE_MMX for msvc build cause
13225         the assembler doesn't fit and is out of my scope. Disable
13226         USE_GMODULE for msvc build as wel. The right way to share
13227         binaries on win32 would be to use libtiff.dll etc. To reduce
13228         installation hassles IMO it's better to include all fileformats
13229         builtin to gdk-pixbuf
13230
13231         * gdk-pixbuf/makefile.msc : new file
13232
13233         * gdk/gdk.def : updated
13234
13235         * gdk/win32/gdkevents-win32.c : don't erase the background if
13236         .no_bg is set. It improves the scrolling (e.g. of testgtk main
13237         buttons
13238         * gdk/win32/gdkgeometry-win32.c : added comment about the above
13239
13240         * gdk/win32/gdkwindow-win32.c : added three new functions like
13241         the X version. Only one is implemented, because the other two
13242         "gdk_window_begin_(resize|move)_drag" got no docs and appear to
13243         be default behaviour on win32 anyway ...
13244
13245         * gtk/gtk.def : updated
13246
13247         * gtk/makefile.msc.in : update for new files, use glib-genmarshal
13248         from where it was built and add an additional rule to automagically
13249         build gtkmarshal.[hc]
13250
13251         * gtk/gtkfilesel.c (open_new_dir) : don't increase n_entries
13252         before array access for the current entry isn't finished
13253
13254         * gtk/gtktreeitem.c (gtk_tree_item_subtree_button_click) :
13255         use g_return_val_if_fail
13256
13257         * gtk/testgtk.c (window_controls) : don't use the *wrong* size
13258         for the static array, but let the compiler calculate it. It
13259         makes me wonder if gcc isn't capable to catch bugs like this ...
13260
13261 2001-03-31  James Henstridge  <james@daa.com.au>
13262
13263         * gtk/gtkwidget.c (gtk_widget_size_adjust): fix use of magic
13264         constant "-1" in the aux info structure.
13265
13266 2001-03-30  Alexander Larsson  <alexl@redhat.com>
13267
13268         * gtk/gtkbutton.c (gtk_button_get_property):
13269         * gtk/gtklabel.c:
13270         Remove leaks.
13271         
13272         * gtk/gtkcontainer.c:
13273         * gtk/gtkhscale.c:
13274         * gtk/gtkhscrollbar.c:
13275         * gtk/gtklayout.c:
13276         * gtk/gtkmisc.c:
13277         * gtk/gtkprogress.c:
13278         * gtk/gtkprogressbar.c:
13279         * gtk/gtkrange.c:
13280         * gtk/gtktable.c:
13281         * gtk/gtkviewport.c:
13282         * gtk/gtkvscale.c:
13283         * gtk/gtkvscrollbar.c:
13284         * gtk/gtkwidget.c:
13285         Property patches, based on patches from John Margaglione and Lee Mallabone.
13286
13287 Thu Mar 29 21:20:38 2001  Mike Kestner  <mkestner@ameritech.net>
13288
13289         * gtk/gtkspinbutton.c : added value_changed signal which proxies for the
13290         adjustment. Cleaned redundant preconditions (spin != NULL). Added
13291         inline API function docs.
13292         (gtk_spin_button_new_with_range): New convenience constructor.
13293         (gtk_spin_button_set_increments): New adjustment helper.
13294         (gtk_spin_button_set_range): New adjustment helper.
13295
13296         * gtk/testgtk.c : added test of the new convenince constructor and
13297         value_changed signals.
13298
13299 Thu Mar 29 20:20:38 2001  Jonathan Blandford  <jrb@redhat.com>
13300
13301         * gtk/gtktreemodel.c (gtk_tree_row_ref_reordered_callback): Now we
13302         listen to the reorder signal.
13303
13304 Wed Mar 28 20:30:26 2001  Owen Taylor  <otaylor@redhat.com>
13305
13306         * gtk/gtkwidget.[ch] (_gtk_widget_get_aux_info): Add private function
13307         to get the aux info structure fo the widget.
13308
13309         * gtk/gtklabel.c gtk/gtkscrolledwindow.c gtk/gtkwindow.c: Use
13310         above function.
13311
13312         [ Patch from  Havoc Pennington  <hp@redhat.com> ]
13313
13314         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): function
13315         to get the size of the window manager frame, basically the same
13316         code that gdk_window_get_root_origin() had
13317         (gdk_window_get_root_origin): use gdk_window_get_frame_extents()
13318
13319         * gtk/gtkwindow.c (gtk_window_set_default_size): use
13320         gdk_window_resize() if the window is realized and resizeable
13321
13322         * gdk/x11/gdkwindow-x11.c (gdk_window_set_geometry_hints): fix
13323         typo so that setting gravity works
13324
13325         * gtk/gtkwindow.c (gtk_window_move_resize): don't ever use
13326         allocation if auto_shrink is on, even if the default size
13327         has not changed.
13328
13329         * gtk/gtkwidget.c (gtk_widget_render_icon): remove bogus
13330         g_return_if_fail
13331
13332 Thu Mar 29 16:29:12 2001  Jonathan Blandford  <jrb@redhat.com>
13333
13334         * gtk/gtkliststore.c (gtk_list_store_iter_changed): Massive
13335         reordering/sorting work.  Now pretty much works.
13336
13337         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): Lots of work to make
13338         reorder mostly work.  Still need to get the parity correct.
13339
13340         * gtk/gtktreeviewcolumn.c: Listen for "model" property changed
13341         signal, so I can listen for the sort_column_changed signal so I
13342         can change my "sort_indicator" property.  Cool.
13343
13344 Wed Mar 28 00:03:10 2001  Owen Taylor  <otaylor@redhat.com>
13345
13346         [ Patch from Havoc Pennington, hp@redhat.com ]
13347
13348         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c:
13349         Add functions gdk_window_begin_resize_drag/begin_move_drag
13350         to start resizing or moving a toplevel window. This
13351         is done either using the _NET_WM_MOVERESIZE protocol,
13352         or, if that isn't present, by emulation.
13353
13354         * gtk/gtkwindow.[ch]: Add functions gtk_begin_move/resize_drag
13355         to export the above to GTK+-land.
13356
13357         * gtk/gtkstyle.[ch]: Add ->draw_resize_grip() paint func.
13358         
13359         * gtk/gtkwindow.c gdk/gdkwindow.[ch] (gdk_window_constrain_size):
13360         Move this function into gdkwindow, since we need it
13361         when implementing fallback resizing.
13362
13363         * gdk/x11/gdkwindow-x11.c: gdk_window_set_geometry_hints.
13364         Fix typo when setting gravity.
13365
13366         * gtk/gtkstatusbar.[ch] (gtk_statusbar_set_has_resize_grip):
13367         Add an optional (but on by default) resize grip for resizing 
13368         the parent window.
13369
13370 01-03-29  Alexander Larsson  <alexl@redhat.com>
13371
13372         * gtk/gtktooltips.c (gtk_tooltips_event_handler):
13373         Don't return TRUE from the event handler, that blocks all
13374         event signals on the tooltip widget. Now you can press buttons
13375         in toolbars again.
13376
13377 Wed Mar 28 19:20:43 2001  Owen Taylor  <otaylor@redhat.com>
13378
13379         * gtk/testtext.c (create_buffer): Add missing NULL on
13380         valist.
13381
13382         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Fix
13383         c-n-p problem with INCONSISTENT property.
13384
13385         [ Patch from Havoc Pennington  <hp@redhat.com> ]
13386
13387         * gtk/gtkentry.h (struct _GtkEntryClass): add same populate_popup
13388         hook.
13389
13390         * gtk/gtktextview.h (struct _GtkTextViewClass): add populate_popup
13391         signal as a hook for extending the default popup menu
13392
13393         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
13394         use radio menu items for the input method menuitems
13395
13396         * gtk/gtkimcontextsimple.c (check_hex): do better validation of 
13397         inserted unicode from Ctrl-Shift-hex input method
13398
13399         * gtk/gtktextbtree.c (_gtk_text_btree_insert): remove utf8
13400         validatation here, already done at GtkTextBuffer level.
13401
13402         * gtk/gtkwidget.c (gtk_widget_class_init): add binding set, add
13403         popup_menu run action signal and Shift+F10 and Menu keybindings.
13404
13405         * gtk/gtkentry.c: implement a default handler for popup_menu
13406
13407         * gtk/gtktextview.c: implement a default handler for popup_menu
13408
13409         * gtk/gtkmenu.c (gtk_menu_popup): select first item if popup is
13410         from a key event
13411         
13412         * gtk/gtklabel.c: remove "trailer" cruft
13413
13414 Wed Mar 28 17:27:12 2001  Jonathan Blandford  <jrb@redhat.com>
13415
13416         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): new function to
13417         handle reordering of trees.  Seems to mostly work w/ the exception
13418         of the parity flag.
13419
13420         * gtk/gtktreeview.c (gtk_tree_view_reordered): handle "reordered"
13421         signal.
13422
13423 Wed Mar 28 21:12:37 2001  Tim Janik  <timj@gtk.org>
13424
13425         * gtk/gtkwidget.h: c++ fixes.
13426
13427 Sun Mar 25 15:51:28 2001  Owen Taylor  <otaylor@redhat.com>
13428
13429         * gtk/gtksettings.c (gtk_settings_init): Fix use of uninitialized
13430         memory.
13431
13432 Tue Mar 27 22:36:07 2001  Owen Taylor  <otaylor@redhat.com>
13433
13434         * gtk/gtkwidget.h gtk/gtkrange.h: Apply patch from 
13435         Nils Barth fixing event return values. (#51041)
13436
13437         * gtk/gtkwidget.c: Fix some return values for default
13438         functions.
13439
13440         * gtk/gtk[vh]scrollbar.c gtk/gtk[vh]range.c: Fix
13441         return values for trough_keys functions.
13442
13443         * gtk/gtkwidget.h (struct _GtkWidgetClass): Fix return
13444         value for add_accelerator (shoudl have been a void
13445         return.)
13446
13447         * gtk/gtkcellrenderer.[ch]: gtkcellrenderertoggle.h:
13448         Fix return type of EVENT.
13449
13450         * gtk/gtkmarshal.list gtk/gtktexttag.c: Make EVENT
13451         signal return a boolean.
13452
13453 Tue Mar 27 22:07:44 2001  Jonathan Blandford  <jrb@redhat.com>
13454
13455         * gtk/gtkliststore.c (gtk_list_store_sort): Fix arguments to
13456         reordered signal.
13457
13458         * tests/testtreesort.c (main): fix spelling.
13459
13460 Tue Mar 27 20:55:29 2001  Jonathan Blandford  <jrb@redhat.com>
13461
13462         * gtk/gtkliststore.c: More work on implementing sortable
13463         interface.
13464
13465 Mon Mar 26 15:48:45 2001  Owen Taylor  <otaylor@redhat.com>
13466
13467         * gtk/gtkwindow.c (gtk_window_list_toplevels): Don't
13468         reference the widgets in the resulting list. (#11821)
13469         This makes this consistent with gtk_container_children.
13470
13471         * gtk/gtkwindow.c gtk/gtkwidget.c: Fix up the two
13472         uses of gtk_window_list_toplevels.
13473
13474 Mon Mar 26 15:26:17 2001  Owen Taylor  <otaylor@redhat.com>
13475
13476         * gtk/gtkimcontext.c (gtk_im_context_set_use_preedit): Add
13477         a virtual function to set whether the IM context should use 
13478         the preedit string. (#51922)
13479         
13480 Mon Mar 26 14:42:59 2001  Owen Taylor  <otaylor@redhat.com>
13481
13482         * gdk/gdkpango.h: Remove stale FIXME comment.
13483
13484 2001-03-26  Alexander Larsson  <alla@lysator.liu.se>
13485
13486         * gtk/gtkfilesel.c (gtk_file_selection_get_filename):
13487         Fixed bug that returned NULL if a filename was selected.
13488
13489 2001-03-24  Havoc Pennington  <hp@pobox.com>
13490
13491         * gtk/gtkthemes.c (gtk_theme_engine_load): improve error message
13492         to contain the word "theme"
13493
13494 2001-03-24  Havoc Pennington  <hp@pobox.com>
13495
13496         * gtk/gtkhsv.c (gtk_hsv_move): make motion around the ring much
13497         slower but finer-grained
13498         (gtk_hsv_focus): get initial focus on the ring or triangle 
13499         according to tab direction
13500
13501         * gtk/testgtk.c (main): get rid of weird sleep(1) on exit
13502
13503 2001-03-23  Havoc Pennington  <hp@pobox.com>
13504
13505         * gtk/gtkhsv.c: make this somewhat key-navigable
13506
13507         * gtk/gtkfontsel.c: mnemonics
13508
13509         * gtk/gtkgamma.c: mnemonics
13510
13511         * gtk/gtkcolorsel.c: add mnemonics to labels
13512
13513 2001-03-22  Havoc Pennington  <hp@pobox.com>
13514
13515         Applied big patch from Seth Lytle to fix event handler return
13516         values, slightly modified.
13517
13518         * gtk/gtkcalendar.c (gtk_calendar_button_press): return TRUE if
13519         handled.
13520         (gtk_calendar_key_press): return TRUE for GDK_space triggers
13521         select_day
13522
13523         * gtk/gtkclist.c (gtk_clist_button_press): return TRUE if handled
13524         (gtk_clist_button_release): return TRUE if handled
13525
13526         * gtk/gtkcolorsel.c (mouse_release):
13527         (palette_activate): 
13528         (palette_press): 
13529         (palette_new): 
13530         (mouse_press): 
13531         (get_screen_color): 
13532         fixed return type (void to gboolean), return TRUE,
13533         added GTK_SIGNAL_FUNC cast
13534
13535         * gtk/gtkcombo.c (gtk_combo_popup_button_press): fixed return type
13536         (void to gboolean), and return TRUE
13537         (gtk_combo_button_release): changed return value to TRUE after
13538         gtk_grab_add on combo->popwin
13539
13540         * gtk/gtkctree.c (gtk_ctree_button_press): return TRUE if triggers a
13541         collapse or expand
13542
13543         * gtk/gtkcurve.c (gtk_curve_graph_events): return TRUE for
13544         button/motion
13545
13546         * gtk/gtkdnd.c (gtk_drag_source_event_cb): return TRUE for button
13547         press/release and motion that trigger act
13548
13549         * gtk/gtkentry.c (gtk_entry_button_release): return TRUE
13550
13551         * gtk/gtkfontsel.c (gtk_font_selection_size_key_press): return TRUE
13552         for GDK_Return
13553         
13554         * gtk/gtklist.c (gtk_list_button_press): return TRUE mostly
13555         (gtk_list_button_release): return TRUE if selection
13556
13557         * gtk/gtklistitem.c (gtk_list_item_button_press): return TRUE on
13558         press
13559
13560         * gtk/gtkmenushell.c (gtk_menu_shell_button_press):
13561         (gtk_menu_shell_button_release): chain parent_menu_shell retval
13562
13563         * gtk/gtknotebook.c (gtk_notebook_button_press): return FALSE if
13564         nothing triggered
13565         (gtk_notebook_button_release): return TRUE if we do anything
13566
13567         * gtk/gtkspinbutton.c (gtk_spin_button_button_press): 
13568         (gtk_spin_button_button_release): return TRUE or chained retval
13569
13570         * gtk/gtktext.c (gtk_text_button_press): 
13571         (gtk_text_button_release): return TRUE
13572         (gtk_text_key_press): remove redundant retval code
13573         
13574         * gtk/gtktreeitem.c (gtk_tree_item_button_press): return TRUE if button
13575         and sensitive
13576         (gtk_tree_item_subtree_button_click): changed type to gint, and return
13577         TRUE if sensitive
13578
13579         * gtk/gtktooltips.c (gtk_tooltips_event_handler): deactivate implies 
13580         return TRUE
13581
13582 2001-03-23  Havoc Pennington  <hp@redhat.com>
13583
13584         * gtk/testgtk.c: fix warnings
13585
13586         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): fix return value
13587
13588         * gtk/gtktextview.c: fix warnings
13589
13590         * gtk/gtktext.c (find_cursor_at_line): fix warning
13591
13592         * gtk/gtkselection.c (gtk_selection_notify): fix warning 
13593
13594         * gtk/gtkitemfactory.c (gtk_item_factory_menu_pos): fix signature
13595         of this function
13596
13597         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems):
13598         fix warning
13599
13600         * gtk/gtkhandlebox.c (gtk_handle_box_style_set): fix warning
13601
13602         * gtk/gtkfontsel.c: fix warning
13603
13604         * gtk/gtkcolorsel.c: fix warnings
13605
13606 2001-03-23  Havoc Pennington  <hp@redhat.com>
13607
13608         * gtk/gtkhandlebox.c: Apply property patch from Lee Mallabone
13609
13610         * gtk/gtkbox.c: Apply property patch from Lee Mallabone
13611
13612         * gtk/gtkcheckmenuitem.c: Apply property patch from Lee Mallabone,
13613         and deprecated gtk_check_menu_item_set_show_toggle().
13614         
13615         * gtk/gtkbutton.c: Apply property patch from Lee Mallabone
13616
13617         * gtk/gtkfilesel.c: Apply property patch from Lee Mallabone
13618
13619         * gtk/gtkframe.c: Apply property patch from Lee Mallabone
13620
13621 2001-03-23  Havoc Pennington  <hp@redhat.com>
13622
13623         * gtk/gtktoolbar.c, gtk/gtkimcontext.c, gtk/gtklabel.c: fix up
13624         some docs
13625
13626 Fri Mar 23 16:13:43 2001  Jonathan Blandford  <jrb@redhat.com>
13627
13628         * gtk/gtktreeviewcolumn.h (GtkCellDataFunc): Forgot to namespace
13629         this.
13630
13631         * gtk/gtktreestore.c (gtk_tree_store_set_value): change from
13632         set_cell to set_value
13633
13634         * gtk/gtkliststore.c (gtk_list_store_set_value): change from
13635         set_cell to set_value
13636
13637 Thu Mar 22 19:27:34 2001  Jonathan Blandford  <jrb@redhat.com>
13638
13639         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
13640         fix braino.
13641         * gtk/gtktreesortable.[ch]: New interface to add cleanup sortable
13642         support.
13643
13644         * gtk/gtktreeview.c: Addition of initial sortable support.
13645
13646         * gtk/gtktreestore.c: Addition of initial sortable support.
13647
13648         * gtk/gtkliststore.c: Addition of initial sortable support.
13649
13650         * gtk/gtkmarshal.list: yet another marshaller.
13651
13652         * gtk/gtktreedatallist.[ch]: shared code between the store models
13653         for handling sorting headers.
13654
13655 2001-03-22  Havoc Pennington  <hp@redhat.com>
13656
13657         * gtk/gtkcontainer.c (gtk_container_set_focus_chain): 
13658         (gtk_container_unset_focus_chain): Add ability to override the 
13659         focus chain for a container explicitly
13660
13661 Thu Mar 22 13:01:44 2001  Tim Janik  <timj@gtk.org>
13662
13663         * gtk/gtklabel.[hc]: some cleanups, fixed mnemonic_widget handling,
13664         added PROP_MNEMONIC_WIDGET.
13665
13666         * gtk/gtkwindow.c (gtk_window_activate_mnemonic): 
13667         (gtk_window_remove_mnemonic): 
13668         (gtk_window_add_mnemonic): fixed assertions.
13669         (gtk_window_activate_mnemonic): constrain modifier checks to those
13670         permitted by gtk_accelerator_get_default_mod_mask().
13671         got rid of gtk_window_get_default_accel_group().
13672
13673         * gtk/gtkwidget.c (gtk_widget_real_activate_mnemonic): handle non
13674         activatable widgets either by focussing or a warning.
13675         added a signal accumulator to ::activate_mnemonic which stops the
13676         emission once a handler returned TRUE.
13677
13678 2001-03-22  Havoc Pennington  <hp@pobox.com>
13679
13680         * gtk/gtktoolbar.c (gtk_toolbar_insert_stock): handle mnemonics in
13681         the stock item label
13682
13683         * gtk/gtklabel.c: s/@gtk_func/gtk_func()/ in docs
13684
13685         * gtk/gtkstock.c (builtin_items): add mnemonics where missing
13686
13687         * demos/gtk-demo/*.c: Add mnemonics all over the place
13688
13689         * gtk/gtklabel.h: mark parse_uline deprecated
13690
13691 2001-03-21  Alexander Larsson  <alexl@redhat.com>
13692
13693         * gtk/gtkitemfactory.[ch]:
13694         Add support for stock and normal imagemenuitems.
13695         
13696         * gtk/testgtk.c:
13697         Add some tests for mnemonics, stock toolbars, stock
13698         and image menuitems in itemfactory and gdk_window_scroll.
13699
13700 2001-03-21  Alexander Larsson  <alexl@redhat.com>
13701
13702         * gtk/gtkbutton.[ch]:
13703         * gtk/gtkdialog.c:
13704         Renamed gtk_button_new_stock() to gtk_button_new_from_stock() and
13705         removed accel_group argument. Renamed gtk_button_new_accel() to
13706         gtk_button_new_with_mnemonic() and removed accel_group argument.
13707
13708         * gtk/gtkcheckbutton.[ch]:
13709         New function gtk_check_button_new_with_mnemonic().
13710
13711         * gtk/gtkentry.c:
13712         Override activate_mnemonic and just grab focus.
13713
13714         * gtk/gtkitemfactory.c:
13715         Don't add menu uline accel group, instead use mnemonics support.
13716
13717         * gtk/gtklabel.[ch]:
13718         New support for mnemonics.
13719
13720         * gtk/gtkmarshal.list:
13721         Needed BOOLEAN:BOOLEAN for activate_mnemonic.
13722
13723         * gtk/gtkmenu.[c]:
13724         * gtkmenushell.c:
13725         Use mnemonics instead of accel groups for uline
13726         support in menu items.
13727         Removed gtk_menu_get_uline_accel_group() and
13728         gtk_menu_ensure_uline_accel_group().
13729
13730         * gtk/gtkmenuitem.c:
13731         Override activate_mnemonic to handle switching between
13732         menu items if there are collisions.
13733         
13734         * gtk/gtknotebook.c:
13735         Connect to activate_mnemonic on the tab_label, so that
13736         activating it switches to that notebook page.
13737
13738         * gtk/gtkwidget.[ch]:
13739         Add activate_mnemonic signal. New function
13740         gtk_widget_activate_mnemonic() to emit it.
13741         Default implementation does activate/grab_focus.
13742
13743         * gtk/gtkwindow.[ch]:
13744         Add support for mnemonics in windows.
13745         New functions:
13746         gtk_window_add_mnemonic, gtk_window_remove_mnemonic,
13747         gtk_window_activate_mnemonic, gtk_window_set_mnemonic_modifier
13748
13749         * gtk/testgtk.c:
13750         Update to function name changes.
13751         
13752 2001-03-21  Alexander Larsson  <alexl@redhat.com>
13753
13754         * gtk/gtkimagemenuitem.[c]:
13755         Add gtk_image_menu_item_new_from_stock()
13756
13757 Tue Mar 20 15:00:43 2001  Jonathan Blandford  <jrb@redhat.com>
13758
13759         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
13760         Fix buglet in meeting.
13761
13762 2001-03-19  Havoc Pennington  <hp@redhat.com>
13763
13764         * gtk/gtkiconfactory.c: Make GtkIconSource an opaque datatype, and
13765         add a bunch of accessor functions. This is because we have
13766         reasonable expectations of extending what fields it contains in
13767         the future.
13768
13769         * gtk/gtkstyle.c (gtk_default_render_icon): adapt to icon source
13770         changes
13771
13772         * gtk/gtkrc.c (gtk_rc_parse_icon_source): fix to use new
13773         GtkIconSource   
13774
13775 Mon Mar 19 15:53:36 2001  Owen Taylor  <otaylor@redhat.com>
13776
13777         * gtk/gtkitemfactory.c gtk/testgtk.c: Handle quoting of / with \; properly
13778         handle __ in paths, quote " and \n in gtk_item_factory_dump_items().
13779
13780         * gtk/gtkadjustment.[ch] gtk/gtkclist.c gtk/gtkhruler.c gtk/gtklayout.c 
13781           gtk/gtklist.c gtk/gtkprogress.[ch] gtk/gtkprogressbar.[ch] gtk/gtkrange.[ch]
13782           gtk/gtkruler.[ch] gtk/gtkscale.c gtk/gtkscrolledwindow.c gtk/gtkspinbutton.[ch]
13783           gtk/gtktext.c gtk/gtktextview.c gtk/gtkvruler.c gtk/testgtk.c:
13784         Change float to double everywhere with the exception of 0<->1.0 alignment
13785         and GtkCurve.
13786
13787 2001-03-19  Tor Lillqvist  <tml@iki.fi>
13788
13789         * gdk/win32/gdkdrawable-win32.c
13790         * gdk/win32/gdkimage-win32.c: Use correct casts in debugging
13791         output.
13792
13793         * demos/testpixbuf-drawable.c: If GDK_WINDOWING_WIN32, include
13794         gdkwin32.h.
13795
13796 2001-03-18  Tor Lillqvist  <tml@iki.fi>
13797
13798         * gdk/win32/gdkevents-win32.c (print_window_state): New function.
13799         print_event_state, print_event): Use preprocessor macro to make
13800         code more compact. Print also GDK_WINDOW_STATE events.
13801         (synthesize_crossing_events): Remove the old #ifdeffed-out code.
13802         
13803         * gtk/gtk.def
13804         * gtk/makefile.mingw.in: Update.
13805
13806         * gtk/gtkmain.h: Check for G_PLATFORM_WIN32, not only G_OS_WIN32,
13807         to catch also Cygwin.
13808
13809 Sun Mar 18 01:15:30 2001  Tim Janik  <timj@gtk.org>
13810
13811         * gtk/gtkspinbutton.[hc]: added rc-style argument
13812         GtkSpinButton::shadow_type.
13813         removed spin_button->shadow_type, gtk_spin_button_set_shadow_type()
13814         and ARG_SHADOW_TYPE as it doesn' make much sense to try to override
13815         rc-style settings.
13816
13817         * gtk/gtkfixed.c: removed gtk_fixed_paint() (was unused).
13818
13819         * gtk/gtkwidget.c: quark cleanups.
13820
13821         * gtk/gtkrc.[hc]: added gtk_rc_scanner_new() to create an rc-file
13822         scanner with appropriate configuration, renamed GtkRcStyleClass.clone
13823         to create_rc_style() (we don't do cloning in standard OO sense).
13824         added per rc style properties.
13825         
13826         * gtk/gtkstyle.[hc]: added code to retrive pspec conformant rc-style
13827         property values and for caching those. some cleanups.
13828         
13829         * gtk/Makefile.am: -DG_DISABLE_CONST_RETURNS.
13830         
13831         * gtk/gtksettings.[hc]: new file for global rc-file properties
13832         (at least currently, should get extended to support X properties
13833         and other communication mechanisms).
13834         
13835         * gtk/gtkwidget.[hc]: added style property support:
13836         (gtk_widget_class_install_style_property_parser): install style
13837         property pspec with parser function for rc-file values other
13838         than LONG, DOUBLE or STRING.
13839         (gtk_widget_class_install_style_property): same as above without
13840         parser (parsers are going to be needed quite infrequently).
13841         (gtk_widget_style_get_property): retrive style property value.
13842         (gtk_widget_style_get_valist): same as above with varargs support,
13843         has NOCOPY semantics.
13844         (gtk_widget_style_get): wrapper around gtk_widget_style_get_valist().
13845
13846 Fri Mar 16 18:24:53 2001  Jonathan Blandford  <jrb@redhat.com>
13847
13848         * demos/gtk-demo/main.c (row_activated_cb): modified to use
13849         "row_activated" signal.
13850
13851         * gtk/gtktreeview.c (gtk_tree_view_row_activated): oh, the
13852         stupidity.  Lets actually pass in the row with this signal...
13853
13854 Fri Mar 16 18:01:17 2001  Jonathan Blandford  <jrb@redhat.com>
13855
13856         * gtk/gtktreeviewcolumn.[ch]: s/GTK_TREE_COLUMN/GTK_TREE_VIEW_COLUMN
13857
13858         * gtk/gtktreeview.c (gtk_tree_view_row_activated): New signal.
13859
13860         * gtk/gtktreeview.c (gtk_tree_view_destroy): moved pretty much
13861         everything into the ::destroy function, and freed a lot more.
13862
13863 2001-03-16  Havoc Pennington  <hp@redhat.com>
13864
13865         * gtk/gtkwidget.h (struct _GtkWidgetAuxInfo): change to use gint
13866         instead of gint16, to avoid overflow issues, since sizes > 16-bit
13867         are now allowed.
13868
13869 2001-03-16  Havoc Pennington  <hp@redhat.com>
13870
13871         * Applied patch from Nils Barth (bug # 51041) to 
13872         replace "gint" with "gboolean" and 0/1 with TRUE/FALSE
13873         in various places.
13874
13875 2001-03-15  Havoc Pennington  <hp@redhat.com>
13876         
13877         * gtk/gtktextbuffer.c (gtk_text_buffer_create_tag): add varargs 
13878         for properties to set on the tag.
13879
13880         * gtk/testtext.c: fixups to reflect create_tag change
13881         
13882         * gtk/gtktexttag.c (gtk_text_tag_set_property):
13883         background/foreground stipple are objects, not boxed.
13884
13885         * demos/gtk-demo/textview.c: intellihancing
13886
13887 Fri Mar 16 11:38:42 2001  Jonathan Blandford  <jrb@redhat.com>
13888
13889         * gtk/gtktreeview.c (gtk_tree_view_set_model): Fixed some
13890         braindeadness spotted by Jamie Strachan <frostfreek@yahoo.com>.
13891
13892 2001-03-16  Alexander Larsson  <alexl@redhat.com>
13893
13894         * gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose):
13895         Fix sign error with queued region translations.
13896
13897 2001-03-15  HideToshi Tajima  <tajima@happy>
13898
13899         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_location): 
13900         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_cursor_location):
13901         * gtk/gtkentry.c (update_im_cursor_location): 
13902         * gtk/gtkimcontext.c (gtk_im_context_set_cursor_location):
13903         * gtk/gtkimcontext.h (struct _GtkIMContextClass): rename
13904         set_cursor_pos to set_cursor_location in GtkInputContext class
13905
13906 Thu Mar 15 18:22:44 2001  Jonathan Blandford  <jrb@redhat.com>
13907
13908         * gtk/gtkcellrenderer.h: Changed prototype to allow for getting
13909         the location of the cell relative to its area.
13910         * gtk/gtkcell*: modified for above change
13911         * gtk/gtktreeview.c: modified for above change.
13912
13913 Wed Mar 14 13:58:32 2001  Jonathan Blandford  <jrb@redhat.com>
13914
13915         * gtk/gtktreeview.c (gtk_tree_view_set_model): Ref the model.
13916          (gtk_tree_view_finalize): actually unref the model.  Thanks to
13917         Jamie Strachan <frostfreek@yahoo.com> for noticing this error.
13918
13919 2001-03-14  Havoc Pennington  <hp@redhat.com>
13920
13921         * gtk/gtkdata.h, gtk/gtkdata.c: Delete.
13922         
13923         * gtk/gtk.h: remove gtkdata.h
13924
13925         * gtk/Makefile.am: remove gtkdata
13926         
13927         * gtk/gtktext.c (gtk_text_set_adjustments): connect to "destroy"
13928         not "disconnect" on the adjustments.
13929         
13930         * gtk/gtktooltips.h, gtk/gtktooltips.c: derive from GtkObject not
13931         GtkData
13932
13933         * gtk/gtkadjustment.h, gtk/gtkadjustment.c: derive from GtkObject
13934         not GtkData
13935
13936         * configure.in: handle case where X render exists, but Pango lacks
13937         Xft support.
13938
13939 2001-03-15 Alexander Larsson  <alexl@redhat.com>
13940
13941         * gtk/gtktoolbar.[ch]:
13942         New functions gtk_toolbar_set_icon_size and gtk_toolbar_insert_stock
13943         to add stock items to toolbars.
13944
13945         * gtk/Makefile.am:
13946         Remove ../gdk/gdkim.h from gdk_headers.
13947
13948 2001-03-15  Sven Neumann  <sven@gimp.org>
13949
13950         * gdk/gdkim.h: removed
13951         
13952         * gdk/gdkprivate.h
13953         * gdk/x11/gdkim-x11.c: do not include gdkim.h 
13954
13955 2001-03-14  HideToshi Tajima  <tajima@happy.sunsoft.eng.sun.com>
13956
13957         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_cursor_pos):
13958         * gtk/gtkimcontext.c (gtk_im_context_set_cursor_pos):
13959         * gtk/gtkimcontext.h (struct _GtkIMContextClass): add
13960         set_cursor_pos() virtual method
13961
13962         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_class_init):
13963         (gtk_im_context_xim_set_cursor_pos): add implementation for
13964         set_cursor_pos() method
13965
13966         * gtk/gtkentry.c (recompute_idle_func): set current cursor
13967         position to input methods
13968
13969 Mon Mar 12 21:02:08 2001  Jonathan Blandford  <jrb@redhat.com>
13970
13971         * gtk/gtktreeview.c (gtk_tree_view_header_focus): Fix up focus
13972         code a lot.
13973
13974         * gtk/gtktreedatalist.c (_gtk_tree_data_list_free): use
13975         g_mem_chunk.
13976         (_gtk_tree_data_list_alloc): use g_mem_chunk.
13977         (_gtk_tree_data_list_node_to_value): Fix to switch on
13978         G_TYPE_FUNDAMENTAL.
13979         (_gtk_tree_data_list_value_to_node): Fix to switch on
13980         G_TYPE_FUNDAMENTAL.
13981         (_gtk_tree_data_list_node_copy): Fix to switch on
13982         G_TYPE_FUNDAMENTAL.
13983
13984 2001-03-12  Havoc Pennington  <hp@redhat.com>
13985
13986         * gtk/gtkwindow.c (gtk_window_class_init): Patch from John Margaglione 
13987         to convert to new property API. Also, change default_width and
13988         default_height get_property to return 0 as the flag value for
13989         "unset"; -1 is not a valid value for these fields.
13990
13991 2001-03-12  Havoc Pennington  <hp@redhat.com>
13992
13993         * gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: Switch to using an
13994         enum with registration for icon sizes, instead of strings.
13995
13996         * gtkimage.h, gtkimage.c, gtkstyle.h, gtkstyle.c, gtkwidget.h, 
13997         gtkwidget.c: Fix to reflect GtkIconSize
13998         
13999 2001-03-12  Alexander Larsson  <alexl@redhat.com>
14000
14001         Make GtkFB compile and link.
14002         
14003         * gdk/linux-fb/gdkdrawable-fb2.c:
14004         window->mapped to GDK_WINDOW_IS_MAPPED(). 
14005         
14006         * gdk/linux-fb/gdkwindow-fb.c:
14007         window->mapped to GDK_WINDOW_IS_MAPPED(). 
14008         Added gdk_window_shape_combine_region.
14009         Added assorted placeholders for unimplemented new GdkWindow API calls.
14010
14011 2001-03-12  Alexander Larsson  <alexl@redhat.com>
14012
14013         * gtk/gtkfilesel.c:
14014         Add more test when converting filenames from/to utf-8.
14015         Don't allow entering text in the filename entry which isn't allowed in
14016         a filename. Just beep instead.
14017
14018 2001-03-12  Alexander Larsson  <alexl@redhat.com>
14019
14020         * gtk/gtkclist.c:
14021         Scroll using gdk_window_scroll(). Don't wait for exposes.
14022         Move the column headers in an order that makes them flash less.
14023
14024 2001-03-10  Hans Breuer  <hans@breuer.org>
14025
14026         * gdk/gdk.def : updated
14027
14028         * gdk/win32/gdkgc-win32.c : pixmaps are visible again, due
14029         to offseting the clip_mask at the right place
14030
14031         * gdk/win32/gdkwindow-win32.c : don't create background brushes
14032         for all the gdkClasses, especially not for the input_only case.
14033         Otherwise flickering wont be avoidable, because we don't get
14034         WM_ERASEBKGND message for these windows.
14035
14036         * gdk/win32/gdkevents-win32.c : initialize event->expose.region
14037         and fixed massive redraw problems apparently triggered by Alexanders 
14038         recent change. Not fully understood the GDK_EXPOSE / WM_PAINT handling
14039         but it seems to work quite well :-)
14040
14041         * gdk/win32/gdkprivate-win32.h : added _gdk_window_process_expose
14042         prototype
14043
14044 Sat Mar 10 12:15:31 2001  Jonathan Blandford  <jrb@redhat.com>
14045
14046         * gtk/gtktreestore.c (gtk_tree_store_set_cell): Fix a stupid typo.
14047         (gtk_list_store_set_cell): Fix a stupid typo.
14048
14049 Fri Mar  9 20:36:21 2001  Jonathan Blandford  <jrb@redhat.com>
14050
14051         * gtk/gtktreeselection.c (gtk_tree_selection_select_all): Make
14052         select_all not work if you're in SINGLE mode (it doesn't make that
14053         much sense, anyway.)
14054
14055         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_to_value):
14056         handle types more sanely.
14057         (_gtk_tree_data_list_value_to_node): handle types more sanely.
14058         (_gtk_tree_data_list_node_copy): handle types more sanely.
14059
14060         * gtk/gtkliststore.c (gtk_list_store_set_cell): fix to work with
14061         GValue better. Converts the type as well.
14062
14063         * gtk/gtktreestore.c (gtk_tree_store_set_cell): fix to work with
14064         GValue better. Converts the type as well.
14065
14066 Wed Mar  7 20:47:41 2001  Owen Taylor  <otaylor@redhat.com>
14067
14068         * gtk/gtktext.c gtk/gtkoldeditable.[ch] gdk/gdk.[ch]
14069         gdk/Makefile.am gdk/x11/Makefile.am gdk/x11/gdkevents-x11.c 
14070         gdk/x11/gdkglobals-x11.c gdk/x11/gdkprivate-x11.c
14071         gdk/x11/gdkx.h gdk/x11/gdkim-x11.c: Remove old XIM code.
14072
14073         * gdk/win32/gdkim-win32.c gdk/linux-fb/gdkim-fb.c: Remove
14074         gdk_im/gdk_ic.
14075
14076 2001-03-09  Hans Breuer  <hans@breuer.org>
14077
14078         * gdk/gdk.def : updated
14079
14080         * gdk/win32/gdkevents-win32.c : don't ask input_only windows
14081         for their palette
14082
14083         * gdk/win32/gdkgeometry-win32.c : reflect GdkWindowObject::mapped
14084         removing
14085
14086         * gdk/win32/gdkwindow-win32.c : reflect GdkWindowObject::mapped
14087         removing and implemented Havoc's GdkWindow state functions; 
14088         stick/unstick only as no-op, cause I don't know how to emulate 
14089         on win32 ...
14090
14091         * gtk/gtk.def : updated
14092
14093         * gtk/gtkbox.c (gtk_box_get_spacing) : use g_return_val_if_fail ()
14094
14095         * gtk/gtktypeutils.c : #include <string.h>
14096
14097         * gtk/gtkwindow.h : declare gtk_window_set_decorated ()
14098
14099 Fri Mar  9 09:31:55 2001  Tim Janik  <timj@gtk.org>
14100
14101         * gtk/gtkwidget.c (gtk_widget_class_init): fixed signals with
14102         GDK_TYPE_DRAG_CONTEXT, it needs to be marshaled as an object,
14103         not a boxed.
14104
14105 2001-03-09  Alexander Larsson  <alexl@redhat.com>
14106
14107         * docs/Changes-2.0.txt:
14108         Document expose event->region change and that gtk_widget_event
14109         doesn't allow passing expose events.
14110
14111         * gdk/gdkevents.h:
14112         Add region to expose event.
14113         
14114         * gdk/gdkevents.c:
14115         Handle event->region in gdk_event_copy() and gdk_event_free().
14116
14117         * gdk/gdkwindow.c (gdk_window_process_updates_internal):
14118         Generate expose_event->region when creating expose events.
14119
14120         * gdk/x11/gdkevents-x11.c:
14121         Generate expose events with regions when translating X events.
14122
14123         * gtk/gtkcontainer.[ch]:
14124         Default expose handler that propagates expose events to NO_WINDOW
14125         children. New function gtk_container_propagate_expose()
14126
14127         * gtk/gtkwidget.[ch]:
14128         Moved gtk_widget_event implementation to gtk_widget_event_internal.
14129         gtk_widget_event calls gtk_widget_event_internal but doesn't allow
14130         expose events. New function gtk_widget_send_expose() to send expose
14131         events. New function gtk_widget_region_intersect() to calculate
14132         window/region intersections.
14133         
14134         * gtk/gtkmain.c (gtk_main_do_event):
14135         Use gdk_window_begin_paint_region() instead of gdk_window_begin_paint_rect().
14136         Use gtk_widget_send_expose() to send expose events.
14137         
14138         * gtk/gtkbin.c:
14139         * gtk/gtkbox.c:
14140         * gtk/gtkfixed.c:
14141         * gtk/gtkimagemenuitem.c:
14142         * gtk/gtklist.c:
14143         * gtk/gtkpacker.c:
14144         * gtk/gtktable.c:
14145         * gtk/gtktree.c:
14146         Remove expose handler, using the default container implementation
14147         instead.
14148         
14149         * gtk/gtkbutton.c:
14150         * gtk/gtkcheckbutton.c:
14151         * gtk/gtkeventbox.c:
14152         * gtk/gtkfixed.c:
14153         * gtk/gtkhandlebox.c:
14154         * gtk/gtklayout.c:
14155         * gtk/gtklistitem.c:
14156         * gtk/gtkmenu.c:
14157         * gtk/gtkmenubar.c:
14158         * gtk/gtkmenuitem.c:
14159         * gtk/gtknotebook.c:
14160         * gtk/gtkoptionmenu.c:
14161         * gtk/gtkpaned.c:
14162         * gtk/gtkscrolledwindow.c:
14163         * gtk/gtktogglebutton.c:
14164         * gtk/gtktoolbar.c:
14165         * gtk/gtktreeitem.c:
14166         * gtk/gtkviewport.c:
14167         Chain expose handler to parent class handler. Use
14168         gtk_container_propagate_expose() to propagate exposes.
14169
14170         * gtk/gtkclist.c (check_exposures):
14171         * gtk/gtktext.c (process_exposes):
14172         Use gtk_widget_send_expose instead of gtk_widget_event.
14173
14174 Thu Mar  8 19:40:28 2001  Jonathan Blandford  <jrb@redhat.com>
14175
14176         * gtk/gtktreeview.c (gtk_tree_view_destroy): Add destroy function.
14177
14178 Thu Mar  8 19:18:27 2001  Jonathan Blandford  <jrb@redhat.com>
14179
14180         * gtk/gtktreeview.c (gtk_tree_view_unref_tree_helper): Actually
14181         unref the nodes.   Fixes bug #50058.
14182
14183         * gtk/gtktreemodel.c (gtk_tree_model_ref_node): change
14184         "::ref_iter" to "::ref_node".
14185         (gtk_tree_model_unref_node): change "::unref_iter" to
14186         "::unref_node". Fixes bug #50064.
14187
14188 Thu Mar  8 17:40:09 2001  Jonathan Blandford  <jrb@redhat.com>
14189
14190         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon): add
14191         support for invisible cells.
14192          (gtk_tree_view_bin_expose): ditto
14193
14194 Thu Mar  8 16:36:00 2001  Jonathan Blandford  <jrb@redhat.com>
14195
14196         * gtk/gtktreemodel.c (gtk_tree_model_get_type): add prerequesite
14197         on gobjects.
14198
14199         * tests/testtreefocus.c (main): New test file.
14200
14201         * tests/testtreeview.c: update to latest glib changes.
14202
14203         * tests/testtreecolumns.c: update to latest glib changes.
14204
14205 Thu Mar  8 18:13:20 2001  Tim Janik  <timj@gtk.org>
14206
14207         * gtk/testgtk.c: re-enabled event watcher emission hooks.
14208
14209 Thu Mar  8 16:51:21 2001  Tim Janik  <timj@gtk.org>
14210
14211         * *.c: added accumulator data argument to g_signal_newc()
14212         functions.
14213
14214         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_model): 
14215         * gtk/gtktreeview.c (gtk_tree_view_setup_model): 
14216         * gtk/treestoretest.c (make_window):
14217         s/g_signal_connect/g_signal_connectc/.
14218
14219         * gtk/gtktextbuffer.c: completed signal arg fixups,
14220         they also needed G_SIGNAL_TYPE_STATIC_SCOPE flag.
14221
14222 Thu Mar  8 00:02:30 2001  Owen Taylor  <otaylor@redhat.com>
14223
14224         * gtk/gtkwidget.[ch] (gtk_widget_get_name): Make
14225         G_CONST_RETURN.
14226
14227         * gtk/gtkwidget.[ch] gtk/gtkprivate.h: Add a 
14228         ::hierarchy-changed signal when a widget changes
14229         from anchored to unanchored or vice versa.
14230         (anchored means 
14231          gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW) != NULL.)
14232         Use a private flag to keep track of this efficiently.
14233
14234 2001-03-07  Havoc Pennington  <hp@redhat.com>
14235
14236         * gtk/testgtk.c (create_spins): uglify so that size request gets
14237         tested.
14238
14239         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): Base size
14240         request on values for upper/lower, completes #6152
14241
14242 Wed Mar  7 20:07:22 2001  Owen Taylor  <otaylor@redhat.com>
14243
14244         * Makefile.am: Remove gtk-config-2.0 again.
14245         (Grrrr, pkg-config. And stops make loops.)
14246
14247 Thu Mar  8 00:18:29 2001  Tim Janik  <timj@gtk.org>
14248
14249         * gtk/gtksignal.[hc]: removed old emission hook API.
14250         
14251         * docs/Changes-2.0.txt: fixed sections.
14252         
14253         * gtk/gtktextbuffer.c: signal arg fixups.
14254
14255 2001-03-07  Havoc Pennington  <hp@redhat.com>
14256
14257         * gtk/gtktextview.c (invalidated_handler): use PRIORITY_VALIDATE
14258
14259         * gtk/gtktextview.h (GTK_TEXT_VIEW_PRIORITY_VALIDATE): add this
14260         here, bug #50368; changed to be GDK_PRIORITY_REDRAW + 5, instead
14261         of GDK_PRIORITY_REDRAW + 1, so you can insert stuff in between the
14262         validation and the redraw which is higher priority than the
14263         validation.
14264
14265 2001-03-07  Havoc Pennington  <hp@redhat.com>
14266
14267         * gtk/gtkentry.c (gtk_entry_get_property): remove trailer
14268         (gtk_entry_set_property): remove trailer
14269
14270         * gtk/gtkentry.c (gtk_entry_set_width_chars): 
14271         (gtk_entry_get_width_chars): new functions, to set size request to 
14272         a given number of characters
14273
14274         * gtk/testgtk.c (create_dialog): beef up the dialog test slightly
14275
14276         * gtk/gtkdialog.c (gtk_dialog_set_has_separator): new function
14277         (gtk_dialog_get_has_separator): new function
14278         (run_delete_handler): fix to not emit "response" signal
14279         because we already did in the delete event handler installed
14280         at dialog creation time.
14281         
14282         * gtk/gtkdialog.h: add a has_separator property,
14283         add GTK_DIALOG_NO_SEPARATOR flag
14284
14285 2001-03-07  Havoc Pennington  <hp@redhat.com>
14286
14287         * gtk/gtkwindow.c (gtk_window_set_decorated): new function, turns
14288         off decorations for a window.
14289
14290         * demos/gtk-demo/button_box.c (create_bbox): adapt to button box
14291         changes
14292
14293         * gtk/gtklabel.c (gtk_label_get_layout_offsets): new function 
14294         to get location of PangoLayout inside the label, closes #51198
14295
14296         * gtk/testgtk.c (create_bbox): fix up button box usage
14297
14298         * gtk/testcalendar.c (create_calendar): fix up button box usage
14299
14300         * gtk/gtkfilesel.c (gtk_file_selection_init): fixup buttonbox usage
14301
14302         * gtk/gtkdialog.c (gtk_dialog_init): fixup buttonbox usage
14303
14304         * gtk/gtkhbbox.h: deprecations
14305
14306         * gtk/gtkvbbox.h: deprecations
14307
14308         * gtk/gtkbox.c (gtk_box_get_spacing): new function, used to
14309         emulate deprecated gtk_button_box_get_spacing
14310
14311         * gtk/gtkbbox.h: deprecate some useless functions, remove entirely 
14312         the "set global default" functions
14313         (struct _GtkButtonBox): remove "spacing" field, use the one from 
14314         GtkBox base class
14315
14316         * gtk/gtkbbox.c (_gtk_button_box_child_requisition): rename with uscore
14317
14318         * gtk/gtkiconfactory.c (gtk_icon_set_render_icon): If we fail to
14319         render the icon, return the missing image icon.
14320
14321         * gtk/gtkimage.c (gtk_image_set_from_file): fall back to missing
14322         image icon if the load fails.   
14323
14324         * gtk/gtkstock.h (GTK_STOCK_MISSING_IMAGE): Add stock icon for use
14325         when no image is found; should be the Netscape "missing image"
14326         icon eventually but for now is a random image
14327
14328         * gtk/gtkwindow.c (gtk_window_set_role): new function, sets the 
14329         role for the session manager
14330
14331         * gtk/testgtk.c (dnd_drop): remove use of GTK_WINDOW_DIALOG
14332
14333         * gtk/gtkcompat.h (GTK_WINDOW_DIALOG): compat #define
14334         GTK_WINDOW_DIALOG GTK_WINDOW_TOPLEVEL
14335
14336         * gtk/gtkenums.h (enum GtkWindowType): remove GTK_WINDOW_DIALOG
14337
14338 Wed Mar  7 13:24:57 2001  Tim Janik  <timj@gtk.org>
14339
14340         * gtk/*.c: marshaller fixes.
14341         
14342         * gtk/gtkmarshal.list: extreme cleanup.
14343
14344         * gtk/gtktreeview.c (gtk_tree_view_class_init): disable interface
14345         param spec for now.
14346
14347         * gtk/gtktexttag.c (gtk_text_tag_set_property): use g_value_get_boxed()
14348         where appliable.
14349
14350         * gtk/gtktypeutils.[hc]: updates to GLib API changes.
14351         special cased autogenerated boxed types from gtktypebuiltins_ids.c
14352         which are not reference counted:
14353         GtkSelectionData, GdkEvent, GdkColor, GtkTextIter, PangoTabArray,
14354         PangoFontDescription, GtkTreeIter and GtkTreePath.
14355
14356 Thu Mar  1 03:58:56 2001  Tim Janik  <timj@gtk.org>
14357
14358         * gtk/gtktreeselection.h: 
14359         * gtk/gtktreemodel.c:
14360         * gtk/gtktreedatalist.[hc]: fixed includes. no gobject/*
14361         file should be included directly, and gobject/gmarshal.h
14362         as well as gtk/gtkmarshal.h even can't be included directly.
14363
14364         * Makefile.am: grr, install gtk-config-2.0.
14365
14366         * gtk/testgtk.c:
14367         * gtk/simple.c:
14368         * gtk/gtkmenu.c:
14369         * gtk/gtkitemfactory.c: use g_object_connect() instead of
14370         passing "*signal*::*" args to gtk_widget_set().
14371         
14372         * gtk/gtktypeutils.[hc]: got rid of GTK_TYPE_SIGNAL.
14373         
14374         * gtk/*.c: removed trailer arg from property setters and getters.
14375         macro fixups.
14376
14377 2001-03-07  Alexander Larsson  <alexl@redhat.com>
14378
14379         * gtk/gtklabel.c (set_markup): Removed warning
14380
14381 Tue Mar  6 19:59:12 2001  Jonathan Blandford  <jrb@redhat.com>
14382
14383         * gtk/gtkcellrenderer.h (struct _GtkCellRenderer): Add visible
14384         field to allow you to hide cell renderers.
14385
14386         * gtk/gtkcellrenderer.c: Add support for invisible cells.
14387
14388         * gtk/gtktreeview.c: Add support for invisible cells.
14389
14390 Tue Mar  6 17:25:07 2001  Jonathan Blandford  <jrb@redhat.com>
14391
14392         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_clicked):
14393         Add "clicked" signal back to columns.
14394
14395         * ChangeLog: remove conflict markers.
14396
14397 Tue Mar  6 10:45:45 2001  Owen Taylor  <otaylor@redhat.com>
14398
14399         * gtk/gtkbutton.c: Add animation of activation by, on 
14400         activate, pressing the button, and adding a timeout that 
14401         releases the button after 250ms or on key release and
14402         emits ::clicked. (#51501)
14403
14404         * gtk/gtkdialog.c: Bit of a hack - for buttons in the
14405         action area, we connect to ::clicked instead of ::activate
14406         so the dialog stays up through the animation.
14407
14408 Mon Mar  5 16:38:15 2001  Owen Taylor  <otaylor@redhat.com>
14409
14410         * gtk/gtkmenushell.c (gtk_menu_shell_enter_notify): Only
14411         check the ignore_enter flag for the menu shell that
14412         the item is actually a child of, not for attached
14413         submenus. (#51536)
14414
14415 Tue Feb 27 02:16:14 2001  Owen Taylor  <otaylor@redhat.com>
14416
14417         * gtk/gtkmain.c (gtk_propagate_event): Only do special
14418         special key-press grab handling for widgets within
14419         GtkWindows. Otherwise, fall through to normal case.
14420
14421         This prevents key events being sent twice to GtkInvisible
14422         widgets, which can cause all sorts of mischief.
14423
14424 Fri Feb  2 13:20:12 2001  Owen Taylor  <otaylor@redhat.com>
14425
14426         * gtk/gtkmain.c (gtk_propagate_event): When a grab
14427         widget is in effect, give the grab widget a first
14428         crack at KEY_PRESS/RELEASE events. (#424)
14429
14430 2001-03-06  James Henstridge  <james@daa.com.au>
14431
14432         * gtk/gtkwidget.c (gtk_widget_class_init): set the class closure
14433         offset for the window_state_event to point at window_state_event
14434         rather than no_expose_event.
14435
14436 Mon Mar  5 19:10:15 2001  Jonathan Blandford  <jrb@redhat.com>
14437
14438         * gtk/gtkimmodule.h: fix busted /* comment */
14439
14440 Mon Mar  5 15:07:05 2001  Jonathan Blandford  <jrb@redhat.com>
14441
14442         * gtk/gtktreeview.c: Apply patch from John Margaglione to add
14443         object properties.
14444
14445 Mon Mar  5 14:55:19 2001  Jonathan Blandford  <jrb@redhat.com>
14446
14447         * gtk/gtkcellrenderertoggle.c: Apply patch from Lee Mallabone to
14448         add object properties.
14449
14450         * gtk/gtkcellrenderertextpixbuf.c: Apply patch from Lee Mallabone
14451         to add object properties.
14452
14453         * gtk/gtkcellrenderertext.c: Apply patch from Lee Mallabone to add
14454         object properties.
14455
14456         * gtk/gtkcellrendererpixbuf.c: Apply patch from Lee Mallabone to
14457         add object properties.
14458
14459         * gtk/gtkcellrenderer.c: Apply patch from Lee Mallabone to add
14460         object properties.
14461
14462 Mon Mar  5 14:38:54 2001  Jonathan Blandford  <jrb@redhat.com>
14463
14464         * gtk/gtktreemodel.c: renamed "child_toggled" to
14465         "has_child_toggled".
14466
14467         * gtk/gtktreeview.c: Handle removing columns better.  Updated to
14468         handle new signal name.
14469
14470         * gtk/gtktreestore.c: Updated to handle new signal name.
14471         * gtk/gtklisttore.c: Updated to handle new signal name.
14472         * gtk/gtktreemodelsort.c: Updated to handle new signal name.
14473
14474 2001-03-05  Alexander Larsson  <alexl@redhat.com>
14475
14476         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state):
14477         Set GDK_WINDOW_TYPE_HINT_MENU on tearoff window.
14478
14479 2001-03-05  Michael Natterer  <mitch@gimp.org>
14480
14481         * gtk/gtklabel.c: Made the "parent_class" pointer static. The
14482         pixbuf-engine coincidentially also failed to make one of it's
14483         parent_class pointers static, causing overwriting of GtkLabel's
14484         parent_class pointer in pixbuf_style_class_init().
14485         (Will commit the fix to the pixbuf-engine too).
14486
14487 2001-03-05  Alexander Larsson  <alexl@redhat.com>
14488
14489         * gdk/gdkwindow.h:
14490         Added GdkWindowTypeHint type. Added modal_hint field to GdkWindindow.
14491         New functions gdk_window_set_type_hint, gdk_window_set_modal_hint and
14492         gdk_window_set_icon_list for net wmspec functionality.
14493
14494         * gdk/x11/gdkwindow-x11.c:
14495         Set _NEW_WM_STATE_MODAL from window->modal_hint in set_inital_hints.
14496         Implement gdk_window_set_type_hint, gdk_window_set_modal_hint and
14497         gdk_window_set_icon_list.
14498         Added gdk_wmspec_change_state helper function and used it in the code.
14499         Set _NET_WM_ICON_NAME in gdk_window_set_title and gdk_window_set_icon_name.
14500
14501         * gtk/gtkdialog.c (gtk_dialog_init):
14502         Set GDK_WINDOW_TYPE_HINT_DIALOG.
14503
14504         * gtk/gtkhandlebox.c (gtk_handle_box_realize):
14505         Set GDK_WINDOW_TYPE_HINT_TOOLBAR.
14506
14507         * gtk/gtkwindow.c:
14508         new function gtk_window_set_type_hint.
14509         On realize, set type hint and modal hint.
14510
14511         * gtk/gtkwindow.h:
14512         Added type_hint field and gtk_window_set_type_hint.
14513
14514 2001-03-05  Alexander Larsson  <alexl@redhat.com>
14515
14516         * gtk/gtklabel.[ch]:
14517         Convert from GtkArg to GParam (originally based on patch from Lee Mallabone).
14518         New function gtk_label_get_accel_keyval () to get the underline accelerator
14519         of the label. Setting the label pattern overrides other attributes.
14520
14521 Mon Mar  5 14:51:10 MET 2001  Sven Neumann  <sven@gimp.org>
14522
14523         * gtk/gtkrc.c: fixed compiler warnings by inserting some consts.
14524         Added missing initializers to gtk_rc_style_init().
14525
14526 Sun Mar 04  07:30:03 2001 CET Mikael Hermansson <mikeh@bahnhof.se>
14527
14528         * gtk/gtktextview.c: fixed bug #51097 about setting 
14529         gtk_text_view_set_border_window_size() if the widget is 
14530         already realized.
14531
14532 Sat Mar  3 16:59:16 2001  Owen Taylor  <otaylor@redhat.com>
14533
14534         * gdk/gdkpango.h gdk/x11/gdkwindow-x11.c: Doc fixes
14535
14536         * gdk/win32/gdkinput.c (gdk_device_get_axis): Remove doc
14537         comment. Won't do to have duplicated doc comments between
14538         the platform subdirs.
14539
14540 Sat Mar  3 16:26:33 2001  Owen Taylor  <otaylor@redhat.com>
14541
14542         * gdk/x11/gdkmain-x11.c gdk/x11/gdkkeys-x11.c 
14543           gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.c:
14544
14545         Detectable auto-repeat - make a repeating key generate
14546         press/press/press/release instead of press/release pairs.
14547
14548         If we have Xkb and XkbSetDectableAutoRepeat supports
14549         that, we do it that way. Otherwise, when we get
14550         a release event, we check ahead with XPending to see
14551         if the next key is a KeyPress with the same keycode
14552         and timestamp. (Not 100% reliable, but pretty close.)
14553           
14554 Tue Feb 27 02:16:14 2001  Owen Taylor  <otaylor@redhat.com>
14555         
14556         * gtk/gtkmain.c (gtk_propagate_event): Only do special
14557         special key-press grab handling for widgets within
14558         GtkWindows. Otherwise, fall through to normal case.
14559  
14560         This prevents key events being sent twice to GtkInvisible
14561         widgets, which can cause all sorts of mischief.
14562  
14563 Fri Feb  2 13:20:12 2001  Owen Taylor  <otaylor@redhat.com>
14564  
14565         * gtk/gtkmain.c (gtk_propagate_event): When a grab
14566         widget is in effect, give the grab widget a first
14567         crack at KEY_PRESS/RELEASE events. (#424)
14568  
14569 Sat Mar  3 15:39:49 2001  Owen Taylor  <otaylor@redhat.com>
14570
14571         * gtk/gtkentry.c (gtk_entry_button_press): Add shift-clicking
14572         to extend the selection. (Roughly based on patch
14573         from Jay Cox, #50939)
14574
14575         * gtk/gtkentry.c (gtk_entry_button_press): Fix triple-clicking
14576         to properly handle previous GDK_BUTTON_PRESS. 
14577         (Patch from Jay Cox, #50938)
14578
14579         * gtk/gtkentry.c (gtk_entry_real_delete_text): Move the
14580         '\0' back along with the deleted text. (#51148)
14581
14582 Mon Jan 22 14:31:29 2001  Owen Taylor  <otaylor@redhat.com>
14583
14584         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Unshift
14585         the group when extracting it from the X keyboard event.
14586
14587         * modules/input/Makefile.am modules/input/imipa.c: 
14588         Simple module for entering IPA. (Do we need a 
14589         gtk-stupid-input-tricks CVS module?)
14590
14591 Sat Mar  3 13:32:47 2001  Owen Taylor  <otaylor@redhat.com>
14592
14593         * gtk/gtkimmodule.c (gtk_im_module_init): Remove spurious
14594         const.
14595
14596         * gdk-pixbuf-2.0.pc.in gtk+-2.0.pc.in: Fix include path.
14597
14598         * gtk/gtkdialog.c (gtk_dialog_set_default_response): If there
14599         is no focus widget for the dialog currently, grab the focus as well
14600         as the default.
14601
14602         * gtk/gtkdialog.c (gtk_dialog_set_default_response): Get
14603         the action area's children to iterate through, not the
14604         dialog's children.
14605
14606 Sat Mar  3 13:21:27 2001  Owen Taylor  <otaylor@redhat.com>
14607
14608         * tests/Makefile.am tests/testsocket.c tests/testsocket_child.c:
14609         Add plug-socket tests. (Won't work worth a darn until I commit
14610         the rest of the plug-socket changes, but no reason these
14611         can't go into CVS now.)
14612
14613 2001-03-02  Havoc Pennington  <hp@redhat.com>
14614
14615         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_flush): use
14616         _gdk_region_get_xrectangles()
14617
14618         * gdk/x11/gdkmain-x11.c (_gdk_region_get_xrectangles): new function
14619
14620         * gtk/testgtk.c (create_shapes): add test for shape_combine_region
14621
14622         * gdk/x11/gdkwindow-x11.c (gdk_window_shape_combine_region): new
14623         function, contributed by Ron Steinke    
14624
14625         * gdk/x11/gdkevents-x11.c (gdk_wmspec_supported): rename
14626         gdk_net_wm_supports
14627
14628         * gdk/gdkregion-generic.c (gdk_region_get_rectangles): 
14629         New function, contributed by Ron Steinke
14630
14631         * gtk/gtkentry.c (gtk_entry_get_layout_offsets): New function, 
14632         used to line up the text in the entry when using the entry for
14633         editable sheet cell hacks
14634
14635         * gtk/testgtk.c (create_entry): test the activate_default setting
14636         on GtkEntry
14637
14638         * gtk/gtkentry.c (gtk_entry_set_activates_default): New function to 
14639         cause the entry to activate the default button for a dialog when 
14640         activated
14641         (gtk_entry_get_activates_default): new function
14642
14643 Wed Feb 28 19:10:43 2001  Owen Taylor  <otaylor@redhat.com>
14644
14645         * gtk/gtkclist.c (real_remove_row): Patch from ChiDeok
14646         Hwang to move call to sync_selection() up a few lines
14647         to before the row list is modified, to fix crash when
14648         removing rows in the undo_selection list.
14649
14650         (Test case provided by Daniel Elstner:
14651
14652         http://mail.gnome.org/archives/gtk-list/2001-February/msg00359.html)
14653
14654 Fri Feb 23 15:06:48 2001  Owen Taylor  <otaylor@redhat.com>
14655
14656         * gtk/gtktree.c (gtk_tree_class_init): Do the setting
14657         of tree->root_tree in parent_set rather than _map(), 
14658         fixing #50892 in a bit better manner.
14659
14660 Thu Feb 22 17:07:58 2001  Owen Taylor  <otaylor@redhat.com>
14661
14662         * gtk/gtkmenu.c (gtk_menu_popup): Don't flip cursor. (#50934)
14663
14664 Tue Feb  2 11:22:33 2001  Jody Goldberg <jgoldberg@home.com>
14665
14666         * gtk/gtkstyle.c : Remove duplicate fwd decl for
14667         gtk_default_draw_shadow.
14668
14669 ue Feb 20 11:40:58 2001  Owen Taylor  <otaylor@redhat.com>
14670
14671         * gdk/gdkimage.c (gdk_image_new): Remove excess 
14672         warning, make warnings more verbose, treat a error
14673         in shmat as permanent, and don't try again.
14674         (#51163, Ed Randall.)
14675
14676 Mon Feb 19 20:15:28 2001  Owen Taylor  <otaylor@redhat.com>
14677
14678         * gtk/gtkrange.c (gtk_range_timer_1st_time): Add an initial
14679         delay for the first click before starting to scroll.
14680         (based on #51026, gtk-enf-990512-0.patch, Eric Fisher)
14681
14682         * gtk/gtktext.c: GtkText should have I-beam cursor. 
14683         (based on gtk-enf-990513-1.patch, Eric Fisher.)
14684
14685 Mon Feb 19 16:42:19 2001  Owen Taylor  <otaylor@redhat.com>
14686
14687         * gtk/gtklayout.c (gtk_layout_allocate_child): Tiny
14688         cleanup to remove some references to unused
14689         ->xoffset, ->yoffset.
14690
14691 Mon Feb 19 14:20:36 2001  Owen Taylor  <otaylor@redhat.com>
14692
14693         * gdk/gdkrgb.c (gdk_rgb_convert_555_br): Fix incorrect
14694         mask. (#51039, fix from Martin Maierhofer)
14695
14696 Fri Feb 16 20:09:42 2001  Owen Taylor  <otaylor@redhat.com>
14697
14698         * gtk/gtkctree.c (gtk_ctree_class_init): Add bindings
14699         for unshifted + and shifted = for non-us keyboards.
14700         Make <Control>+ and <Control>- work as well as 
14701         <Control>KP_Plus, <Control>KP_Minus for recursive
14702         open/close.  (#2682, René Seindal)
14703
14704 Fri Feb 16 18:50:59 2001  Owen Taylor  <otaylor@redhat.com>
14705
14706         * gtk/gtkmenushell.c (gtk_real_menu_shell_cancel): Unset
14707         the active menu item before deactivating the menu,
14708         so gtk_menu_popdown doesn't change the history. (#50964)
14709         
14710 Fri Feb 16 15:55:22 2001  Owen Taylor  <otaylor@redhat.com>
14711
14712         * gtk/gtktreeitem.c (gtk_tree_item_draw_lines): 
14713         draw lines with text_gc rather than black_gc.
14714         (Patch from Vlad Harchev <hvv hippo ru>, #50926)
14715
14716 Thu Mar  1 19:50:56 2001  Jonathan Blandford  <jrb@redhat.com>
14717
14718         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_realize_button):
14719         Move handling of buttons fully in gtktreeviewcolumn.  This code is
14720         less interrelated then it was, but it still requires the
14721         GtkTreeView to map it.
14722
14723         * test/testtreecolumn.c: Now I can add a column to one view,
14724         remove it, add it to the another view, remove it, then re-add it
14725         to the first.  Nifty.
14726
14727 Thu Mar  1 13:14:27 GMT 2001  Tony Gale <gale@gtk.org>
14728
14729         * docs/tutorial/gtk-tut.sgml: Minor corrections
14730
14731 Wed Feb 28 16:36:46 2001  Jonathan Blandford  <jrb@redhat.com>
14732
14733         * gtk/gtktreemodel.c (gtk_tree_row_reference_*): Sanitize
14734         GtkRowReference.
14735
14736 2001-02-28  Havoc Pennington  <hp@redhat.com>
14737
14738         * gtk/gtkwidget.h (struct _GtkWidgetClass): Remove draw_focus and
14739         draw_default
14740         (gtk_widget_draw_focus): remove this function; we could instead
14741         make it just gtk_widget_draw(), but in most cases I think the
14742         result would be broken user code, so think it's better to have
14743         that code not compile and get fixed
14744         (gtk_widget_draw_default): ditto
14745
14746         * gtk/gtkwidget.c: Add default handlers for focus_in_event and
14747         focus_out_event that set/unset GTK_HAS_FOCUS and call queue_draw
14748         
14749         * gtk/gtkwindow.c (gtk_window_set_default): just queue a draw when
14750         widgets lose/get the default, instead of calling draw_default
14751         
14752         * docs/Changes-2.0.txt: note about all this
14753
14754         Then fixed every widget in GTK, I won't list all the filenames.
14755
14756 Tue Feb 27 19:32:53 2001  Jonathan Blandford  <jrb@redhat.com>
14757
14758         * gtk/gtktreemodel.c (deleted_callback): Proxy out to
14759         _gtk_tree_row_reference_deleted.
14760         (inserted_callback): Proxy out to
14761         _gtk_tree_row_reference_inserted.
14762         (_gtk_tree_row_reference_new_from_view): Somewhat yukky hack to
14763         get around signal emission ordering problem.
14764
14765         * gtk/gtktreeselection.c (gtk_tree_selection_real_unselect_all):
14766         fix to work with SINGLE 
14767         (_gtk_tree_selection_internal_select_node): Major sanitization on
14768         selections.  SINGLE now seems to work.
14769
14770         * tests/Makefile.am: add testtreecolumn.c:
14771
14772         * tests/testtreecolumn.c: New test.  Mostly points out selection
14773         bugs currently, but will test columns later.
14774
14775         * gtk/gtkrbtree.c (_gtk_rbtree_remove_node): Fix really nasty
14776         selection bug.  I hate touching this code -- it's scary.
14777
14778 2001-02-26  Havoc Pennington  <hp@redhat.com>
14779
14780         * gtk/testgtk.c: test the window state stuff
14781
14782         * gtk/gtkwindow.c (gtk_window_present): new function, makes a
14783         window come to the user's attention as if it were just created
14784         (gtk_window_iconify): new function
14785         (gtk_window_deiconify): new function
14786         (gtk_window_stick): new function
14787         (gtk_window_unstick): new function
14788         (gtk_window_maximize): new function
14789         (gtk_window_unmaximize): new function
14790
14791         * gtk/gtkwidget.h, gtk/gtkwidget.c: add window_state_event signal
14792
14793         * gtk/gtkmain.c (gtk_main_do_event): handle GDK_WINDOW_STATE
14794
14795         * gdk/x11/gdkevents-x11.c: create window state events when
14796         appropriate
14797         (gdk_wmspec_supported): new function
14798
14799         * gdk/x11/gdkwindow-x11.c (gdk_window_iconify): handle
14800         iconification before showing the window
14801         (gdk_window_deiconify): new function
14802         (gdk_window_stick): new function
14803         (gdk_window_unstick): new function
14804         (gdk_window_maximize): new function
14805         (gdk_window_unmaximize): new function
14806
14807         * gdk/gdkwindow.c: store the window state in the window; 
14808         change to using the GDK_WINDOW_STATE_WITHDRAWN flag instead of
14809         window->mapped.
14810         (gdk_window_get_state): return the current window state
14811
14812         * gdk/gdkevents.c (gdk_event_get_time): handle GDK_WINDOW_STATE
14813         (gdk_event_get_state): handle GDK_WINDOW_STATE
14814         (gdk_synthesize_window_state): function to create the window state
14815         events
14816
14817         * gdk/gdkevents.h (struct _GdkEventWindowState): new type of
14818         event, for changes to "window state" such as maximized, sticky, 
14819         etc.
14820         
14821         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): new function,
14822         focuses a window
14823
14824         * gdk/x11/gdkmain-x11.c (_gdk_wmspec_supported): new function, 
14825         finds out if we support a given WM spec hint
14826
14827 Tue Feb 27 13:37:38 GMT 2001  Tony Gale <gale@gtk.org>
14828
14829         * docs/faq/gtk-faq.sgml: New question re memory leaks.
14830
14831 2001-02-25  Hans Breuer  <hans@breuer.org>
14832
14833         * gdk/gdk.h : changed #ifdef GDK_DISBALE_DEPRECARED to #ifndef
14834         cause we want to loose those prototypes only in the latter case
14835
14836         * gdk/win32/gdkevents-win32.c : can't cast from GdkPixmap to
14837         GdkPixmapImplWin32 because it itsn't derived from it. Use the
14838         impl member variable instead
14839
14840         * gtk/gtk.def : updated
14841
14842         * gtk/gtklist.c : 
14843         * gtk/gtkmenus.c : include <string.h> for memset ()
14844
14845         * gtk/makefile.msc.in : updated and don't define GTK_COMPILATION
14846         for everthing built here, but for gtk-x.x.dll only. This solves
14847         problem of indifferent gtk type definitions
14848
14849 Sat Feb 24 20:11:39 2001  Jonathan Blandford  <jrb@redhat.com>
14850
14851         * gtk/gtkclipboard.h: actually put /* */ around #endif comment.
14852
14853 Fri Feb 23 17:50:13 2001  Jonathan Blandford  <jrb@redhat.com>
14854
14855         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Only draw the
14856         column that is exposed.
14857
14858         (_gtk_tree_view_update_size): Changed name from set_size, and
14859         changed function to do more work, and not force people calling it
14860         to figure out the size.  Simplifies a lot of code elsewhere.
14861
14862 2001-02-23  Alexander Larsson  <alexl@redhat.com>
14863
14864         * gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf):
14865         return solid masks for xpms that have no transparent color.
14866         This makes the ..._create_from_xpm... API backwards
14867         compatible.
14868
14869 2001-02-23  Tor Lillqvist  <tml@iki.fi>
14870
14871         * README.win32: Update. Mention the gtk-1-3-win32-production
14872         branch.
14873
14874         * gdk/win32/bdfcursor.c: New file. A program that generates
14875         xcursors.h. Thanks to Stefan Ondrejicka.
14876
14877         * gdk/win32/xcursors.h: New file, contains the X cursor font in a
14878         compact format.
14879
14880         * gdk/win32/Makefile.am (EXTRA_DIST): Add new files.
14881
14882         * gdk/win32/gdkcursor-win32.c (_gdk_win32_data_to_wcursor): New
14883         function, uses xcursors.h.
14884         (gdk_cursor_new): Use _gdk_win32_data_to_wcursor to generate
14885         cursor from inline data instead of using LoadCursor() to generate
14886         it from a resource.
14887
14888         * gdk/win32/gdkevents-win32.c (gdk_event_translate): At button up
14889         event, must check the Windows message for mouse button state, as
14890         the GDK event state might not have been built if it is
14891         undelivered. Remove one goto.
14892
14893         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Call
14894         SetCursor() if the current cursor as returned by GetCursor() is
14895         the window's previous cursor. The ChildWindowFromPoint() test
14896         apparently didn't work correctly.
14897
14898         * gdk/win32/rc/*.cur: Remove.
14899
14900         * gdk/win32/rc/gdk.rc.in: Remove cursors.
14901
14902         * gdk/win32/rc/Makefile.am (EXTRA_DIST): Remove from here, too.
14903
14904         * gtk/makefile.{mingw,msc}.in: Updates.
14905
14906 Wed Feb 21 20:56:50 2001  Jonathan Blandford  <jrb@redhat.com>
14907
14908         * gtk/gtktreemodel.h: add functions for signal emission.
14909
14910         * gtk/gtktreestore.c: move to use above functions instead of
14911         g_signal_emit.
14912
14913         * gtk/gtkliststore.c: ditto
14914
14915 Wed Feb 21 15:41:34 2001  Jonathan Blandford  <jrb@redhat.com>
14916
14917         * gtk/gtktreestore.c: removed signals.  Moved to inherit from
14918         GObject instead of GtkObject.
14919
14920         * gtk/gtkliststore.c: ditto.
14921
14922         * gtk/gtktreemodelsort.c: ditto.
14923
14924         * gtk/gtktreemodel.c (gtk_tree_model_base_init): moved signals to
14925         GtkTreeModelIface, instead of in each model.
14926
14927 2001-02-21  Havoc Pennington  <hp@redhat.com>
14928
14929         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_child_anchor):
14930         unbreak this function
14931
14932         * gtk/gtkentry.c: apply patch from Lee Mallabone to add object 
14933         properties
14934
14935         * gtk/gtkcurve.c: apply patch from Lee Mallabone to add object
14936         properties
14937
14938         * gtk/gtkcombo.c: apply patch from Lee Mallabone to add object 
14939         properties
14940
14941         * gtk/gtkentry.c (gtk_entry_set_max_length): have this take -1 to
14942         mean unset the max length
14943
14944 Wed Feb 21 14:23:05 2001  Jonathan Blandford  <jrb@redhat.com>
14945
14946         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data_func):
14947         Changed name to be set_cell_data_func to make it clear what
14948         the functino does.  Close bug #51069.
14949
14950 Tue Feb 20 16:49:00 2001  Jonathan Blandford  <jrb@redhat.com>
14951
14952         * gtk/testgtk.c (main): Remove turning on of profiling malloc,
14953         have memory actually freed.  Keeps box running longer.
14954
14955 2001-02-21  Alexander Larsson  <alexl@redhat.com>
14956         
14957         * gtk/gtkseparatormenuitem.[ch]:
14958         Added new menu separator item. The drawing and size handling
14959         is still done in GtkMenuItem, but the API is a bit more sane.
14960         
14961         * gtk/Makefile.am:
14962         Add gtkseparatormenuitem.[ch].
14963
14964         * gtk/gtk.h:
14965         Add gtkseparatormenuitem.h.
14966         
14967         * gtk/gtkentry.c:
14968         * gtk/gtkmenufactory.c:
14969         * gtk/gtktextview.c:
14970         Use the new API for menu separators.
14971         
14972         * demos/gtk-demo/menus.c (create_menu):
14973         Add some GtkSeparatorMenuItem demo code.
14974
14975 2001-02-20  Havoc Pennington  <hp@redhat.com>
14976
14977         * gtk/gtkaspectframe.c: Convert to new property API, patch from 
14978         Lee Mallabone
14979
14980         * gtk/gtkarrow.c: Convert to new property API, patch from 
14981         Lee Mallabone
14982
14983 Tue Feb 20 14:26:41 2001  Jonathan Blandford  <jrb@redhat.com>
14984
14985         * tests/testtreeview.c (toggled_callback): fix to reflect change
14986         in GtkTreeModelStore.
14987
14988 Tue Feb 20 12:16:12 2001  Jonathan Blandford  <jrb@redhat.com>
14989
14990         * gtk/gtkiconfactory.c (gtk_icon_set_new_from_pixbuf): New
14991         function to create an icon set from a pixbuf.
14992
14993 2001-02-20  Alexander Larsson  <alexl@redhat.com>
14994
14995         * gtk/gtkcellrenderertext.[ch]:
14996         Add a "markup" property.
14997
14998         * gtk/treestoretest.c:
14999         Use the markup property, remove some leftover stuff from
15000         GtkTreeModelMapping.
15001
15002 2001-02-20  Alexander Larsson  <alexl@redhat.com>
15003
15004         * gtk/gtklabel.c (gtk_label_set_selectable):
15005         Queue a redraw if the selectable setting was changed.
15006
15007 2001-02-20  Alexander Larsson  <alexl@redhat.com>
15008
15009         * gdk/linux-fb/gdkgc-fb.c (gdk_gc_copy):
15010         Actually copy the whole gc, not just the public parts.
15011         
15012         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new):
15013         GDK_WINDOW_TEMP are not toplevel. Fixes selectable
15014         labels.
15015
15016 2001-02-19  Havoc Pennington  <hp@pobox.com>
15017
15018         * gdk/gdkwindow.c: docs
15019
15020         * gdk/gdkrgb.c: docs
15021
15022         * gdk/gdkregion-generic.c: docs
15023
15024         * gdk/gdkgc.c (gdk_gc_set_values): docs
15025
15026         * gdk/gdkdraw.c: docs
15027
15028         * gdk/gdkdrawable.h: deprecate drawable get/set data
15029
15030 Mon Feb 19 20:37:35 2001  Jonathan Blandford  <jrb@redhat.com>
15031
15032         * demos/gtk-demo/dialog.c: Add simple new demo.
15033
15034 2001-02-19  Havoc Pennington  <hp@redhat.com>
15035
15036         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): add
15037         insert_child_anchor signal, bug #50245
15038
15039         * gtk/gtktextbtree.c (_gtk_text_btree_insert_child_anchor): change
15040         from create_child_anchor, so the anchor is passed in
15041
15042         * gtk/gtktextchild.c (gtk_text_child_anchor_new): new function
15043         (_gtk_widget_segment_new): have the child anchor object passed in, 
15044         instead of creating it.
15045
15046         * gtk/gtktextbuffer.c (gtk_text_buffer_modified): rename
15047         to gtk_text_buffer_get_modified
15048
15049 2001-02-19  Havoc Pennington  <hp@redhat.com>
15050
15051         * gtk/gtktreemodel.c (gtk_tree_model_get_valist): hmm, someone
15052         changed GLib without fixing GTK
15053
15054         * gtk/gtkrange.h: Rename all the stupid implementation detail 
15055         functions to have an underscore in front. Most of them should 
15056         probably just go away, but for starters don't export them.
15057         Bug #50482
15058
15059 2001-02-19  Havoc Pennington  <hp@redhat.com>
15060
15061         * gdk/gdkcolor.h: test was backward, so deprecated functions were
15062         excluded by default
15063
15064         * gtk/gtkstyle.c (gtk_default_draw_diamond): draw etched in/out,
15065         clean up the old code a bit
15066
15067         * gtk/gtkradiobutton.c (gtk_radio_button_draw_indicator): draw
15068         inconsistent state
15069
15070         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_draw_indicator):
15071         draw inconsistent state
15072
15073         * gtk/testgtk.c (create_toggle_buttons): add test for inconsistent
15074         (create_menu): add inconsistent test
15075
15076         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_set_inconsistent):
15077         new function
15078         (gtk_check_menu_item_get_inconsistent): new function
15079         (gtk_real_check_menu_item_draw_indicator): draw the inconsistent
15080         state (using etched in for now)
15081
15082         * gtk/gtkcheckbutton.c (gtk_real_check_button_draw_indicator):
15083         draw inconsistent state
15084
15085         * gtk/gtktogglebutton.c (gtk_toggle_button_set_inconsistent): new
15086         function, used when the user has selected a range of stuff in
15087         different states
15088         (gtk_toggle_button_get_inconsistent): accessor for that
15089         (gtk_toggle_button_paint): draw inconsistent state (etched in?
15090         don't know what else to do)
15091
15092 2001-02-19  Hans Breuer <hans@breuer.org>
15093
15094         * gtk/gtk.def : updated exported symbols
15095
15096         * gtk/makefile.msc.in : updated
15097
15098         * gtk/gtkstyle.c (gtk_style_realize) : gets called without
15099         a colormap, when invoked from testgtk::entry. I'm not sure where
15100         the bug is, but g_return_if_fail (GDK_IS_COLORMAP (colormap));
15101         avoids immediate crashing ...
15102
15103         * gtk/gtkmain.c (check_setugid) : totally disabled on win32;
15104         any objections ?
15105
15106         * gtk/gtktreemodel.c : called G_VALUE_LCOPY with an extra
15107         0 parameter. At least msvc doesn't like macros with var args. 
15108         I simply removed the extra 0, was it a feature or a typo ?
15109
15110         * gtk/gtktreeviewcolumn.[hc] (gtk_tree_view_column_set_func) :
15111         removed the extra indirection from the GtkTreeViewColumnFunc parameter,
15112         because the value assignment to the internal struct wasn't working.
15113         I'm not absolutely sure. The problem could have been resolved by
15114         changing the "func" declartion in the struct, but was the pointer
15115         to the function pointer intended ?
15116
15117         * gtk+/gtk/gtktreedatalist.c : include gboxed.h
15118
15119         * gdk/gdk.def : updated exported symbols
15120
15121         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_image) :
15122         only use SetDIBitsToDevice if there is a palette at the drawable
15123         and the image is GDK_VISUAL_PSEUDO_COLOR
15124
15125         * gdk/win32/gdkkeys-win32.c : msvc still has no <unistd.h> ...
15126
15127         * gdk/win32/gdkwindow-win32.c : #include "gdk.h" /* gdk_rectangle_intersect */
15128
15129         * gdk/*/makefile.msc : updated
15130
15131 2001-02-19  Havoc Pennington  <hp@redhat.com>
15132
15133         * demos/gtk-demo/Makefile.am (INCLUDES): GDK_DISABLE_COMPAT_H,
15134         GDK_DISABLE_DEPRECATED (we need to merge those two #defines)
15135
15136         * gdk/x11/gdkmain-x11.c (gdk_key_repeat_disable): nuke
15137         (gdk_key_repeat_restore): nuke
15138
15139         * gdk/gdk.c (gdk_exit_func): #if 0 this for now, don't install it
15140         (gdk_init_check): no atexit func
15141
15142         * gdk/gdkrgb.h: mark some stuff deprecated
15143
15144         * gdk/gdkcolor.h: mark some stuff deprecated
15145         
15146         * gdk/gdk.h: deprecated gdk_exit, gdk_input_*
15147
15148         * gdk/gdkfont.h: bracket in GDK_DISABLE_DEPRECATED
15149
15150 2001-02-16  Havoc Pennington  <hp@redhat.com>
15151
15152         * gtk/gtkvscrollbar.c (gtk_vscrollbar_trough_keys): use the visual
15153         scroll steps.
15154
15155         * gtk/gtkvscale.c (gtk_vscale_trough_keys): use the visual scroll
15156         steps, and add Ctrl-arrow shortcuts for paging visually as with
15157         HScale, since Page Up and Page Down move logically.
15158
15159         * gtk/gtkenums.h (GtkScrollType): add GTK_SCROLL_STEP_UP,
15160         GTK_SCROLL_STEP_DOWN, etc. for visual scroll directions
15161         
15162         * gtk/gtkrange.c (gtk_range_key_press): handle the visual scroll
15163         steps
15164         (gtk_range_scroll): handle the visual steps
15165
15166         * gtk/gtklist.c (gtk_list_scroll_horizontal): handle the up/down
15167         scroll steps
15168
15169         * gtk/gtkhscale.c (gtk_hscale_trough_keys): use the visual scroll
15170         steps, not the logical ones.
15171
15172         * gtk/gtkclist.c (move_focus_row): handle the up/down scroll steps
15173         (scroll_vertical): handle up/down steps
15174
15175 2001-02-19 Alexander Larsson  <alexl@redhat.com>
15176
15177         * gdk/linux-fb/gdkimage-fb.c (gdk_image_new_bitmap):
15178         Copy data and free data with free().
15179
15180         * gdk-pixbuf/gdk-pixbuf.c:
15181         * gdk-pixbuf/io-jpeg.c:
15182         * gdk-pixbuf/io-png.c:
15183         Use g_try_malloc/g_free instead malloc/free.
15184         
15185         * gdk-pixbuf/test-gdk-pixbuf.c:
15186         Must... initialize... gobject...
15187         
15188         * gdk-pixbuf/pixops/timescale.c:
15189         * gtk/gtkcalendar.c:
15190         Use g_malloc instead of malloc.
15191         
15192 2001-02-19 Alexander Larsson  <alla@lysator.liu.se>
15193
15194         * gtk/testgtkrc:
15195         Comment out property assignments, these don't work yet.
15196
15197 2001-02-17  Havoc Pennington  <hp@pobox.com>
15198
15199         * gtk/gtkalignment.c (gtk_alignment_class_init): clean this up a
15200         bit.
15201
15202 2001-02-17  Havoc Pennington  <hp@pobox.com>
15203
15204         * gtk/gtklabel.c (gtk_label_ensure_layout): fix screwup with
15205         shadowed variables that had broken size request in some cases,
15206         leading to bogus tooltips (#50996)
15207
15208 2001-02-06  Jon K Hellan  <hellan@acm.org>
15209
15210         Implement fast browsing of tooltips, bug #50619
15211         
15212         * gtk/gtktooltips.h (struct _GtkTooltips): Add use_sticky_delay
15213         and last_popdown
15214         
15215         * gtk/gtktooltips.c (gtk_tooltips_init): Initialize sticky_delay,
15216         use_sticky_delay and last_popdown.
15217         (gtk_tooltips_draw_tips, gtk_tooltips_set_active_widget): Record
15218         time of popdown.
15219         (gtk_tooltips_set_active_widget): Unset sticky behaviour if widget
15220         is NULL.
15221         (gtk_tooltips_recently_shown): New static function.  Return true
15222         if < sticky_delay has elapsed since last popdown.
15223         (gtk_tooltips_event_handler): Display window after sticky_delay
15224         (presumably < normal delay) if < STICKY_REVERT_DELAY has elapsed
15225         since last popdown.
15226         
15227 2001-02-17  Havoc Pennington  <hp@pobox.com>
15228
15229         * gtk/gtktypeutils.h (GtkSignalFunc): change it to take (void)
15230         instead of (). #6394
15231
15232         * gtk/gtkprogressbar.c (gtk_progress_bar_get_text): Add
15233         G_CONST_RETURN, make it return by reference, #50473
15234         
15235 Sat Feb 17 06:47:27 2001  Tim Janik  <timj@gtk.org>
15236
15237         * gtk/gtkmenu.c (gtk_menu_motion_notify): default initialize the
15238         generated ENTER_NOTIFY event with 0, otherwise not explicitely
15239         setup fields contain garbage (e.g. subwindow, breaking
15240         gdk_drawable_ref() upon event copy).
15241         (gtk_menu_stop_navigating_submenu_cb): same here.
15242
15243         * gtk/gtklist.c (gtk_list_vertical_timeout): 
15244         * gtk/gtklist.c (gtk_list_horizontal_timeout): 
15245         * gtk/gtkclist.c (vertical_timeout): 
15246         * gtk/gtkclist.c (horizontal_timeout): change direct assignment
15247         default-zero-intialization for unions to memset(,0,), as unions are
15248         not fully default-zero-initialized by compilers (GdkEvent x = { 0, };
15249         has to become GdkEvent x; memset (&x, 0, sizeof (x)); )
15250
15251         * gtk/gtktreeview.c (gtk_tree_view_set_rows_drag_source): scratch
15252         g_closure_sink() warning.
15253
15254         * gtk/gtktreemodel.c (gtk_tree_model_get_valist): 
15255         * gtk/gtktreestore.c (gtk_tree_store_set_valist): 
15256         * gtk/gtkliststore.c (gtk_list_store_set_valist): 
15257         fix G_VALUE_COLLECT() and G_VALUE_LCOPY() calls.
15258         
15259 Fri Feb 16 17:49:59 2001  Jonathan Blandford  <jrb@redhat.com>
15260
15261         * gtk/gtktreestore.[hc], gtk/gtkliststore.[ch]: removed
15262         gtk_*_store_get, and moved to GtkTreeModel.
15263
15264         * gtk/gtktreemodel.h (gtk_tree_model_set{v,}): Added
15265
15266         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize): added.
15267
15268         * gtk/Makefile.am: remove gtktreemodelmapping.[ch]
15269
15270         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_func): let you
15271         set the func.
15272
15273         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data):
15274         freeze/thaw notify between setting all the properties for a cell.
15275
15276         * gtk/gtk.h: remove gtktreemodelsimple.h, and gtktreemodelmapping.h
15277
15278 2001-02-15  Havoc Pennington  <hp@redhat.com>
15279
15280         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): convert
15281         the X coordinates so they're with respect to the line, rather than 
15282         with respect to the layout.
15283
15284         * gtk/gtkalignment.c: Convert to new property API, patch from Lee
15285         Mallabone
15286
15287         * gtk/testgtk.c (create_range_controls): add vscale tests, 
15288         and inverted test
15289
15290         * gtk/gtkrange.c (gtk_range_set_inverted): new function to fix 
15291         #50806
15292
15293         * gtk/gtkentry.c (gtk_entry_get_text): add G_CONST_RETURN
15294
15295         * gtk/gtktextiter.h (gtk_text_iter_is_last): rename 
15296         gtk_text_iter_is_end
15297
15298         * gtk/gtktextbuffer.h (gtk_text_buffer_get_last_iter):
15299         rename gtk_text_buffer_get_end_iter
15300
15301         * gtk/testgtk.c (create_labels): Add test for selectable
15302
15303         * gtk/gtkentry.c (gtk_entry_draw_text): Use new GDK API to draw
15304         the selection stuff. This code is kind of broken since it doesn't 
15305         use the theme engine.
15306
15307         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): 
15308         fix infinite loop and y offset problem
15309         (gdk_draw_layout_line_with_colors): fix foreground color handling
15310
15311         * gtk/gtklabel.h, gtk/gtklabel.c: Implement a "selectable" flag 
15312         that makes the label selectable.
15313         
15314         * gtk/gtklabel.c (gtk_label_style_set): recreate the label's
15315         layout when the style is set, since fonts etc. could have changed.      
15316
15317 Fri Feb 16 14:22:05 2001  Jonathan Blandford  <jrb@redhat.com>
15318
15319         * gtk/Makefile.am: Removed gtktreemodelsimple.[ch]
15320
15321         * gtk/gtktreemodelsimple.[ch]: removed.
15322
15323 2001-02-16  Alexander Larsson  <alexl@redhat.com>
15324
15325         * gtk/gtktreemodelmapping.[ch]:
15326         New files. Implement GtkTreeModelMapping.
15327         
15328         * gtk/Makefile.am:
15329         Add gtktreemodelmapping.[ch].
15330         
15331         * gtk/gtk.h:
15332         Add gtktreemodelmapping.h
15333
15334         * gtk/treestoretest.c:
15335         Test the GtkTreeModelMapping
15336
15337 Tue Feb 13 13:16:09 2001  Jonathan Blandford  <jrb@redhat.com>
15338
15339         * demos/gtk-demo/panes.c (create_pane_options): If we're going to
15340         have a demo, we might as well pass in real values.  Thanks to
15341         clahey for pointing this out.
15342
15343 2001-02-14  Havoc Pennington  <hp@pobox.com>
15344
15345         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_remove): add
15346         "static" to a private function
15347         (gtk_image_menu_item_class_init): remove destroy handler,
15348         add "image" object property
15349
15350 2001-02-13  Alexander Larsson  <alla@lysator.liu.se>
15351
15352         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_clip_region):
15353         Add a shortcut if the window and the current clip_region doesn't
15354         overlap. This is needed when there are a lot of windows in a
15355         window. The layout test in testgtk is a good test.
15356
15357         * gdk/linux-fb/gdkwindow-fb.c:
15358         Whitespace fix.
15359
15360 2001-02-13  Sven Neumann  <sven@convergence.de>
15361
15362         * demos/testanimation.c: replaced deprecated gtk_drawing_area_size
15363
15364 2001-02-13  Alexander Larsson  <alexl@redhat.com>
15365
15366         * gdk/linux-fb/gdkcursor-fb.c (gdk_fb_cursor_unhide):
15367         Don't reference last_cursor if it is null. Fixes crash when rotating
15368         the screen before having moved the mouse.
15369
15370         * gdk/linux-fb/gdkcc-fb.c: Zapp!
15371
15372         * gdk/linux-fb/Makefile.am: Don't compile gdkcc-fb.c
15373
15374         * gdk/linux-fb/gdkwindow-fb.c: Fix typo. width->height. Fixes redraw 
15375         when using 90 or 270 degrees rotation.
15376
15377 2001-02-12  Havoc Pennington  <hp@pobox.com>
15378
15379         * gdk/gdkpango.c (gdk_pango_get_gc): fix bug where 
15380         it always set the foreground, even if we were only using
15381         a stipple.
15382         (gdk_draw_layout_line_with_colors): new function, allow
15383         override colors
15384         (gdk_draw_layout_with_colors): new function, allow override
15385         colors
15386         (gdk_pango_layout_line_get_clip_region): function to get the clip
15387         region for a logical text range
15388         (gdk_pango_layout_get_clip_region): get the clip region for a
15389         logical text range
15390
15391         * gdk/x11/gdkcolor-x11.c: forward declare gdk_colormap_sync(),
15392         (gdk_colormap_new): fix call to gdk_colormap_sync() so it has 
15393         the right number of arguments.
15394
15395         * gtk/gtktextbtree.c (gtk_text_btree_node_check_consistency):
15396         enhance the function to check that node data corresponds to a 
15397         view still belonging to the tree.
15398
15399         * gtk/gtktreeview.c (gtk_tree_view_changed): we were leaking the 
15400         GtkTreePath
15401         (gtk_tree_view_inserted): ditto
15402         (gtk_tree_view_child_toggled): ditto
15403
15404         * gtk/gtktreemodel.c (gtk_tree_path_append_index): use realloc to
15405         simplify this code.
15406
15407         * gtk/gtkcellrenderertext.c (get_layout): fix leak of 
15408         a PangoAttrList
15409
15410         * demos/gtk-demo/main.c (load_file): Fix leak of a GString
15411
15412         * gtk/gtkentry.c (gtk_entry_realize): Fix leak of a GdkCursor
15413
15414         * gtk/gtkmenubar.c (gtk_menu_bar_size_request): consider toggle
15415         size in the size request 
15416         (gtk_menu_bar_size_allocate): consider toggle size here
15417
15418         * gtk/gtkimagemenuitem.h, gtkimagemenuitem.c: Menu item
15419         that displays a widget in the toggle slot
15420
15421         * gtk/testgtk.c: test GtkImageMenuItem
15422
15423         * gtk/Makefile.am, gtk/gtk.h: Add GtkImageMenuItem
15424         
15425         * gtk/gtkmenuitem.h: Use "gint" not "guint16" for toggle size
15426         request and allocation
15427
15428         * gtk/gtkmenu.c (gtk_menu_size_request): use gint not guint16
15429
15430         * gtk/gtkcheckmenuitem.c
15431         (gtk_check_menu_item_toggle_size_request): ditto
15432         
15433 Mon Feb 12 23:43:30 2001  Owen Taylor  <otaylor@redhat.com>
15434
15435         * gtk/Makefile.am (gdk_headers): Remove gdkcc.h 
15436         reference.
15437
15438         * configure.in gtk/gtkmain.c: Add checks for setuid/setgid,
15439         and refuse to initialize GTK+ if they fail.
15440
15441 Mon Feb 12 15:02:07 2001  Owen Taylor  <otaylor@redhat.com>
15442
15443         * configure.in: Add check for gtk-doc version.
15444
15445 Thu Feb  8 17:18:26 2001  Owen Taylor  <otaylor@redhat.com>
15446
15447         * gtk/gtklabel.c (gtk_label_size_request): Fix bug
15448         where the xpad/ypad was only being used on one side!
15449
15450 2001-02-11  Tor Lillqvist  <tml@iki.fi>
15451
15452         * gdk/win32/gdkcolor-win32.c (gdk_colormap_query_color): New
15453         function, copied from X11 version.
15454
15455         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Eliminate
15456         DestroyCursor failures. The reason for the problem (despite the
15457         inconsistent messages from GetLastError()) was that
15458         DestroyCursor() cannot be called while a cursor is set in a
15459         window. Set the new cursor first and then destroy the old one.
15460         Thanks to jpe@archaeopteryx.com.
15461
15462         * gdk/win32/gdkcc-win32.c: Remove.
15463
15464         * gdk/win32/Makefile.am: Remove from here, too.
15465         
15466         * gdk/gdk.def
15467         * gdk/makefile.mingw.in: Update. Godbye GdkColorContext.
15468
15469         * gtk/gtk.def
15470         * gtk/makefile.mingw.in: Updates.
15471
15472 2001-02-08  Havoc Pennington  <hp@redhat.com>
15473
15474         * gtk/gtkbin.c (gtk_bin_add): better error message if you try to
15475         add a widget to a bin that already has a child.
15476
15477         * gdk/gdkcc.h, gdk/gdkcc-x11.c: Remove GdkColorContext, #50512
15478
15479         * docs/Changes-2.0.txt: note that GdkColorContext is gone.
15480         
15481         * gdk/x11/Makefile.am (libgdk_x11_la_SOURCES): remove gdkcc-x11.c
15482
15483         * gdk/gdk.h: remove gdkcc.h
15484
15485         * gdk/Makefile.am (gdk_public_h_sources): remove gdkcc.h
15486
15487         * gtk/gtkpixmap.c (build_insensitive_pixmap): rewrite using
15488         GdkPixbuf, since the previous implementation was GdkColorContext
15489         dependent.
15490
15491         * gtk/testgtk.c (create_pixmap): add test for insensitive GtkPixmap
15492         
15493 Thu Feb  8 19:00:00 2001  Jonathan Blandford  <jrb@redhat.com>
15494
15495         * gtk/gtktreeview.c (TREE_VIEW_VERTICAL_SEPARATOR): moved back to
15496         a sane value!
15497
15498 2001-02-08  Havoc Pennington  <hp@redhat.com>
15499
15500         * gtk/gtkstyle.c (get_darkened_gc): let's darken colors, not
15501         lighten them.
15502
15503 2001-02-08  Havoc Pennington  <hp@redhat.com>
15504
15505         * gtk/gtktextview.c (gtk_text_view_destroy_layout): remove
15506         validation idle
15507
15508         * demos/gtk-demo/main.c (create_tree): adjust to changes in text
15509         cell renderer
15510
15511         * demos/pixbuf-demo.c (timeout): remove deprecated
15512         gtk_widget_draw
15513
15514         * demos/testpixbuf-save.c (main): remove deprecated
15515         gtk_drawing_area_size
15516
15517         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): allocate
15518         buttons even if the model isn't setup. gtk_tree_view_check_dirty()
15519         at the start of the allocation.
15520         (gtk_tree_view_check_dirty): handle column->button == NULL, handle
15521         unsetup or NULL model.
15522
15523         * gtk/gtkstyle.c (gtk_default_draw_flat_box): drawing for the 
15524         even/odd/sorted cells in the tree view.
15525
15526         * gtk/gtktreeselection.c (gtk_tree_selection_real_unselect_all):
15527         bugfixes
15528
15529         * gtk/gtktreeview.c: assorted bugfixy stuff. Draw the row
15530         backgrounds with draw_flat_box using different detail for even/odd
15531         rows.
15532
15533         * gtk/gtkrbtree.c, gtkrbtree.h: Keep track of the parity of each
15534         row, so we can draw the alternating colors thing
15535
15536         * gtk/gtktexttag.c (gtk_text_tag_set_property): if we change a
15537         property from a synonym property, notify for the synonym.
15538         Also, nuke the background_gdk_set and foreground_gdk_set synonyms
15539         (gtk_text_tag_get_property): Always return the font, even if
15540         all its fields aren't set
15541
15542         * gtk/gtkcellrenderertext.h (struct _GtkCellRendererText): don't
15543         store the attr list; it leaves us with no way to change attributes
15544         in _render according to the render flags, and no way to implement
15545         get_property. Instead store all the specific text attributes. 
15546         Separate whether an attribute is enabled from its value. Sync all
15547         properties with GtkTextTag, make them all consistent, etc.
15548
15549         * gtk/gtkcellrenderer.h: Add a flag GTK_CELL_RENDERER_SORTED so
15550         renderers can highlight the sort row/column     
15551
15552         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_get_property): use
15553         accessor functions to get values; this has the side effect of
15554         showing up which accessor functions were missing. Added those.
15555
15556         * gtk/gtktreeviewcolumn.h: Replace set_justification with
15557         set_alignment, to be consistent with GtkLabel, GtkMisc
15558
15559         * gtk/gtktreeviewcolumn.c: Added code to display sort indicator
15560         arrow.
15561
15562         * gtk/Makefile.am (gtk_public_h_sources): add gtktreesortable.h
15563
15564         * gtk/gtktreesortable.h: updates in here
15565
15566 2001-02-07  Sven Neumann  <sven@convergence.de>
15567
15568         * gtk/gtkentry.c (gtk_entry_draw_text): convert area_height to 
15569         pango dimensions after painting the background. We used to draw
15570         gigantic flat boxes here.
15571
15572 Mon Feb  5 22:05:57 2001  Owen Taylor  <otaylor@redhat.com>
15573
15574         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image): Fix syntax
15575         error introduced with earlier commit) (pointed out by
15576         Ollie Lho)
15577
15578 Mon Feb  5 12:25:06 2001  Owen Taylor  <otaylor@redhat.com>
15579
15580         * gtk/gtkbutton.c: Remove calls to gtk_grab_add/gtk_grab_remove,
15581         which are no longer necessary.
15582
15583 Mon Feb  5 13:22:54 GMT 2001  Tony Gale <gale@gtk.org>
15584
15585         * docs/faq/gtk-faq.sgml: s/MISK/MISC/
15586
15587 2001-02-04  Tor Lillqvist  <tml@iki.fi>
15588
15589         * gdk/gdk.def
15590         * gdk/win32/gdkim-win32.c (gdk_ic_attr_new, gdk_ic_attr_destroy):
15591         Provide dummy implementations.
15592
15593 Sun Feb  4 07:55:17 2001  Tim Janik  <timj@gtk.org>
15594
15595         * gtk/gtksignal.h: removed gtk_signal_init() compat define.
15596
15597         * gtk/gtktypeutils.[hc]: gtk_tpye_init() take an additional argument
15598         GTypeDebugFlags debug_flags and pass it on to g_type_init ();
15599         deprecated this function.
15600
15601         * gdk/gdk.c (gdk_init_check): call g_type_init () with 0 as
15602         argument.
15603
15604 Sun Feb  4 07:45:45 2001  Tim Janik  <timj@gtk.org>
15605
15606         * gtk/gtkdebug.h: nuke GTK_DEBUG_OBJECTS and GTK_DEBUG_SIGNALS.
15607
15608 2001-02-03  Havoc Pennington  <hp@pobox.com>
15609
15610         * gtk/gtktextbtree.c (_gtk_text_btree_tag): Fix bug reported by
15611         Mikael Hermansson with patch from Mikael (if there was a toggle
15612         start one after the first character in the range, this function
15613         was broken). Bug #50380
15614
15615 Sat Feb  3 11:28:03 2001  Owen Taylor  <otaylor@redhat.com>
15616
15617         * configure.in: Remove confusing comment about X11.
15618
15619 Fri Feb  2 19:21:23 2001  Owen Taylor  <otaylor@redhat.com>
15620
15621         * gdk/gdkwindow.c (gdk_propagate_shapes): Surround additional
15622         regions with HAVE_SHAPE_EXT. (#50511, Eric Ding)
15623         
15624 Fri Feb  2 18:31:54 2001  Owen Taylor  <otaylor@redhat.com>
15625
15626         * gdk/x11/gdkimage-x11.c: Remove definition of _XOPEN_SOURCE, since
15627         it breaks things on BSD. If you want to compile GTK+ with
15628         -ansi -pedantic, you should supply CPP_FLAGS=_XOPEN_SOURCE 
15629         when configuring, since GTK+ simply can't be "pure ANSI" 
15630         in the header files it uses. (#8170, Greg Hudson)
15631
15632 2001-02-02  Havoc Pennington  <hp@redhat.com>
15633
15634         * gtk/gtkwindow.c: docs
15635
15636         * gtk/gtkwidget.c: docs
15637         (gtk_widget_set_colormap): add a reference to the colormap
15638         (gtk_widget_get_default_colormap): add a reference to the colormap
15639
15640         * gtk/gtktextbtree.c (gtk_text_mark_set_visible): docs
15641
15642         * gtk/gtktextiter.c: docs
15643
15644         * gtk/gtkmain.c (gtk_propagate_event): docs
15645
15646         * gtk/gtkpaned.c (gtk_paned_get_position): docs
15647         (gtk_paned_set_position): docs
15648
15649         * gtk/gtktreesortable.h (struct _GtkTreeSortableIface): Initial
15650         sort interface, no implementation yet.
15651
15652         * demos/testpixbuf.c (new_testrgb_window): replace
15653         gtk_drawing_area_size() with gtk_widget_set_usize()
15654
15655         * demos/testpixbuf-drawable.c (main): ditto
15656         
15657         * gtk/testgtk.c: remove use of GtkStatusbarMsg
15658
15659         * gtk/gtktextbuffer.c: docs
15660
15661         * gtk/gtkstock.c: docs
15662
15663         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_shadow_type): docs
15664
15665         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): docs
15666
15667         * gtk/gtklabel.c (gtk_label_set_markup_with_accel): fix docs
15668         
15669         * gtk/gtkimage.c: add some docs in here
15670         (gtk_image_size_request): change name of
15671         gtk_widget_render_stock_icon
15672         (gtk_image_get_icon_set): don't dup returned string
15673         (gtk_image_get_icon_set): don't dup returned string
15674
15675         * gtk/gtkwidget.c (gtk_widget_render_icon): rename from 
15676         gtk_widget_render_stock_icon(), more consistent with gtkstyle.h
15677         and gtkiconfactory.h functions
15678
15679         * gtk/gtkiconfactory.c: add some docs in here
15680
15681         * gtk/gtkmain.c (gtk_get_default_language): document
15682         (gtk_get_current_event): document
15683         (gtk_get_current_event_state): document
15684         (gtk_get_event_widget): document
15685
15686         * gtk/gtkentry.c (gtk_entry_set_invisible_char): document
15687
15688         * gtk/gtkcontainer.c: Add some documentation
15689         (gtk_container_add): give a more explanatory warning on adding an
15690         already-parented widget, this is kind of a FAQ and also a common
15691         typo that's easier to debug with a nice warning 
15692
15693         * gtk/gtkcellrenderertoggle.c
15694         (gtk_cell_renderer_toggle_get_active): remove, I was on crack
15695         adding this, it's useless
15696         (gtk_cell_renderer_toggle_set_active): remove
15697         (gtk_cell_renderer_toggle_get_radio): add
15698
15699         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_size): don't allow
15700         the NULL cell renderer, that doesn't make any sense to me. 
15701
15702         * demos/gtk-demo/Makefile.am (INCLUDES): -DGTK_DISABLE_DEPRECATED,
15703         demo code should never use deprecated features.
15704
15705         * demos/Makefile.am (INCLUDES): -DGTK_DISABLE_DEPRECATED, demo
15706         code should never use deprecated features.
15707
15708         * gtk/gtkwidget.h: Mark gtk_widget_draw, gtk_widget_queue_clear,
15709         gtk_widget_queue_clear_area deprecated
15710
15711         * gtk/gtklayout.h: mark gtk_layout_freeze/gtk_layout_thaw
15712         deprecated
15713
15714         * gtk/gtklabel.h: mark gtk_label_get() deprecated
15715
15716         * gtk/gtkimage.h: mark the legacy GtkImage functions that took 
15717         a GdkImage deprecated, replaced by new consistently-named
15718         functions       
15719
15720         * gtk/gtkmain.h: Mark gtk_exit() deprecated
15721
15722         * gtk/gtkdrawingarea.h: mark gtk_drawing_area_size deprecated
15723
15724         * gtk/gtkstyle.h: mark gtk_draw_string, gtk_paint_string 
15725         deprecated
15726
15727         * gtk/gtkstatusbar.h: Move GtkStatusbarMsg to the .c file, 
15728         so it won't appear in docs and confuse people.
15729
15730         * gtk/gtkprogressbar.h: Mark all the old methods deprecated
15731
15732         * gtk/gtkprogress.h: Mark all methods deprecated, mark the cast
15733         macros deprecated. (can't mark the type itself deprecated, since
15734         GtkProgressBar is not deprecated and we need the type decl to use
15735         GtkProgressBar)
15736
15737         * gtk/gtkpixmap.h: Mark deprecated
15738
15739         * gtk/gtkoldeditable.h: Mark deprecated
15740
15741         * gtk/gtklist.h: Mark deprecated
15742
15743         * gtk/gtklabel.h: delete "GtkLabelWord" typedef, not used 
15744         for anything anymore.
15745
15746         * gtk/gtkctree.h: Mark deprecated
15747
15748         * gtk/gtkclist.h: Mark deprecated
15749
15750         * gtk/gtkpreview.h: Mark deprecated
15751
15752         * gtk/gtkpacker.h: Mark deprecated
15753
15754         * gtk/gtktipsquery.h: Mark deprecated
15755
15756         * gtk/gtkinputdialog.h: Add comment that it will move out of GTK
15757
15758         * gtk/gtkvruler.h: Add comment that it will move out of GTK
15759
15760         * gtk/gtkhruler.h: Add comment that it will move out of GTK
15761
15762         * gtk/gtkruler.h: Add comment that it will move out of GTK
15763
15764         * gtk/gtkgamma.h: Add comment that it will move out of GTK
15765
15766         * gtk/gtkcurve.h: Add comment that it will move out of GTK
15767
15768 Fri Feb  2 17:16:09 2001  Owen Taylor  <otaylor@redhat.com>
15769
15770         * gdk/x11/gdkcolor-x11.c (gdk_colormap_sync): Make
15771         gdk_colormap_sync private since it was never exported
15772         in a header file.
15773
15774         * gdk/x11/gdkcolor-x11.c (gdk_colormap_new): Fill in
15775         colormap->colors[] for StaticGray, StaticColor colormaps.
15776
15777         * gdk/gdkpixbuf-drawable.c: Fix problems where image->bpp
15778         was being used as if it was image->bits_per_pixel.
15779
15780         * gdk/gdkimage.h, gdk/x11/gdkimage-x11.c: Save the bits-per-pixel
15781         for the image in the GdkImage structure since it isn't
15782         reconstructable, and we need it to handle packed types
15783
15784         * gdk/win32/gdkimage-win32.c: Set image->bits_per_pixel. (I'm making
15785         the assumption that on Win32 image->bits_per_pixel == image->depth,
15786         always.
15787
15788         * gdk/linux-fb/gdkimage-fb.c: Set image->bits_per_pixel.
15789
15790         * gdk/gdkrgb.c (gdk_rgb_select_conv): Exit with an informative
15791         warning message if no converter can be found. 
15792
15793 Fri Feb  2 15:09:51 2001  Owen Taylor  <otaylor@redhat.com>
15794
15795         * gtk/fnmatch.c (FOLD): Fix problem with passing signed
15796         chars to isupper() / tolower(). (#567)
15797
15798         * examples/packer/pack.c: Add GINT_TO_POINTER, GPOINTER_TO_INT
15799         to clear up 64-bit warnings. (#567)
15800
15801 Fri Feb  2 12:26:50 2001  Owen Taylor  <otaylor@redhat.com>
15802
15803         * gtk/gtkrc.c (gtk_rc_add_initial_default_files): Get rid of
15804         a bunch of g_strdup_printf("%s%s") in favor of g_strconcat().
15805
15806         * gtk/gtkrc.c Makefile.am: Use $(libdir), not $(exe_prefix),
15807         since some people set $(libdir) separately. (#1290, David Kaelbling)
15808
15809 Thu Feb  1 18:25:46 2001  Owen Taylor  <otaylor@redhat.com>
15810
15811         * gtk/gtkfilesel.c: If PATH_MAX and MAXPATHLEN are not
15812         defined, define MAXPATHLEN to 2048. (The Hurd doesn't have
15813         MAXPATHLEN, but the code here depends on a fixed value.)
15814         (#4524)
15815
15816 Wed Jan 31 22:01:04 2001  Owen Taylor  <otaylor@redhat.com>
15817
15818         * gtk/gtkhandlebox.c (gtk_handle_box_button_changed): Handle the case
15819         where child == NULL and handle_position == RIGHT or BOTTOM. (#8041g)
15820
15821 Wed Jan 31 21:20:39 2001  Owen Taylor  <otaylor@redhat.com>
15822
15823         * gtk/gtkctree.c (real_tree_move): If the node being moved isn't
15824         viewable there is no way that moving the node will cause the 
15825         focus row to become not viewable, so omit check on the visibility
15826         of new_sibling, which is irrelevant. (Fixes #8002, David Helder)
15827
15828 Wed Jan 31 20:38:17 2001  Owen Taylor  <otaylor@redhat.com>
15829
15830         * gtk/gtkentry.c (gtk_entry_commit_cb): Delete the current
15831         selection before inserting new text.
15832
15833 Wed Jan 31 18:49:33 2001  Owen Taylor  <otaylor@redhat.com>
15834
15835         * gtk/gtkoptionmenu.c (gtk_option_menu_item_state_changed_cb):
15836         Make the sensitivity of the reparented child track that of
15837         the original parent menu item. (#34218, David Hodson)
15838
15839         * gtk/gtkoptionmenu.c (gtk_option_menu_item_destroy_cb): Handle
15840         the case where the current item is destroyed properly.
15841
15842         * gtk/gtkoptionmenu.c: Some additional code cleanups and fix
15843         some edge cases with child-less menuitems.
15844         
15845 Wed Jan 31 17:16:13 2001  Owen Taylor  <otaylor@redhat.com>
15846
15847         * gtk/gtkcombo.c (gtk_combo_window_key_press): Make Return
15848         key pop down window. (#12074, Jon K Hellan)
15849
15850 Wed Jan 31 16:21:42 2001  Owen Taylor  <otaylor@redhat.com>
15851
15852         * gtk/gtklist.c (gtk_list_signal_item_toggle): Don't allow
15853         toggling of rows off in BROWSE or EXTENDED mode. (#12072, Jon K Hellan) 
15854         The solution here isn't perfect - you get an extraneous
15855         emission of "toggle", which could conceivably confuse an app,
15856         but better than the current situation. LXR search seems to
15857         indicate that no apps in GNOME CVS connect to "toggle".
15858
15859 Wed Jan 31 15:46:13 2001  Owen Taylor  <otaylor@redhat.com>
15860
15861         * gtk/Makefile.am (libgtkinclude_HEADERS): Move gtkcompat.h from
15862         gtk_public_h_sources to directly here to avoid warning when
15863         building srcdir != builddir. (#9656)
15864
15865 Tue Jan 30 19:49:02 2001  Owen Taylor  <otaylor@redhat.com>
15866
15867         * gtk/gtkrange.c: Patch from Kipp Hickman to make the event
15868         handlers in gtkrange.c return the proper values (TRUE == handled)
15869         (#10316).
15870
15871         This is just the tip of the iceberg, but gtkrange.c is the
15872         most common place where the propagation is problematical,
15873         and also a place where it is almost certainly safe to change
15874         this in the stable branch.
15875
15876         (You don't want right click popups on a range control or anything...)
15877
15878 Tue Jan 30 18:57:59 2001  Owen Taylor  <otaylor@redhat.com>
15879
15880         * gtk/gtktext.c (clear_focus_area): We need to clear the focus
15881         area on focus out, even if a background pixmap isn't set.
15882         (#13941)
15883         
15884 Tue Jan 30 18:24:10 2001  Owen Taylor  <otaylor@redhat.com>
15885
15886         * gtk/gtknotebook.c (gtk_notebook_set_shape): Fix from Sean Cunningham
15887         to deal with setting the shape properly when scrolling arrows are
15888         turned on, but not visible because there is sufficient space.
15889         (#13432)
15890
15891 Tue Jan 30 16:39:25 2001  Owen Taylor  <otaylor@redhat.com>
15892
15893         * gtk/gtkitemfactory.c (gtk_item_factory_delete_item): For menu
15894         items with submenus, destroy the item along with the submenu.
15895         (#7841, Brian Masney(?)) Also, handle paths of the form '<foo>/abcd...' 
15896         properly.
15897
15898         * gtk/testgtk.c (menu_items): Add a dummy branch that we delete
15899         later.
15900
15901 Tue Jan 30 15:51:25 2001  Owen Taylor  <otaylor@redhat.com>
15902
15903         * gtk/gtkwindow.c (gtk_window_real_set_focus): Fix a problem where
15904         the focus widget sometimes wasn't drawn with the default if there
15905         was no default widget.
15906
15907         * gtk/gtkstyle.c (gtk_style_real_unrealize): free colors,
15908         unreference pixmaps. 
15909
15910         * gtk/gtkstyle.c (gtk_style_realize): Reference colormap
15911         for some extra safety.
15912
15913 Mon Jan 29 19:00:01 2001  Owen Taylor  <otaylor@redhat.com>
15914
15915         * gtk/gtk{ctree.c,clist.c} (set_cell_contents): Handle setting
15916         the text of a cell to the old pointer value better, by
15917         copying the new text before freeing the old text. Some code
15918         cleanup. (#8079, Karl Nelson)
15919
15920 Mon Jan 29 16:50:19 2001  Owen Taylor  <otaylor@redhat.com>
15921
15922         * gtk/gtklabel.[ch] gtk/gtkframe.[ch]: Make gtk_label_get_text()
15923         gtk_frame_get_label() non strdup'ing, and G_CONST_RETURN.
15924
15925 Mon Jan 29 15:22:51 2001  Owen Taylor  <otaylor@redhat.com>
15926
15927         * gtk/gtkmenu.c (gtk_menu_remove): When removing an
15928         item from a menu, check to see if it matches 
15929         menu->old_active_menu_item, and if so, unref and clear
15930         old_active_menu_item (Patch from Pavel Cisler)
15931
15932         * gtk/gtkmenushell.c (gtk_menu_shell_remove): Unset 
15933         menu_shell->active_menu_item, if it is the child being
15934         removed. (Patch based on that of Gene Ragan, #50337)
15935
15936 2001-01-31  Alexander Larsson  <alla@lysator.liu.se>
15937
15938         * gdk/linux-fb/gdkselection-fb.c: 
15939         * gdk/linux-fb/gdkcolor-fb.c: 
15940         * gdk/linux-fb/gdkdrawable-fb2.c: 
15941         * gdk/linux-fb/gdkfont-fb.c: 
15942         * gdk/linux-fb/gdkim-fb.c: 
15943         * gdk/linux-fb/gdkinput.c: 
15944         * gdk/linux-fb/gdkkeyboard-fb.c: 
15945         * gdk/linux-fb/gdkmain-fb.c: 
15946         * gdk/linux-fb/gdkrender-fb.c: 
15947         A bunch of whitespace cleanup.
15948         
15949 2001-01-30  Havoc Pennington  <hp@pobox.com>
15950
15951         * gtk/gtktreeitem.h, gtk/gtktree.h, gtk/gtktext.h: bracket in 
15952         #ifdef GTK_ENABLE_BROKEN.
15953
15954         * gtk/gtktreeitem.c, gtk/gtktree.c, gtk/gtktext.c: #define
15955         GTK_ENABLE_BROKEN just before including the broken headers.
15956         
15957         * gtk/gtktypeutils.c: #define GTK_ENABLE_BROKEN, so we can get the
15958         deprecated types registered.
15959
15960         * gtk/testgtk.c, gtk/testselection.c: #define GTK_ENABLE_BROKEN,
15961         we have to test the broken stuff.
15962
15963         * docs/Changes-2.0.txt: explain GTK_ENABLE_BROKEN
15964         
15965 2001-01-30  Havoc Pennington  <hp@redhat.com>
15966
15967         * gtk/gtkliststore.c (gtk_list_store_insert_before): fix bug in
15968         here where prev pointer was set to the wrong thing
15969
15970         * gtk/gtktreemodel.c (gtk_tree_path_is_ancestor): new function
15971         (gtk_tree_path_is_descendant): new function
15972
15973         * gtk/gtkliststore.c (gtk_list_store_iter_n_children): return
15974         cached length
15975         (gtk_list_store_get_iter): don't modify iter if we can't get the
15976         path.
15977
15978         * gtk/gtkliststore.h (struct _GtkListStore): cache the length
15979         
15980         * gtk/gtktreednd.h: add virtual function row_drop_possible() to
15981         GtkTreeDragDest
15982
15983         * gtk/gtktreestore.c (copy_node_data): fix varargs type error that
15984         was causing segfault
15985
15986         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_copy): set next
15987         pointer to NULL
15988
15989         * gtk/gtktreestore.c (gtk_tree_store_append): fix memleak
15990
15991         * gtk/gtkliststore.c (gtk_list_store_iter_next): don't modify iter
15992         on returning FALSE
15993         (gtk_list_store_iter_children): ditto
15994         (gtk_list_store_iter_nth_child): ditto
15995         (gtk_list_store_iter_nth_child): ditto
15996         (gtk_list_store_iter_parent): ditto
15997
15998         * gtk/gtktreestore.c (gtk_tree_store_get_path): g_return_if_fail
15999         on iter->user_data != NULL instead of silently accepting it.
16000         (gtk_tree_store_iter_next): ditto. Also, don't modify iter unless
16001         we are returning TRUE.
16002         (gtk_tree_store_iter_children): ditto
16003         (gtk_tree_store_iter_nth_child): ditto
16004         (gtk_tree_store_iter_parent): ditto
16005         (gtk_tree_store_insert): remove handling of parent->user_data ==
16006         NULL, replace with parent == NULL       
16007
16008         * gtk/gtktreemodel.c (inserted_callback): put some fixes in here,
16009         and a comment explaining things
16010
16011         * gtk/gtktreestore.c: add GtkTreeDragSource/GtkTreeDragDest
16012         interface support to GtkTreeStore.
16013
16014         * gtk/gtktreemodel.c (gtk_tree_path_prev): didn't properly return
16015         FALSE if no prev, fix
16016
16017         * gtk/gtktreeview.c (set_source_row): use a row reference
16018         (set_dest_row): use a row reference
16019
16020 Sat Jan 27 15:52:02 2001  Jonathan Blandford  <jrb@redhat.com>
16021
16022         * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix
16023         stupid typo pointed out by Kristian Rietveld <kristian@planet.nl>.
16024         (gtk_tree_selection_select_iter): The same as above.
16025
16026 2001-01-26  Havoc Pennington  <hp@redhat.com>
16027
16028         * gtk/gtktreemodel.c, gtk/gtktreemodel.h: add GtkTreeRowReference
16029         which holds a handle to a specific row (particular set of values
16030         in the model, i.e. pointer-identity row).
16031
16032         * gtk/gtktreeview.c, gtk/gtktreeprivate.h, gtk/gtktreeselection.c:
16033         use GtkTreeRowReference for anchor, cursor, and drag_dest_row.
16034         Still need to use it for the src/dest row saved on the drag context.
16035
16036 2001-01-26  Havoc Pennington  <hp@redhat.com>
16037
16038         * gtk/gtktextlayout.c (convert_color): adapt to handle PangoColor
16039
16040         * gtk/gtktreeview.c (gtk_tree_view_widget_to_tree_coords): fix to
16041         not offset by TREE_VIEW_HEADER_HEIGHT
16042         (gtk_tree_view_tree_to_widget_coords): fix to not offset by
16043         TREE_VIEW_HEADER_HEIGHT
16044
16045         * configure.in (included_loaders): for me, --with-included-loaders
16046         generates the error "the specified loader yes does not exist",
16047         i.e. the arg defaults to "yes", so change test for value ""
16048         to test for value "yes", and include all loaders in that case.
16049
16050         * gtk/gtkrbtree.c (_gtk_rbtree_get_depth): new function
16051
16052         * gtk/gtktreeview.c (gtk_tree_view_get_cell_rect): fix to properly
16053         handle TREE_VIEW_VERTICAL_SEPARATOR
16054         (gtk_tree_view_bin_expose): fix to consider the row offset as
16055         pointing halfway into vertical separator.       
16056         (gtk_tree_view_draw_node_focus_rect): ditto
16057
16058         * gtk/gtkdebug.h, gtk/gtkmain.c (gtk_init_check): Add
16059         --gtk-debug=updates, which causes gdk_window_set_debug_updates
16060         (TRUE) to be called.
16061
16062         * gdk/gdkwindow.c (gdk_window_set_debug_updates): Allow enabling a
16063         debug mode where the invalid region is colored in on invalidate,
16064         so you can see the flicker and know whether your redraw code is 
16065         doing a good job.
16066
16067         * gtk/gtktreeview.c (gtk_tree_view_queue_draw_node): Work in 
16068         tree window coordinates (clip rect is in tree window coords)
16069
16070         * gtk/Makefile.am: add gtktreednd.[hc]
16071
16072         * gtk/gtkliststore.c: implement gtktreednd interfaces.
16073
16074         * gtk/gtktreednd.c, gtk/gtktreednd.h: New interface to support
16075         drag-and-drop data operations on a model (so we can set up tree
16076         drag-and-drop automatically)
16077
16078         * gtk/testgtk.c: Add a window to change sensitivity in the
16079         GtkLabel test; add a way to change the entry frame in GtkEntry
16080         test
16081
16082         * gtk/gtkentry.c (gtk_entry_set_has_frame): 
16083         (gtk_entry_get_has_frame): new functions to remove the frame
16084         around an entry
16085         (gtk_entry_size_request): shrink requisition if no frame
16086         (gtk_entry_draw_focus): don't draw frame if no frame
16087
16088         * gtk/gtkstyle.c (gtk_default_draw_check): draw custom look for
16089         checks inside a cell renderer
16090         (gtk_default_draw_option): ditto for options
16091
16092         * gtk/gtktreeviewcolumn.c (update_button_contents): add/remove
16093         children from the alignment, not the button
16094         (gtk_tree_view_column_init): ref/sink the column, to emulate
16095         GObject refcounting.
16096
16097         * gtk/gtkcellrenderer.c (gtk_cell_renderer_init): ref/sink
16098         
16099         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
16100         Use theme functions to draw the toggles 
16101
16102         * gdk/gdkpango.c (gdk_pango_get_gc): use GdkRGB to alloc colors
16103
16104         * gdk/gdkpango.h, gdk/gdkpango.c: Add GdkPangoAttrStipple and
16105         GdkPangoAttrEmbossed to use in rendering insensitive text
16106
16107         * gdk/gdkpango.c (gdk_draw_layout_line): render new properties
16108
16109         * gtk/gtkstyle.c (gtk_default_draw_layout): handle sensitivity
16110         using new GDK features
16111         
16112 2001-01-24  Alexander Larsson  <alexl@redhat.com>
16113
16114         * gtk/gtkimage.c:
16115         Splitted gtk_image_clear into gtk_image_clear() and
16116         gtk_image_reset(). Call gtk_image_clear() in ::destroy
16117         to avoid leaks.
16118
16119         * gtk/gtklabel.c (set_markup):
16120         Don't leak text.
16121
16122         * gtk/gtktextlayout.c:
16123         Always free display->shaped_objects.
16124
16125         * gtk/testgtk.c (create_clist):
16126         Don't leak custom style.
16127
16128 2001-01-23  Alexander Larsson  <alexl@redhat.com>
16129
16130         * gtk/gtkcolorsel.c (grab_color_at_mouse):
16131         Don't leak image. Simplify using gdk_colormap_query_color().
16132         (gtk_color_selection_init): Don't leak dropper_pixmap and mask.
16133
16134         * linux-fb/gdkcolor-fb.c:
16135         Implemented gdk_colormap_query_color.
16136
16137 2001-01-23  Alexander Larsson  <alexl@redhat.com>
16138
16139         * linux-fb/gdkcursor-fb.c:
16140         Don't leak built-in cursors.
16141
16142         * linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_polygon):
16143         Don't leak tmp_points.
16144
16145         * linux-fb/gdkfont-fb.c (gdk_font_from_description):
16146         Don't modify desc. Don't leak font if the PangoFont
16147         isn't found.
16148         
16149         * linux-fb/gdkgc-fb.c (gdk_fb_gc_finalize):
16150         Free dash_list.
16151
16152         * linux-fb/gdkkeyboard-fb.c (gdk_fb_handle_key):
16153         Don't leak string.
16154         
16155 2001-01-20  Havoc Pennington  <hp@pobox.com>
16156
16157         * gtk/gtktexttag.h (enum GtkWrapMode): rename member fields
16158         from GTK_WRAPMODE_WORD to GTK_WRAP_WORD, etc., seems nicer to 
16159         me, matches Pango
16160
16161 2001-01-22  Havoc Pennington  <hp@redhat.com>
16162
16163         * demos/testanimation.c: fix to reflect gdk-pixbuf changes
16164
16165         * demos/testpixbuf.c: fix to reflect gdk-pixbuf changes
16166
16167         * gtk/gdk-pixbuf-loader.c, gtk/gdk-pixbuf-loader.h: 
16168         Remove, move back to gdk-pixbuf
16169
16170         * gtk/gtktextiter.c, gtk/gtktextiter.h: add sentence equivalents
16171         to all the word functions
16172
16173         * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): return
16174         before doing anything on NULL layout or if we don't have the focus
16175
16176         * gtk/testtext.c (fill_example_buffer): "justification"
16177
16178         * gtk/gtktexttag.h, gtk/gtktexttag.c: change the tag attribute
16179         to be called "justification" not "justify"
16180
16181         * demos/gtk-demo/textview.c (create_tags): "justification"
16182         
16183         * gtk/gtktextlayout.c (set_para_values): Handle char-wise wrapping
16184
16185 2001-01-22  Alexander Larsson  <alexl@redhat.com>
16186
16187         * gdk/gdkwindow.c (gdk_window_invalidate_region):
16188         Don't leak visible_region. Use visible_region instead of region.
16189         
16190         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new):
16191         Don't do extra gdk_drawable_ref(). This is not X.
16192         (gdk_fb_window_find_focus, gdk_fb_change_focus): make sure
16193         gdk_fb_focused_window is ref:ed.
16194         (gdk_fb_window_send_crossing_events): Watch out for destroyed
16195         windows.
16196
16197 2001-01-22  Alexander Larsson  <alexl@redhat.com>
16198
16199         * gtk/gtkwindow-decorate.c (gtk_decorated_window_realize):
16200         Don't leak the PangoFontDescriptor.
16201
16202 Sun Jan 21 09:58:00 2001  Jonathan Blandford  <jrb@redhat.com>
16203
16204         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_point): Make fail
16205         when not realized.
16206         (gtk_tree_view_scroll_to_cell): Make work when not realized.
16207         (gtk_tree_view_realize): add scroll_to support
16208         (gtk_tree_view_finalize): add a finalize method.  Populate.
16209         (gtk_tree_view_insert_column): ref and sink the column.
16210         (gtk_tree_view_append_column): ref and sink the column.
16211         (gtk_tree_view_queue_draw_node): New function to handle redrawing
16212         individual nodes.  Should make the code much more efficient, if
16213         actually used.
16214
16215 2001-01-19  Havoc Pennington  <hp@redhat.com>
16216
16217         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display):
16218         byte_offset variable was being used to mean both "offset into
16219         layout" and "offset into buffer line" which was no longer true
16220         with addition of preedit string; fix
16221
16222 2001-01-19  Havoc Pennington  <hp@redhat.com>
16223
16224         * demos/gtk-demo/main.c (button_press_event_cb): sync to tree changes
16225
16226         * gtk/gtkrbtree.c (_gtk_rbtree_node_find_offset): fix this
16227         function
16228
16229         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_widget):
16230         implement
16231
16232         * gtk/gtktreeview.c (gtk_tree_view_move_to): rename
16233         scroll_to_cell, matches TextView scroll functions better
16234         (gtk_tree_view_tree_to_widget_coords): new function
16235         (gtk_tree_view_widget_to_tree_coords): new function
16236         (gtk_tree_view_get_visible_rect): new function
16237         (gtk_tree_view_get_path_at_pos): accept negative coordinates
16238         (gtk_tree_view_draw_node_focus_rect): new function moved from
16239         draw_focus, also, use width of bin_window as width of the focus
16240         rect
16241         (gtk_tree_view_expand_row): fix bug where it didn't recognize
16242         already-expanded rows
16243         (gtk_tree_view_get_cell_rect): new function
16244         (gtk_tree_view_get_path_at_pos): return the click position
16245         relative to the passed-in cell
16246         (gtk_tree_view_set_expander_column): new function
16247
16248         * configure.in: remove gtk-config-2.0 chmod
16249
16250         * gtk/gtktextview.c (gtk_text_view_drag_motion): small cleanups,
16251         and properly handle drags with targets we don't understand
16252         (gtk_text_view_drag_end): don't stop scrolling, the source isn't
16253         scrolling anyway
16254         (gtk_text_view_drag_drop): stop scrolling here though, and set the
16255         mark invisible
16256
16257         * gtk/gtkdnd.c (gtk_drag_dest_find_target): export as a public
16258         function
16259         (gtk_drag_dest_get_target_list): new function
16260         (gtk_drag_dest_set_target_list): new function
16261         
16262         * gtk/gtktreeview.c: Add a bunch of drag-and-drop implementation
16263
16264         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): add fields
16265         related to drag-and-drop
16266
16267 2001-01-19  Alexander Larsson  <alexl@redhat.com>
16268
16269         * gdk/linux-fb/gdkprivate-fb.h:
16270         Define EMULATE_GDKFONT.
16271         Add extra pango_font stuff to GfkFontPrivate.
16272         
16273         * gdk/linux-fb/gdkdrawable-fb2.c:
16274         * gdk/linux-fb/gdkfont-fb.c:
16275         If EMULATE_GDKFONT defined, implement a slow lame GdkFont
16276         emulation using PangoFont.
16277
16278 2001-01-17  Havoc Pennington  <hp@pobox.com>
16279
16280         * gtk/gtkprogressbar.c, gtk/gtkprogressbar.h: Add "getters" for
16281         all the non-deprecated set_foo functions. Added missing object
16282         properties, and added g_object_notify() to setters. 
16283         Wrote docs.
16284         
16285 2001-01-18  Tor Lillqvist  <tml@iki.fi>
16286
16287         * gtk/gtkmain.c
16288         * gtk/gtkrc.c: (Win32) Use the new
16289         g_win32_get_package_installation_(sub)directory() functions.
16290
16291         * config.h.win32.in: New file.
16292         
16293         * config.h.win32: Removed.
16294
16295         * configure.in: Output config.h.win32.
16296
16297         * Makefile.am: Add it to EXTRA_DIST.
16298
16299         * gtk/gtk.def: Update.
16300
16301 Wed Jan 17 16:22:54 2001  Owen Taylor  <otaylor@redhat.com>
16302
16303         * gtk/gtklabel.c (gtk_label_size_request): Set the
16304         attributes onto the PangoLayout even if they are newly
16305         created from label->pattern.
16306
16307 Tue Jan  9 11:20:48 2001  Owen Taylor  <otaylor@redhat.com>
16308
16309         * gdk/x11/gdkdnd-x11.c: Remove unused variable.
16310
16311         * gtk/gtkdnd.c: Encapsulate storing and retrieving info
16312         structures in functions. Fixes bug where gtk_dataset_*
16313         was accidentally still being used in one place, causing
16314         every dest side event to be treated independently.
16315
16316         * gtk/gtkdnd.c: Remove last vestages of handling
16317         ::draw (fixes warning)
16318         
16319         * gtk/gtkentry.[ch]: Add drag and drop support.
16320
16321         * gtk/gtkdnd.[ch] gtk/gtktextview.c gtk/gtkentry.c: Add
16322         new function gtk_check_drag_threshhold() for checking
16323         to check if (dx,dy) has exceeded the threshhold for starting
16324         a drag and use it everywhere.
16325
16326 Mon Jan  8 11:58:05 2001  Owen Taylor  <otaylor@redhat.com>
16327
16328         * gtk+-2.0.pc.in gdk-pixbuf-2.0.pc.in (Cflags): Remove -I${includedir},
16329         add -I{includedir}/gtk-2.0.
16330
16331         * gtk/gtktreeview.[ch] gtktreemodelsort.[ch] gtknotebook.c
16332         gdk/gdk-pixbuf.h: Doc fixups.
16333         
16334         * gtk/gtkobject.h: Remove trailing , from enum
16335
16336 2001-01-17 Alexander Larsson <alexl@redhat.com> 
16337
16338         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_shadow_fb_draw_arc):
16339         Doh! Mixed up x and y.
16340
16341         * gdk/linux-fb/gdkglobals-fb.c:
16342         Removed gdk_fb_pointer_grab_window_events,
16343         added _gdk_fb_pointer_grab_owner_events and
16344         _gdk_fb_keyboard_grab_owner_events.
16345
16346         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_pointer_grab):
16347         Set all button mask if GDK_BUTTON_MOTION_MASK set. Send
16348         crossing events before grabbing. Set _gdk_fb_pointer_grab_owner_events.
16349         (gdk_fb_pointer_ungrab): Unset _gdk_fb_pointer_grab_owner_events
16350         Send crossing events after ungrab finished.
16351         (gdk_keyboard_grab): Set ..._owner_events
16352         (type_masks): Move out of function.
16353         (gdk_fb_other_event_window, gdk_fb_pointer_event_window,
16354         gdk_fb_keyboard_event_window): New functions, return the
16355         window an event should be targeted at. Handles grabs and
16356         event propagation. Can return NULL.
16357         (gdk_event_make): Remove event_mask checking. Now always
16358         returns an event.
16359                 
16360         * gdk/linux-fb/gdkkeyboard-fb.c:
16361         * gdk/linux-fb/gdkproperty-fb.c:
16362         * gdk/linux-fb/gdkselection-fb.c:
16363         Use new event_window/gdk_event_make() behaviour.
16364         
16365         * gdk/linux-fb/gdkmouse-fb.c:
16366         Use new event_window/gdk_event_make() behaviour.
16367         Only send motion events if in the same window.
16368         If grabbed, use cursor from window if sibling of grabbed
16369         window, and cursor from grabbed window otherwise.
16370
16371         * gdk/linux-fb/gdkprivate-fb.h:
16372         Update gdk_fb_window_send_crossing_events, gdk_event_make
16373         and grab varaible declarations. Add gdk_fb_*_event_window().
16374
16375         * gdk/linux-fb/gdkwindow-fb.c:
16376         Use new event_window/gdk_event_make() behaviour.
16377         Keep correct track of focus window.
16378         (gdk_window_set_events): Set all specific button motion masks
16379         if GDK_BUTTON_MOTION_MASK set.
16380
16381         * gtk/gtkdnd.c (gtk_drag_update):
16382         Free info->last_event if gdk_drag_motion returned FALSE.
16383
16384 2001-01-16  Tor Lillqvist  <tml@iki.fi>
16385
16386         * gdk/win32/gdkwindow-win32.c (gdk_window_show, gdk_window_hide):
16387         Eliminate redraws when input-only windows are shown or
16388         hidden. Thanks to jpe@archaeopteryx.com.
16389
16390 Tue Jan 16 13:13:13 GMT 2001  Tony Gale <gale@gtk.org>
16391
16392         * docs/faq/gtk-faq.sgml: FAQ update:
16393           - Update to bugzilla
16394           - Add GTK+ and security/SUID/SGID
16395           - Add DnD question
16396
16397 2001-01-16  Alexander Larsson  <alla@lysator.liu.se>
16398
16399         * gdk/linux-fb/gdkdnd-fb.c:
16400         Some cleanups.
16401         
16402 2001-01-15  Havoc Pennington  <hp@pobox.com>
16403
16404         * tests/testtreeview.c: add test stuff for CellRendererToggle
16405
16406         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_get_model): add this
16407         accessor
16408
16409         * gtk/gtkcellrenderertoggle.c: distinguish different event types,
16410         only toggle on button press (would do release like GtkButton, but
16411         we'd need implicit grab code for treeview cells)
16412
16413 2001-01-16  Tor Lillqvist  <tml@iki.fi>
16414
16415         * gdk/win32/gdkvisual-win32.c: Include <stdlib.h> for getenv().
16416
16417         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Don't use
16418         GDK_COLORMAP_PRIVATE_DATA on a potentially NULL GdkColormap.
16419
16420         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Adapt calls
16421         to g_{locale,filename}_{to,from}_utf8 to match current API.
16422
16423         * gtk/makefile.msc.in (gtk_OBJECTS)
16424         * gtk/makefile.mingw.in (gtk_OBJECTS): Add gtkwindow-decorate.
16425
16426         * gtk/gtk.def: Update.
16427
16428 2001-01-15  Tor Lillqvist  <tml@iki.fi>
16429
16430         * gdk/win32/gdkevents-win32.c (synthesize_crossing_events): New
16431         implementaion that more closely mimics the events that an X server
16432         would generate. Especially, properly generate GDK_NOTIFY_VIRTUAL and
16433         GDK_NOTIFY_NONLINEAR_VIRTUAL crossing events. This makes buttons
16434         with nested preview widgets, for instance, more responsive when
16435         you move the mouse quickly into them.
16436         (find_window_for_pointer_event): Make it actually compile.
16437         (gdk_event_translate): Set send_event to the value of
16438         InSendMessage (). This doesn't really mean the same as X11's
16439         send_event flag, but is close enough, says jpe@archaeopteryx.com
16440
16441 2001-01-15  Alexander Larsson  <alexl@redhat.com>
16442
16443         * gdk/linux-fb/gdkdnd-fb.c:
16444         Implemented drag and drop.
16445         Seems to be mostly working. I sometimes get an assert from gtkdnd.c:2664
16446         when it tries to free and then copy the same event (info->last_event).
16447         I am not sure about why this happens, but will continue looking.
16448
16449 2001-01-15  Alexander Larsson  <alexl@redhat.com>
16450
16451         * gdk/linux-fb/gdkwindow-fb.c:
16452         Use gdk_window_invalidate_rect instead of
16453         gdk_window_invalidate_rect_clear to minimise flashing.
16454         When hiding windows you need to clear the root window though.
16455
16456 2001-01-15  Alexander Larsson  <alexl@redhat.com>
16457
16458         * gdk/linux-fb/gdkdrawable-fb2.c:
16459         For optization, add an full_shapes argument to gdk_fb_clip_region.
16460         If this is false, only the cliprects of the shapes are used.
16461
16462         * gdk/linux-fb/gdkprivate-fb.h:
16463         Export gdk_fb_window_peek_shape.
16464         Add full_shapes to gdk_fb_clip_region.
16465
16466         * gdk/linux-fb/gdkwindow-fb.c (gdk_fb_window_move_resize):
16467         When moving a window, don't clear everything under the it, just the
16468         root window. Makes stuff faster and flash less.
16469         (gdk_window_get_pointer): Correctly handle offseted shapes, due to
16470         USE_CHILD_SHAPE. (gdk_fb_window_peek_shape): Return the correct
16471         offset of the shape.
16472         
16473
16474 2001-01-12  Havoc Pennington  <hp@redhat.com>
16475
16476         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): offset the 
16477         current invalid region, fixes redraw bug while scrolling the 
16478         text widget
16479
16480         * gtk/gtktextview.c, gtk/gtktextview.h:
16481         Rearrange the scrolling/validation/etc. code in a major way, 
16482         so it seems to make sense to me. Probably isn't genuinely that
16483         much better, but...
16484
16485         * gtk/gtktexttag.c (set_fg_color): fix name of property used for
16486         notifies
16487
16488         * gtk/gtktextmark.c (gtk_text_mark_get_left_gravity): new function
16489
16490 2001-01-12  Alexander Larsson  <alla@lysator.liu.se>
16491
16492         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_set_rotation):
16493         Hide mouse pointer while rotation. Show it afterwards.
16494
16495 2001-01-12  Alexander Larsson  <alexl@redhat.com>
16496
16497         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_clip_region): Take shaped
16498         windows in consideration when generating clip region.
16499
16500         * gdk/linux-fb/gdkfb.h:
16501         Huge HACK. Added GDK_FB_USE_CHILD_SHAPE.
16502
16503         * gdk/linux-fb/gdkprivate-fb.h:
16504         Add shape to GdkWindowFBDatat.
16505         exported gdk_fb_window_get_abs_shape().
16506         removed gdk_fb_draw_lines declaration.
16507
16508         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_impl_fb_init):
16509         Init shape to NULL. (gdk_fb_window_send_crossing_events): Don't
16510         send focus changes when there is a grabbed window.
16511         (gdk_window_get_pointer): Handle shaped windows.
16512         (gdk_fb_region_create_from_bitmap): Convert bitmap to region.
16513         (gdk_fb_window_peek_shape): Returns the shape for a window,
16514         handles GDK_FB_USE_CHILD_SHAPE.
16515         (gdk_fb_window_get_abs_shape): Returns the shape of the window,
16516         offseted to absolute positions. Handles GDK_FB_USE_CHILD_SHAPE.
16517         (gdk_window_shape_combine_mask): Implement.
16518
16519         * gtk/gtkwindow-decorate.c:
16520         HACK! Set GDK_FB_USE_CHILD_SHAPE on window->frame to make sure
16521         setting the shape of a window makes the window transparent.
16522
16523 2001-01-11  Havoc Pennington  <hp@redhat.com>
16524
16525         * gtk/gtktreemodelsimple.h: Oops, broke some macros
16526
16527 2001-01-10  Havoc Pennington  <hp@redhat.com>
16528
16529         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_clear_attributes):
16530         add this function, bug 40251
16531
16532         * gtk/gtktreemodelsimple.h (GTK_TYPE_TREE_MODEL_SIMPLE): fix name
16533         of type macro   
16534
16535 2001-01-11  Alexander Larsson  <alexl@redhat.com>
16536
16537         * acconfig.h:
16538         Added ENABLE_SHADOW_FB
16539
16540         * configure.in:
16541         Added --disable-shadowfb
16542
16543         * gdk/linux-fb/gdkcursor-fb.c:
16544         Update shadowfb when updating cursor
16545
16546         * gdk/linux-fb/gdkdrawable-fb2.c:
16547         Added wrappers for shadowfb that calls  the normal drawable
16548         methods, but calls gdk_shadow_fb_update(bounding box) when
16549         GdkWindows are drawed to.
16550         Moved gdk_draw_glyphs implementation to _gdk_draw_glyphs
16551         which also returns the bounding box.
16552
16553         * gdk/linux-fb/gdkfb.h:
16554         Added GdkFBAngle type and gdk_fb_set_rotation declaration.
16555
16556         * gdk/linux-fb/gdkgeometry-fb.c:
16557         Update shadowfb when scrolling window.
16558
16559         * gdk/linux-fb/gdkglobals-fb.c:
16560         Add _gdk_fb_screen_angle.
16561         
16562         * gdk/linux-fb/gdkkeyboard-fb.c:
16563         Test code for screen rotation. Shift-F2 in the xlate driver
16564         rotates the screen.
16565
16566         * gdk/linux-fb/gdkmain-fb.c:
16567         Handle shadowfb. Add gdk_fb_set_rotation(). Remove CM and RP.
16568
16569         * gdk/linux-fb/gdkmouse-fb.c:
16570         Use fb_width/height instead of modeinfo.xres/yres.
16571
16572         * gdk/linux-fb/gdkprivate-fb.h:
16573         Added fb_men, fb_width, fb_height & fb_stride. When using
16574         shadow fb these can differ from the framebuffer stuff.
16575         Declarations for gdk_shadow_fb_update, gdk_shadow_fb_init,
16576         gdk_shadow_fb_stop_updates, gdk_fb_recompute_all,
16577         _gdk_fb_screen_angle. Removed CM, RP.
16578
16579         * gdk/linux-fb/gdkrender-fb.c:
16580         Added code for shadowfb handling and screen rotation using
16581         shadowfb.
16582
16583         * gdk/linux-fb/gdkwindow-fb.c:
16584         Use fb_mem, fb_stride, fb_width, fb_height.
16585         Added recompute_rowstride to reset the rowstride of all windows.
16586         Added gdk_fb_recompute_all() which recomputes rootwindow size,
16587         window abs positions and window rowstrides. Usefull when the
16588         rotation has changed.
16589
16590 Thu Jan 11 13:16:50 GMT 2001  Tony Gale <gale@gtk.org>
16591
16592         * docs/faq/gtk-faq.sgml: update to make web site updating easier
16593
16594 2001-01-10  Havoc Pennington  <hp@redhat.com>
16595
16596         * gtk/gtktreestore.c (gtk_tree_store_insert_before): handle case
16597         where sibling == iter
16598         (gtk_tree_store_insert_after): handle sibling == iter
16599         (gtk_tree_store_prepend): remove stamp checks
16600         (gtk_tree_store_insert_before): ditto
16601         (gtk_tree_store_append): ditto
16602         (gtk_tree_store_get_path): ditto
16603         (gtk_tree_store_get_value): ditto
16604         (gtk_tree_store_iter_has_child): ditto
16605         (gtk_tree_store_iter_n_children): ditto
16606         (gtk_tree_store_iter_nth_child): ditto
16607         (gtk_tree_store_insert_after): ditto
16608         (gtk_tree_store_is_ancestor): ditto
16609         (gtk_tree_store_iter_depth): ditto
16610         (gtk_tree_store_insert_before): assert that sibling's parent is
16611         the same as the passed-in parent
16612         (gtk_tree_store_insert_after): assert that sibling's parent is
16613         the same as the passed-in parent
16614
16615         
16616         * gtk/gtktreemodel.c (gtk_tree_model_get_first): new convenience 
16617         function to get the first iterator in a model
16618         
16619         * gtk/gtktreestore.c (gtk_tree_store_get_root_iter): remove,
16620         conventionally the "root" in this sense is just NULL afaict.
16621
16622         * gtk/gtkliststore.c (gtk_list_store_insert_before): handle case
16623         where sibling == iter
16624         (gtk_list_store_insert_after): handle case where sibling == iter
16625
16626         * tests/testtreeview.c (run_automated_tests): fairly lame basic
16627         automated tests for ListStore, TreeStore
16628
16629         * gtk/gtkliststore.c (gtk_list_store_remove): update tail pointer
16630         (gtk_list_store_insert): update tail pointer, and fix it to work
16631         (gtk_list_store_insert_before): update tail pointer, and fix it to work
16632         (gtk_list_store_append): use tail to be faster
16633         (gtk_list_store_prepend): fix it, update tail pointer
16634         (gtk_list_store_insert_after): fix it, update tail pointer
16635
16636         * gtk/gtkliststore.h (struct _GtkListStore): add tail pointer for 
16637         the list
16638
16639 2001-01-09  Havoc Pennington  <hp@redhat.com>
16640
16641         * gtk/gtklabel.c (gtk_label_expose): don't draw if label->layout
16642         is NULL due to a pending resize
16643
16644         * gtk/gtktreeview.c (gtk_tree_view_check_dirty): don't set the
16645         column width to values less than 1
16646
16647         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_width): clamp
16648         width to be between min/max width, and still set the width 
16649         even if autosize is turned on, so the tree view can use this 
16650         function in order to autosize.
16651         (gtk_tree_view_column_init): set initial width to 1 not 0
16652
16653         * gtk/gtktreeview.c (gtk_tree_view_size_request_buttons): use
16654         setter function to modify column width, so we get notification
16655         (gtk_tree_view_insert_iter_height): ditto
16656         (gtk_tree_view_calc_size): ditto
16657         (gtk_tree_view_check_dirty): ditto
16658
16659         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): Add
16660         properties to change all the interesting attributes of the tree
16661         view column.
16662         (gtk_tree_view_column_set_header_clickable): rename set_clickable
16663         (gtk_tree_view_column_get_clickable): add
16664         (gtk_tree_view_column_set_cell_renderer): don't unset the current
16665         attributes; assume a cell renderer with equivalent object
16666         properties has been swapped in. Do g_object_notify().
16667         (gtk_tree_view_column_set_visible): g_object_notify
16668         (gtk_tree_view_column_get_sizing): rename from get_col_type
16669         (gtk_tree_view_column_set_sizing): g_object_notify
16670         (gtk_tree_view_column_set_width): add g_object_notify
16671         (gtk_tree_view_column_set_min_width): ditto
16672         (gtk_tree_view_column_set_max_width): ditto
16673         (gtk_tree_view_column_set_title): ditto
16674         (gtk_tree_view_column_set_clickable): ditto
16675         (gtk_tree_view_column_set_widget): ditto
16676         (gtk_tree_view_column_set_justification): ditto
16677
16678 2001-01-09  Havoc Pennington  <hp@redhat.com>
16679
16680         * gtk/gtktreeview.c (gtk_tree_view_check_dirty): handle case where
16681         there are no rows in the model
16682
16683         * gtk/gtkliststore.c (gtk_list_store_iter_children): if parent is
16684         NULL, then return the start of the list
16685
16686         * gtk/gtktreeview.c (gtk_tree_view_setup_model): don't build tree
16687         if we can't get any rows from an empty model 
16688
16689         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): remove
16690         extraneous * after function pointer typedef usage
16691
16692         * Makefile.am: don't specify full path to cp and rm
16693
16694         * gtk/gtkcellrenderertextpixbuf.c
16695         (gtk_cell_renderer_text_pixbuf_get_size): check width/height !=
16696         NULL before dereferencing, fixes a segfault that happened from
16697         time to time
16698
16699         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
16700         use gdk_pixbuf_render_to_drawable_alpha() to get alpha channel,
16701         and reindent the function
16702         (gtk_cell_renderer_pixbuf_get_size): indentation
16703
16704         * gtk/gtkdialog.c (gtk_dialog_run): destroy main loop only after
16705         we quit it
16706         (gtk_dialog_add_buttons_valist): add g_return_if_fail
16707         (gtk_dialog_set_default_response): New function, to set default
16708         button
16709         (gtk_dialog_set_response_sensitive): New function, to set 
16710         sensitivity of buttons
16711
16712         * gtk/gtkcellrendererpixbuf.c
16713         (gtk_cell_renderer_pixbuf_get_property): allow getting a NULL pixbuf
16714         (gtk_cell_renderer_pixbuf_set_property): allow setting a NULL pixbuf
16715
16716         * gtk/gtktreedatalist.c (_gtk_tree_data_list_node_to_value):
16717         handle any G_TYPE_OBJECT subclass, not just the base class, and 
16718         also boxed types.
16719         (_gtk_tree_data_list_value_to_node): ditto
16720
16721         * gtk/gtkrbtree.c: Run _gtk_rbtree_test at strategic points if 
16722         --gtk-debug=tree
16723
16724         * gtk/gtkmain.c: add GTK_DEBUG_TREE
16725
16726         * gtk/gtkdebug.h: add GTK_DEBUG_TREE
16727
16728 2001-01-09  Tor Lillqvist  <tml@iki.fi>
16729
16730         * gdk/win32/gdkevents-win32.c: Implement better mouse
16731         capturing. Do use SetCapture(). Thanks to jpe@archaeopteryx.com.
16732         (find_window_for_pointer_event): New function.
16733         (gdk_event_translate): Use it when handling mouse events.
16734
16735 2001-01-09  Alexander Larsson  <alla@lysator.liu.se>
16736
16737         * configure.in:
16738         Added --with-included-loaders option
16739
16740         * gdk-pixbuf/Makefile.am:
16741         * gdk-pixbuf/gdk-pixbuf-io.c:
16742         Add support for including selected gdk-pixbuf loaders only.
16743
16744         * gtk/gtkwindow.c (gtk_window_set_frame_dimensions,
16745         gtk_window_set_has_frame):
16746         Added inline documentation.
16747
16748         * gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
16749         * docs/reference/gdk/tmpl/windows.sgml:
16750         Added inline documentation.
16751
16752 Mon Jan  8 14:42:06 2001  Jonathan Blandford  <jrb@redhat.com>
16753
16754         * gtk/gtktreeview.c (gtk_tree_view_realize_buttons): Skip
16755         realizing buttons that have already been realized.
16756
16757 Mon Jan  8 14:06:29 2001  Jonathan Blandford  <jrb@redhat.com>
16758
16759         * tests/testtreeview.c (main): Show menu items before adding to
16760         option menu.
16761
16762         * gtk/gtktreeview.c (gtk_tree_view_set_model): Keep the columns
16763         around if we kill them.
16764
16765         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_cell_data):
16766         Return if we pass in a NULL model.
16767
16768 2001-01-08  Havoc Pennington  <hp@redhat.com>
16769
16770         * tests/testtreeview.c: hack on this some
16771
16772         * gtk/gtktreestore.c (gtk_tree_store_setv): rename
16773         gtk_tree_store_set_valist, v is for arrays, valist for varargs
16774         list
16775         (gtk_tree_store_getv): rename gtk_tree_store_get_valist
16776
16777         * gtk/gtkliststore.h: Add varargs set() and get() convenience
16778         functions
16779
16780 2001-01-08  Alexander Larsson  <alexl@redhat.com>
16781
16782         * gtk/gtkwindow-decorate.[hc]:
16783         * gtk/Makefile.am:
16784         New files. Contains an implementation of a minimal WM for
16785         linux-fb.
16786
16787         * gtk/gtkwindow.h:
16788         Add the possibility for GtkWindows to specify a frame. This
16789         is used for the window decoration code, but could concievably
16790         be used for X programs too (xmms style windows).
16791         GtkWindow->frame is the toplevel window if the window is framed.
16792         The signal frame_event gets all events that are targeted to
16793         GtkWindow->frame.
16794         (_gtk_window_constrain_size): Exported for usage by gtkwindow-decorate.c.
16795         
16796         * gtk/gtkwindow.c:
16797         Implement gtk_window_set_has_frame and gtk_window_set_frame_dimensions.
16798         Call out to gtkwindow-decorate.c for WM support in linx-fb.
16799
16800 2001-01-08  Alexander Larsson  <alexl@redhat.com>
16801
16802         * docs/README.linux-fb:
16803         Correct filename ~/.pangoft2_aliases
16804
16805         * gdk/gdkwindow.h:
16806         Added new function gdk_window_get_decorations.
16807
16808         * gdk/linux-fb/gdkfb.h:
16809         Removed _gdk_window_get_decorations declaration.
16810         Renamed _gdk_window_set_child_handler to
16811         gdk_fb_window_set_child_handler.
16812
16813         * gdk/linux-fb/gdkwindow-fb.c:
16814         Renamed _gdk_window_set_child_handler to
16815         gdk_fb_window_set_child_handler.
16816
16817         * gdk/x11/gdkwindow-x11.c:
16818         New function gdk_window_get_mwm_hints().
16819         Implemented gdk_window_get_decorations.
16820
16821         * docs/reference/gdk/tmpl/windows.sgml:
16822         * docs/reference/gdk/gdk-sections.txt:
16823         Added gdk_window_get_decorations docs.
16824         
16825 2001-01-08  Alexander Larsson  <alla@lysator.liu.se>
16826
16827         * gdk/linux-fb/gdkwindow-fb.c (_gdk_fb_window_find_focus,
16828         gdk_fb_window_find_focus, gdk_fb_send_focus_change,
16829         gdk_fb_window_send_crossing_events):
16830         Possibly send focus events when the mouse moves from one
16831         window to another.
16832
16833 2001-01-07  Tor Lillqvist  <tml@iki.fi>
16834
16835         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title,
16836         gdk_window_new): Adapt calls to g_{locale,filename}_{to,from}_utf8
16837         to match current API.
16838
16839         * gdk/win32/gdkvisual-win32.c (gdk_visual_init): If a secret
16840         environment variable is set, don't call g_error when on a
16841         palettized (PseudoColor) display. Some people want to use GTK+ 
16842         in 256-colour mode even though works only partially.
16843
16844         * gdk/gdk.def
16845         * gtk/gtk.def
16846         * gtk/makefile.mingw.in: Update.
16847
16848 2001-01-05  Havoc Pennington  <hp@redhat.com>
16849
16850         * tests/testtreeview.c: hack on this a bit
16851
16852         * gtk/gtktextlayout.c (gtk_text_layout_class_init):
16853         s/GTK_RUN_LAST/G_SIGNAL_RUN_LAST
16854
16855         * gtk/gtktreemodelsimple.h (GTK_IS_TREE_MODEL_SIMPLE_CLASS): 
16856         was spelled incorrectly
16857         (GTK_IS_TREE_MODEL_SIMPLE): ditto
16858
16859         * gtk/gtktreeview.c (gtk_tree_view_set_headers_clickable): rename
16860         from gtk_tree_view_set_headers_active   
16861
16862         * gtk/gtktexttag.c:
16863         (gtk_text_tag_get_property): handle PROP_DIRECTION
16864         (gtk_text_tag_set_property): g_object_notify when we toggle the _set
16865         properties, bug 40235
16866
16867         * gtk/gtktextiter.c (gtk_text_iter_forward_to_delimiters): rename
16868         forward_to_line_end
16869
16870 Fri Jan  5 16:16:29 2001  Owen Taylor  <otaylor@redhat.com>
16871
16872         * gtk/{gtkcalender.c,gtkfilesel.c,gtkimcontext.c},
16873         modules/input/gtkimcontextxim.c: Adapt to new prototypes
16874         for unicode,locale,filename conversion functions.
16875
16876 2001-01-05  Havoc Pennington  <hp@redhat.com>
16877
16878         * gtk/gtktextiter.c (gtk_text_iter_ends_line): this function was
16879         broken if called on the first position in the buffer.
16880
16881         * gtk/gtktextlayout.c (line_display_index_to_iter): fix
16882         forward_to_delimiters to be called only if we aren't already at
16883         the delimiters.
16884
16885 2001-01-05  Havoc Pennington  <hp@redhat.com>
16886
16887         * demos/gtk-demo/main.c (create_tree): Oops, that didn't link. Fix.
16888
16889 2001-01-05  Alexander Larsson  <alexl@redhat.com>
16890
16891         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_drawable_finalize): free
16892         colormap in here. Sync from X port.
16893         (gdk_fb_set_colormap): allow the colormap to be NULL if you like.
16894         Sync from X port.
16895         (gdk_fb_clip_region): Comment out g_warning about empty clip region.
16896         This happens now and then, and i don't think it is a bug.
16897         (gdk_fb_draw_polygon): Correctly add extra point if startpoint
16898         != endpoint.
16899         (gdk_fb_draw_lines): Don't draw dashed lines if line_style is
16900         GDK_LINE_SOLID.
16901
16902         * gdk/linux-fb/gdkfont-fb.c: Return bogus GdkFont that has
16903         some of the fields filled in at least.
16904
16905         * gdk/linux-fb/miwideline.c: The widths argument to miLineArcI, and
16906         miLineArcD is no more, remove it from the function definition.
16907
16908 2001-01-04  Havoc Pennington  <hp@redhat.com>
16909
16910         * gtk/gtktreeselection.c (gtk_tree_selection_get_tree_view): add
16911         this
16912
16913         * gtk/gtktreemodel.h (struct _GtkTreeIter): rename fields to
16914         user_data instead of tree_node
16915
16916         * gtk/gtktreeprivate.h (TREE_VIEW_COLUMN_WIDTH): rename from
16917         TREE_VIEW_COLUMN_SIZE
16918
16919         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): rename
16920         "size" field to "width" finishes bug 40061
16921
16922         * gtk/gtkcellrenderer.h: Use GtkCellRendererState instead of guint
16923         for bitfields, bug 40268
16924
16925 2001-01-04  Havoc Pennington  <hp@redhat.com>
16926
16927         Rename some stuff:
16928         
16929         s/gtk_tree_view_column_set_size/gtk_tree_view_column_set_width/g;
16930
16931         s/GtkModelSimple/GtkTreeModelSimple/g;
16932         s/GTK_MODEL_SIMPLE/GTK_TREE_MODEL_SIMPLE/g;
16933         s/gtk_model_simple/gtk_tree_model_simple/g;
16934         s/gtkmodelsimple/gtktreemodelsimple/g;
16935
16936         s/gtk_tree_view_column_set_header_active/gtk_tree_view_column_set_header_clickable/g;
16937
16938         s/GtkTreeViewColumnType/GtkTreeViewColumnSizing/g;
16939         s/column_set_col_type/column_set_sizing/g;
16940
16941         s/GtkTreeSelectionType/GtkTreeSelectionMode/g;
16942         s/gtk_tree_selection_set_type/gtk_tree_selection_set_mode/g;
16943
16944         s/GtkCellRendererType/GtkCellRendererState/g;
16945         
16946         * gtk/gtkcellrenderertoggle.c: remove _ macro, include gtkintl.h
16947         (gtk_cell_renderer_toggle_class_init): change "state" property to
16948         "active", to match GtkToggleButton
16949         (gtk_cell_renderer_toggle_get_active): new function, bug
16950         40269
16951         (gtk_cell_renderer_toggle_set_active): new function
16952         (gtk_cell_renderer_toggle_set_property): route changes to toggle
16953         state through gtk_cell_renderer_set_active
16954
16955 Thu Jan  4 15:46:18 2001  Jonathan Blandford  <jrb@redhat.com>
16956
16957         * gtk/gtkmodelsimple.c: Changed a bunch of boxed types to pointers
16958         temporarily until they work again.  Brought up to date with
16959         changes in the model.
16960         * gtk/gtkmodelsimple.h: Brought up to date with changes in the
16961         model.
16962
16963 2001-01-04  Havoc Pennington  <hp@redhat.com>
16964
16965         * gtk/gtktextlayout.c (line_display_index_to_iter): if index is
16966         equal to the line length, then position iterator before paragraph 
16967         separators. Fixes crash reported by Mikael Hermansson when
16968         pressing left arrow from the start of a line.   
16969
16970         * gtk/gtktextiter.c (iter_set_from_byte_offset): Add g_error
16971         about byte indexes off the end
16972         (iter_set_from_char_offset): add g_error about char offsets
16973         off the end
16974
16975 2001-01-03  Havoc Pennington  <hp@redhat.com>
16976
16977         * gtk/gtktextbtree.c: Adapt to uscore-ification of gtktextiterprivate
16978
16979         * gtk/gtktextdisplay.c (gtk_text_layout_draw): remove use 
16980         of private functions; remove inclusion of private headers.
16981
16982         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_at_line): Add this 
16983         function, so we don't need private functions in gtktextdisplay.c
16984
16985         * gtk/gtktextiterprivate.h: underscore-ification
16986
16987         * gtk/gtkwidget.c: Clean up a bunch of docs that said "INTERNAL"
16988         to instead say "only useful to implement widgets"
16989
16990         * gtk/gtkenums.h (GtkMovementStep): Rename GTK_MOVEMENT_CHARS,
16991         GTK_MOVEMENT_POSITIONS to GTK_MOVEMENT_LOGICAL_POSITIONS,
16992         GTK_MOVEMENT_VISUAL_POSITIONS. Resolves bug 40249.
16993
16994         * gdk/x11/gdkwindow-x11.c (gdk_window_impl_x11_set_colormap):
16995         This function was completely broken
16996
16997         * gtk/testtext.c (line_numbers_expose): use gtk_paint_layout
16998
16999         * gtk/gtkvscale.c (gtk_vscale_draw_value): use gtk_paint_layout
17000
17001         * gtk/gtkvruler.c (gtk_vruler_draw_ticks): use gtk_paint_layout
17002
17003         * gtk/gtklabel.c (gtk_label_expose): use gtk_paint_layout
17004
17005         * gtk/gtkhscale.c (gtk_hscale_draw_value): use gtk_paint_layout
17006
17007         * gtk/gtkhruler.c (gtk_hruler_draw_ticks): use gtk_paint_layout
17008
17009         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): use
17010         gtk_paint_layout
17011
17012         * gtk/gtkaccellabel.c (gtk_accel_label_expose_event): use
17013         gtk_paint_layout
17014
17015         * gtk/gtkstyle.h: Add draw/paint expander to draw tree expanders.
17016         Progress on bug 40103. Add draw_layout to draw a PangoLayout.
17017         (struct _GtkStyleClass): Remove draw_cross, draw_oval, draw_ramp,
17018         which were not implemented.     
17019
17020         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): Add
17021         insert_pixbuf signal. Rename delete_text to delete_range since it
17022         also deletes pixbufs and child anchors. This almost closes bug
17023         40245 (still need to deal with child anchors)
17024
17025         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Add
17026         insert_pixbuf, change signal names as appropriate, change types of
17027         signals taking marks/tags to have the specific type, not just
17028         G_TYPE_OBJECT
17029         
17030         * gtk/gtkmain.c (gtk_get_current_event_state): Add this function; 
17031         closes bug 40051
17032
17033         * gtk/gtkoptionmenu.c (gtk_option_menu_set_history): clean up
17034         unnecessary remove_contents() call
17035         (gtk_option_menu_class_init): add a "changed" signal, closes
17036         bug 40039
17037         (gtk_option_menu_update_contents): emit "changed" if the 
17038         active menu item changes
17039
17040         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done): fix bad
17041         cast to GtkObject, reported by Jonas Borgstrom
17042         (gdk_pixbuf_loader_finalize): don't close the loader on finalize;
17043         we can't do stuff with side effects in finalize. Instead, spew a
17044         warning if the loader isn't closed.
17045
17046         * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_finalize): free
17047         colormap in here, non-X ports probably need to sync to this change
17048
17049         * gdk/x11/gdkdrawable-x11.c (gdk_x11_set_colormap): remove 
17050         assertion that colormap != NULL, you can set the colormap to NULL
17051         if you like.
17052         
17053         * Makefile.am: remove gtk-config-2.0
17054
17055         * configure.in: Use pkg-config to locate GLib. Remove
17056         separated-out GMODULE_LIBS, GMODULE_CFLAGS; these were not used,
17057         and the gmodule libs/cflags were in GLIB_LIBS GLIB_CFLAGS anyhow.
17058         Use pkg-config to locate Pango. Output correct Pango libs to
17059         gdk-2.0.pc.in. Fix test for FREETYPE_CONFIG (typo fix).
17060
17061         * Makefile.am (pkgconfig_DATA): install only target-specific pc
17062         files
17063         (install-data-local): symlink gtk+-2.0.pc and gdk-2.0.pc to the
17064         X11 pc files
17065
17066         * gtk+-2.0.pc.in (Requires): require the GDK for the current target
17067         unref from here
17068
17069 2001-01-03  Alexander Larsson  <alla@lysator.liu.se>
17070
17071         * configure.in:
17072         Change GTK_NO_CHECK_CASTS to G_DISABLE_CAST_CHECKS.
17073
17074 Tue Jan  2 16:23:05 2001  Owen Taylor  <otaylor@redhat.com>
17075
17076         * gtk/gtktextlayout.c
17077         (gtk_text_layout_move_iter_to_previous_line): Fix unitialized
17078         variable when moving back onto a single line.
17079
17080 2001-01-01  Havoc Pennington  <hp@redhat.com>
17081
17082         * gtk/Makefile.am (LDFLAGS): add @LIBTOOL_EXPORT_OPTIONS@
17083
17084         * gdk/Makefile.am (LDFLAGS): add @LIBTOOL_EXPORT_OPTIONS@
17085
17086         * configure.in (LIBTOOL_EXPORT_OPTIONS): define
17087         LIBTOOL_EXPORT_OPTIONS with options to control symbol export
17088
17089 2001-01-01  Havoc Pennington  <hp@redhat.com>
17090
17091         * gtk/gtktexttagprivate.h: uscore-prepend all the stuff in here.
17092
17093         * gtk/gtk-boxed.defs (GtkTextAttributes): Add boxed type for 
17094         GtkTextAttributes
17095
17096         * gtk/gtktexttag.c: Fix up GtkTextAttributes copying to close bug 
17097         #40246
17098         (gtk_text_attributes_copy_values): rename from 
17099         gtk_text_attributes_copy
17100         (gtk_text_attributes_copy): a more standard GTK copy function, 
17101         which returns a new object
17102
17103 2001-01-01  Havoc Pennington  <hp@redhat.com>
17104
17105         * gtk/gtktreeview.c: Adapt to GtkTreeSelection changes
17106         
17107         * gtk/gtktreeselection.c (_gtk_tree_selection_set_tree_view):
17108         don't fill in tree_view->priv->selection, kind of an unexpected
17109         side effect
17110
17111         * gtk/gtkcellrenderertext.c: Remove definition of _ and include
17112         gtkintl.h
17113         
17114         * gtk/gtkcellrenderer.c: Remove definition of _ and include
17115         gtkintl.h
17116         (gtk_cell_renderer_get_property): remove calls to g_value_init
17117
17118         * gtk/gtkcellrendererpixbuf.c: Remove definition of _ and include
17119         gtkintl.h
17120
17121         * gtk/gtkcellrenderertextpixbuf.c: Remove definition of _ macro
17122         and include gtkintl.h
17123         (gtk_cell_renderer_text_pixbuf_class_init): remove spaces from
17124         property names
17125
17126         * gtk/gtktreeselection.c (_gtk_tree_selection_new): rename, return
17127         GtkTreeSelection
17128         (_gtk_tree_selection_new_from_with_view): rename, return
17129         GtkTreeSelection
17130         (_gtk_tree_selection_set_tree_view): rename with uscore
17131         (gtk_tree_selection_get_selected): fill in the "model" out param
17132         first, so it gets filled in even if we return at the top of the 
17133         function
17134         (gtk_tree_selection_real_select_all): add a comment and an else{}
17135         to clarify this a bit
17136         (gtk_tree_selection_real_unselect_all): add the same else{}
17137
17138         * gtk/gtktreeselection.h: Rename new, new_with_tree_view, and
17139         set_tree_view to have underscore prefixes, move them to the
17140         private header, fix return type of new_with_tree_view
17141         (struct _GtkTreeSelection): mark struct
17142         fields private  
17143
17144         * gtk/gtktreemodel.c (gtk_tree_model_get_flags): return
17145         GtkTreeModelFlags, not a guint
17146         (gtk_tree_path_prev): return gboolean not gint
17147         (gtk_tree_path_up): return gboolean not gint
17148
17149         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): make get_flags
17150         return GtkTreeModelFlags, not a guint
17151
17152         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_finalize): check
17153         that child model is non-null before unrefing it
17154         (g_value_int_compare_func): make this a qsort compare func, not 
17155         a boolean predicate
17156
17157         * gtk/gtktreemodelsort.h: rename gtk_tree_model_set_sort_column,
17158         (add -umn to the end), and mark it unimplemented
17159         (gtk_tree_model_sort_resort): remove, this wasn't implemented, and 
17160         I don't see what it's for - doesn't the model always sort itself?
17161         (gtk_tree_model_sort_set_compare): this had the wrong signature
17162
17163         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_attributes):
17164         Fix the docs to say that it destructively replaces existing
17165         attributes (previously said that it added attributes).
17166         (gtk_tree_view_column_set_visible): canonicalize bool before
17167         equality testing. Also, check for realization before
17168         hiding/showing the tree_column->window; if this window could exist
17169         before realization, then it's busted and needs fixing, we can't 
17170         create GDK resources pre-realization. Also, remove
17171         superfluous queue_resize(), since set_size() does that for us.
17172         (gtk_tree_view_column_set_col_type): check realization before 
17173         using tree_column->window
17174
17175         * gtk/gtktreedatalist.c: fix filename in copyright notice
17176
17177 2000-12-31  Havoc Pennington  <hp@pobox.com>
17178
17179         * gtk/gtktextview.c: Rearrange all the
17180         scroll-while-dragging-or-selecting code to be different, not
17181         necessarily better. ;-)
17182         (gtk_text_view_scroll_to_mark): Change this
17183         function to take within_margin as a fraction instead of a pixel
17184         value, and to take alignment arguments (indicating where to align 
17185         the mark inside the visible area)
17186         
17187         * gtk/testtextbuffer.c (fill_buffer): fix bad cast of GtkTextTag
17188         to GtkObject
17189
17190         * gtk/gtktextiter.c (gtk_text_iter_set_line_offset): change
17191         behavior so that offsets past the end of the line are not 
17192         allowed, and an offset equal to the line length moves the iterator
17193         to the next line
17194         (gtk_text_iter_set_line_index): make parallel change
17195         (gtk_text_iter_get_bytes_in_line): add this function
17196         
17197         * gtk/gtktextbtree.c (_gtk_text_line_byte_locate): change handling
17198         of byte indexes off the end of the line; byte index at the end of
17199         the line now returns FALSE and doesn't fill in the requested
17200         values, byte index past the end of the line is an error.  Also,
17201         don't allow -1 offset anymore, since its meaning is unclear.
17202
17203         This change exposes some bug in visual cursor motion, where we
17204         end up with a huge invalid byte index; needs fixing. Symptom of 
17205         bug is a crash when you hit up arrow.
17206         
17207         (_gtk_text_line_char_locate): match the change to byte_locate
17208
17209         * gtk/gtktextiter.c (find_by_log_attrs): Handle iteration backward
17210         from start of line properly. fixes bug reported by Mikael
17211         Hermansson where backspace would delete all text before the
17212         cursor.
17213
17214 2000-12-30  Tor Lillqvist  <tml@iki.fi>
17215
17216         * gdk/win32/gdkwindow-win32.c
17217         (gdk_window_impl_win32_get_visible_region): New function, as in
17218         the X11 backend.
17219         (gdk_window_new, gdk_window_set_title): Use g_locale_from_utf8()
17220         instead of duplicating the same code here.
17221
17222         * gdk/win32/gdkwin32.h (GDK_COLORMAP_PRIVATE_DATA): Use
17223         GDK_COLORMAP macro.
17224
17225         * gdk/win32/gdkevents-win32.c (gdk_event_funcs): Use NULL as
17226         destroy function.
17227         (gdk_event_translate): Use GDK_COLORMAP_PRIVATE_DATA to correctly
17228         access that.
17229
17230         * gtk/gtk.def: Update.
17231
17232         * gtk/makefile.mingw.in: Use glib-genmarshal from $(GLIB)/gobject.
17233
17234 2000-12-30  Havoc Pennington  <hp@pobox.com>
17235
17236         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Set the system
17237         colormap on input only windows, to avoid special cases all over
17238         the code for these windows.
17239
17240 2000-12-26  Tor Lillqvist  <tml@iki.fi>
17241
17242         * gdk/win32/gdkvisual-win32.c (gdk_visual_init): Call g_error if
17243         we are on a palettized display ("PseudoColor" in X11), as the code
17244         for that doesn't work anyway, and never has.
17245
17246 2000-12-22  Alexander Larsson  <alexl@redhat.com>
17247
17248         * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io):
17249         Don't use isprint() for chars > 255.
17250
17251 2000-12-21  Havoc Pennington  <hp@redhat.com>
17252
17253         * tests/testtreeview.c: more work
17254
17255 2000-12-21  Alexander Larsson  <alexl@redhat.com>
17256
17257         * docs/README.linux-fb:
17258         Update the docs to the new pangoft2 way.
17259
17260 2000-12-21  Alexander Larsson  <alexl@redhat.com>
17261
17262         * configure.in:
17263         For linux-fb get the pangoft2 cflags and libs. This needs a recent
17264         pango version.
17265         Remove modules/linux-fb/Makefile.
17266
17267         * gdk/linux-fb/gdkdrawable-fb2.c:
17268         Render glyphs using freetype.
17269
17270         * gdk/linux-fb/gdkfb.h:
17271         Add new fb-specific functions needed for managing windows.
17272
17273         * gdk/linux-fb/gdkmain-fb.c:
17274         Remove gdk_font_init/fini() calls.
17275
17276         * gdk/linux-fb/gdkpango-fb.c:
17277         Remove old implementation. Use pangoft2 instead.
17278
17279         * gdk/linux-fb/gdkprivate-fb.h:
17280         Remove PangoFBFont and related stuff.
17281
17282         * gdk/linux-fb/gdkwindow-fb.c:
17283         Implement drawable->get_visible_region.
17284         Implement support for _gdk_window_set_child_handler () and
17285         _gdk_window_get_decorations().
17286
17287         * modules/Makefile.am:
17288         Remove linux-fb subdir.
17289
17290         * modules/linux-fb/*:
17291         Removed all.
17292         
17293 2000-12-20  Jonathan Blandford  <jrb@redhat.com>
17294
17295         * gtk/gtkcellrenderer*.c (::get_property): remove g_value_init
17296         calls, as they are no longer needed.
17297
17298         * gtk/gtktreemodelsort.c: Fix up the comparison code.
17299         
17300         * gtk/gtktreemodel.h: Start work on ::reordered signal.  Need to
17301         figure out how to emit a signal on an interface.
17302
17303 2000-12-20  Havoc Pennington  <hp@redhat.com>
17304
17305         * tests: new directory to contain tests, gtk/test* should move
17306         here sometime (with appropriate on-cvs-server hackery)
17307
17308         * tests/testtreeview.c, tests/Makefile.am: a test
17309         
17310         * configure.in (AC_OUTPUT): add tests/Makefile
17311
17312         * gtk/gtktexttag.c (gtk_text_tag_get_property): Add "invisible"
17313         and "invisible_set" which were missing
17314
17315         * gtk/gtkrbtree.h: some cheesy indentation fix
17316         
17317 2000-12-20  Alexander Larsson  <alexl@redhat.com>
17318
17319         * gtk/gtkinvisible.c (gtk_invisible_realize):
17320         Attach the style to the window so that the style it is not
17321         leaked when unrealizing the window.
17322
17323 2000-12-18  Havoc Pennington  <hp@redhat.com>
17324
17325         * gtk/gtktextview.c (gtk_text_view_delete_from_cursor): do
17326         begin/end user action where appropriate
17327         (gtk_text_view_commit_handler): add begin/end user action
17328
17329         * gtk/gtktextbuffer.c: add begin/end user action signals, and
17330         bracket interactive operations with begin/end user action pair.
17331         
17332         * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): remove
17333         "interactive" arg from insert_text and delete_text signals.
17334         Add begin_user_action, end_user_action signals
17335         (gtk_text_buffer_begin_user_action): 
17336         (gtk_text_buffer_end_user_action): New functions to delimit 
17337         a user-visible action
17338
17339         * gtk/gtkmarshal.list: update to reflect changes to gtktextbuffer
17340         signals.
17341         
17342 2000-12-18  Havoc Pennington  <hp@redhat.com>
17343
17344         * gdk/gdkevents.c (gdk_event_get_state): wow, that implementation
17345         was pretty non-working.
17346
17347         * gtk/testtext.c (fill_file_buffer): make this a bit more robust
17348         by passing the length to g_utf8_validate().
17349
17350 2000-12-16  Havoc Pennington  <hp@pobox.com>
17351
17352         * gtk/gdk-pixbuf-loader.h, gtk/gdk-pixbuf-loader.c: 
17353         Port to GObject, can go back in gdk-pixbuf after setting up 
17354         a gdk-pixbuf-marshal.h header over there.
17355
17356         * gtk/gtktreeview.c: s/SEPERATOR/SEPARATOR/g;
17357         (gtk_tree_view_class_init): specify GTK_TYPE_ADJUSTMENT for signal
17358         args
17359         (gtk_tree_view_init): don't unset GTK_NO_WINDOW, it shouldn't be
17360         set
17361         (gtk_tree_view_realize_buttons): don't gtk_widget_show() buttons
17362         here, do it when we create the buttons later
17363         (gtk_tree_view_realize_buttons): add some g_return_if_fail 
17364         (gtk_tree_view_map): paranoia checks that column->button is shown 
17365         and unmapped
17366         (gtk_tree_view_size_request): only request visible children.
17367         Move header size calculation in here, for cleanliness, and 
17368         to maintain invariants for child widgets if we eventually 
17369         let users set different children inside the buttons
17370         (gtk_tree_view_map_buttons): factor out code to map buttons,
17371         since it was being called several times
17372         (gtk_tree_view_size_allocate_buttons): move_resize the drag
17373         windows instead of just moving them; their height may change 
17374         if we allow random widgets in there, or the theme changes.
17375         (gtk_tree_view_size_allocate): move button size allocation 
17376         above emitting the scroll signals, to ensure a sane state when we
17377         hit user code
17378         (gtk_tree_view_button_release): remove queue_resize after
17379         tree_view_set_size(), set_size() will handle any resize queuing
17380         that's needed
17381         (gtk_tree_view_focus_in): just queue a draw, don't fool with
17382         draw_focus goo
17383         (gtk_tree_view_focus): use gtk_get_current_event() and
17384         gdk_event_get_state()
17385         (gtk_tree_view_deleted): don't queue_resize() after calling set_size()
17386         (gtk_tree_view_build_tree): fix a "if (foo); {}" bug - i.e. remove
17387         semicolon
17388         (gtk_tree_view_create_button): show the button here
17389         (gtk_tree_view_button_clicked): actually emit the clicked signal
17390         on the column
17391         (_gtk_tree_view_set_size): return right away if the size is
17392         unchanged, as a cheesy optimization
17393         (gtk_tree_view_setup_model): rename set_model_realized to 
17394         setup_model to match the flag that indicates whether we've 
17395         called it
17396         (gtk_tree_view_get_hadjustment): create adjustment if it doesn't
17397         exist, because set_scroll_adjustment does that and it shouldn't
17398         matter what order you call these in
17399         (gtk_tree_view_get_vadjustment): ditto
17400         (gtk_tree_view_set_headers_visible): canonicalize the bool, 
17401         for paranoia
17402         (gtk_tree_view_set_headers_visible): call
17403         gtk_tree_view_map_buttons() instead of using cut-and-paste code
17404         (gtk_tree_view_append_column): clarify whether the return value
17405         is the count of columns before or after, and do the increment 
17406         separately from the return statement so you can tell from the code.
17407         (gtk_tree_view_remove_column): ditto
17408         (gtk_tree_view_insert_column): ditto
17409         (gtk_tree_view_get_column): remove g_return_if_fail for columns
17410         outside the existing range, the docs say that outside-range
17411         columns are allowed, so we handle them as documented. (Presumably
17412         this allows a nice loop with column != NULL as test.)
17413         (gtk_tree_view_move_to): document what 0.0, 0.5, 1.0 alignments 
17414         mean (left/right/center etc.).
17415         (gtk_tree_view_collapse_all): only queue a draw if we're mapped
17416         (gtk_tree_view_expand_row): add docs
17417         (gtk_tree_view_collapse_row): add docs
17418
17419         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_clicked): new
17420         function to emit the clicked signal on a column
17421         
17422         * gdk/gdkevents.c (gdk_event_get_state): new function, to get the
17423         state of an event
17424         (gdk_event_get_time): don't treat GDK_SCROLL 
17425         as a button event, remove default case from switch so gcc 
17426         will whine if we don't explicitly handle all event types
17427
17428         * gtk/gtktreeselection.h: added some FIXME 
17429         
17430         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): rename
17431         "columns" to "n_columns" and "column" to "columns" for clarity
17432
17433 2000-12-16  Havoc Pennington  <hp@pobox.com>
17434         
17435         * gtk/gtktextiter.c: General cleanup of the log attr iteration
17436         stuff. This should make e.g. the delete key work again in the
17437         text widget...
17438         (gtk_text_iter_forward_cursor_positions): handle negative count
17439         (gtk_text_iter_backward_cursor_positions): handle negative count
17440         (gtk_text_iter_forward_word_ends): handle negative count
17441         (gtk_text_iter_backward_word_starts): handle negative count
17442
17443         * gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktexttag.h,
17444         gtk/gtktexttag.c, gtk/gtktexttagtable.h, gtk/gtktexttagtable.c, 
17445         gtk/gtktextbuffer.h, gtk/gtktextbuffer.c: Convert everything to 
17446         GObject. No doubt will cause breakage.
17447
17448         * demos/gtk-demo/textview.c: remove hacks around
17449         non-GObject-ification of the text objects
17450
17451         * demos/gtk-demo/main.c (main): use g_object_set() to manipulate 
17452         the text tag
17453         
17454 2000-12-14  Havoc Pennington  <hp@pobox.com>
17455
17456         * configure.in: only AC_DEFINE(HAVE_XFT) if we actually determined
17457         that we have Xrender
17458
17459 Thu Dec 14 20:22:31 2000  Owen Taylor  <otaylor@redhat.com>
17460
17461         * gdk/{gdkdrawable.[ch],gdkpixmap.c,gdkwindow.c,x11/gdkwindow.c}:
17462         Add two virtualized functions gdk_drawable_get_clip_region - to
17463         get the clip region when drawing.
17464         
17465         * gdk/gdkwindow.c (gdk_window_invalidate_rect): Rewrite to simple
17466         use invalidate_region.
17467
17468         * gdk/gdkwindow.c (gdk_window_invalidate_region): Clip to visible
17469         region.
17470
17471         * acconfig.h configure.in: Check for Xft. For now, assume
17472         that if Xft is found, Pango was compiled with Xft support
17473         as well.
17474
17475         * gdk/gdkcolor.h gdk/x11/gdkcolor-x11.c: Add 
17476         gdk_colormap_query_color().
17477         
17478         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_glyphs): Draw
17479         with Xft if appropriate.
17480
17481         * gdk/x11/gdkpango-x11.c (gdk_pango_context_get): Create
17482         a pangoxft context if we have XFT and the environment
17483         variable GD_USE_XFT is set.
17484         
17485         * gdk/x11/gdkx.h (struct _GdkGCX11): Cache the fg_pixel
17486         and also possibly an XftDraw structure.
17487
17488         * gtk/gtkfontsel.c: Handle the case where the font from the
17489         style doesn't match any of the fonts a bit better.
17490         
17491         * gtk/testgtk.c: Add tabs between directional segments for
17492         hebrew/arabic test. (Not really necessary, just a little
17493         prettier.)
17494
17495 2000-12-14  Havoc Pennington  <hp@redhat.com>
17496
17497         * gtk/testtext.c (fill_file_buffer): fix unicode validation when
17498         reading a file
17499
17500 2000-12-14  Havoc Pennington  <hp@redhat.com>
17501
17502         * gtk/gtktextbtree.c (_gtk_text_btree_validate_line): remove
17503         unused call to get_last_line()
17504
17505         * gtk/gtkobject.c (gtk_object_add_arg_type): add G_TYPE_POINTER
17506         here until boxed is working (and maybe after that - we should
17507         really not gratuitously break old code)
17508
17509         * gtk/gtktexttag.c (gtk_text_tag_class_init): add commented-out
17510         specific types for font_desc and tabs args, move them to
17511         GTK_TYPE_POINTER for now, waiting on g_param_spec_boxed() to get 
17512         fixed. Move GdkColor args to GTK_TYPE_POINTER also.
17513
17514         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): temporarily
17515         use GTK_TYPE_POINTER for signal signatures as a hack-around
17516
17517         * gtk/gtk-boxed.defs: Add boxed types for PangoFontDescription and
17518         PangoTabArray
17519
17520         * gtk/gtktextlayout.c (line_display_iter_to_index): 
17521         make static
17522         (line_display_index_to_iter): make static
17523
17524         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
17525         to marshal a string not a boxed
17526
17527         * gtk/gtkmarshal.list: add marshaller for GtkTextBuffer:insert_text
17528
17529         * gtk/testtext.c (fill_file_buffer): don't use g_utf8_next_char
17530         since the UTF-8 isn't validated yet
17531
17532         * gtk/gtktextsegment.c (char_segment_check_func): don't require
17533         lines to end in '\n'
17534         
17535         * gtk/gtktextview.c (gtk_text_view_move_cursor): update to use
17536         forward_to_delimiters, and grapheme boundaries
17537         (gtk_text_view_delete_from_cursor): properly handle non-newline
17538         delimiters, and grapheme boundaries
17539
17540         * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): rename
17541         to gtk_text_iter_forward_to_delimiters, and make it work properly
17542         if empty lines end with a character other than '\n'
17543
17544         * gtk/gtktextiter.h, gtk/gtktextiter.c: Add movement by cursor
17545         position
17546
17547 2000-12-15  Tor Lillqvist  <tml@iki.fi>
17548
17549         * gdk/makefile.{mingw.in,msc} (gdk_OBJECTS): Add gdkkeys.
17550
17551         * gtk/gtk.def
17552         * gdk/gdk.def: Update.
17553
17554         * gdk/win32/gdkmain-win32.c
17555         * gdk/win32/gdkkeys-win32.c: New file. Move some functions from
17556         gdkmain-win32.c here.
17557
17558         * gdk/win32/makefile.mingw.in (all): No need to make
17559         gdk-win32res.o here, the makefile one step up will call us to make
17560         it.
17561
17562         * gdk/win32/makefile.{mingw.in,msc} (gdk_win32_OBJECTS): Add
17563         gdkkeys-win32.
17564
17565         * gdk/win32/gdkcolor-win32.c: Silence gcc -Wall.
17566
17567         * gdk/win32/gdkevents-win32.c (gdk_events_init): Remove leftover
17568         call to g_source_add().
17569
17570         * gdk/win32/gdkgc-win32.c (BitmapToRegion): Plug memory
17571         leak. Thanks to Andreas Kemnade.
17572
17573 2000-12-13  Havoc Pennington  <hp@pobox.com>
17574
17575         * gtk/gtktextbtree.h: Remove double _ in front of some functions
17576
17577         * gtk/gtktext*.[hc]: update accordingly
17578         
17579 2000-12-13  Havoc Pennington  <hp@pobox.com>
17580
17581         * gtk/gtktextbtree.h: Put _ in front of every function in this 
17582         header file
17583
17584         * gtk/gtktext*.[hc]: update to reflect renamed btree functions
17585
17586 2000-12-13  Alex Larsson  <alexl@redhat.com>
17587
17588         * gdk/linux-fb/gdkmouse-fb.c (mouse_devs):
17589         Add support for ps2 intellimouse.
17590
17591         * gdkkeyboard-fb.c:
17592         Move shift-F1 repaint handling to xlate handler only.
17593         
17594         * docs/README.linux-fb:
17595         Add imps2 to docs.
17596         Document the new refresh keys.
17597         
17598 Tue Dec 12 23:46:44 2000  Tim Janik  <timj@gtk.org>
17599
17600         * gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
17601
17602         * gtk/gtkbox.c: change property types from (u)long to (u)int for
17603         ::position and ::padding.
17604
17605         * gtk/gtkcontainer.c: make ::border_width an INT property.
17606
17607         * gtk/gtkpacker.c: make ::position an INT property.
17608
17609         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
17610         guard against NULL h/v scrollbars, since this is used at construction
17611         time.
17612
17613         * gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
17614         internal gtk_clist_constructor().
17615
17616         * gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
17617         gtk_ctree_constructor().
17618
17619         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
17620         ::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
17621
17622         * docs/reference/Makefile.am: fun stuff, disabled docs generation
17623         again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
17624
17625         * gtk/gtkwidget.[hc]:
17626         removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
17627         and gtk_widget_get().
17628         (gtk_widget_new): use g_object_new_valist().
17629         (gtk_widget_set): use g_object_set_valist().
17630
17631         * gtk/gtkobject.[hc]:
17632         removed gtk_object_arg_get_info(), gtk_object_getv(),
17633         gtk_object_query_args(), gtk_object_newv(),
17634         gtk_object_class_add_signals(),
17635         gtk_object_class_user_signal_new(),
17636         gtk_object_class_user_signal_newv(),
17637         gtk_object_arg_set(), gtk_object_arg_get(),
17638         gtk_object_args_collect(),
17639         gtk_object_default_construct(),
17640         gtk_object_constructed(),
17641         GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
17642         removed nsignals, signals and n_args members from GtkObjectClass.
17643         (gtk_object_new): use g_object_new_valist().
17644         (gtk_object_set): use g_object_set_valist().
17645         (gtk_object_get): use g_object_get_valist().
17646         
17647         * gtk/gtkcompat.h: define gtk_object_default_construct().
17648         
17649         * gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
17650         g_object_new().
17651
17652         * gtk/*.c: removed gtk_object_class_add_signals() from class_init()
17653         fucntions, cleaned up method assignments (make sure your structures
17654         are setup properly before calling out). removed all GTK_CONSTRUCTED
17655         hacks ;)
17656
17657 Tue Dec 12 11:52:16 2000  Owen Taylor  <otaylor@redhat.com>
17658
17659         * gtk/gtkclist.c (gtk_clist_optimal_column_width): Fix 
17660         off-by-one error in checks. (Dave Lambert)
17661
17662 2000-12-12  Alexander Larsson  <alexl@redhat.com>
17663
17664         * gdk/linux-fb/gdkkeyboard-fb.c (xlate_close, raw_close):
17665         Don't free gdk_fb_keyboard twice.
17666
17667 Tue Dec 12 08:24:42 2000  Tim Janik  <timj@gtk.org>
17668
17669         * gtk/testgtk.c:
17670         (create_tooltips): 
17671         (create_statusbar): get rid of object_signal:: GtkObject argument uses,
17672         use GObject swapped_signal:: properties instead.
17673
17674         * gtk/gtkcellrenderertoggle.c: 
17675         * gtk/gtkcellrenderertextpixbuf.c: 
17676         * gtk/gtkcellrenderertext.c: 
17677         * gtk/gtkcellrendererpixbuf.c: 
17678         * gtk/gtkcellrenderer.c:
17679         * gtk/gtktreeviewcolumn.c: s/[sg]et_param/[sg]et_property/, fixed
17680         missing warnings for invalid property ids, install properties
17681         with g_object_class_install_property() now.
17682         
17683         * gtk/gtksignal.c:
17684         (gtk_signal_emit): let g_signal_emit_valist() collect the values for us.
17685         
17686 Wed Oct 25 14:17:43 2000  Owen Taylor  <otaylor@redhat.com>
17687         
17688         * gtk/gtkwidget.[ch] (gtk_widget_is_focus): Add a function
17689         to determine if a window is the focus widget within
17690         its toplevel.
17691
17692         * gtk/gtkcontainer.[ch]: Fix the return type of ::focus
17693         to be boolean.
17694
17695         * gtk/gtkcontainer.c (gtk_container_real_focus): Move handling 
17696         of the case where the container CAN_FOCUS to here instead
17697         of having it in each individual move-the-focus place.
17698
17699         * gtk/gtkcontainer.c: Rewrite handling of left-right and up-down
17700         focusing to be geometric in a much more obvious sense. Arrowing
17701         around is still non-intuitive because it isn't perfect and
17702         because entries, etc, grab the arrow keys, but it at least
17703         usually will do what you expect now.
17704         
17705         * gtk/gtknotebook.[ch]: Many cleanups. Moved docs inline in this
17706         file.
17707
17708         * gtk/gtknotebook.c: Change tabs to be a single item in
17709         the focus chain. Make movement of focus on tabs with arrow
17710         keys wrap around.
17711         
17712         * gtk/gtknotebook.c (gtk_notebook_find_child): Add
17713         CHECK_FIND_CHILD macro to give informative error messages
17714         instead of silent returns.
17715
17716         * gtk/gtknotebook.c (gtk_notebook_init): Set the RECEIVES_DEFAULT 
17717         flag since we handle GdkReturn on the tabs.
17718
17719         * gtk/gtknotebook.c (gtk_notebook_expose_tabs): Invalidate
17720         windows rather than sending expose events directly.
17721
17722         * gtk/gtknotebook.[ch] docs/Changes-2.0.txt: Move structure 
17723         definition for GtkNotebookPage into .c file, since it is private.
17724
17725         * gtk/testgtk.c (create_notebook): Add option for 
17726         testing borderless notebook.
17727
17728         * gtk/testgtk.c (page_switch): Removed egregious poking
17729         around in GTK+ internals.
17730
17731         * docs/widget-system.txt: Remove references to GTK_REDRAW_PENDING.
17732
17733         * gtk/gtkclist.[ch]: Remove key press handler, handle focusing
17734         properly through gtk_clist_focus. Make the title headers a
17735         single item in the tab-focus chain, and make left-right wrap
17736         around.
17737
17738         * gtk/gtkwindow.c (gtk_window_focus): Add a custom
17739         focus method so that wrapping around works properly.
17740
17741         * gtk/gtktreeview.c: Remove calls to gtk_container_set_focus_child() - 
17742         that is handled for the widget now. 
17743
17744 Mon Dec 11 11:41:12 2000  Owen Taylor  <otaylor@redhat.com>
17745
17746         * gtk/gtkinvisible.c (gtk_invisible_init): Flag invisible
17747         widgets as TOPLEVEL.
17748
17749         * gtk/gtkwidget.c (gtk_widget_queue_resize): Don't assume
17750         TOPLEVEL widgets are containers.
17751
17752         * gtk/gtkinvisible.h: Remove useless include.
17753
17754 2000-12-11  Havoc Pennington  <hp@redhat.com>
17755
17756         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): 
17757         Handle chopping off \r\n and 0x2029 in addition to \n before
17758         passing to PangoLayout
17759
17760         * gtk/gtkimcontextsimple.c
17761         (gtk_im_context_simple_get_preedit_string): 
17762         return an empty string if no match is pending
17763
17764         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): add
17765         assertion that the returned preedit string was sane
17766
17767         * gtk/gtktext*.[hc], gtk/testtext.c, gtk/testtextbuffer.c:
17768         s/gtk_text_iter_next_char/gtk_text_iter_forward_char/g;
17769         s/gtk_text_iter_prev_char/gtk_text_iter_backward_char/g;
17770
17771 Mon Dec 11 10:02:26 2000  Owen Taylor  <otaylor@redhat.com>
17772
17773         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_finalize): 
17774         Fix up finalizer to chain to its parent.
17775
17776 2000-12-11  Alexander Larsson  <alexl@redhat.com>
17777
17778         * docs/README.linux-fb (GDK_KEYBOARD_TYPE):
17779         Clearified the difference between the keyboard types. Wrote a note
17780         about the magic sysrq key to get out of raw mode.
17781
17782 2000-12-09  James Henstridge  <james@daa.com.au>
17783
17784         * gdk/linux-fb/gdkmouse-fb.c (GdkFBMouseDevice): add prot struct
17785         member to hold masks for detecting the start of a protocol packet.
17786         (mouse_devs): add packet start masks for ps2 and ms device types.
17787         Left the mask for fidmour blank, as I have no idea what it should
17788         be.
17789         (handle_mouse_io): skip bytes until we get to the start of a
17790         packet.  My Logitech mouse seems to be passing an extra NULL pad
17791         byte, and GPM does a similar thing here.
17792         (gdk_fb_mouse_ms_open): changed error message to not say psaux, as
17793         this is the ms mouse driver.
17794         (gdk_fb_mouse_ms_packet): fix up button handling, which was
17795         completely broken except for button1.  It was checking the wrong
17796         bit in the packet for the status of the right mouse button, and
17797         wrongly assuming right == button2 rather than 3.  I fixed that and
17798         also added support for middle button (button2).
17799
17800 2000-12-08  Havoc Pennington  <hp@redhat.com>
17801
17802         * gtk/gtktextbtree.c (gtk_text_btree_insert): fix breakage here
17803         that cause a segfault on text insertion
17804
17805         * gtk/gtktextchild.c (gtk_text_child_anchor_queue_resize): fix 
17806         warning
17807
17808         * gtk/gtktextiter.c (test_log_attrs): use
17809         _gtk_text_buffer_get_line_log_attrs to speed things up a bit
17810
17811         * gtk/gtktextbuffer.c (_gtk_text_buffer_get_line_log_attrs): 
17812         Get log attrs for a line, using a cache stored on the buffer
17813         
17814         * gtk/gtkcolorsel.h (GTK_COLOR_SELECTION_GET_CLASS): fix typo,
17815         reported by Jeff Franks
17816
17817 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
17818
17819         * gdk/linux-fb/gdkmouse-fb.c (gdk_fb_mouse_ms_open):
17820         /dev/ttyS0 -> /dev/mouse
17821
17822 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
17823
17824         * gdk/linux-fb/gdkfont-fb.c (gdk_fontset_load):
17825         Added dummy gdk_fontset_load.
17826
17827 2000-12-08  Alexander Larsson  <alexl@redhat.com>
17828
17829         * docs/README.linux-fb:
17830         * docs/Makefile.am:
17831         Initial GtkFB docs.
17832         
17833         * gdk/linux-fb/Makefile.am:
17834         Define GDK_DATA_PREFIX.
17835
17836         * gdk/linux-fb/gdkmain-fb.c:
17837         Fix typo.
17838         Change default display to /dev/fb0.
17839
17840         * gdk/linux-fb/gdkpango-fb.c:
17841         Add $(prefix)/share/fonts/ to font path.
17842         
17843 2000-12-08  Alexander Larsson  <alla@lysator.liu.se>
17844
17845         * gdk/linux-fb/gdkkeyboard-fb.c:
17846         New file containing the abstracted keyboard driver. Most code
17847         taken from gdkinput-ps2.c
17848
17849         * gdk/linux-fb/gdkinput-ps2.c:
17850         Removed file.
17851         
17852         * gdk/linux-fb/Makefile.am:
17853         Added gdkkeyboard-fb.c, removed gdkinput-ps2.c.
17854
17855         * gdk/linux-fb/gdkcolor-fb.c:
17856         display->fb was renamed to display->fb_fd.
17857
17858         * gdk/linux-fb/gdkcursor-fb.c:
17859         gdk_mouse_get_info -> gdk_fb_mouse_get_info
17860
17861         * gdk/linux-fb/gdkinput.c:
17862         Moved gdk_input_init here from gdkinput-ps2.c
17863
17864         * gdk/linux-fb/gdkmain-fb.c:
17865         display->fb was renamed to display->fb_fd.
17866         Now the tty and the console is opened here instead
17867         of in the keyboard driver. Also check GDK_VT to see what
17868         tty to open.
17869         Move gdk_beep () here from gdkinput-ps2.c
17870         gdk_mouse_get_info -> gdk_fb_mouse_get_info
17871
17872         * gdk/linux-fb/gdkmouse-fb.c:
17873         Add header.
17874         gdk_mouse_get_info -> gdk_fb_mouse_get_info
17875         Return correct keyboard modifiers.
17876         GDK_MOUSETYPE -> GDK_MOUSE_TYPE for consistancy
17877
17878         * gdk/linux-fb/gdkprivate-fb.h:
17879         Add tty and vt info to display.
17880         Add orignal modeinfo storage to display
17881         Update global functions
17882
17883         * gdk/linux-fb/gdkwindow-fb.c:
17884         Added gdk_fb_window_find_focus().
17885         gdk_mouse_get_info -> gdk_fb_mouse_get_info
17886
17887 2000-12-07  Havoc Pennington  <hp@pobox.com>
17888
17889         * gdk/x11/gdkkeys-x11.c (gdk_keymap_lookup_key): fix name of 
17890         function, noticed by Alex
17891
17892 2000-12-06  Elliot Lee  <sopwith@redhat.com>
17893
17894         * configure.in: Detect freetype properly
17895
17896         * modules/basic/Makefile.am, gdk/linux-fb/Makefile.am: Make use of
17897         above.
17898
17899 2000-12-06  Alexander Larsson  <alexl@redhat.com>
17900
17901         * gdk/linux-fb/Makefile.am:
17902         Add gdkmouse-fb.c
17903         
17904         * gdk/linux-fb/gdkmouse-fb.c:
17905         New file. Abstracted the mouse drivers a bit.
17906
17907         * gdk/linux-fb/gdkcursor-fb.c:
17908         The cursor hide/show functions was moved here from gdkinput-ps2.c.
17909
17910         * gdk/linux-fb/gdkinput-ps2.c:
17911         Removed old mouse handling code. Moved cursor handling code
17912         to gdkcursor-fb.c, moved gdk_fb_window_send_crossing_events() to
17913         gdkwindow-fb.c. gdk_input_get_mouseinfo was renamed to
17914         gdk_mouse_get_info.
17915
17916         * gdk/linux-fb/gdkmain-fb.c:
17917         Pass NULL pointers for x,y in gdk_mouse_get_info call.
17918
17919         * gdk/linux-fb/gdkprivate-fb.h:
17920         Removed public gdk_fb_find_common_ancestor, added and renamed
17921         functions for the new mouse handling code.
17922
17923         * gdk/linux-fb/gdkwindow-fb.c:
17924         Moved gdk_fb_window_send_crossing_events here. added global
17925         variable gdk_fb_window_containing_pointer. made
17926         gdk_fb_find_common_ancestor static. gdk_input_get_mouseinfo was
17927         renamed to gdk_mouse_get_info.
17928
17929 2000-12-06  Alexander Larsson  <alexl@redhat.com>
17930
17931         * gdk/linux-fb/gdkevents-fb.c:
17932         Update to match latest gmain/gsource changes.
17933
17934         * gdk/linux-fb/gdkinput-ps2.c:
17935         Bogus gdk_keymap_get_entries_for_keycode implementation so that
17936         it links. Will be implemented later.
17937
17938 2000-12-03  Havoc Pennington  <hp@pobox.com>
17939
17940         * gdk/Makefile.am: add gdkkeys.[hc]
17941
17942         * gdk/gdkkeys.h, gdk/gdkkeys.c: Move all the keyval stuff to these
17943         files from gdk.h, gdk.c; add GdkKeymap type and operations on it.
17944
17945         * acconfig.h, configure.in: add checks and command line options
17946         for XKB
17947
17948         * gdk/x11/gdkkeys-x11.c: Implement the above functions
17949         
17950         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Put the keycode
17951         and group in the key event
17952
17953         * gdk/gdkevents.h (struct _GdkEventKey): Add a hardware_keycode
17954         field with the low-level hardware key code, and a group
17955         field with the keyboard group
17956
17957         * gdk/x11/gdkprivate-x11.h: include config.h for HAVE_XKB,
17958         and declare a couple globals used for keymap handling
17959         
17960         * gtk/gtkimcontextsimple.c: Implement ISO 14755 input method,
17961         hold down Shift-Control and type a hex number to get a Unicode 
17962         character corresponding to the hex number
17963         (gtk_im_context_simple_get_preedit_string): Fix cursor position
17964         (return bytes not chars)
17965
17966 2000-12-05  Elliot Lee  <sopwith@redhat.com>
17967
17968         * gdk/gdkcolor.h: Make GdkColor specify element sizes
17969         to avoid waste on 64-bit platforms.
17970
17971 Tue Dec  5 15:49:31 2000  Owen Taylor  <otaylor@redhat.com>
17972
17973         * INSTALL: Fix link to PNG home, remove reference
17974         to fribidi.
17975
17976         * gdk/x11/gdkevents-x11.c: Fix up for new GMain API.
17977         
17978         * gdk/win32/gdkevents-win32.c: Fix up for new GMain API. (Not
17979         tested.)
17980
17981         * gtk/gtkcheckmenuitem.c: Permanently turn on
17982         always_show_toggle.
17983
17984         * gtk/gtkclist.c (gtk_clist_get_pixtext): Allow mask to 
17985         be NULL. (Vladimir Klebanov, #26545)
17986
17987         * gtk/gtkspinbutton.c (gtk_spin_button_insert_text): Fix 
17988         some signed/unsigned comparison problems. (#6510,
17989         David Kaelbling)
17990
17991         * gtk/gtkwidget.[ch] (gtk_widget_is_ancestor): Change
17992         return type to boolean (Oskar Liljeblad, #18648)
17993
17994 2000-12-05  Alexander Larsson  <alexl@redhat.com>
17995
17996         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_display_new):
17997         Remove bogus colormap setting.
17998
17999 2000-12-05  Alexander Larsson  <alexl@redhat.com>
18000
18001         * gdk/linux-fb/gdkcolor-fb.c:
18002         More complete colormap handling. Now GdkRGB work in 8 bpp modes.
18003
18004         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_image):
18005         Must set colormap.
18006         
18007 Tue Dec  5 13:17:53 GMT 2000  Tony Gale <gale@gtk.org>
18008
18009         * docs/tutorial/gtk-tut.sgml: DND updates
18010
18011 2000-12-05  Alexander Larsson  <alla@lysator.liu.se>
18012
18013         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_drawable_3):
18014         Remove old debug g_warning().
18015         (gdk_fb_draw_drawable): The src argument can be either a wrapper
18016         or an implementation, just pass the implementation to draw_drawable_2.
18017         
18018         * gdk/linux-fb/gdkprivate-fb.h:
18019         Added GDK_IS_DRAWABLE_IMPL_FBDATA()
18020
18021         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_destroy):
18022         clear and invalidate area when window is destroyed.
18023         (send_map_events): Remove old commented out code.
18024
18025 2000-12-05  Alexander Larsson  <alexl@redhat.com>
18026
18027         * gdk/linux-fb/gdkpango-fb.c:
18028         Use italic instead of oblique in font aliases.
18029         
18030         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_fill_span_generic,
18031         _gdk_fb_gc_calc_state): Support GDK_XOR, add g_warning for
18032         other unsupported functions.
18033
18034 2000-12-04  Havoc Pennington  <hp@redhat.com>
18035
18036         * gtk/gtkpaned.c (gtk_paned_expose): fix this to be sane
18037
18038         * gtk/gtkvpaned.c (gtk_vpaned_expose): Add an expose handler
18039
18040         * gtk/gtkhpaned.c (gtk_hpaned_expose): Add an expose handler
18041
18042         * gtk/gtknotebook.c (gtk_notebook_draw_tab): put in a temporary 
18043         hack to avoid infinite loops (synthetic expose event) - 
18044         Owen has more appropriate fixes in a branch he'll check in later.
18045
18046         * gtk/gtktextiter.c (gtk_text_iter_ends_line): handle paragraph
18047         separator, CR, and CRLF as line ends
18048
18049         * gtk/gtktextbtree.c (gtk_text_btree_insert): on insertion, break
18050         into lines using pango_find_paragraph_boundary(); other bits of
18051         the widget are still going to be broken if the boundary isn't '\n'
18052         though
18053
18054 2000-12-04  Alexander Larsson  <alexl@redhat.com>
18055
18056         * gdk/linux-fb/gdkfont-fb.c (gdk_text_width): Divide size by 2, not
18057         multiply.
18058
18059         * gdk/linux-fb/gdkpango-fb.c:
18060         Copied some 26.6 scaling macros from pango to clean up the rounding.
18061         (pango_fb_font_get_glyph_info): Correct sign on x value.
18062
18063         * gdk/linux-fb/gdkprivate-fb.h:
18064         Removed unreferenced external functions.
18065
18066         * modules/linux-fb/Makefile.am: Use ` instead of '.
18067
18068         * modules/linux-fb/basic.c:
18069         Remove dead code. In particular the dummy lang engine which broke all
18070         pango layouts in GtkFB. Don't include tables-big.i anymore.
18071
18072         * modules/linux-fb/tables-big.i:
18073         Upgrade to latest version from pango. Left for reference, basic_ranges
18074         moved to basic.c.
18075         
18076 2000-12-04  Havoc Pennington  <hp@redhat.com>
18077
18078         Fix bugs Alex found:
18079         
18080         * gtk/gtktooltips.c (gtk_tooltips_force_window): nuke connection
18081         to "draw"
18082
18083         * gtk/gtkdnd.c (gtk_drag_highlight): nuke connection to "draw"
18084
18085         * gtk/gtkcolorsel.c (palette_new): nuke connection to "draw"
18086
18087         * gtk/gtklistitem.c (gtk_list_item_expose): Put the old _draw() 
18088         implementation in here, apparently the expose() implementation was
18089         dead code.
18090
18091 2000-12-04  Alexander Larsson  <alexl@redhat.com>
18092
18093         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_metrics):
18094         Return positive descent.
18095
18096 2000-12-02  Havoc Pennington  <hp@pobox.com>
18097
18098         * gtk/gtkwidget.h (struct _GtkWidgetClass): Remove "draw" virtual
18099         method and signal
18100         
18101         * gtk/gtkwidget.c (gtk_widget_draw): Now just queues a draw then
18102         calls gdk_window_process_updates() to push the exposes through
18103         (gtk_widget_class_init): No more draw signal, no
18104         gtk_widget_real_draw()  
18105         
18106         * gtk/gtkbin.c (gtk_bin_draw): remove
18107
18108         * gtk/gtkbox.c (gtk_box_draw): remove
18109
18110         * gtk/gtkbutton.c (gtk_button_draw): remove
18111
18112         * gtk/gtkcalendar.c (gtk_calendar_draw): remove
18113
18114         * gtk/gtkcheckbutton.c (gtk_check_button_draw): remove
18115
18116         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_draw): remove
18117
18118         * gtk/gtkclist.c (gtk_clist_draw): remove
18119
18120         * gtk/gtkentry.c (gtk_entry_draw): remove
18121
18122         * gtk/gtkeventbox.c (gtk_event_box_draw): remove
18123
18124         * gtk/gtkfixed.c (gtk_fixed_draw): remove
18125
18126         * gtk/gtkframe.c (gtk_frame_draw): remove
18127
18128         * gtk/gtkhandlebox.c (gtk_handle_box_draw): remove
18129
18130         * gtk/gtkhpaned.c (gtk_hpaned_draw): remove
18131
18132         * gtk/gtklayout.c (gtk_layout_draw): remove
18133
18134         * gtk/gtklist.c (gtk_list_draw): remove
18135
18136         * gtk/gtklistitem.c (gtk_list_item_draw): remove
18137
18138         * gtk/gtkmenu.c (gtk_menu_draw): remove
18139
18140         * gtk/gtkmenubar.c (gtk_menu_bar_draw): remove
18141
18142         * gtk/gtkmenuitem.c (gtk_menu_item_draw): remove
18143
18144         * gtk/gtknotebook.c (gtk_notebook_draw): remove
18145
18146         * gtk/gtkoptionmenu.c (gtk_option_menu_draw): remove
18147
18148         * gtk/gtkpacker.c (gtk_packer_draw): remove
18149
18150         * gtk/gtkrange.c (gtk_range_draw): remove
18151
18152         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_draw): remove
18153
18154         * gtk/gtkspinbutton.c (gtk_spin_button_draw): remove
18155
18156         * gtk/gtktable.c (gtk_table_draw): remove
18157
18158         * gtk/gtktearoffmenuitem.c (gtk_tearoff_menu_item_draw): remove
18159
18160         * gtk/gtktext.c (gtk_text_draw): remove
18161
18162         * gtk/gtktextview.c (gtk_text_view_draw): remove
18163
18164         * gtk/gtktogglebutton.c (gtk_toggle_button_draw): remove
18165
18166         * gtk/gtktoolbar.c (gtk_toolbar_draw): remove
18167
18168         * gtk/gtktree.c (gtk_tree_draw): remove
18169
18170         * gtk/gtktreeitem.c (gtk_tree_item_draw): remove
18171
18172         * gtk/gtktreeview.c (gtk_tree_view_draw): remove
18173
18174         * gtk/gtkviewport.c (gtk_viewport_draw): remove
18175
18176         * gtk/gtkvpaned.c (gtk_vpaned_draw): remove
18177
18178         * gtk/gtkvscale.c (gtk_vscale_draw): remove
18179
18180         * gtk/gtkwindow.c (gtk_window_draw): remove
18181
18182 2000-20-01  Anders Carlsson  <andersca@gnu.org>
18183
18184         * gtk/gtktogglebutton.c (gtk_toggle_button_draw): Fix bug when
18185         a GtkToggleButton is both insensitive and active, it was being
18186         drawn by the GtkButton draw handler which doesn't check the
18187         state. Now it's calling gtk_toggle_button_paint instead.
18188         
18189 2000-12-01  Havoc Pennington  <hp@redhat.com>
18190
18191         * gtk/gtktextdisplay.c (gtk_text_layout_draw): don't create
18192         dangling pointers to the appearance attributes from the 
18193         line display
18194
18195         * gdk/gdkdraw.c (gdk_drawable_get_image): allow negative
18196         width/height to mean "full width/height of drawable"
18197
18198         * gtk/gtktextview.h, gtk/gtktextview.c: Implement double/triple
18199         click to select word/line
18200         
18201         * gtk/gtktextiter.c (test_log_attrs): include paragraph delimiters 
18202         when getting log attrs. Get a slice, so that pixmaps and stuff
18203         are properly handled.
18204
18205         * gtk/gtktextbuffer.c (paste): Fix pasting to work properly if you
18206         paste into the selection (replaces selection now, previously
18207         crashed or added to selection). Reveals longstanding btree bug -
18208         select multiple lines, middle-click on the selection, boom. This
18209         isn't related to my changes though.
18210
18211         * gtk/gtkentry.c (gtk_entry_move_forward_word): Update to reflect
18212         PangoLogAttrs changes
18213         (gtk_entry_move_backward_word): ditto
18214
18215         * gtk/gtktextlayout.h, gtk/gtktextlayout.c: Make the iter motion
18216         functions return bool whether the iter moved onto a
18217         dereferenceable position.
18218  
18219         * gtk/gtktextview.h, gtk/gtktextview.c: Add a bunch of public
18220         functions for motion in terms of display lines.
18221
18222         * gtk/gtktextmark.c (gtk_text_mark_get_buffer): Add function to
18223         get the buffer a mark is inside
18224         
18225 2000-12-01  Alexander Larsson  <alexl@redhat.com>
18226
18227         * gdk/linux-fb/Makefile.am:
18228         * modules/linux-fb/Makefile.am:
18229         Freetype 2 final uses freetype-config
18230
18231         * gdk/linux-fb/gdkpango-fb.c:
18232         Upgrade to use Freetype 2 final.
18233         More flexible support for font aliases, this also fixes a bug with
18234         GtkFontSelector, as the aliases must be visible in the font/family list,
18235         or GtkFontSelector reads uninitialized memory.
18236
18237 2000-11-30 Hidetoshi Tajima  <tajima@eng.sun.com>
18238
18239         * modules/input/gtkimcontextxim.c (setup_im): Add NULL argument to
18240         XGetIMValues to properly terminate variable argument list, and do
18241         NULL return check for ic_values and xim_styles.
18242
18243         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_reset):
18244         Restore preedit state after XmbResetIC().
18245         
18246         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_get_ic):
18247         XvaCreateNestedList() should take XvaNestedList, but not
18248         XvaNestedList*.
18249
18250         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_reset,
18251         preedit_draw_callback, preedit_caret_callback): Match
18252         "preedit-changed" signal name to "preedit_changed" to be
18253         consistent to the spec.
18254
18255         * gtk/gtkimcontextsimple.c (check_table):
18256         Match "preedit-changed" to "preedit_changed" to be consistent
18257         to the spec.
18258
18259 Thu Nov 30 23:03:04 2000  Owen Taylor  <otaylor@redhat.com>
18260
18261         * gdk/x11/gdkgc-x11.c (gdk_gc_copy): Properly handle
18262         gc->clip_region == NULL>
18263
18264 2000-11-30  Tor Lillqvist  <tml@iki.fi>
18265
18266         Changes by Hans Breuer:
18267         
18268         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints):
18269         Dont't use negative width and height as max_hints. This fixes
18270         Owen's recent testgtk changes for win32.
18271
18272         * gdk/win32/gdkgc-win32.c (gdk_win32_hdc_get,
18273         gdk_win32_hdc_release): These are exported and may be called with
18274         other drawable types than our GdkDrawableImplWin32 (?).
18275
18276         * gdk/gdkwindow.c: Backing store appears to work on Windows now,
18277         so always #define USE_BACKING_STORE.
18278
18279         * gtk/gtktextdisplay.c (render_layout_line): Use g_print instead
18280         of printf for debugging output.
18281
18282         * gtk/gtktextlayout.c (allocate_child_widgets): Ditto.
18283         
18284         * gtk/gtktextview.c (gtk_text_view_child_allocated): Ditto.
18285
18286         * gtk/gtkmain.h (GTKMAIN_C_VAR): Win32 fix for dllimport
18287         declaration.
18288
18289         * gtk/gtktexttypes.h: Ditto.
18290
18291         * gtk/gtklabel.c (gtk_label_set_markup_with_accel): Return a value
18292         (GDK_VoidSymbol) also if in case of arg check failure.
18293
18294         * gtk/gtkimcontextsimple.c
18295         (gtk_im_context_simple_get_preedit_string): Don't assign cursor
18296         position to the pointer, but to the variable it points to.
18297
18298         * gtk/makefile.msc.in (DEFINES): Define GTK_VERSION.
18299
18300         * gtk/gtk.def: Updates.
18301
18302 2000-11-29  Elliot Lee  <sopwith@redhat.com>
18303
18304         * gtk/gtkmodelsimple.c: Inherits from GTK_TYPE_OBJECT, not
18305         GTK_TYPE_TREE_MODEL.
18306
18307 2000-11-29  Alexander Larsson  <alexl@redhat.com>
18308
18309         * gdk/linux-fb/gdkfont-fb.c (gdk_font_from_description):
18310         Set the size of the font from the description.
18311         (gdk_text_width): Gross hack that calculates the width
18312         of text by text_length * size/2. This is necessary because
18313         GtkLabel does some ugly gtk_string_width call to calculate
18314         an good size.
18315         (linux-fb/gdkprivate-fb.h): Removed unused field FT_Face.
18316
18317 Wed Nov 29 13:39:19 GMT 2000  Tony Gale <gale@gtk.org>
18318
18319         * docs/tutorial/gtk-tut.sgml: DND updates
18320
18321 2000-11-29  Alexander Larsson  <alexl@redhat.com>
18322
18323         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_clear_area):
18324         If you pass width or height == 0 to gdk_window_clear_area they
18325         should be calculated from the window size.
18326
18327 2000-11-29  Alexander Larsson  <alexl@redhat.com>
18328
18329         * gdk/linux-fb/gdkinput-ps2.c (move_pointer): If there is
18330         a grab, but no grab-cursor, use the cursor from the grabbed
18331         window. (gdk_fb_window_send_crossing_events): Send normal
18332         enter/leave notifications if grab and owner_events == TRUE.
18333
18334 2000-11-29  Alexander Larsson  <alexl@redhat.com>
18335
18336         * gdk/linux-fb/gdkinput-ps2.c (send_button_event):
18337         Do implicit button grabs, even if the window doesn't
18338         want the event.
18339         (gdk_fb_window_send_crossing_events): If there is a
18340         grab, only the grabbed window gets normal enter/leave
18341         notifications. On ungrab go from grabbed window to current.
18342         Don't send any notification to b when propagating from c -> b.
18343         If setting a grab on window, don't set prev_window.
18344         (handle_mouse_input): Send enter/leave events to the window the
18345         mouse is over, not the grabbed one.
18346         
18347 2000-11-28  Elliot Lee  <sopwith@redhat.com>
18348
18349         * gdk/gdkregion-generic.c: Zap warning.
18350         * modules/input/Makefile.am: Only build im-xim if USE_X11 is enabled
18351         * gtk/gtkrc.c: s/strcpy/memcpy/ to save a few nanoseconds.
18352
18353 2000-11-28  Alexander Larsson  <alla@lysator.liu.se>
18354
18355         * gdk/linux-fb/gdkwindow-fb.c (gdk_fb_window_move_resize):
18356         The cursor should be hidden if it is part of either the
18357         source or destination region. Not only if it is in both.
18358         (gdk_window_set_transient_for): Silence warnings.
18359
18360 2000-11-28  Alexander Larsson  <alexl@redhat.com>
18361
18362         * gdk/linux-fb/mifillarc.c (miFillArcSliceSetup):
18363         The default mode in X is Pie Arcs, therefore that is
18364         what Gtk+ uses.
18365
18366 2000-11-28  Alexander Larsson  <alexl@redhat.com>
18367
18368         * gdk/linux-fb/gdkinput-ps2.c:
18369         Implement correct EnterNotify/LeaveNotify:
18370         (gdk_fb_window_send_crossing_events): New function that sends
18371         all GdkCrossingEvents from the last mouse-window to the specified
18372         destination.
18373         (gdk_fb_window_visibility_crossing): Removed function.
18374         (handle_mouse_input): Use gdk_fb_window_send_crossing_events()
18375         (send_button_event, gdk_fb_cursor_reset): Use gdk_window_at_pointer
18376         instead of gdk_window_get_pointer() for better readability.
18377
18378         * gdk/linux-fb/gdkmain-fb.c (gdk_fb_pointer_grab,
18379         gdk_fb_pointer_ungrab): Use gdk_fb_window_send_crossing_events.
18380
18381         * gdk/linux-fb/gdkprivate-fb.h:
18382         removed gdk_fb_window_visibility_crossing, added
18383         gdk_fb_window_send_crossing_events and gdk_fb_find_common_ancestor.
18384
18385         gdk/linux-fb/gdkwindow-fb.c (gdk_fb_find_common_ancestor):
18386         New function that finds the least common ancestor of two windows.
18387         (gdk_window_show, gdk_window_hide):
18388         Use gdk_fb_window_send_crossing_events.
18389         (gdk_fb_window_move_resize): Send configure events to toplevel
18390         windows. Use gdk_fb_window_send_crossing_events.
18391
18392 2000-11-27  Havoc Pennington  <hp@redhat.com>
18393
18394         * gtk/gtkprivate.h (enum): Remove a trailing comma
18395
18396 2000-11-27  Federico Mena Quintero  <federico@helixcode.com>
18397
18398         * gtk/gtkspinbutton.c (gtk_spin_button_set_adjustment): Connect to
18399         the "changed" callback of the adjustment.  We need to redraw the
18400         spin button's arrows when the adjustment's range changes.
18401         (adjustment_changed_cb): Draw the arrows.
18402         (gtk_spin_button_value_changed): Draw the arrows.
18403
18404 2000-11-23  Alexander Larsson  <alexl@redhat.com>
18405
18406         * gdk/linux-fb/gdkselection-fb.c:
18407         Initial selection implementation.
18408
18409         * gtk/gtkselection.c:
18410         if GDK_WINDOWING_FB defined, include linux-fb/gdkfb.h and look up
18411         requestor in gtk_selection_request.
18412         
18413         * gdk/linux-fb/gdkfb.h, gdk/linux-fb/gdkglobals-fb.c:
18414         Added gdk_selection_property atom.
18415
18416         * gdk/linux-fb/gdkprivate-fb.h:
18417         Export _gdk_selection_window_destroyed.
18418         Removed mask_off_x/y from GdkCursorPrivateFB.
18419         Removed hbearing, added top, left to PangoFBGlyphInfo.
18420
18421         * gdk/linux-fb/gdkwindow-fb.c (_gdk_windowing_window_destroy):
18422         Call _gdk_selection_window_destroyed
18423         (_gdk_windowing_window_init): Don't call gdk_cursor_new() before
18424         the root window has been created.
18425         (static_dx_hack, static_dy_hack, compare_draw_rects,
18426         gdk_fb_window_move_resize): Remove unnecessary sort of rectangles
18427         in region. They are already sorted. Instead just traverse them in
18428         reverse if draw_direction < 0.
18429         
18430         * gdk/linux-fb/gdkinput-ps2.c (send_button_event):
18431         Double-clicks must be sent after the normal button_press.
18432         (gdk_fb_cursor_unhide): Remove usage of mask_off_x/y. Clean up.
18433         
18434         * gdk/linux-fb/gdkgeometry-fb.c (gdk_window_scroll):
18435         Pass _gdk_fb_screen_gc instead of NULL.
18436
18437         * gdk/linux-fb/gdkmain-fb.c (_gdk_windowing_init_check):
18438         Initialize gdk_selection_property.
18439         (gdk_event_make): Remove unused code.
18440
18441         * gdk/linux-fb/gdkcursor-fb.c:
18442         Make the pixmap for the cursor the same size as the mask. Also remove
18443         the mask_off_x/y fields in GdkCursorPrivateFB and combine
18444         _gdk_cursor_new_from_pixmap() and gdk_cursor_new_from_pixmap()
18445         Now the whole cursor is visible.
18446
18447         * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_drawable_3):
18448         Fix bug where xdest+height instead of ydest+height was used
18449         to calculate if the source and dest overlapped. This fixes the
18450         redraw bug when the main window in testgtk was scrolled when
18451         partially covered by a tall window.
18452         Copy rectangles in region in order depending on draw_direction.
18453         Also moved the draw_direction flipping of start_y and end_y into
18454         the gc functions, as this might not be what all of them want.
18455         (gdk_fb_draw_lines): Support dashed lines.
18456         (gdk_fb_draw_glyphs): Clean up glyph placement. Also fix positioning
18457         so that the text is positioned correctly (was 1 pixel high).
18458
18459         gdk/linux-fb/gdkgc-fb.c:
18460         Initialize cap_style to GTK_CAP_BUTT. This fixes a problem where
18461         all lines were drawn a pixel to short. Also checked the default of
18462         the rest of the values, and they're the same as X now.
18463
18464         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_glyph_info):
18465         Clean up pixel positioning of the glyphs. Just use bgy->top and
18466         bgy->left. Also used PANGO_PIXEL where appropriate and added 0.5
18467         to all divisions to get correct rounding behaviour.
18468
18469         * gdk/linux-fb/gdkrender-fb.c (gdk_fb_draw_drawable_generic,
18470         gdk_fb_draw_drawable_memmove, gdk_fb_draw_drawable_aa_24):
18471         Moved start_y/end_y flip into draw_drawable implementations.
18472         Flip also x rendering when draw_direction < 0.
18473         Remove unneccesary multiply with draw_direction.
18474
18475 Wed Nov 22 14:11:19 GMT 2000  Tony Gale <gale@gtk.org>
18476
18477         * docs/tutorial/gtk-tut.sgml:
18478           - get rid of gtk_toggle_button_toggled FUD
18479           - start DND section - needs work - based on:
18480                 http://wolfpack.twu.net/docs/gtkdnd/
18481
18482 2000-11-22  Alexander Larsson  <alexl@redhat.com>
18483
18484         * gdk/linux-fb/gdkpango-fb.c (pango_fb_font_get_metrics):
18485         Correct calculation of font metrics. Now GtkEntrys have sane
18486         size.
18487
18488 2000-11-22  Alexander Larsson  <alexl@redhat.com>
18489
18490         * gdk/gdktypes.h:
18491         Add new type GdkSpan
18492         
18493         * docs/reference/gdk/gdk-sections.txt,
18494         docs/reference/gdk/tmpl/regions.sgml, gdk/gdkregion-generic.c,
18495         gdk/gdkregion.h:
18496         Implement and document gdk_region_spans_intersect_foreach.
18497
18498         * gdk/linux-fb/Makefile.am, gdk/linux-fb/gdkrender-fb.c:
18499         Add new file gdkrender-fb.c which contains all core
18500         rendering code.
18501         Add gdk_fb_fill_rectangle_generic (old rectangle code) and
18502         gdk_fb_fill_rectangle_simple_16, gdk_fb_fill_rectangle_simple_32
18503         (optimized rectangle fillers).
18504
18505         * gdk/linux-fb/gdkdrawable-fb2.c:
18506         Move all rendering code to gdkrender-fb.c.
18507         Change from using GdkRectangles and GdkSegments for spans to GdkSpan.
18508         Use the new span intersection functions in gdk_fb_fill_spans.
18509         gdk_fb_draw_rectangle() clips filled rectangles and calls
18510         gc->fill_rectangle with the result.
18511         gdk_fb_fill_spans() gets extra argument "sorted".
18512
18513         * gdk/linux-fb/gdkevents-fb.c:
18514         Remove unused includes and defines.
18515         New function gdk_fb_get_time() to get correct time for events.
18516
18517         * gdk/linux-fb/gdkinput-ps2.c:
18518         Use gdk method of generating multiple-clicks (gdk_event_button_generate)
18519         Make sure to set the time of all events.
18520
18521         * gdk/linux-fb/gdkmain-fb.c:
18522         Use gdk_fb_get_time ().
18523
18524         * gdk/linux-fb/gdkprivate-fb.h:
18525         New virtual GC calls: fill_span & fill_rectangle.
18526         Export gdk_fb_get_time().
18527         gdk_fb_fill_spans() gets extra argument "sorted".
18528
18529         * gdk/linux-fb/mi*.c:
18530         Use GdkSpan instead of GdkRectangle.
18531         Pass correct sorted to gdk_fb_fill_spans. (sorted value taken
18532         from XFree 4 source)
18533         
18534 2000-11-22    <jrb@redhat.com>
18535
18536         * gtk/gtktreeview.c (gtk_tree_view_calc_size): It's amazing what
18537         reversing the order in an if statement will do.  Doing so managed
18538         to make the treemodelsort half work.  Other half will follow after
18539         I get the insert function fully fixed.
18540
18541 2000-11-21  Elliot Lee  <sopwith@redhat.com>
18542         * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
18543         more than 2 bits. Besides, I need to implement an evil hack. :)
18544
18545 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
18546
18547         * docs/tutorial/gtk-tut.sgml: minor corrections
18548
18549 2000-11-20  Jonathan Blandford <jrb@redhat.com>
18550         * gtk/gtktreemodelsort.h: Add convertion functions to let you
18551           convert to and from relative path's and iters.
18552
18553         * gtk/treestoretest.c: move to having a sorted/unsorted view.  Start
18554           testing sorting functions a bit better.  Currently broken -- will
18555           fix in morning.
18556
18557 2000-11-20  Havoc Pennington  <hp@redhat.com>
18558
18559         * gtk/gtkwidget.c: Documented a bunch of functions in here
18560         (gtk_widget_realize): Warn if you try to realize
18561         a widget with no parent that isn't a toplevel
18562         (gtk_widget_intersect): return a gboolean
18563
18564 2000-11-20  Havoc Pennington  <hp@redhat.com>
18565
18566         * gtk/gtktextview.c, gtk/gtktextlayout.c, gtk/gtktextchild.c,
18567         gtk/testtext.c: Semi-finish widget embedding. Need guffaw
18568         scrolling to be implemented in GDK to finish. Also, right now
18569         we just size_allocate all children on every layout change,
18570         which is pretty lame. Test commented out of testtext.c, 
18571         until it works better.
18572
18573 2000-11-20  Alexander Larsson  <alla@lysator.liu.se>
18574
18575         * gdk/linux-fb/gdkdrawable-fb2.c:
18576         Removed unused arguments from gdk_fb_drawable_get_pixel().
18577
18578         * gdk/linux-fb/gdkinput-ps2.c (handle_input_ps2):
18579         Renamed fidur specific mouse packet data in MouseDevice to
18580         generic. Used it in ps2 mouse handling code to avoid blocking
18581         reads.
18582
18583 Sat Nov 18 18:00:17 2000  Jonathan Blandford  <jrb@redhat.com>
18584
18585         * demos/gtk-demo/main.c: Changed to have the list become
18586         non-italic when the demo window is destroyed through an external
18587         event (like a close button).  Doing so found three bugs in the
18588         widget.
18589
18590         * demos/gtk-demo/*.c (do_*): Changed to return the toplevel window.
18591
18592         * gtk/gtkliststore.c (gtk_list_store_set_cell): emit "change" when
18593         we actually set the cell.
18594
18595         * gtk/gtktreestore.c (gtk_tree_store_set_cell): ditto
18596
18597         * gtk/gtktreeselection.c (gtk_tree_selection_real_select_node):
18598         free a leaked path.  Thanks memprof.
18599
18600 Sat Nov 18 11:58:17 2000  Owen Taylor  <otaylor@redhat.com>
18601
18602         * gdk/gdkrgb.c (gdk_rgb_allocate_images): Fix 
18603         off-by-one error when destroying allocated segments
18604         on failure. (Elliot)
18605
18606 Sat Nov 18 11:45:09 2000  Owen Taylor  <otaylor@redhat.com>
18607
18608         * gtk/gtkcalendar.c: Patch from ChiDeok Hwang to fix
18609         memleaks found by Evan Martin.
18610
18611 Fri Nov 17 20:14:20 2000  Owen Taylor  <otaylor@redhat.com>
18612
18613         * Released 1.3.2
18614         
18615         * NEWS: Updates for 1.3.2
18616
18617 2000-11-17  Tor Lillqvist  <tml@iki.fi>
18618
18619         * gdk/gdkevents.h: Add comment that GdkXEvent isn't only for XEvent,
18620         but in general for window system specific events.
18621
18622         * gtk/gtk.def
18623         * gtk/makefile.mingw.in
18624         * gtk/makefile.msc.in: Update.
18625         
18626         * gtk/gtktexttypes.h: Mark variables for export/import from DLL.
18627
18628 Thu Nov 16 16:11:39 2000  Owen Taylor  <otaylor@redhat.com>
18629
18630         * gtk/Makefile.am (EXTRA_DIST): Do not, in any circumstances,
18631         distribute gtk.immodules.
18632
18633         * gtk/Makefile.am (install-data-local): Don't install the
18634         gtk.immodules file created for the uninstalled modules;
18635         instead run gtk-query-immodules after install
18636
18637 Wed Nov 15 21:51:31 2000  Owen Taylor  <otaylor@redhat.com>
18638
18639         * modules/input/Makefile.am (im_xim_la_LDFLAGS): Point
18640         -rpath to the right install location.
18641
18642         * modules/input/Makefile.am (im_inuktitut_la_LDFLAGS): Remove
18643         -export-dynamic.
18644
18645         * gtk/gtkthemes.c (gtk_theme_engine_get): Set engine->name
18646         properly.
18647
18648 2000-11-15  Havoc Pennington  <hp@pobox.com>
18649
18650         * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): Apply
18651         patch from Mikael Hermansson to temporarily stop blinking while
18652         the user is using the keyboard to type or navigate. 
18653
18654         Also, when blinking, stay on for longer than we stay off. Also,
18655         return from start_cursor_blink if !cursor_visible, to save
18656         checking that flag all over the place before we call
18657         start_cursor_blink.
18658
18659 Thu Nov 16 01:25:51 2000  Robert Brady  <robert@suse.co.uk>
18660
18661         * gtk/gtkrc.*: Remove the locale-specific gtkrc's, as they
18662         only contain a "fontset" line, which is now ignored.
18663
18664         * gtk/gtkentry.c (gtk_entry_button_release): Make 
18665         double-click-to-select-word work.
18666         
18667 Wed Nov 15 20:16:54 2000  Owen Taylor  <otaylor@redhat.com>
18668
18669         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): 
18670         Don't move back one char when we are actually at the end of the 
18671         paragraph.
18672
18673 2000-11-15  Robert Brady  <robert@suse.co.uk>
18674
18675         * modules/input/iminuktitut.c (inuktitut_compose_seqs): 
18676         'o' < 'p'.
18677         
18678         * gtk/gtkmain.c: s/CODSET/CODESET/, include <libintl.h> for
18679         bind_textdomain_codeset.
18680
18681         (gtk_init_check): Make the warning about translating default:LTR
18682         sterner.
18683         
18684 Wed Nov 15 18:39:40 2000  Owen Taylor  <otaylor@redhat.com>
18685
18686         * **/Makefile.am : remove unecessary rules for win32-specific
18687         config-substituted targets. If you want these rules, use
18688         --enable-maintainer-mode (called automatically by autogen.sh).
18689         Stops a lot of unneccessary make-time warnings.
18690
18691         * gtk/gtktext{layout,display}.c: Factor in total width as
18692         well as screen when figuring alignment for word-wrap as well as
18693         no wrap; this is necessary to handle lines that cannot be wrapped
18694         at all.
18695
18696 2000-11-15  Havoc Pennington  <hp@redhat.com>
18697
18698         * gtk/testtext.c: Implement essential color cycling feature
18699
18700 2000-11-15  Havoc Pennington  <hp@redhat.com>
18701
18702         * gtk/gtktextview.c (changed_handler): Invalidate the side windows
18703         when we invalidate the main window.
18704
18705         * gtk/testtext.c (create_view): Get rid of text_changed_callback,
18706         GtkTextView will now invalidate the side windows for us when text
18707         changes.
18708
18709 Wed Nov 15 16:02:20 2000  Owen Taylor  <otaylor@redhat.com>
18710
18711         * gtk/gtktextview.c (changed_handler): Call scroll_calc_now()
18712         unconditionally, since we may need to update the horizontal
18713         scrollbars even if the height didn't change.
18714
18715         * gtk/gtktextlayout.c (add_preedit_attrs): Always get
18716         the extra attrs, since some of them affect size.
18717
18718         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Factor in
18719         x_offset correctly.
18720
18721 2000-11-15  Havoc Pennington  <hp@redhat.com>
18722
18723         * gtk/gtktextlayout.c (set_para_values): If indent is negative,
18724         don't move the first line out into the margin, instead move the
18725         whole paragraph in order to make space for the first line within 
18726         the margin
18727
18728 2000-11-15  Havoc Pennington  <hp@redhat.com>
18729
18730         * gtk/gtktextview.c (changed_handler): offset redraw rect by
18731         xoffset in addition to yoffset, so horizontal scrolling doesn't
18732         break redraws
18733
18734 2000-11-15  Havoc Pennington  <hp@redhat.com>
18735
18736         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Remove extra pixel
18737         from the cursor
18738         (render_layout_line): fix reversed test that caused weird
18739         underlines to get drawn
18740
18741 2000-11-15  Alexander Larsson  <alla@lysator.liu.se>
18742
18743         * gdk/linux-fb/gdkprivate-fb.h:
18744         Fix debug macros.
18745         
18746 2000-11-15  Alexander Larsson  <alla@lysator.liu.se>
18747
18748         * gdk/linux-fb/gdkprivate-fb.h:
18749         Added virtual functions set_pixel, get_color,
18750         fill_span and draw_drawable to the GC.
18751         Added global _gdk_fb_screen_gc to use instead of
18752         NULL when drawing to the screen.
18753         Added _gdk_fb_gc_calc_state() prototype.
18754
18755         * gdk/linux-fb/gdkgc-fb.c:
18756         Call _gdk_fb_gc_calc_state() on any gc state change.
18757
18758         * gdk/linux-fb/gdkglobals-fb.c:
18759         Add _gdk_fb_screen_gc
18760                 
18761         * gdk/linux-fb/gdkdrawable-fb2.c:
18762         _gdk_fb_gc_calc_state() calculates best functions
18763         for the GC state and depth.
18764         Moved bpp specialized code to separate functions.
18765         Added optimized 24 bpp AA draw_drawable.
18766
18767         * gdk/linux-fb/gdkevents-fb.c:
18768         Silence gcc warning.
18769
18770         * gdk/linux-fb/gdkimage-fb.c:
18771         Use _gdk_fb_screen_gc
18772
18773         * gdk/linux-fb/gdkwindow-fb.c:
18774         Init and use _gdk_fb_screen_gc
18775
18776         * gdk/linux-fb/mitypes.h:
18777         Remove unused types.
18778
18779 2000-11-14  Havoc Pennington  <hp@pobox.com>
18780
18781         * gtk/gtktextlayout.c (add_cursor): use PANGO_PIXELS() to convert
18782         to pixels
18783
18784 2000-11-14  Havoc Pennington  <hp@pobox.com>
18785
18786         * gtk/testtextbuffer.c (fill_buffer): change "offset" to "rise"
18787
18788         * gtk/gtktexttypes.h (GTK_TEXT_UNKNOWN_CHAR): Add macro for
18789         unknown char, no real reason we were using a variable. 
18790         Remove gtk_text_unknown_char variable. Fix all the text widget
18791         files accordingly.
18792
18793         * gtk/gtktexttypes.c: Change "unknown character" to 0xFFFC, 
18794         since the Unicode spec seems to prefer that character for our
18795         purposes.
18796
18797 Wed Nov 15 02:18:01 2000  Robert Brady  <robert@suse.co.uk>
18798
18799         * gtk/gtkrc.c (gtk_rc_get_im_module_file): The return 
18800         value of g_getenv() isn't freeable, so g_strdup it.
18801
18802         * modules/input/inuktitut.c: Inuktitut input method.
18803
18804         * modules/input/Makefile.am: Build this.
18805         
18806 2000-11-14  Elliot Lee  <sopwith@redhat.com>
18807
18808         * gtk/Makefile.am: Install gtk.immodules, needed for operation
18809         of gtk programs.
18810
18811 Tue Nov 14 20:13:06 2000  Owen Taylor  <otaylor@redhat.com>
18812
18813         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): Fix
18814         reversed > that was causing Home to go to end of previous line.
18815
18816         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): Ignore
18817         modified-keypresses (leave for bindings.)
18818
18819         * modules/input/Makefile.am: Remove useless -export-dynamic
18820         from module LDFLAGS.
18821
18822 2000-11-14  Havoc Pennington  <hp@redhat.com>
18823
18824         * gdk/gdkpango.c (gdk_draw_layout_line): Draw underlines one pixel
18825         higher.
18826
18827         * gtk/gtktextdisplay.c (render_layout_line): Take rise into
18828         account. Also, render rise, underline, background, etc. for
18829         pixbufs as well as text. Also, draw underlines one pixel higher.
18830
18831         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): Add a
18832         PangoAttribute for the rise, so it gets drawn properly. Also,
18833         add the GtkTextAppearance attribute for pixbuf/widget segments
18834         as well; we should go ahead and have rise, underline, background,
18835         stipple work for those
18836
18837         * gtk/gtktexttag.c: Rename "offset" property to "rise" to match
18838         Pango
18839
18840 2000-11-15  Tor Lillqvist  <tml@iki.fi>
18841
18842         * gtk/makefile.{mingw,msc}.in (gtk_OBJECTS): Add new objects.
18843
18844         * gtk/gtk.def: Update.
18845
18846         * gtk/gtkrc.c: Can't check for G_OS_WIN32 until glib.h has been
18847         included.
18848         (gtk_rc_get_im_module_file): Use run-time installation directory
18849         on Win32.
18850
18851         * gdk/win32/rc/gdk.rc: Remove.
18852         * gdk/win32/rc/gdk.rc.in: New file.
18853         * gdk/win32/rc/Makefile.am: New file
18854         * gdk/win32/Makefile.am: Corresponding changes.
18855
18856         * gtk/gtk.rc: Remove.
18857         * gtk/gtk-win32.rc.in: New file.
18858         * gtk/Makefile.am: Corresponding changes.
18859
18860         * configure.in: Corresponding changes.
18861
18862         * gtk/gtkcompat.h.win32: Remove, useless. A distribution already
18863         has a built gtkcompat.h. Developers using CVS code on Win32 can
18864         hand-edit it from gtkcompat.h.in.
18865
18866         * gtk/makefile.{mingw,msc}.in: Correspondingly don't try to make
18867         gtkcompat.h from gtkcompat.h.win32.
18868
18869 2000-11-14  Havoc Pennington  <hp@redhat.com>
18870
18871         * gtk/gtktextview.c (gtk_text_view_drag_motion): Fix drag-and-drop
18872         to default to GDK_ACTION_MOVE if the drag is within a single
18873         widget. Defaults to GDK_ACTION_COPY between widgets.
18874
18875 Mon Nov 13 14:43:48 2000  Owen Taylor  <otaylor@redhat.com>
18876
18877         * demos/Makefile.am (test-inline-pixbufs.h): Fix srcdir != builddir
18878
18879         * gtk/Makefile.am (INCLUDES): Add -I$(builddir)/gtk
18880
18881         * gtk/stock-icons/Makefile.am (gtkstockpixbufs.h): Handles
18882         srcdir != builddir
18883
18884         * modules/input/Makefile.am (INCLUDES): add $(top_srcdir)/gdk
18885
18886         * configure.in (GTK_VERSION): Up to 1.3.2
18887
18888         * modules/input/Makefile.am (im_xim_la_SOURCES): Add 
18889         gtkimcontextxim.h
18890
18891         * gtk/gtkimcontext.c (gtk_im_context_get_preedit_string): Add
18892         missing doc comment.
18893
18894 2000-11-14  Alexander Larsson  <alexl@redhat.com>
18895
18896         * modules/linux-fb/basic.c:
18897         Use the glib iconv wrappers.
18898
18899 2000-11-13  Havoc Pennington  <hp@pobox.com>
18900
18901         * demos/gtk-demo/textview.c: spiff up the demo a bit; reveals
18902         still more bugs.
18903
18904         * gtk/gtktextview.c (gtk_text_view_value_changed): don't try to
18905         scroll the GdkWindows before realization.
18906
18907 2000-11-13  Havoc Pennington  <hp@redhat.com>
18908
18909         * gtk/gtktextdisplay.c (gtk_text_render_state_update): fix bug 
18910         where GC didn't always get updated properly
18911
18912         * demos/gtk-demo/textview.c (create_tags): Use subattributes
18913         of fonts instead of setting the entire font
18914
18915         * gtk/testtext.c (fill_example_buffer): Use "size" instead of
18916         setting entire font
18917
18918         * gtk/gtkdialog.c (gtk_dialog_add_button): Fix some warnings
18919
18920         * gtk/gtktexttag.h, gtk/gtktexttag.c: Explode font_desc into 
18921         a bunch of individually-settable font attributes. You can still 
18922         use the "font" and "font_desc" args, they just set all the font
18923         attributes at once.
18924
18925 2000-11-13 Elliot Lee <sopwith@redhat.com>
18926
18927         * gdk/gdk.h: Add a couple of missing G_GNUC_CONST's.
18928
18929 Mon Nov 13 14:29:32 2000  Jonathan Blandford  <jrb@redhat.com>
18930
18931         * gtk/gtktreemodel.c (gtk_tree_path_copy): confirm path != NULL
18932         * gtk/gtktreemodel.c (gtk_tree_path_free): ditto
18933
18934         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): make
18935         work better.
18936
18937 2000-11-13  Havoc Pennington  <hp@redhat.com>
18938
18939         * gtk/gtkimmodule.c (gtk_im_module_init): Free the filename of 
18940         the module file.
18941
18942         * gtk/gtktexttag.c (gtk_text_attributes_copy): fix memory leak of
18943         dest->language
18944
18945         * gtk/testtext.c: Test pixels above/below/inside paragraphs
18946         settings
18947
18948         * gtk/gtktextview.c: Implement object args and setters/getters for
18949         all the aspects of the GtkTextAttributes that are not set from
18950         GtkWidget attributes. This is spacing, justification, margins,
18951         etc.
18952
18953         (gtk_text_view_set_arg)
18954         (gtk_text_view_get_arg): implement get/set for editable, wrap mode
18955         args
18956         (gtk_text_view_class_init): Add args for justify, left_margin,
18957         right_margin, indent, and tabs
18958         
18959
18960         * gtk/gtktextlayout.c (set_para_values): fix to display indent
18961         attribute properly
18962
18963         * gtk/gtktexttag.c: Remove left_wrapped_line_margin attribute, 
18964         replace with indent attribute
18965
18966         * gtk/gtktextlayout.c (set_para_values): multiply indent by
18967         PANGO_SCALE
18968
18969         * gtk/gtktextdisplay.c (render_para): Use PangoLayoutIter,
18970         rearranging code to do that
18971         (gtk_text_layout_draw): Pass in the y for the whole LineDisplay,
18972         i.e. don't subtract the top_margin first, just to keep
18973         all margin-futzing in one place.
18974
18975         * gdk/gdkpango.c (gdk_draw_layout): Use PangoLayoutIter
18976
18977         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Remove
18978         special case of last line, Pango now handles this itself.
18979         (gtk_text_layout_get_iter_at_pixel): Fix incorrect clamp of the 
18980         Y coordinate
18981         (gtk_text_layout_move_iter_to_x): port to use PangoLayoutIter
18982         (find_display_line_above): wasn't moving the byte index as it
18983         iterated over lines, so always returned byte 0. Also, port to use
18984         PangoLayoutIter.
18985         (find_display_line_below): same problem as
18986         find_display_line_above. Also, port to use PangoLayoutIter.
18987
18988 2000-11-13  Alexander Larsson  <alexl@redhat.com>
18989
18990         * gdk/linux-fb/*.[ch]:
18991         Massive reindent to gtk+ standard. My hands hurt.
18992
18993         * gdk/linux-fb/gdkcolor-fb.c:
18994         Move GdkColorPrivateFB from inherited to windowing_data
18995
18996         * gdk/linux-fb/gdkcursor-fb.c:
18997         _gdk_cursor_new_from_pixmap made static
18998
18999         * gdk/linux-fb/gdkdnd-fb.c:
19000         GdkDragContextPrivate moved to windowing_data
19001
19002         * gdk/linux-fb/gdkdrawable-fb2.c:
19003         Removed endian.h, use glib endianness macros instead
19004         Some cleanups in the usage of GDK_DRAWABLE_FBDATA
19005         and GDK_DRAWABLE_IMPL_FBDATA
19006
19007         * gdk/linux-fb/gdkfont-fb.c:
19008         Add empty gdk_font_load(). Needed for linking of Gtk+.
19009
19010         * gdk/linux-fb/gdkimage-fb.c:
19011         Removed endian.h, use glib endianness macros instead
19012         Moved GdkImagePrivateFB to windowing_data
19013         gdk_image_new_bitmap didn't always allocate enough
19014         memory.
19015
19016         * gdk/linux-fb/gdkinput-ps2.c:
19017         Added semi-working support for MS serial mice.
19018
19019         * gdk/linux-fb/gdkprivate-fb.h:
19020         s/GdkWindowPrivate/GdkWindowObject/
19021         Removed GdkWindowPrivate typedef
19022         s/GDK_DRAWABLE_P/GDK_DRAWABLE_FBDATA/
19023         Removed GDK_DRAWABLE_P
19024         Move GdkColorPrivateFB from inherited to windowing_data
19025         Moved GdkImagePrivateFB to windowing_data
19026
19027         * gdk/linux-fb/gdkvisual-fb.c:
19028         Removed some unused debug code.
19029
19030         * gdk/linux-fb/gdkwindow-fb.c:
19031         Use stock cursors instead of including X headers.
19032         s/GdkWindowPrivate/GdkWindowObject/
19033
19034         * gdk/linux-fb/mitypes.h:
19035         Removed unused types.
19036
19037         * modules/linux-fb/basic.c:
19038         Use the pango fribidi wrappers.
19039
19040 2000-11-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
19041
19042         * gdk/linux-fb/gdkcolor-fb.c, gdk/nanox/gdkmain-nanox.c,
19043         gdk/win32/gdkcolor-win32.c, gdk/win32/gdkwin32id.c,
19044         gdk/x11/gdkcolor-x11.c, gdk/x11/gdkvisual-x11.c, gdk/x11/gdkxid.c,
19045         gtk/gtkgc.c, gtk/gtkrc.c, gtk/gtktext.c: GCompareFunc ->
19046         GEqualFunc where applicable.
19047         
19048         * gdk/linux-fb/gdkpango-fb.c: pango_font_description_compare ->
19049         pango_font_description_equal as changed in pango.
19050         
19051         * gdk/nanox/gdkmain-nanox.c: gdk_xid_compare -> gdk_xid_equal.
19052
19053         * gdk/win32/gdkcolor-win32.c: gdk_colormap_cmp -> gdk_colormap_equal.
19054
19055         * gdk/win32/gdkwin32id.c: gdk_handle_compare -> gdk_handle_equal.
19056
19057         * gdk/x11/gdkcolor-x11.c: gdk_colormap_cmp -> gdk_colormap_equal.
19058
19059         * gdk/x11/gdkvisual-x11.c: gdk_visual_compare -> gdk_visual_equal.
19060
19061         * gdk/x11/gdkxid.c: gdk_xid_compare -> gdk_xid_equal.
19062
19063         * gtk/gtkgc.c: gtk_gc_key_compare -> gtk_gc_key_equal and
19064         gtk_gc_drawable_compare -> gtk_gc_drawable_equal.
19065
19066         * gtk/gtkrc.c: gtk_rc_style_compare -> gtk_rc_style_equal and
19067         gtk_rc_styles_compare -> gtk_rc_styles_equal.
19068
19069 2000-11-12  Havoc Pennington  <hp@pobox.com>
19070
19071         * demos/gtk-demo/Makefile.am (democodedir): change demo install
19072         dir to datadir/gtk+-2.0/demo
19073
19074         * demos/gtk-demo/textview.c: Text widget demo; reveals all 
19075         sorts of text widget and Pango font bugs. Urgh.
19076
19077         * demos/gtk-demo/Makefile.am (demos): Add textview.c
19078
19079         * demos/gtk-demo/main.c (create_tree): Add instructions at top of
19080         tree that you should double click to see the demo. Fix 
19081         types of variables to reflect changed return values from 
19082         GtkTreeStore and GtkTreeViewColumn constructors.
19083
19084         * gtk/gtktextbuffer.c (gtk_text_buffer_new): ref/sink the
19085         newly-created buffer to prepare for GObject semantics
19086
19087         * gtk/testtext.c: don't leak the buffer with GObject semantics
19088
19089         * gtk/testtextbuffer.c: ditto
19090         
19091 2000-11-12  Havoc Pennington  <hp@pobox.com>
19092
19093         Rename this testgtk to gtk-demo to avoid confusion, and 
19094         install it so people can use it as a supplement to 
19095         the documentation.
19096         
19097         * demos/gtk-demo: Moved from demos/testgtk
19098
19099         * demos/testgtk: Removed
19100
19101         * configure.in: make Makefile in gtk-demo
19102         
19103         * demos/gtk-demo/Makefile.am: Install sample source to 
19104         datadir/gtk-demo (maybe there's a better place?), and 
19105         rename the binary to gtk-demo
19106         
19107         * demos/gtk-demo/main.c (load_file): Load installed sample
19108         source if source isn't found in pwd.
19109
19110 2000-11-09  Havoc Pennington  <hp@pobox.com>
19111
19112         * gtk/gtkentry.c (gtk_entry_class_init): Add an "invisible_char" 
19113         argument to set the char displayed when visibility == FALSE
19114         (gtk_entry_create_layout): If !entry->visible, replace 
19115         all chars with the "invisible char"
19116
19117         * gtk/testgtk.c: Test the invisible_char deal
19118         
19119 Mon Nov 13 02:16:33 2000  Robert Brady  <robert@suse.co.uk>
19120
19121         * gtk/gtkstyle.c (gtk_style_init): Fall back to "fixed" if we
19122         can't get a native font in the right encoding.
19123
19124 Mon Nov 13 00:09:29 2000  Robert Brady  <robert@suse.co.uk>
19125
19126         * configure.in: Chinese .pos have been renamed to zh_CN and zh_TW
19127         respectively.
19128
19129 Sun Nov 12 19:11:42 2000  Owen Taylor  <otaylor@redhat.com>
19130
19131         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
19132         Fix warning when moving between paragraphs.
19133
19134         * gtk/gtkentry.[ch]: Change move => move_cursor, 
19135         delete => delete_from_cursor, insert => insert_at_cursor
19136
19137 Sun Nov 12 22:52:51 2000  Robert Brady  <robert@suse.co.uk>
19138
19139         * modules/input/imviqr.c: A vietnamese VIQR-based input method.
19140
19141         * modules/input/imthai-broken.c: A Thai input method for use if
19142         Thai keys are really generating Latin1 keysyms.
19143
19144         * modules/input/Makefile.am: Build these.
19145
19146 Sun Nov 12 22:15:35 2000  Robert Brady  <robert@suse.co.uk>
19147
19148         * gtk/gtkfileselection.c, gdk/win32/gdkfont-win32.c: 
19149         g_filename_{to,from}_utf8 now takes an extra parameter.
19150
19151         * gtk/gtkcalendar.c (gtk_calendar_init): Convert output of
19152         strftime into UTF-8.
19153
19154         (column_from_x, gtk_calendar_paint_day_names): Support RTL
19155         calendars.
19156
19157         (gtk_calendar_paint_day_names): Draw day names in the right 
19158         place.
19159         
19160 Sun Nov 12 14:10:09 2000  Owen Taylor  <otaylor@redhat.com>
19161
19162         * gdk/x11/gdkselection-x11.c (gdk_utf8_to_compound_text): Fix
19163         problem with using result of g_get_charset() backwards -
19164         pointed out by Mikael Hermansson <mikeh@bahnhof.se>.
19165
19166         * gtk/gtkwindow.c (gtk_window_compute_hints): Support
19167         negative min_width/height and max_width/height to
19168         mean "requisition"; this allows setting a window
19169         to be user-resizable in only one direction easily.
19170
19171         * gtk/testgtk.c (create_main_window): Remove hard-coded
19172         usize - set a default size in the vertical direction.
19173
19174 Sun Nov 12 13:33:01 2000  Owen Taylor  <otaylor@redhat.com>
19175
19176         * gtk/gtkrange.c: Add some missing casts. Support 
19177         2 and 3 button clicks on the arrows to mean 
19178         "move by pages" and "jump to end". (Like gtkspinbutton)
19179
19180 2000-11-12 Hans Breuer <Hans@Breuer.Org>
19181
19182         * gdk/win32/makefile.msc : reflect build module changes
19183
19184         * gdk/win32/gdkcursor-win32.c : can't cast to impl type directly
19185         from GdkPixmap*, cast implementation member instead.
19186
19187         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_drawable) : The
19188         passed in drawable is of type GdkDrawableImplWin32, the GdkPixmap *src 
19189         maybe either GdkDrawable or GdkDrawableImpl. Corrected all casts, add
19190         more Gdi functions return value checking. 
19191         (gdk_win32_draw_image) : use IMAGE_PRIVATE_DATA to get on the
19192         GdkImagePrivateWin32 *.
19193
19194         * gdk/win32/gdkevents-win32.c : Disable the SetCapture call to make
19195         menus useable again. Add #pragma message to keep reminded on this issue.
19196         (gdk_event_translate) : don't generate GDK_EXPOSE events for InputOnly
19197         windows. This allows to enable backing store on Win32!
19198
19199         * gdk/win32/gdkimage-win32.c (_gdk_win32_get_image) : the passed
19200         in drawable is of impl type. Correct specific type checks appropriate.
19201  
19202         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data) : check 
19203         GDK_WINDOW_DESTROYED before allocating new resources.
19204
19205         * gdk/win32/gdkselection-win32.c : Handle GDK_WINDOW_DESTROYED case
19206
19207         * gdk/win32/gdkwindow-win32.c : more Gdi return value checking,
19208         (gdk_window_foreign_new) initialize parent handle.
19209         (gdk_window_destroy_notify) add GDK_IS_WINDOW check
19210
19211         * gdk/win32/gdkgeometry-win32.c (_gdk_window_move_resize_child) :
19212         Let the GDI invalidate the window on MoveWindow call to fix scrolling
19213         problems (e.g. main buttons in testgtk). 
19214
19215 Sat Nov 11 23:07:30 2000  Owen Taylor  <otaylor@redhat.com>
19216
19217         * gtk/gtkentry.c (gtk_entry_key_press): Call 
19218         gtk_widget_activate for GDK_Return.
19219
19220         * gtk/gtkentry.c (gtk_entry_preedit_changed_cb): Fix handling
19221         of preedit cursor position.
19222
19223 Sun Nov  5 04:24:53 2000  Owen Taylor  <otaylor@redhat.com>
19224
19225         * gtk/gtkcellrenderertextpixbuf.c: Make parent_class
19226         static.
19227
19228 Tue Sep 19 10:54:22 2000  Owen Taylor  <otaylor@redhat.com>
19229
19230         * modules/input/{gtkimcontextxim.[ch],imxim.c}: Rip
19231         out support for multiple locales; that simple doesn't
19232         work reliably with current Xlib
19233
19234         * gtk/gtkimcontext*.[ch] gtk/gtkimmulticontext.[ch]
19235         gtk/gtktextlayout.[ch] gtk/gtktextview.c gtk/gtkentry.c: 
19236         Add support for positioning the cursor within the preedit string.
19237
19238 Mon Sep 18 23:56:32 2000  Owen Taylor  <otaylor@redhat.com>
19239
19240         * modules/input/{imxim.c,gtkimcontextxim.[ch]}: Start
19241         at XIM input method module.
19242
19243         * gtk/gtktextview.c: Check for bindings after passing
19244         events to im context filter.
19245
19246 Mon Sep 18 11:50:51 2000  Owen Taylor  <otaylor@redhat.com>
19247
19248         * gtk/gtktextlayout.c (add_preedit_attrs): Handle
19249         empty attribute lists properly.
19250
19251 Sun Sep 17 10:08:16 2000  Owen Taylor  <otaylor@redhat.com>
19252
19253         * gtk/queryimmodules.c (main): Return non-zero exit
19254         status if errors were encountered querying any
19255         modules.
19256
19257         * modules/input/Makefile.am (moduledir): remove
19258         leftover bin program target.
19259
19260         * docs/make-todo: Fix typo in error message.
19261
19262 Sat Sep 16 14:04:30 2000  Owen Taylor  <otaylor@redhat.com>
19263
19264         * configure.in: Add modules/input/Makefile
19265
19266 Sat Sep 16 14:01:52 2000  Owen Taylor  <otaylor@redhat.com>
19267
19268         * gtk/gtk.h: include gtkmodule.h gtkoldeditable.h,
19269         don't include gtkthemes.h.
19270
19271         * gtk/testgtk.c gtk/testtext.c: Set environment variables
19272         to point
19273
19274         * gtk/Makefile.am: Add new .c and .h files, build 
19275         gtk-query-immodules and use it to create a gtk.immodules
19276         file for use of test programs.
19277
19278         * gtk/gtkpreview.c: remove extra blank line.
19279
19280 Sat Sep 16 13:21:04 2000  Owen Taylor  <otaylor@redhat.com>
19281
19282         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_add_table): 
19283         Add the ability to add extra tables beyond the default
19284         one, and also the ability to have compose sequences 
19285         that are prefixes of other compose sequences. 
19286
19287         * gtk/gtkimcontextsimple.c: Export a preedit string which
19288         consists of possible candidates for keystrokes that have
19289         been entered but not yet committed.
19290
19291         * gtk/gtkimcontext.[ch] gtk/immulticontext.[ch]
19292         gtk/gtkimcontextsimple.[ch]: add gtk_im_context_reset()
19293
19294         * gtk/gtkmulticontext.[ch] (gtk_im_multicontext_append_menuitems): 
19295         Add a function to add input-method switching menu items
19296         to a menu.
19297
19298         * gtk/gtkimmulticontext.[ch]: Properly handly set_client_window
19299         when switching input methods.
19300
19301         * gtk/gtkimcontextsimple.[ch]: Change the format of
19302         the compose table to allow compose tables of different
19303         lengths / sequence.
19304
19305 Sat Sep 16 13:05:48 2000  Owen Taylor  <otaylor@redhat.com>
19306
19307         * gtk/gtkimmodule.[ch]: Support routines for loading
19308         GtkIMContext implementations dynamically at runtime.
19309
19310         * modules/input/imcyrillic-translit.c: A sample input
19311         method (based on GtkIMContextSimple with an extra table),
19312         which demonstrates preedit strings and the module
19313         system for input modules
19314
19315         * gtk/queryimmodules.c: Program to query the available
19316         input modules and write the results into a file.
19317          
19318         * gtk/gtkrc.[ch] (gtk_rc_get_im_module_file): Add
19319         extra config options "im_module_file" (cache file for
19320         input method modules), and "im_module_path" - path
19321         to look for modules when generating cache file.
19322
19323         This doesn't scale.
19324
19325 Sat Sep 16 13:09:06 2000  Owen Taylor  <otaylor@redhat.com>
19326
19327         * gtk/gtkthemes.[ch] gtk/gtkmodule.[ch]: Move most of the 
19328         generic code from gtkthemes into a new abstraction
19329         GtkModule which has the logic for implementing
19330         a loadable module which implements a number of 
19331         GObject types.
19332
19333 Sat Sep 16 13:07:13 2000  Owen Taylor  <otaylor@redhat.com>
19334
19335         * gtk/gtkeditable.[ch]: Convert GtkEditable from
19336         a class into an interface  
19337         
19338         * gtk/gtkoldeditable.[ch]: Move the old editable
19339         implementation into here, so legacy widgets can
19340         still rely on the implemenation. GtkOldEditable
19341         exports GtkEditable. Make selection handling
19342         code use new text conversion functions (and
19343         handle UTF-8 as a side-effect). Use GtkClipboard
19344         for CLIPBOARD.
19345
19346         * gtk/gtktext.[ch] gtk/gtkcombo.c gtk/gtkspinbutton.c:
19347         Adopt to match above changes.
19348
19349         * gtk/gtkentry.[ch]: Implement GtkEditable directly,
19350         avoid GtkOldEditable implementation. Restructure
19351         to reduce number of places that modify state directly.
19352         Move to GtkBindingSet. Display the preedit string.
19353         Queue recomputation of PangoLayout and scroll position
19354         to improve effiency of doing complex changes naively.
19355         Add a menu with cut/copy/paste and input method selection.
19356
19357 Thu Sep 14 22:11:05 2000  Owen Taylor  <otaylor@redhat.com>
19358
19359         * gtk/gtktextlayout.[ch]: Add gtk_text_layout_set_preedit_string()
19360         to set preedit string and attributes; display preedit string by
19361         inserting string and attributes at cursor when creating the
19362         GtkTextLineDisplay.
19363
19364         * gtk/gtktextlayout.c: Move all conversions between byte
19365         positions in PangoLayout and GtkTextIter into new functions
19366         line_display_iter_to_index/index_to_iter that properly
19367         handle the preedit string.
19368
19369         * gtk/gtktextmark.[ch]: Restore gtk_text_mark_get_name, modify
19370         it to return const char * (eventually will end up
19371         as GCONST char *, most likely.)
19372
19373         * gtk/gtktextview.[ch]: Handle the preedit string, call
19374         gtk_im_context_reset() as necessary, add a menu to switch
19375         input methods.
19376         
19377         * gtk/gtktextlayout.[ch]: Remove useless
19378         gtk_text_layout_get_log_attrs() function.
19379
19380 2000-11-11  Tor Lillqvist  <tml@iki.fi>
19381
19382         * gdk/gdk.def
19383         * gtk/gtk.def: Update.
19384
19385         * gdk/win32/*.c: Add last argument to g_type_register_static()
19386         calls.
19387
19388         * gdk/win32/gdkwindow-win32.c: Silence gcc -Wall.
19389
19390         * gdk/win32/gdkevents-win32.c: Handle MSH_MOUSEWHEEL messages
19391         generated by older wheel mouse drivers. Get the correct y
19392         coordinate from WM_MOUSEWHEEL messages.
19393
19394         * gdk/win32/gdkgc-win32.c (gdk_win32_cap_style_to_string,
19395         gdk_win32_fill_style_to_string, gdk_win32_function_to_string,
19396         gdk_win32_join_style_to_string, gdk_win32_line_style_to_string):
19397         Debugging functions.
19398
19399         * gdk/win32/gdkprivate-win32.h: Declare them.
19400
19401         * gdk/win32/gdkinput-win32.h: Add declaration for
19402         gdk_input_window_destroy().
19403
19404         * gtk/makefile.mingw.in: Pass -DGTK_VERSION. Add gtktreemodel.o.
19405
19406 Fri Nov 10 19:06:41 2000  Jonathan Blandford  <jrb@redhat.com>
19407
19408         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_insert_value): New
19409         function to help handle keeping things in sync.
19410
19411 Fri Nov 10 12:10:34 2000  Jonathan Blandford  <jrb@redhat.com>
19412
19413         * gtk/gtkliststore.c (gtk_model_simple_class_init): use the new
19414         BOXED marshallers.
19415
19416         * gtk/gtkliststore.c (gtk_list_store_get_column_type): Add this.
19417         (gtk_list_store_class_init): use the new BOXED marshallers.
19418
19419         * gtk/gtktreestore.c (gtk_tree_store_new_with_types): change
19420         new_with_values to new_with_types.
19421         (gtk_tree_store_get_column_type): add this.
19422         (gtk_tree_store_class_init): use the new BOXED marshallers.
19423
19424         * gtk/gtkmarshal.list: Added a number of BOXED marshallers to
19425         mirror some POINTER marshallers.
19426
19427 Thu Nov  9 11:23:22 2000  Jonathan Blandford  <jrb@redhat.com>
19428
19429         * gtk/gtktreemodel.h (struct _GtkTreeIter): added more fields to
19430         allow more interesting iterators.  Also, made the lifecycle of
19431         iterators more explicit.
19432
19433         * gtk/gtktreemodelsort.[ch]: New model for sorting.
19434
19435         * gtk/gtk-boxed.defs (GtkTreeIter, GtkTreePath): Added two boxed
19436         types.
19437
19438 2000-11-09  Alexander Larsson  <alexl@redhat.com>
19439
19440         * demos/testgtk/menus.c:
19441         Changes to make the new testgtk compile after
19442         gtk_menu_append was removed.
19443
19444         * gdk/linux-fb/gdkdrawable-fb2.c
19445         (gdk_fb_get_depth, gdk_fb_get_visual,
19446         gdk_drawable_impl_fb_class_init): Implement
19447         these drawable functions. Now GtkImages work again.
19448
19449         * gdk/linux-fb/gdkimage-fb.c (_gdk_fb_get_image): Change prototype.
19450
19451         * gdk/linux-fb/gdkprivate-fb.h (_gdk_fb_get_image): Change prototype.
19452         
19453         * gdk/linux-fb/gdkmain-fb.c (fb_modes_parse_mode,
19454         gdk_fb_setup_mode_from_name, gdk_fb_set_mode, gdk_fb_display_new);
19455         Parse /etc/fb.modes, use the environment variables GDK_DISPLAY_MODE,
19456         GDK_DISPLAY_DEPTH, GDK_DISPLAY_WIDTH, GDK_DISPLAY_HEIGHT.
19457
19458 2000-11-08  Havoc Pennington  <hp@pobox.com>
19459
19460         * gtk/gtktexttag.c (gtk_text_tag_class_init): Add visible and
19461         visible_set args, don't know where these had gone, I thought they
19462         used to be there
19463
19464         * gtk/testtext.c: Add a menu item to apply invisibility tag;
19465         now we can test the feature and see that it's totally broken.
19466
19467 2000-11-08  Havoc Pennington  <hp@pobox.com>
19468
19469         Make DND copy pixbufs and tags when source and target share a 
19470         tag table.
19471         
19472         * gtk/gtktextview.c (gtk_text_view_drag_data_get): provide the
19473         in-process GTK_TEXT_BUFFER_CONTENTS target
19474         (gtk_text_view_drag_data_received): Paste from
19475         GTK_TEXT_BUFFER_CONTENTS if we receive it.
19476
19477 2000-11-08  Alexander Larsson  <alexl@redhat.com>
19478
19479         * docs/Changes-2.0.txt: Add note about GtkMenuPositionFunc
19480         API changes.
19481
19482         * gtk/gtkmenu.c: Add support for scrolling menus.
19483         Remove gtk_menu_append/prepend/insert, these have been moved to
19484         gtkcompat.h as #defines.
19485
19486         * gtk/gtkcompat.h.in:
19487         Add compatibility #defines for gtk_menu_append/prepend/insert
19488
19489         * gtk/gtkmenu.h: Add data needed for scrolling menus.
19490         GtkMenuPositionFunc gets an extra argument push_in.
19491         gtk_menu_append/prepend/insert removed.
19492         
19493         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Change menu
19494         positioning behaviour to fit to scrolling menus.
19495
19496         * gtk/gtkmenuitem.c (gtk_menu_item_forall): Don't recurse
19497         into menuitem->submeny. That is wrong, and broke torn
19498         off submenus of torn off menus, since they were unrealized
19499         when the first menu was unrealized.
19500
19501         * gtk/gtkmenushell.[ch]: Virtualize gtk_menu_shell_insert() and
19502         gtk_menu_shell_select_item() since these need to be overridden in
19503         GtkMenu.
19504
19505         * gtk/gtkoptionmenu.c (gtk_opttion_menu_position): Change menu
19506         positioning behaviour to fit to scrolling menus.
19507         (gtk_option_menu_key_press, gtk_option_menu_button_press): Select
19508         the current item so that it is prelighted when the menu pops up.
19509         This is a workaround to the fact that the menu doesn't get the
19510         initial enter event (due to grabs).
19511
19512         * gtk/gtkfilesel.c, gtk/gtkinputdialog.c, gtk/testgtk.c:
19513         s/gtk_menu_append/gtk_menu_shell_append/
19514
19515         * gtk/gtknotebook.c:
19516         s/gtk_menu_insert/gtk_menu_shell_insert/
19517
19518         * gtk/testgtk.c (create_menu, create_menus):
19519         Create the first menu with 50 items so that menu scrolling
19520         can be tested.
19521         
19522         
19523         Patch from Jonathan Blandford  <jrb@redhat.com>
19524
19525         * gtk/gtkmenuitem.[ch] (gtk_menu_item_toggle_size_request): new
19526         system to handle size requests.  First, we ask what the size of
19527         the toggle is.  Then, when allocating the size, we allocate the
19528         toggle_size first.  This way we can have multiple menu-item
19529         classes w/o needing a seperate class for each.
19530
19531         * gtk/gtkmenu.c (gtk_menu_size_request): Actually use the new system.
19532         * gtk/gtkmenu.c (gtk_menu_size_allocate): Use the new system.
19533
19534         * gtk/gtkcheckmenuitem.c
19535         (gtk_check_menu_item_toggle_size_request): New function to handle
19536         the toggle size-request.
19537
19538 2000-11-07  Havoc Pennington  <hp@redhat.com>
19539
19540         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location):
19541         Half-ass somewhat fix this function, so that scrolling to the
19542         insertion point works. Pango hacking is in the future to really
19543         fix it.
19544
19545         * gtk/gtktextview.c (gtk_text_view_drag_data_get): Don't calculate
19546         length of data, no longer used.
19547
19548         * gtk/gtktextbuffer.c (gtk_text_buffer_finalize): move destroy
19549         method contents in here, get rid of destroy method
19550         (gtk_text_buffer_insert_range): Fix some g_return_if_fail checks
19551         that were backward. Remove debug spew.
19552         (cut_or_copy): Make the clipboard work with insert_range to
19553         preserve tags and pixbufs, not just the primary selection.
19554
19555 2000-11-07  Havoc Pennington  <hp@redhat.com>
19556
19557         * gtk/gtktextmark.c (gtk_text_mark_is_visible): rename 
19558         to gtk_text_mark_get_visible
19559
19560         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): fix
19561         bug that was generating an invalid iterator
19562
19563         * gtk/gtktextiter.c (gtk_text_iter_get_offset): move call to
19564         ensure_char_offsets() in front of code placing the iter in an
19565         invalid state.
19566
19567         * gtk/gtktextbuffer.c (gtk_text_buffer_paste_primary):
19568         make override_location arg const
19569         (paste): Replace the selection if we paste into the 
19570         current selection
19571
19572         * gtk/gtkselection.h: Remove "GtkSelectioData"
19573         (struct _GtkSelectionData): move the definition here.
19574
19575         * gtk/gtktextbuffer.c (gtk_text_buffer_update_primary_selection):
19576         Export the GTK_TEXT_BUFFER_CONTENTS target for in-process copies
19577
19578         * gtk/gtktextiter.c (gtk_text_iter_get_tags): New function
19579
19580         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_range): implement
19581         (gtk_text_buffer_insert_range_interactive): implement
19582         (gtk_text_buffer_get_tags): Remove, replaced by
19583         gtk_text_iter_get_tags()
19584
19585         * gtk/gtktextiter.c (gtk_text_iter_forward_search): Add a search
19586         limit parameter, to avoid infinite linear scan.
19587         (gtk_text_iter_backward_search): Add search limit
19588         (gtk_text_iter_forward_find_char): Add search limit
19589         (gtk_text_iter_backward_find_char): Add search limit
19590
19591 2000-11-07  Alexander Larsson  <alla@lysator.liu.se>
19592
19593         * gdk/linux-fb/gdkcolor-fb.c, gdk/linux-fb/gdkdnd-fb.c,
19594         gdk/linux-fb/gdkgc-fb.c, gdk/linux-fb/gdkimage-fb.c,
19595         gdk/linux-fb/gdkpango-fb.c, gdk/linux-fb/gdkpixmap-fb.c,
19596         gdk/linux-fb/gdkwindow-fb.c:
19597         use g_object_new() instead of g_type_create_instance() which
19598         is a private function for fundamental type implementations.
19599
19600         * gdk/linux-fb/gdkinput-ps2.c:
19601         Use MEDIUMRAW instead of RAW keycodes. Remove keyboard state-table
19602         instead just store the current modifier state. Add a (somewhat broken)
19603         keyboard input parser for XLATE mode too, if we couldn't use MEDIUMRAW.
19604         Rename exported function gdk_input_ps2_get_mouseinfo to
19605         gdk_input_get_mouseinfo.
19606
19607         * gdk/linux-fb/gdkmain-fb.c, gdk/linux-fb/gdkprivate-fb.h,
19608         gdk/linux-fb/gdkwindow-fb.c:
19609         gdk_input_ps2_get_mouseinfo was renamed to gdk_input_get_mouseinfo.
19610         
19611
19612 2000-11-02  Havoc Pennington  <hp@redhat.com>
19613
19614         * gtk/gtkfilesel.h, gtk/gtkfilesel.c: Derive from GtkDialog, and
19615         use stock buttons. Should be 100% source compatible, appropriate
19616         filesel fields now point to dialog->vbox and dialog->action_area.
19617         On the bizarre side, dialog->action_area and filesel->action_area
19618         are not the same widget.
19619         (gtk_file_selection_init): Put some padding around the selection
19620         entry, so it isn't touching the GtkDialog separator.    
19621
19622         * gtk/gtkfontsel.h, gtk/gtkfontsel.c: Derive from GtkDialog, 
19623         use stock buttons, etc. Should also be source compatible.
19624         Set the dialog default title in _init not _new().
19625         
19626         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): 
19627         Use stock buttons; don't put a button box inside the existing
19628         dialog button box. Don't bother with push/pop colormap anymore.
19629
19630         * gtk/gtkdialog.h (GtkResponseType): Add a bunch of more 
19631         specific GTK_RESPONSE_* values. This is clearer than ACCEPT/REJECT
19632         for message dialog, and necessary for the font selection and color
19633         selection with help and apply buttons.
19634         
19635         * gtk/gtkdialog.c (gtk_dialog_add_button): Return a pointer 
19636         to the created button widget. Set GTK_CAN_DEFAULT on the button.
19637         (gtk_dialog_init): Default to GTK_BUTTONBOX_END, put less spacing
19638         between buttons, put less padding around the action area.
19639         (gtk_dialog_run): Exit on unmap rather than on destroy. 
19640         This will also exit the loop if the widget is hidden.
19641         (gtk_dialog_delete_event_handler): Use GTK_RESPONSE_DELETE_EVENT
19642         instead of GTK_RESPONSE_NONE; since we're already adding a bunch
19643         of GTK_RESPONSE_* stuff, this seems cleaner, and lets you 
19644         special-case delete event.
19645
19646         * gtk/gtktexttagtable.c, gtk/gtktextview.c: Fix doc comment
19647         formatting
19648         
19649 Sun Nov  5 05:32:39 2000  Tim Janik  <timj@gtk.org>
19650
19651         * gtk/testgtk.c (uposition_stop_configure): provide a toggle
19652         button to temporarily disable position recording in the
19653         "saved position" test.
19654
19655 Sat Nov  4 05:37:17 2000  Tim Janik  <timj@gtk.org>
19656
19657         * gtk/gtkthemes.c: added compat code that temporarily implements
19658         GtkThemeEnginePlugin as a GObject exporting GTypePlugin. this is
19659         going to be revamped by owen's upcoming GtkModule patches, but
19660         untill then people want gtk to build, right? ;)
19661
19662 2000-11-04  Havoc Pennington  <hp@pobox.com>
19663
19664         * gtk/gtkenums.h: remove trailing comma from GtkDeleteType member
19665         list
19666
19667         * docs/Changes-2.0.txt: Add note about
19668         gtk_container_get_toplevels()
19669
19670         * gtk/gtktextview.h: formatting
19671         
19672         * gtk/gtktextview.c: don't start descriptions with "Returns",
19673         confuses gtk-doc
19674
19675 Sat Nov  4 10:12:27 2000  Owen Taylor  <otaylor@redhat.com>
19676
19677         * autogen.sh: When doing sanity checking on ACLOCAL_FLAGS,
19678         look for glib-2.0.m4 not glib.m4. (Ali Abdin)
19679
19680 2000-11-03  Havoc Pennington  <hp@redhat.com>
19681
19682         * gtk/gtktexttagtable.c: Docs
19683         (gtk_text_tag_table_size): return a signed int
19684
19685         * gtk/gtktexttag.c: s/tkxt/text/g; write documentation
19686         (gtk_text_tag_event): make the event_object a GObject
19687
19688         * gtk/gtktextview.c: Write API docs for all functions.
19689
19690         * gtk/gtktextview.h: add GTK_TEXT_WINDOW_PRIVATE as return value
19691         for gtk_text_view_get_window_type() called on one of the private
19692         windows.
19693
19694         * gtk/gtktextview.c: Instead of accessing text_view->buffer
19695         directly, call get_buffer() which demand-creates a default
19696         buffer. So gtk_text_view_new() can be used to create a view with a
19697         default buffer in it, if you just want an empty text box users can
19698         put data in. Useful for GUI builders also.
19699
19700 2000-11-03  Pablo Saratxaga <pablo@mandrakesoft.com>
19701
19702         * gtk/gtkrc.zh_TW.*: moved gtkrc.zh_TW.Big5 to gtkrc.zh_TW.big5;
19703         the charset encodign portion MUST be in lowercase.
19704         * gtk/gtkrc.az: added file for Azeri language
19705
19706 2000-11-03  Havoc Pennington  <hp@redhat.com>
19707
19708         Get widgets working on the btree/buffer side. Display of them 
19709         still doesn't work.
19710         
19711         * gtk/gtktextview.c: start implementing child widget stuff
19712
19713         * gtk/gtktextiter.c (gtk_text_iter_get_child_anchor): new function
19714
19715         * gtk/gtktextlayout.c: handle embedded widgets
19716
19717         * gtk/gtktextdisplay.c: handle embedded widgets
19718
19719         * gtk/gtktextchild.c: Implement all the child anchor goo
19720
19721         * gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor): New
19722         function
19723
19724         * gtk/gtktextbtree.c: Add child anchor table to the btree struct
19725         (insert_pixbuf_or_widget_segment): abstract out common portions of 
19726         creating a child anchor or a pixbuf segment.
19727         (gtk_text_btree_create_child_anchor): new function
19728         (gtk_text_btree_unregister_child_anchor): new function
19729
19730         * gtk/gtkmarshal.list: added VOID:OBJECT,INT,INT for the
19731         allocate_child signal on GtkTextLayout
19732
19733         * gtk/gtktextiter.c (gtk_text_iter_get_pixbuf): fix bogus return
19734         values
19735         (gtk_text_iter_get_child_anchor): new function
19736
19737         * gtk/gtktextbuffer.c (gtk_text_buffer_real_changed): Add a
19738         default handler for the changed signal, which calls
19739         gtk_text_buffer_set_modified(), instead of just always emitting
19740         changed then calling set_modified() manually. I guess this is
19741         maybe more flexible. It seems logical.
19742
19743 Fri Nov  3 08:58:38 2000  Tim Janik  <timj@gtk.org>
19744
19745         * gtk/gtkobject.c: _g_signal_handlers_destroy() is prefixed with '_'
19746         now.
19747
19748         * gtk/gtksignal.c: use g_signal_connect_closure_by_id() now.
19749
19750 Thu Nov  2 14:10:51 2000  Owen Taylor  <otaylor@redhat.com>
19751
19752         * gdk/x11/gdkdnd-x11.c: Fix a bunch of functions that should have
19753         been marked static.
19754
19755 2000-11-02  Havoc Pennington  <hp@redhat.com>
19756
19757         * gtk/testgtk.c (create_labels): had a test backward
19758
19759         * gdk/x11/gdkgc-x11.c (gdk_gc_copy): Copy the client-side GC
19760         fields, so the dest GC ends up with the correct clip origin, 
19761         etc. Fixes a bug where colored labels didn't redraw 
19762         properly.
19763
19764 2000-11-02  Alexander Larsson  <alexl@redhat.com>
19765
19766         * gdk/linux-fb/gdkcolor-fb.c, gdk/linux-fb/gdkdnd-fb.c,
19767         gdk/linux-fb/gdkgc-fb.c, gdk/linux-fb/gdkpango-fb.c,
19768         gdk/linux-fb/gdkpixmap-fb.c, gdk/linux-fb/gdkwindow-fb.c:
19769         Add last argument to t_type_register_static call.
19770         
19771         * gdk/linux-fb/gdkdrawable-fb2.c:
19772         Add last argument to t_type_register_static call.
19773         export the get_image drawable virtual function.
19774
19775         * gdk/linux-fb/gdkimage-fb.c:
19776         Add last argument to t_type_register_static call.
19777         rename gtk_image_get to _gdk_fb_get_image and
19778         export it for use by gdkdrawable-fb2.
19779
19780         * gdk/linux-fb/gdkprivate-fb.h:
19781         export _gdk_fb_get_image.
19782
19783         * gdk/linux-fb/gdkselection-fb.c:
19784         Add new api call stubs.
19785
19786         * gtk/Makefile.am:
19787         Missing ( in linux-fb part.
19788
19789         * modules/linux-fb/Makefile.am:
19790         Must link with gdk_pixbuf or get unresolved symbol.
19791
19792 2000-11-01  Havoc Pennington  <hp@pobox.com>
19793
19794         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Use 
19795         GTK_TYPE_TEXT_ITER and BOXED marshallers
19796
19797         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): ditto
19798
19799         * gtk/gtktexttag.c (gtk_text_tag_class_init): ditto
19800         
19801         * gtk/gtk-boxed.defs: add GtkTextIter
19802
19803         * gtk/gtkmarshal.list: Add marshallers for text widget that 
19804         properly use OBJECT and BOXED
19805
19806 2000-11-01  Havoc Pennington  <hp@redhat.com>
19807
19808         * gtk/testgtk.c (create_labels): Test set_markup_with_accel()
19809
19810         * gtk/gtklabel.c (set_markup): Convert the unichar to a GDK keyval
19811         before returning it. 
19812         
19813 2000-11-01  Havoc Pennington  <hp@redhat.com>
19814
19815         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
19816         Clip the rectangle to be rendered to the drawable, since
19817         get_from_drawable() requires a region within the drawable
19818
19819 2000-11-01  Havoc Pennington  <hp@redhat.com>
19820
19821         * gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
19822         from coordinates.
19823
19824 Wed Oct 25 20:10:57 2000  Owen Taylor  <otaylor@redhat.com>
19825
19826         * gdk/gdkevents.c (gdk_event_copy): Only ref the window if
19827         it isn't NULL.
19828
19829 2000-11-01  Havoc Pennington  <hp@pobox.com>
19830
19831         * gtk/gtklabel.c (gtk_label_set_attributes): Set a PangoAttrList
19832         on a label
19833         (gtk_label_finalize): unref the attr list if any.
19834
19835         * gtk/testgtk.c (create_get_image): close test on second click
19836         (make_message_dialog): close dialog if it exists
19837
19838         * gdk/gdkpango.c (gdk_draw_layout): Handle rise attribute
19839
19840         * gdk-2.0.pc.in (Requires): Make it require gdk-pixbuf-2.0 not
19841         gdk-pixbuf
19842
19843         * gtk/gtklabel.c (gtk_label_set_markup): new function to set label
19844         from Pango markup format
19845         (gtk_label_set_markup_with_accel): ditto but with accelerator
19846         parsing
19847
19848         * gtk/gtkimage.c (gtk_image_expose): reformatting.
19849
19850         * gdk/gdkpixbuf-drawable.c (gdk_pixbuf_get_from_drawable): Hack to
19851         reflect current state of GDK - use gdk_drawable_get_colormap, etc.
19852         Check GDK_IS_WINDOW() not !GDK_IS_PIXMAP() to decide whether to 
19853         call gdk_window_get_origin().
19854
19855         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
19856         implement GDK_PIXBUF_ALPHA_FULL
19857         
19858 Wed Nov  1 03:43:42 2000  Tim Janik  <timj@gtk.org>
19859
19860         * gtk/gtksignal.c (gtk_signal_compat_matched): make use of
19861         g_signal_handlers_block_matched, g_signal_handlers_unblock_matched and
19862         g_signal_handlers_disconnect_matched to block/unblock and disconnect
19863         multiple handlers respectively, instead of only treating the
19864         first handler found (bug reported by owen).
19865
19866 Mon Oct 30 19:23:50 2000  Jonathan Blandford  <jrb@redhat.com>
19867
19868         * gtk/gtktreeview.c (gtk_tree_view_expand_row): New function.
19869
19870         * gtk/gtktreeview.c (gtk_tree_view_collapse_row): New function.
19871
19872         * gtk/gtktreeview.c, gtk/gtktreemodel.c, gtk/gtktreeselection.c
19873         gtk/gtktreestore.h, gtk/gtktreeview.h, gtk/gtktreeviewcolumn.c,
19874         gtk/gtktreeviewcolumn.h: Fixed inline docs.
19875
19876         * docs/reference/gtk/tree_widget.sgml: Proto intro to the tree
19877         widget.  Needs writing someday.
19878
19879         * docs/reference/gtk/tmpl/gtktree*sgml: Added the tree widget to
19880         the docs.
19881
19882 2000-10-30  Havoc Pennington  <hp@redhat.com>
19883
19884         * gtk/gtktextview.h, gtk/gtktextview.c:
19885         Rename delete_at_cursor delete_from_cursor, and 
19886         move to move_cursor.
19887
19888 2000-10-30  Havoc Pennington  <hp@redhat.com>
19889
19890         * gtktextbtree.c, gtktextbtree.h, gtktextbuffer.c,
19891         gtktextbuffer.h, gtktextchild.c, gtktextchild.h,
19892         gtktextchildprivate.h, gtktextdisplay.c, gtktextdisplay.h,
19893         gtktextiter.c, gtktextiter.h, gtktextiterprivate.h,
19894         gtktextlayout.c, gtktextlayout.h, gtktextmark.c, gtktextmark.h,
19895         gtktextmarkprivate.h, gtktextsegment.c, gtktextsegment.h,
19896         gtktexttag.c, gtktexttag.h, gtktexttagprivate.h,
19897         gtktexttagtable.c, gtktexttagtable.h, gtktexttypes.c,
19898         gtktexttypes.h, gtktextview.c, gtktextview.h:
19899
19900         Massive reindentation and reformatting. Arg alignment and comments
19901         still need fixing in various places.
19902
19903 2000-10-30  Havoc Pennington  <hp@redhat.com>
19904
19905         * gtk/gtktextview.h, gtk/gtktextview.c: Change run action signals
19906         to be named insert_at_cursor and delete_at_cursor so C++ can
19907         handle them.
19908
19909 2000-10-28  Tor Lillqvist  <tml@iki.fi>
19910
19911         * gtk/gtkrc.c (gtk_rc_append_default_module_path): Make sure not
19912         to get a double directory separator in case the home directory
19913         ends with one. This would cause trouble especially on Windows,
19914         where the path will be confused with the syntax for an an UNC
19915         (network share) path \\server\share\path.
19916         (gtk_rc_add_initial_default_files): Ditto.
19917
19918 Sat Oct 28 02:33:09 2000  Robert Brady  <robert@suse.co.uk>
19919
19920         * gtk/gtkmarshal.list: add new marshallers for GtkTextView.
19921
19922         * gtk/gtktextview.c: Use correct marshallers.
19923
19924 Fri Oct 27 17:56:26 2000  Jonathan Blandford  <jrb@redhat.com>
19925
19926         * gtk/gtkliststore.c: Not sure how this ever worked.  Fixed it to
19927         use new iter stuff, and added all the appropriate signals et al.
19928
19929         * gtk/gtktreedatalist.h: s/gtk/_gtk to further reinforce that this
19930         code is internal to gtk only.
19931
19932 2000-10-28  Tor Lillqvist  <tml@iki.fi>
19933
19934         * gtk/gtk.def
19935         * gtk/makefile.{mingw,msc}.in: Adjust to Tim's changes. Use
19936         glib-genmarshal etc.
19937
19938 Fri Oct 27 20:15:00 2000  Tim Janik  <timj@gtk.org>
19939
19940         * gtk/Makefile.am: added dependancies for testtextbuffer which broke
19941         parallel builds.
19942
19943 Fri Oct 27 18:51:44 2000  Tim Janik  <timj@gtk.org>
19944
19945         * gtk/gtksignal.[hc]: adapt to GSignal signature changes.
19946
19947 2000-10-27  Robert Brady  <robert@suse.co.uk>
19948
19949         * configure.in (ALL_LINGUAS): Add en@IPA (English, phonetic), 
19950         en_GB (British), ia (Interlingua).
19951
19952 2000-10-26  Havoc Pennington  <hp@redhat.com>
19953
19954         * gtk/gtktextiter.c (my_strrstr): fix constness warning
19955
19956         Fixed output of:
19957         nm -g -l .libs/libgtk-x11-1.3.so | grep ' T ' | grep -v gtk_ | grep -v GTK_
19958         
19959         * gtk/gtktextsegment.c (char_segment_new): rename
19960         (_char_segment_new_from_two_strings): rename
19961         (_toggle_segment_new): rename
19962         
19963         * gtk/gtkclipboard.c (ensure_clipboard_widget): make this static
19964         (make_clipboard_widget): make it static
19965         (text_get_func): static
19966         (text_clear_func): static
19967
19968         * gtk/gtkcolorsel.c (adjustment_changed): make this function
19969         static
19970         (hex_changed): make it static
19971         (hsv_changed): make it static
19972         (opacity_entry_changed): make it static
19973
19974         * gtk/gtktextbtree.c (change_node_toggle_count): rename with _gtk
19975         (toggle_segment_check_func): rename with _gtk
19976
19977         * gtk/gtktextchild.c (_pixbuf_segment_new): rename with _gtk
19978         (_widget_segment_new): rename
19979         (_widget_segment_add): rename
19980         (_widget_segment_remove): rename
19981         (_widget_segment_ref): rename
19982         (_widget_segment_unref): rename
19983
19984         * gtk/gtktextmark.c (_mark_segment_new): Rename
19985         _gtk_mark_segment_new   
19986
19987 2000-10-26  Havoc Pennington  <hp@redhat.com>
19988
19989         * gtk/gtkmarshal.list: add new marshallers used by the text widget
19990         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): fix marshaller
19991         types
19992
19993         * gtk/gtktexttagtable.c (gtk_text_tag_table_class_init): fix
19994         marshaller types
19995
19996         * gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktextdisplay.h,
19997         gtk/gtktextdisplay.c: We need to preserve Tk copyrights and
19998         license on these files.
19999
20000         * gtk/gtktextiter.c (gtk_text_iter_backward_search): Make this
20001         work.
20002
20003         * gtk/gtktextbtree.c (gtk_text_btree_new): init stamps to 
20004         runtime random number different for each tree, instead of 
20005         a constant I made up.
20006
20007 Thu Oct 26 07:36:16 2000  Tim Janik  <timj@gtk.org>
20008
20009         * gtk/Makefile.am: buncha cleanups, kludged build sources
20010         dependencies with a Makefile: oldest-source-stamp dependancy
20011         for the moment. automake is really fighting us here, with
20012         intentionally not allowing user-defined rules or dependancies
20013         prior to it's -include $(DEP_FILES) statement. sucks rocks!
20014
20015         * gtk/Makefile.am: added gtktextlayout.h and gtktextdisplay.h
20016         to public headers. tehy have a comment stating that they are
20017         "semi-public" aren't included by gtk.h and if enums popup there,
20018         they can be /*< skip >*/-ed.
20019
20020         * gtk/gtktextlayout.h: 
20021         * gtk/gtktextdisplay.h: indentation fixes, comment fixes,
20022         added LGPL... <SIGH>
20023
20024 Wed Oct 25 20:40:25 2000  Jonathan Blandford  <jrb@redhat.com>
20025
20026         * gtk/gtktreemodel.h: Got rid of GtkTreeNode, and changed it to
20027         GtkTreeIter.  Added iterators everywhere.
20028
20029         * gtk/gtktreeviewcolumn.c: Changed to use the iterators.
20030
20031         * gtk/gtktreeviewselection.c: Changed to use the iterators.
20032
20033         * gtk/gtktreestore.c: Changed to use the iterators.
20034
20035         * gtk/gtkliststore.c: Commented out the code.  Will convert to
20036         iterators tomorrow.
20037
20038         * gtk/gtkmodelsimple.c: Commented out the code.  Will convert to
20039         iterators tomorrow.
20040
20041         * gtk/treestoretest.c: Changed to use iterators.
20042
20043         * demos/testgtk/main.c: Moved to use the new iterator system.
20044
20045 Thu Oct 26 02:10:32 2000  Tim Janik  <timj@gtk.org>
20046
20047         * gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
20048         localization misbehaviour.
20049
20050         * gtk/gtk-boxed.defs: nuked "boxed" type GtkCTreeNode, since it's
20051         a useless type without copy/free.
20052
20053         * gtk/gtkctree.c (gtk_ctree_class_init): use GTK_TYPE_POINTER instead
20054         of GTK_TYPE_CTREE_NODE.
20055
20056 Thu Oct 26 00:51:52 2000  Tim Janik  <timj@gtk.org>
20057
20058         * gtk/gtksignal.c:
20059         (gtk_signal_emitv): use g_value_set_static_{string|boxed} where
20060         applicable.
20061
20062         * gtk/gtk-boxed.defs (GtkSelectionData): specify
20063         gtk_selection_data_copy and gtk_selection_data_free
20064         do GtkSelectionData work as params in signals.
20065
20066 Wed Oct 25 20:47:41 2000  Tim Janik  <timj@gtk.org>
20067
20068         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed
20069         implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that,
20070         couldn't they at least give it a non-standard name?
20071         
20072         * gtk/gtktextlayout.c: arg! yet another implementation of
20073         gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy?
20074
20075         * gtk/gtktextbuffer.c: gotcha! captured a vagabonding
20076         gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back
20077         home. now i know this _is_ a conspiracy.
20078
20079         * gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for
20080         ::state-changed.
20081
20082         * gtk/gtkaccelgroup.c (gtk_accel_group_create_remove): 
20083         (gtk_accel_group_create_add): marshaller signature fixups.
20084
20085         * gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups,
20086         pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM.
20087
20088         * gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid
20089         anymore.
20090
20091 Tue Oct 24 23:59:21 2000  Tim Janik  <timj@gtk.org>
20092
20093         * docs/reference/Makefile.am: disabled SUBDIRS for the moment, since
20094         due to the signal system changes, it wouldn't build currently. to
20095         be fixed soon.
20096
20097         * docs/Changes-2.0.txt: GtkSignal/GSignal updates.
20098
20099         * gtk/gtkwidget.c: ::direction_changed takes an enum as argument,
20100         so it needs gtk_marshal_VOID__ENUM() instead of
20101         gtk_marshal_NONE__UINT().
20102
20103         * gdk/gdk*.c: adapted type registration functions.
20104
20105         * gtk/gtkbindings.c:
20106         * gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is
20107         gone.
20108
20109         * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType.
20110
20111         * gtk/gtkobject.c:
20112         (gtk_object_destroy):
20113         (gtk_object_shutdown): fixed recursion guards. basically we have to
20114         catch the case where any of GObject.shutdown() or gtk_object_destroy()
20115         is called during ::destroy, and avoid recursion there.
20116
20117         * gtk/gtktypeutils.c:
20118         * gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with
20119         boxed_copy/boxed_free. this needs a more general solution based on a
20120         publically installed code-generator utility.
20121
20122         * gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED,
20123         glib's gobject has support for that now.
20124         define GtkSignalMarshaller in terms of GSignalCMarshaller.
20125
20126 Mon Oct 23 09:36:42 2000  Tim Janik  <timj@gtk.org>
20127
20128         * gtk/gtksignal.[hc]:
20129         * gtk/gtkmarshal.[hc]:
20130         * gtk/Makefile.am: generate marshallers with glib-genmarshal and don't
20131         compile gtkmarshal.c on its own anymore, just include it in gtksignal.c.
20132         removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes
20133         care of that.
20134
20135         * *.c: marshaller name fixups.
20136
20137         * gtk/gtkmarshal.list: added a comment briefing the format.
20138
20139 Sun Oct 22 23:14:39 2000  Tim Janik  <timj@gtk.org>
20140
20141         * gtk/gtksignal.[hc]: nuked old implementation. we mostly have
20142         compatibility macros here now. more specifically, most of
20143         the API is preserved (yes, _most_, nonwithstanding the
20144         following exceptions listed, the API is stil lHUGE ;)
20145         things that got removed completely:
20146         GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(),
20147         gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(),
20148         gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(),
20149         gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(),
20150         gtk_signal_remove_emission_hook().
20151         non-functional functions variants:
20152         gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook().
20153         the GtkCallbackMarshal argument to gtk_signal_connect_full() is
20154         not supported anymore.
20155         (gtk_signal_compat_matched): new internal function to aid
20156         implementation of the compatibility macros, it  provides
20157         functionality to block/unblock/disconnect handlers based
20158         on func/data.
20159
20160         * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType,
20161
20162         * *.c: adaptions to new type registration API signatures.
20163
20164 Fri Oct 20 15:26:33 2000  Tim Janik  <timj@gtk.org>
20165
20166         * gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
20167
20168 2000-10-25  Robert Brady  <robert@suse.co.uk>
20169
20170         * gdk/x11/gdkproperty-x11.c (gdk_property_get, gdk_property_change,
20171         gdk_property_delete): If window == NULL, assume the root window.
20172         (restoring the behaviour that was in 1.2).
20173         
20174         * gtk/testtext.c (save_buffer): Allow creation of new files when
20175         saving.
20176
20177         (fill_file_buffer): Don't die if a UTF-8 sequence is split across
20178         calls to read().
20179
20180 2000-10-25  Tor Lillqvist  <tml@iki.fi>
20181
20182         * gdk/gdkwindow.c: Include x11/gdkx.h only when building for X11.
20183
20184         * gdk/win32/gdkdrawable-win32.c
20185         * gdk/win32/gdkimage-win32.c
20186         * gdk/win32/gdkprivate-win32.h: Corresponding changes as in the
20187         X11 backend.
20188
20189         * gdk/win32/gdkcc-win32.c
20190         * gdk/win32/gdkcolor-win32.c
20191         * gdk/win32/gdkfont-win32.c
20192         * gdk/win32/gdkinput-win32.c
20193         * gdk/win32/gdkmain-win32.c
20194         * gdk/win32/gdkproperty-win32.c: Silence gcc -Wall.
20195
20196 2000-10-24  Havoc Pennington  <hp@redhat.com>
20197
20198         * gtk/gtktextview.c (gtk_text_view_scroll_to_mark_adjusted): make
20199         it a static function
20200
20201         * gtk/gtktextbtree.c (gtk_text_btree_tag): Gee, maybe we should
20202         redraw text when a tag is applied to it.
20203
20204         * gtk/gtktexttag.c (gtk_text_tag_affects_size)
20205         (gtk_text_tag_affects_nonsize_appearance): private functions to
20206         see if a tag requires various kinds of redraw/layout to be queued
20207         up.
20208
20209         * gtk/gtktexttag.h (struct _GtkTextTag): Remove relief crackrock
20210
20211         * gtk/testtext.c (fill_example_buffer): Put the cursor 
20212         at the start of the buffer, so search works by default
20213
20214         * gtk/gtktextiter.c (lines_match): init match_start always
20215
20216         * gtk/gtktextbuffer.c (gtk_text_buffer_get_iter_at_line_index): New
20217         function, get iter at a line + a byte index
20218
20219         * gtk/gtktextiter.c (gtk_text_iter_set_line_index): New function,
20220         to set byte position within a line
20221         (gtk_text_iter_check): remove leftover G_BREAKPOINT thing
20222
20223 2000-10-23  Havoc Pennington  <hp@redhat.com>
20224
20225         * gtk/testtext.c: Re-enable the "find" dialog
20226
20227         * gtk/testgtk.c: Add test for gdk_drawable_get_image
20228         
20229         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Fix bug where
20230         the arguments to gdk_draw_drawable were in the wrong order
20231         (gdk_window_paint_init_bg): This function was ignoring the
20232         init_region, instead of clipping to it, so the entire backing
20233         pixmap was cleared on every begin_paint()
20234         (gdk_window_begin_paint_region): Hmm, the same list-walking bug
20235         was in here again, the loop kept using the same GtkWindowPaint
20236         over and over.
20237         (gdk_window_begin_paint_region): Fix a bug where we had two
20238         x_offset instead of x_offset and y_offset
20239
20240         * gdk/gdkdraw.c (gdk_drawable_get_image): get composite drawable
20241         before we get the image.
20242         (gdk_draw_drawable): get the composite before we draw the drawable.
20243         (gdk_drawable_real_get_composite_drawable): default
20244         get_composite_drawable implementation that returns the drawable 
20245         itself
20246
20247         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Add
20248         get_composite_drawable virtual function
20249
20250         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Fix a cheesy
20251         list-walking bug
20252
20253         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable): Add a hack to
20254         make this work if the source drawable is a GdkDrawableImplX11
20255         instead of a public drawable type. This is really broken; the
20256         problem is that GdkDrawable needs a virtual method get_xid(), but
20257         of course that doesn't work in practice. Enter RTTI.
20258
20259         Also, improve mismatched depth message.
20260
20261         * gdk/gdkpixmap.c (gdk_pixmap_get_image): Implement get_image for
20262         GdkPixmap
20263
20264         * gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_class_init):
20265         install _gdk_x11_get_image as our implementation of get_image
20266         
20267         * gdk/x11/gdkimage-x11.c (gdk_image_get): Rename to
20268         _gdk_x11_get_image and export for use in gdkdrawable-x11.c
20269
20270         * gdk/gdkimage.c (gdk_image_get): Make this just a wrapper around
20271         gdk_drawable_get_image
20272
20273         * gdk/gdkdraw.c (gdk_drawable_get_image): call virtual get_image
20274
20275         * gdk/gdkdrawable.h (struct _GdkDrawableClass ): Virtualize
20276         get_image
20277
20278         * gtk/gtktreestore.c (gtk_tree_store_get_node): remove weird
20279         trailing semicolon after for loop
20280
20281 Mon Oct 23 12:07:57 2000  Owen Taylor  <otaylor@redhat.com>
20282
20283         * gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
20284         where font_desc for widget's context lagged widget's font_desc by
20285         one step.
20286
20287 2000-10-22  Tor Lillqvist  <tml@iki.fi>
20288
20289         * gdk/win32/gdkgc-win32.c
20290         * gdk/win32/gdkimage-win32.c: Remove gcc -Wall warnings.
20291
20292         * gtk/makefile.mingw.in
20293         * gtk/gtk.def: Updates.
20294
20295         * gtk/testgtk.c: sleep() is called _sleep in MS's C
20296         library.
20297
20298         * gtk/gtkimcontextsimple.c: Include <stdlib.h> for bsearch().
20299
20300         * gtk/makefile.msc: Remove
20301
20302         * gtk/makefile.msc.in: New file, like makefile.mingw.in.
20303
20304         * gtk/Makefile.am: Add it.
20305
20306         * configure.in: Generate it.
20307
20308         * gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor)
20309         * gtk/gtktextbtree.c (gtk_text_line_char_to_byte): Return
20310         something even if not implemented, to satisfy picky MSVC.
20311
20312         Patches by Hans Breuer:
20313         
20314         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_glyphs): Call
20315         SetBkMode() and SetTextAlign() before calling
20316         pango_win32_render().
20317
20318         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_values_to_win32values):
20319         Set hcliprgn to NULL after destroying it.
20320         (gdk_gc_set_clip_rectangle): Delete hcliprgn and set to NULL.
20321
20322         * gdk/win32/gdkgeometry-win32.c
20323         (_gdk_windowing_window_queue_antiexpose): More effective
20324         implementation.
20325
20326         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_new): Use drawable's
20327         depth as default, not the visual's.
20328
20329         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title): Guard
20330         against empty title.
20331
20332         * gdk/win32/gdkprivate-win32.h: Define a helper macro,
20333         IMAGE_PRIVATE_DATA.
20334
20335         * gdk/win32/gdkimage-win32.c: Use it.
20336
20337 2000-10-22  Robert Brady  <robert@suse.co.uk>
20338
20339         * configure.in: Check for bind_textdomain_codeset
20340
20341         * gtk/gtkmain.c (gtk_init_check): If bind_textdomain_codeset 
20342         present, make use of it.
20343
20344         Add a translatable string "default:LTR" which, if translated
20345         to "default:RTL", will cause the default direction to be
20346         Right-to-Left.
20347
20348         * gtk/gtkrange.h, gtk/gtkrange.c: Take into account the widget 
20349         direction if marked as flippable.
20350
20351         * gtk/gtkhscale.c: Mark widget as flippable.
20352         
20353 2000-10-04  Havoc Pennington  <hp@redhat.com>
20354
20355         * gtk/testgtk.c (create_buttons): create some stock buttons
20356         with the default accel group
20357         (create_image): test some new GtkImage features
20358         (make_message_dialog): test GtkMessageDialog
20359         (create_modal_window): fix someone's bizzarro indentation
20360
20361         * gtk/gtkwindow.h, gtk/gtkwindow.c: Implement 
20362         GTK_WIN_POS_CENTER_ON_PARENT. 
20363         Add "destroy with parent" setting, which means the window goes
20364         away with its transient parent.
20365         (gtk_window_get_default_accel_group): get the default accel group
20366         for the window.
20367         (gtk_window_set_destroy_with_parent): set/unset destroy with
20368         parent flag
20369         (gtk_window_read_rcfiles): invalidate icon set caches
20370         after reloading rcfiles 
20371
20372         * gtk/gtkenums.h (GtkWindowPosition): add
20373         GTK_WIN_POS_CENTER_ON_PARENT, which centers a dialog 
20374         on its parent window when the dialog is mapped for the first time.
20375
20376         * gtk/gtkmessagedialog.h, gtk/gtkmessagedialog.c: Add 
20377         a simple message dialog class
20378         
20379         * gtk/gtkdialog.c (gtk_dialog_init): Connect delete event 
20380         handler to emit response signal, and maybe later it would
20381         honor a hide_on_delete flag - though that isn't there yet.
20382         Set border width on the vbox to 2, so we get some padding.      
20383         Use a button box for the action area.
20384         (gtk_dialog_key_press): synthesize a delete event if Esc
20385         is pressed and the GtkWidget key press handler didn't 
20386         handle the escape key.
20387         (gtk_dialog_new_with_buttons): new function creates a dialog
20388         with some default buttons in it.
20389         (gtk_dialog_add_action_widget): add an activatable widget
20390         as a button in the dialog - you can also add a non-activatable
20391         widget by accessing the action area directly.
20392         (gtk_dialog_add_button): add a simple button - stock ID or 
20393         label - to the action area
20394         (gtk_dialog_response): emit response signal
20395         (gtk_dialog_run): block waiting for the dialog, return 
20396         the response. Override normal delete_event behavior, so that 
20397         delete_event does nothing inside gtk_dialog_run().
20398         * gtk/gtkdialog.h, gtk/gtkdialog.c: Add "response" signal
20399         emitted when an action widget is clicked or the dialog gets
20400         delete_event
20401
20402         * gtk/gtk.h: add gtkmessagedialog.h
20403
20404         * gtk/Makefile.am: add gtkmessagedialog.[hc]
20405
20406 2000-10-18  Havoc Pennington  <hp@redhat.com>
20407
20408         * gtk/gtktextiter.c (gtk_text_iter_forward_to_newline): Fix a bug 
20409         where any number of empty lines would get skipped
20410
20411         * gtk/gtktextiter.h: Remove padding from GtkTextIter; live on the
20412         edge.
20413
20414         * gtk/gtktextiter.c (gtk_text_iter_make_surreal): enhance the
20415         warning about invalid iterators (explain more thoroughly)
20416         (gtk_text_iter_in_region): rename gtk_text_iter_in_range
20417
20418         * gtk/gtktextview.c (FOCUS_EDGE_WIDTH): Make focus rectangle less
20419         big
20420
20421         * demos/*.c: Add error handling
20422
20423         * gtk/gtktextbuffer.c: don't modify const iterators
20424
20425         * gtk/gdk-pixbuf-loader.c: Add full error handling here
20426
20427         * gtk/gtkimage.c (gtk_image_set_from_file): ignore errors
20428         on file load
20429
20430         * gtk/gtkiconfactory.c: Update to reflect addition of error
20431         handling to gdk-pixbuf loaders
20432
20433 Wed Oct 18 11:14:05 2000  Owen Taylor  <otaylor@redhat.com>     
20434
20435         * configure.in demos/Makefile.am demos/testgtk/*: Start of work to
20436         move to new modularized testgtk.
20437
20438 2000-10-17  Jonathan Blandford  <jrb@redhat.com>
20439
20440         * gtk/gtktreeview.c: Draw the arrows correctly.
20441
20442         * gtk/gtktreemodel.c: Added user docs.
20443
20444         * gtk/gtk.h: remove gtktreedatalist.h.
20445
20446         * gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
20447         parent when generating my type.
20448
20449         * gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
20450         POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
20451
20452 2000-10-16  Jonathan Blandford  <jrb@redhat.com>
20453
20454         * gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move
20455         GtkTreeModel from object to interface.
20456
20457 2000-10-16  Havoc Pennington  <hp@redhat.com>
20458
20459         * gtk/gtktreeviewcolumn.c: #include gtklabel.h, fixing 
20460         compilation
20461
20462 2000-10-16  Jonathan Blandford  <jrb@redhat.com>
20463
20464         * gtk/gtktreeselection.c: Add API documentation to all public
20465         functions.
20466
20467         * gtk/gtktreeviewcolumn.c: Added API documentation to all public
20468         functions.
20469
20470 2000-10-15  Jonathan Blandford  <jrb@redhat.com>
20471
20472         * gtk/gtktreeview.c (gtk_tree_view_insert_column): New function
20473         proposed by Guy Harris <gharris@flashcom.net>.  Also, added API
20474         docs to all public functions.
20475
20476         * gtk/gtktreeview.c, gtk/gtktreeview.h, gtk/gtktreestore.h,
20477         gtk/gtktreestore.c, gtk/gtkliststore.h, gtk/gtkliststore.c,
20478         gtk/gtkmodelsimple.c, gtk/gtkmodelsimple.h, gtk/gtktreedatalist.c,
20479         gtk/gtktreemodel.h, gtk/gtktreeselection.c,
20480         gtk/gtktreeselection.h: Fix GtkTreeNode *node ->GtkTreeNode node
20481         issue.
20482
20483 2000-10-14  Robert Brady  <robert@suse.co.uk>
20484
20485         * configure.in: Added "fa" (Persian) to ALL_LINGUAS.
20486
20487 2000-10-12  Jonathan Blandford  <jrb@redhat.com>
20488
20489         * gtk/gtktreedatalist.[ch] (gtk_tree_data_list_value_to_node): Added
20490         values other then G_TYPE_STRING.
20491         * gtk/gtktreeselection.c: Minor commenting updates.
20492         * gtk/gtktreeview.c: Format updates.
20493
20494 2000-10-09  Tor Lillqvist  <tml@iki.fi>
20495
20496         * README.win32: Update.
20497
20498         * gdk/win32/gdkgeometry-win32.c (gdk_window_clip_changed): Add two
20499         lines that had been deleted by mistake (?).
20500
20501         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Handle
20502         also the case fg==white and bg==black (but still not randomly
20503         coloured cursors). Thanks to Wolfgang Sourdeau.
20504
20505         * gdk/win32/*.c: Silence gcc -Wall.
20506
20507         * gtk/gtk.def: Add missing entry points.
20508
20509         Fixes by Hans Breuer:
20510
20511         * gdk/makefile.msc
20512         * gdk/win32/makefile.msc: Update.
20513
20514         * gdk/testgdk.c: If compiling with debugging (with _DEBUG defined,
20515         some MSVC thing, presumably), cause breakpoint on failures. Add
20516         GDK_NOR case. Call g_log_set_always_fatal.
20517
20518         * gdk/win32/gdkwin32id.c (gdk_win32_handle_table_insert): Handle
20519         should be pased by reference.
20520         
20521         * gdk/win32/gdkprivate-win32.h: Correct declaration accordingly.
20522         
20523         * gdk/win32/*.c: Correct calls to gdk_win32_handle_table_insert.
20524
20525         * gdk/win32/gdkevents-win32.c
20526         * gdk/win32/gdkwindow-win32.c: Handle WM_CREATE.
20527
20528         * gdk/win32/gdkgc-win32.c: Fix mixups of drawable and
20529         implementation object.
20530
20531         * gdk/win32/gdkimage-win32.c (gdk_image_get): Handle drawables,
20532         not just windows.
20533         
20534         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_impl_win32_finalize):
20535         Use the wrapper object.
20536         
20537 2000-10-06  Havoc Pennington  <hp@redhat.com>
20538
20539         * Makefile.am (SRC_SUBDIRS): contrib subdir
20540
20541         * gdk/gdkpixbuf.h: Move GdkPixbufAlphaMode to gdk-pixbuf library,
20542         so it can be used in Xlib version
20543
20544         * demos/testpixbuf.c (update_timeout): error checking from 1.0
20545         tree
20546
20547         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_get_pixbuf): Sync
20548         change from 1.0 tree that returns first frame of animation
20549         if the loaded file is an animation.
20550
20551         * contrib: add new directory to hold stuff that comes with GTK+
20552         but isn't really part of GTK+ (for now, gdk-pixbuf-xlib)
20553         
20554         * configure.in: add contrib/*
20555
20556 2000-10-05  Havoc Pennington  <hp@redhat.com>
20557
20558         * demos/testpixbuf-save.c: add pixbuf save test
20559
20560         * demos/Makefile.am: add testpixbuf-save.c
20561
20562 2000-10-05  Jonathan Blandford  <jrb@redhat.com>
20563
20564         * gtk/gtktree.h (GTK_TREE_SELECTION): Replaced with
20565         GTK_TREE_SELECTION_OLD to prevent conflict with gtktreeselection.c
20566         * gtk/testgtk.c: s/GTK_TREE_SELECTION/GTK_TREE_SELECTION_OLD/
20567         * gtk/gtktreeselection.[ch]: Replaced
20568         "node_selected"/"node_unselected" signal with "selection_changed"
20569         signal.
20570
20571 2000-10-04  Jonathan Blandford  <jrb@redhat.com>
20572
20573         * gtk/gtk{tree,cell}?*.[ch]: Checked in initial draft of the new
20574         tree widget.
20575
20576 2000-10-04  Jonathan Blandford  <jrb@redhat.com>
20577
20578         * gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
20579         drawing.
20580
20581 Wed Oct  4 15:52:15 2000 Owen Taylor  <otaylor@redhat.com>
20582
20583         * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
20584         Move list pointer forwards before removing item from
20585         list. (Crash reported by Salmaso Raffaele)
20586
20587         * gdk/gdkwindow.h: Remove spurious trailing ,
20588
20589         * gdk/Makefile.am (LDFLAGS): You can't do interlibrary
20590         dependencies on uninstalled libraries, sorry folks.
20591
20592 2000-10-04  Havoc Pennington  <hp@redhat.com>
20593
20594         * gtk/gtkstock.h, gtk/gtkstock.c, gtk/gtkiconfactory.h,
20595         gtk/gtkiconfactory.c: Fix copyrights    
20596
20597         * demos/testpixbuf.c: add inline pixbuf test
20598         
20599 Mon Sep 25 15:05:17 2000  Owen Taylor  <otaylor@redhat.com>
20600
20601         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c (gdk_window_iconify):
20602         Add gdk_window_iconify.
20603
20604         * gdk/gdkwindow.h gdk/x11/gdkwindow-x11.c
20605         (gdk_window_set_geometry_hints): Add win_gravity
20606         to geometry structure.
20607
20608         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter):
20609         Implement _NET_WM_PING.
20610
20611         * gdk/x11/gdkmain-x11.c (_gdk_windowing_init_check):
20612         Set _NET_WM_PID on the client leader.
20613
20614         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_name):
20615         Handle UTF-8 better.
20616
20617         * gdk/x11/gdkwindow-x11.c (gdk_window_set_title): Handle
20618         UTF-8 better, set _NET_WM_NAME as well. Only set
20619         icon name if it hasn't previously been explicitely 
20620         set.
20621
20622 2000-10-03  Havoc Pennington  <hp@redhat.com>
20623
20624         * gtk/testtextbuffer.c: clean up trailing whitespace,
20625         add extensive tests for tag toggle iteration.
20626         
20627         * gtk/gtktextiter.c (MAX_LINEAR_SCAN): decrease linear scan 
20628         distance
20629
20630         * gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
20631         optimize case where the tag root is on level 1
20632         (gtk_text_line_previous_could_contain_tag): attempt to implement
20633         (gtk_text_line_next_could_contain_tag): Abstract out node_compare
20634         functionality
20635
20636         * gtk/gtktextiter.c (gtk_text_iter_backward_to_tag_toggle):
20637         Implement this, though not very efficiently.
20638
20639         * gtk/gtktextiterprivate.h: reformat
20640
20641         * gtk/gtktextiter.c (gtk_text_iter_get_char): return 0 on the end
20642         iterator
20643
20644         * gtk/gtktextbuffer.c (gtk_text_buffer_delete_interactive): Fix
20645         this to properly revalidate the iterators.
20646
20647         * gtk/gtktextview.c (gtk_text_view_delete): fix control-K to work
20648         properly at the end of the line (and therefore on empty lines)
20649
20650         * gtk/gtktextbtree.c (gtk_text_btree_get_selection_bounds): Gee,
20651         maybe we should return a value...
20652
20653 2000-10-03  Tor Lillqvist  <tml@iki.fi>
20654
20655         * config.h.win32: Guard definition of alloca(). glib.h now handles
20656         that.
20657
20658         * gdk/gdk.def
20659         * gtk/gtk.def: Add new entry points.
20660
20661         Changes just to make GTK+ build without errors on Win32. No hope
20662         of it working in its current state, though...:
20663         
20664         * gdk/win32/gdkselection-win32.c: Remove gcc -Wall warnings.  Add
20665         some functions from the X11 backend, just to make GTK+ build.
20666
20667         * gdk/makefile.mingw.in
20668         * gtk/makefile.mingw.in: Use correct gdk_pixbuf version
20669         number. Add new object files.
20670
20671         * gtk/gtkclipboard.c: Include gdkwin32.h on Win32. Use
20672         GetMessageTime to get timestamp (where on X11 uses
20673         gdk_x11_get_server_time()).
20674
20675 2000-10-02  Havoc Pennington  <hp@pobox.com>
20676
20677         * gtk/gtktextview.c: text_window_* weren't static and should have
20678         been.
20679         Start work on child widgets; not yet complete, syncing to 
20680         office computer.
20681
20682         * gtk/gtktextchild.h: change this to contain a public interface,
20683         starting work on child interfaces.
20684         * gtk/gtktextchildprivate.h: move private interfaces here
20685
20686         * gtk/Makefile.am: update to reflect gtktextchildprivate.h
20687
20688         * gtk/gtktextview.h, gtk/gtktextview.c, gtk/gtktextbuffer.h,
20689         gtk/gtktextbuffer.c, gtk/gtktextiter.h, gtk/gtk/textiter.c, 
20690         gtk/gtktextmark.c: copyright notices
20691
20692         * gtk/gtktextmarkprivate.h: reformat, and put _ in front of
20693         internal functions      
20694
20695         * gtk/gtktextchild.c (_pixbuf_segment_new): put _ in front of
20696         internal function
20697
20698         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display):
20699         Reformatting    
20700
20701 2000-09-30  Havoc Pennington  <hp@pobox.com>
20702
20703         * gtk/gtktextbtree.c (gtk_text_btree_get_selection_bounds): Handle
20704         NULL start/end pointers
20705
20706         * gtk/gtktextbuffer.c: Write some docs
20707         (gtk_text_buffer_get_selection_bounds): Allow start/end to be
20708         NULL, so you can just check whether there's a selection.        
20709
20710         * gtk/gtktextbtree.c (gtk_text_btree_remove_mark): No need to 
20711         cleanup_line or segments_changed ourselves, it gets done 
20712         in unlink_segment
20713
20714         * gtk/gtktextmark.h:
20715         s/gtk_text_mark_deleted/gtk_text_mark_get_deleted/
20716         
20717         * gtk/gtktextsegment.h: Clean up some indentation and naming mess
20718
20719         * gtk/gtktextmark.c: delete some more old Tk cruft
20720
20721         * gtk/gtktextbuffer.c (gtk_text_buffer_delete_mark): add ref to
20722         mark before removing it, so we can emit MARK_DELETED with a valid
20723         pointer.
20724         (gtk_text_buffer_mark_set): hold ref across signal emission
20725
20726         * gtk/gtktextbtree.c (gtk_text_btree_remove_mark): improve
20727         whining about attempts to delete special marks
20728
20729         * gtk/gtktextbuffer.c (_gtk_text_buffer_spew): Prepend with
20730         underscore, since it's internal.
20731
20732         * gtk/gtktextbuffer.h: Remove find_string prototype, this is 
20733         now implemented in terms of iterators in gtktextiter.h
20734
20735         * gtk/gtktextbuffer.c (gtk_text_buffer_set_text): 
20736         New function, destructively sets contents of buffer. Also 
20737         a convenient way to clear the buffer by setting text to ""
20738
20739         * gtk/gtktextiter.c (gtk_text_iter_make_surreal): reformat
20740         multiline string literal
20741
20742         * gtk/testtext.c (text_changed_callback): Redraw line numbers if
20743         text changes.
20744
20745         * gtk/gtktextiter.c (forward_char): Return FALSE if new location 
20746         is not dereferenceable
20747         (gtk_text_iter_forward_lines): fix return value
20748
20749 2000-09-29  Havoc Pennington  <hp@redhat.com>
20750
20751         * gtk/gtktexttag.c (gtk_text_tag_set_priority): fix indentation
20752
20753         * gtk/gtktextview.c: Implement drag thresholding; change functions 
20754         that set border window size to have nicer name
20755         (gtk_text_view_mark_set_handler):  Fix this to have the 
20756         right signature.
20757
20758         * gtk/testtextbuffer.c (fill_buffer): Update with pixbuf changes
20759
20760         * gtk/testtext.c: Update with API changes, put line numbers on 
20761         both sides.
20762         
20763         * gtk/gtktextiter.c (gtk_text_iter_get_pixbuf): Replace get_pixmap
20764         with this
20765
20766         * gtk/gtktextchild.h, gtk/gtktextchild.c: replace all pixmap with
20767         pixbuf; delete a big block of #if 0 Tk code
20768
20769         * gtk/gtktextbuffer.c (gtk_text_buffer_insert_pixbuf): Replace 
20770         insert_pixmap with insert_pixbuf
20771
20772 2000-09-29  Martin Baulig  <baulig@suse.de>
20773
20774         * gdk-pixbuf.pc.in: Renamed to gdb-pixbuf-2.0.pc.in to avoid
20775         confusion with the GdkPixbuf of the GNOME 1.x platform.
20776
20777 2000-09-29  Havoc Pennington  <hp@pobox.com>
20778
20779         * gtk/gtktextview.c: Implement the side windows.
20780
20781         * gtk/testtext.c: Implement simple line numbering in the 
20782         left side window; seems to make scrolling sloooow. Oops.
20783         Also, cursor blink is for some reason causing redraws
20784         of the line numbers. Should investigate...
20785
20786 2000-09-28  Havoc Pennington  <hp@redhat.com>
20787
20788         * gtk/gtktextview.c: Set up infrastructure to deal with lots of 
20789         scrolling child windows, and draw focus rectangle properly.
20790         
20791         (gtk_text_view_buffer_to_window_coords):
20792         Coordinate transformation to deal with all these freaking windows
20793         and offsets
20794         (gtk_text_view_window_to_buffer_coords): transform the other way
20795
20796         * gtk/testtext.c (create_buffer): Update to match Pango API change
20797
20798         * gtk/gtktexttagtable.c (gtk_text_tag_table_foreach): Go over the
20799         anonymous tags
20800         (foreach_unref): don't emit remove signal from finalize, just
20801         set tag's parent to NULL
20802
20803 2000-09-26  Havoc Pennington  <hp@redhat.com>
20804
20805         * gtk/gtkiconfactory.c (gtk_icon_set_clear): remove
20806         Fix some warnings       
20807
20808 2000-09-26  Havoc Pennington  <hp@redhat.com>
20809
20810         * gtk/Makefile.am (gtk_private_h_sources): Move more text widget
20811         headers into the private header list
20812
20813         * Makefile.am (pkgconfig_DATA): install pkg-config files
20814
20815         * configure.in: add pkg-config files
20816
20817         * gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
20818
20819         * gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
20820         outstanding icon caches on theme change.
20821
20822         * gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three 
20823         important types:
20824
20825         (GtkIconSource): Specification for creating a pixbuf 
20826         appropriate for a direction/state/size triplet from 
20827         a source pixbuf or filename
20828
20829         (GtkIconSet): List of GtkIconSource objects that are used to
20830         create the "same" icon (e.g. an OK button icon), and cache for
20831         rendered icons
20832
20833         (GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
20834         up the icon set for a given stock ID.  GTK maintains a stack of
20835         GtkIconFactory to search, and applications or libraries can add
20836         additional icon factories on top of the stack
20837         
20838         * gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse 
20839         the set of GtkIconSource specified for a given stock ID into 
20840         a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the 
20841         RcStyle, under the specified stock ID.
20842
20843         * gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
20844         render_icon used to derive a GdkPixbuf from a GtkIconSource.
20845         This allows people to theme how prelight, insensitive, etc. are
20846         done.
20847
20848         (gtk_style_lookup_icon_set): Look up a stock ID in the list of
20849         icon factories for a style, and return the resulting 
20850         icon set if any.
20851
20852         (gtk_style_render_icon): Render an icon using the render_icon 
20853         method in the GtkStyleClass.
20854
20855         * gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon): 
20856         Use the style for a given widget to look up a stock ID, get the
20857         icon set, and render an icon using the render_icon method 
20858         of the style
20859
20860         * gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
20861         (contains information about a stock item), the built-in stock item
20862         IDs, and functions to add/lookup stock items.
20863
20864         * gtk/stock-icons/*: Stock icons that come with GTK
20865
20866         * gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
20867         a button based on a GtkStockItem
20868         (gtk_button_new_accel): Takes a uline string and accel group, and
20869         installs the accelerator.
20870
20871         * gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
20872         image-display widget.
20873
20874 2000-09-25  Havoc Pennington  <hp@redhat.com>
20875
20876         * gtk/gtktexttypes.c: Remove Latin1 conversion stuff
20877
20878         * gtk/gtktextbtree.c (gtk_text_btree_node_remove_data): 
20879         Fix a bug when removing node data, we didn't properly 
20880         re-splice the linked list after removing the data.
20881
20882         * gtk/gtktextview.c (gtk_text_view_key_press_event): Pass through 
20883         GDK_Tab as literal tab, Ctrl-Tab to tab to focus widget
20884
20885         * gtk/gtktextbuffer.c (selection_received): fix g_convert usage
20886
20887         * gtk/gtktextlayout.c (set_para_values): Set tab array 
20888         for the layout from the GtkTextTag.
20889
20890         * gtk/gtktexttypes.h: delete tab and search cruft, 
20891         remove g_convert() in favor of GLib version
20892
20893         * gtk/gtktexttypes.c: remove tab implementation from here,
20894         move to Pango
20895
20896         * gtk/gtktexttag.h, gtk/gtktexttag.c: Implement 
20897         tab stuff using new PangoTabArray from Pango
20898
20899         * gtk/gtktexttag.c (gtk_text_attributes_fill_from_tags): Remove
20900         unused border_width stuff
20901
20902 Thu Sep 14 12:21:12 2000  Owen Taylor  <otaylor@redhat.com>
20903
20904         * gtk/gtktexttypes.[ch]: Remove g_convert (moved to
20905         glib) and now useless utf_to_latin1() latin1_to_utf()
20906
20907         * gtk/gtktextview.[ch]: Change ::move_insert and
20908         ::delete_text action signals to ::move and ::delete;
20909         create the signals with the right enumeration type,
20910         not GTK_TYPE_ENUM so that bindings work. Add C-d, M-d,
20911         C-v bindings, change Home, End to move to beginning/end
20912         of line, Add C-Home C-End to move to beginning/end
20913         of buffer. Change ::cut_text to ::cut_clipboard, etc;
20914         combine ::scroll_text into ::move; use new GtkSelectionData
20915         functions to simplify DND text handling.
20916         
20917         * gtk/gtkenums.h gtk/gtktextview.h: Move movement,
20918         deletion enumerations here, rename enumeration values to 
20919         be consistently plural.
20920
20921         * gtk/gtktextbuffer.c: Use new clipboard interfaces
20922         for cut/copy/paste and primary selection.
20923
20924         * gtk/gtktextbuffer.[ch]: Remove excess time and
20925         'interactive' arguments from cut/copy/paste;
20926         rename cut to cut_clipboard, etc; remove
20927         gtk_text_buffer_get_clipboard_contents().
20928
20929         * gtk/gtktextlayout.[ch]: Add 
20930         gtk_text_layout_move_iter_to_line_end() to move the iter to 
20931         line ends.
20932
20933         * gtk/gtkselection.[ch] (gtk_selection_data_set/get_text):
20934         Functions to set or get a UTF-8 string on the selection
20935         data.
20936
20937         * gtk/gtkclipboard.[ch]: New, simplified selection handling
20938         interfaces.
20939
20940         * gtk/gtkinvisible.c (gtk_invisible_new): Realize newly
20941         created widgets - one of these is useless if we don't.
20942
20943         * gtk/gtkselection.[ch] (gtk_selection_clear_targets): Export
20944         a public function clear all targets registered for the
20945         widget.
20946
20947         * gtk/gtkselection.c (gtk_selection_owner_set) docs/Changes-2.0.txt:
20948         Never call gtk_widget_realize() - that was just asking
20949         for bizarre side-effects.
20950
20951         * gtk/gtkselection.c (gtk_selection_owner_set): Call
20952         gdk_selection_owner_set even if the widget is the
20953         same so that we reliably update the timestamp on
20954         the server.
20955
20956         * gdk/x11/gdkevents-x11.c gdk/x11/gdkx.h: Add a 
20957         gdk_x11_get_server_time() function.
20958         
20959         * gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.h
20960         gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.h:
20961         Add some tricky filtering on serial numbers for
20962         selection clear events to fix up long-standard
20963         race condition FIXME's in gtkselection.c.
20964
20965         * gdk/gdkproperty.h gdk/x11/gdkselection-x11.h: Add
20966         routines to convert from utf8 to compound text or
20967         STRING and from a text property to UTF-8.
20968
20969         * gtk/gtkmain.[ch] (gtk_get_current_event_time): Add 
20970         a convenience function gdk_get_current_event_time().
20971
20972         * gtk/gtkselection.c (gtk_selection_data_copy/free): Copy
20973         and free selection_data->data properly
20974
20975 Sat Sep  9 10:23:53 2000  Owen Taylor  <otaylor@redhat.com>
20976
20977         * gtk/gtkthemes.c: Remove some unecessary includes.
20978
20979 2000-09-08  Jonathan Blandford  <jrb@redhat.com>
20980
20981         * gtk/gtktextdisplay.c
20982         * gtk/gtktextlayout.c
20983         * gtk/gtktexttag.c
20984         * gtk/gtktexttag.h
20985         * gtk/testtext.c: Change the overstrike property to strikethrough,
20986         to closer match pango.
20987
20988 Fri Sep  8 14:28:00 2000  Owen Taylor  <otaylor@redhat.com>
20989
20990         * gtk/gtktextview.c: Fix up visibility so that focus,
20991         cursor_visible and blink interact properly.  Reenable cursor blink
20992         which had been roughly disabled. Make blink and focus
20993         properly per-view.
20994
20995         * gtk/gtktextlayout.[ch] (gtk_text_layout_set_cursor_visible):
20996         Add a flag for whether to display insertion cursor and
20997         a function to set the flag.
20998
20999         * gtk/gtktextlayout.c (gtk_text_layout_get_line_yrange): Change
21000         get_line_y() to get_line_yrange(), to be a bit more generally
21001         useful.
21002
21003 Thu Sep 07 20:54:33 2000  George Lebl <jirka@5z.com>
21004
21005         * gtk/gtkmenu.c:  in gtk_menu_set_submenu_navigation_region
21006           do stop_navigating_submenu, to clear last timeout properly.
21007           Also in gtk_menu_motion_notify move ignore_enter above
21008           the conditional to make it always happen as suggested by Owen
21009
21010 2000-09-07  Tor Lillqvist  <tml@iki.fi>
21011
21012         * gdk/win32/makefile.mingw.in: Use -Wall. Add gdkpango-win32.o
21013
21014         * gdk/win32/gdkwin32.h: Add more definitions missing from the free
21015         w32api headers.
21016
21017         * gdk/win32/gdkprivate-win32.h: Add a couple of missing
21018         declarations.
21019
21020         * gdk/win32/gdkdrawable-win32.c: Remove gcc -Wall warnings.
21021         (gdk_win32_get_colormap): A line had been deleted by mistake.
21022
21023         * gdk/win32/gdkevents-win32.c: Remove lint (gcc -Wall) here, too.
21024         (gdk_event_translate): Handle more virtual keycodes to be able to
21025         generate GDK events for Control-comma, Control-period, etc.
21026
21027         * gtk/gtk.def: Add some missing entry points.
21028
21029 Thu Sep  7 11:47:02 2000  Owen Taylor  <otaylor@redhat.com>
21030
21031         * gtk/gtktextbuffer.c gtk/gtkimcontext.c gtk/gtkwidget.c:
21032         Doc comment fixing. (Mostly non-matching parameter names.)
21033
21034         * gtk/gtkcalendar.c gtk/gtklist.c gtk/gtknotebook.c: Modify
21035         comments a little to avoid looking like a doc comment.
21036
21037         * gtk/gtkspinbutton.h (GTK_INPUT_ERROR): Change INPUT_ERROR to
21038         GTK_INPUT_ERROR. (Should the mechanism for erros in spin button
21039         conversions be changed to GError?)
21040
21041         * gtk/gtkcolorsel.c (GTK_CUSTOM_PALETTE_WIDTH/HEIGHT): 
21042         Move private #defines into .c file.
21043
21044         * gtk/gtktexttag.c (gtk_text_tag_class_init): Alphabetize
21045         order of argument addition, remove duplicates.
21046
21047         * gtk/gtkaspectframe.h (struct _GtkAspectFrameClass):
21048         parent class is FrameClass, not BinClass.
21049
21050         * gtk/gtk.h: Add gtkinvisible, which was missing.
21051         (It's occasionalyl useful for client apps, if seldom.)
21052
21053         * gdk/gdktypes.h: Remove obsolete GDK_CORE_POINTER
21054         #define.
21055
21056 Wed Sep  6 09:53:15 2000  Owen Taylor  <otaylor@redhat.com>
21057
21058         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Use X-space
21059         coordinates when creating window, instead of GDK-space
21060         coordinates. (Avoid BadValue on too large windows.)
21061
21062 2000-09-05  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
21063
21064         * configure.in (use_mmx_asm): Remove conftest* after use along the
21065         lines of AC_TRY_COMPILE.        
21066         
21067         * gtk/gtkrc.c (gtk_rc_parse_file): Use g_path_get_dirname instead
21068         of g_dirname, which is deprecated.
21069         (gtk_rc_parse_any): Removed calls to
21070         g_scanner_{freeze,thaw}_symbol_table, which are deprecated.
21071
21072         * gtk/gtkbindings.c (binding_entry_new, binding_entry_destroy):
21073         Removed calls to g_hash_table_{freeze,thaw}, as they are
21074         deprecated now.
21075
21076         * gtk/testtext.c (buffer_pretty_name): Use g_path_get_basename
21077         instead of g_basename.
21078         
21079 2000-09-04 Elliot Lee <sopwith@redhat.com>
21080         
21081         * gdk/gdkpixbuf.h: Put text after #endif inside a comment to avoid
21082         ANSI warning.
21083
21084 Sun Sep 03 00:47:08 2000  George Lebl <jirka@5z.com>
21085
21086         * gtk/gtkwidget.h:  Add some documenting comments about 
21087           GTK_CAN_DEFAULT, GTK_HAS_DEFAULT and GTK_RECEIVES_DEFAULT
21088           just as owen said on irc.
21089
21090         * gtk/gtkwindow.c (gtk_window_set_default):  Don't blindly
21091           set HAS_DEFAULT.  Only set it if there isn't another window
21092           holding it (a focus window which RECEIVES_DEFAULT) and only unset
21093           it if the widget is not the focused window with RECEIVES_DEFAULT.
21094           This fixes weird double default bugs in dialogs which has things
21095           call gtk_window_set_default at times.
21096
21097 Fri Sep  1 22:39:07 2000  Owen Taylor  <otaylor@redhat.com>
21098
21099         * gtk/gtkmenu.[ch] TODO.xml: Apply patch from
21100         Nils Barth and David Santiago to improve submenu
21101         navigation. The patch does this by creating a triangular
21102         region from the point where the pointer leaves the
21103         menu to the submenu.  While the pointer is in
21104         that region and a timeout has not expired, events 
21105         that would cause the active submenu to change are
21106         ignored.
21107
21108 Fri Sep  1 15:34:46 2000  Owen Taylor  <otaylor@redhat.com>
21109
21110         * gdk/x11/gdkwindow-x11.c (gdk_window_move): Fix bug where
21111         moving a toplevel window immediately after sizing it would
21112         result in it being sized back to the old size since 
21113         impl->width, impl->height aren't updated until we hear
21114         back from the server. There is still a (longstanding) bug
21115         here that gdk_window_get_size() will give the wrong size
21116         until we do hear back.
21117
21118 2000-08-31  Havoc Pennington  <hp@redhat.com>
21119
21120         * gtk/gtktextiter.h, gtk/gtktextiter.c, gtk/gtktextlayout.h, 
21121         gtk/gtktextlayout.c, gtk/gtktexttag.h, gtk/gtktexttag.c, 
21122         gtk/gtktexttagprivate.h, gtk/gtktextview.c:
21123         Rename GtkTextStyleValues to GtkTextAttributes
21124
21125 2000-08-31  Havoc Pennington  <hp@pobox.com>
21126
21127         * gtk/gtktextbtree.c (GtkTextBTree): cache end line, 
21128         for rapid testing whether an iterator is the end iterator
21129         (gtk_text_btree_new): init end line cache
21130         (gtk_text_line_is_last): use fast cached line to 
21131         see if we're the last line.
21132         (get_last_line): use cached line here too, should 
21133         speed up some random unrelated code.
21134         
21135 2000-08-30  Havoc Pennington  <hp@pobox.com>
21136
21137         * gtk/gtkmarshal.list: Add marshallers for changed GtkTextBuffer
21138         signals.
21139
21140         * gtk/gtktextbuffer.h: Add "interactive" arg to insert_text and
21141         delete_text signals. This allows the signals to be used for
21142         implementing undo.
21143
21144         * gtk/gtktextbuffer.c: Change signal handler signatures; 
21145         provide "interactive" argument when emitting insert_text or
21146         delete_text signal.
21147         
21148 2000-08-30  Havoc Pennington  <hp@pobox.com>
21149
21150         * gtk/gtktextbuffer.c: Docs
21151
21152 Fri Aug 25 12:16:15 2000  Owen Taylor  <otaylor@redhat.com>
21153
21154         * gdk/x11/gdkimage-x11.c: remove GDK_IMAGE_SHARED_PIXMAP
21155         from switch statements, since Tor removed the enumeration
21156         value.
21157         
21158         * gdk/x11/gdkimage-x11.c (gdk_image_get): 
21159         s/GDK_IS_WINDOW/GDK_IS_DRAWABLE/.
21160
21161 2000-08-29 Elliot Lee <sopwith@redhat.com>
21162         * */*.h: Use G_GNUC_CONST.
21163
21164 2000-08-27  Havoc Pennington  <hp@pobox.com>
21165
21166         * gtk/gtktextiter.c, gtk/gtktextiter.h: wrote lots of API docs,
21167         minor indentation fixes, inserted some FIXME about stuff I
21168         realized was broken while documenting it.
21169         (gtk_text_iter_get_pixmap): allow out params to be NULL, following
21170         GTK convention  
21171
21172 Tue Aug 22 12:33:24 2000  Owen Taylor  <otaylor@redhat.com>
21173
21174         * gtk/testgtk.c (create_styles): Fix double free of
21175         font desc.
21176
21177 Mon Aug 21 22:39:18 2000  Owen Taylor  <otaylor@redhat.com>
21178
21179         * gtk/gtkwidget.[ch]: Add gtk_widget_modify_{fg,bg,text,base,font}.
21180         
21181         * gtk/testgtk.c (create_styles): Add a test for modifying
21182         the style through gtk_widget_modify_*.
21183
21184         * gtk/gtkwidget.c (gtk_widget_get_modifier_style): Add
21185         a function to get the current modifier style.
21186
21187         * gtk/gtkwidget.c (gtk_widget_modify_style): Make a copy
21188         of the passed in GtkRcStyle instead of ref'ing it.
21189
21190         * gtk/gtkrc.[ch]: Add gtk_rc_style_copy().
21191
21192 2000-08-20  Tor Lillqvist  <tml@iki.fi>
21193
21194         * gdk/gdkimage.h
21195         * gdk/win32/gdkimage-win32.c: No need any longer on Win32 for the
21196         shared memory image+pixmap GdkImage type, or
21197         gdk_image_bitmap_new(). They were used in the gdk_imlib port, but
21198         I am dropping that.
21199
21200         * gtk/gtkmain.h: On Win32, use a #define to map gtk_init() to
21201         actually call gtk_init_abi_check(), passing also
21202         sizeof(GtkWindow). Ditto for gtk_init_check(). 
21203
21204         * gtk/gtk.def
21205         * gtk/gtkmain.c: (gtk_init_abi_check, gtk_init_check_abi_check):
21206         New functions, used to check that the GTK+-using code has been
21207         compiled using the correct compiler and switches. In particular,
21208         with gcc one has to use the -fnative-struct switch as GTK+ is
21209         compiled with that.
21210
21211 Fri Aug 18 17:27:46 2000  Owen Taylor  <otaylor@redhat.com>
21212
21213         * gtk/gtkclist.c (gtk_clist_merge): Don't leave dangling
21214         ->prev fields when merging lists. (Found simultaneously
21215         by Pawel Salek and Jakub Jelinek)
21216
21217 2000-08-12  Tor Lillqvist  <tml@iki.fi>
21218
21219         * gdk/gdk.def
21220         * gtk/gtk.def: Add missing entries.
21221
21222         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Use
21223         OUT_TT_ONLY_PRECIS, try to get a TrueType font.
21224
21225         * gdk/win32/gdkinput-win32.c (gdk_device_get_state): New
21226         function. Dummy implementation at this point.
21227
21228         * gtk/makefile.mingw.in: Fix typo. Add testtext and testtextbuffer
21229         rules. Undefine GTK_COMPILATION when compiling the test programs.
21230         
21231         * gtk/gtkdebug.h: Mark gtk_debug_flags for export/import.
21232
21233 2000-08-11  Tor Lillqvist  <tml@iki.fi>
21234
21235         * gtk/gtkfilesel.c: Add more calls to g_filename_{to,from}_utf8()
21236         to convert back and forth from UTF-8 and the "system" (or "current
21237         locale") charset when necessary. Indentation/spacing cleanup.
21238
21239 2000-08-10  Havoc Pennington  <hp@redhat.com>
21240
21241         * Makefile.am (snapshot): Change the format of the snapshot
21242         version to match glib
21243
21244         * gdk/win32/Makefile.am (EXTRA_DIST): remove gdkinputprivate.h
21245         from EXTRA_DIST since it doesn't seem to exist
21246
21247 2000-08-10  Tor Lillqvist  <tml@iki.fi>
21248
21249         * gtk/gtkfilesel.c (open_new_dir): Use the "system codepage"
21250         version of the directory name (not the UTF-8 one) when building
21251         the path name to stat().
21252
21253 2000-08-03  Elliot Lee  <sopwith@redhat.com>
21254
21255         * gdk/gdkpango.c (gdk_draw_layout_line): Don't shape runs with a
21256         PANGO_ATTR_SHAPE set.
21257
21258 Thu Aug  3 09:17:06 2000  Owen Taylor  <otaylor@redhat.com>
21259
21260         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Applied patch from
21261         Peter Osterlund to simplify the code while keeping the
21262         functionality the same.
21263
21264 Wed Aug  2 14:57:38 2000  Owen Taylor  <otaylor@redhat.com>
21265
21266         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Move
21267         is_viewable() test further inside the function, since removing the 
21268         window from the redraw list without clearing ->update_area
21269         was also very broken.
21270
21271 2000-08-02  Tor Lillqvist  <tml@iki.fi>
21272
21273         * configure.in: Check for <unistd.h>.
21274
21275 2000-08-01  Martin Baulig  <baulig@suse.de>
21276
21277         * gtk/gtkmain.c (gtk_init_check): Use g_message() and not g_warning()
21278         to display the message that this is a development version of GTK+.
21279
21280 Mon Jul 31 18:37:36 2000  Owen Taylor  <otaylor@redhat.com>
21281
21282         * gtk/gtkentry.c (entry_adjust_scroll): Fix problem where computation
21283         was depending on widget->allocation instead of the width of text_area,
21284         which was incorrect for subclasses like GtkSpinButton.
21285
21286         * gdk/gdkpango.c (gdk_draw_layout): Fix a couple of typos
21287         with width == 1 tests that should be width == -1.
21288
21289 Mon Jul 31 16:45:48 2000  Owen Taylor  <otaylor@redhat.com>
21290
21291         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Replace broken, 
21292         (broken, Elliot, every single window blank on X) custom code with call
21293         to gdk_window_is_viewable() which a) prevents code duplicate and
21294         b) works. 
21295
21296 2000-07-31  Elliot Lee  <sopwith@redhat.com>
21297
21298         * gtk/gtkcolorsel.c: We really do need to include gdkfb.h in order
21299         to get the GDK_PARENT_ROOT() macro to work.
21300         * gtk/gtkmarshal.list: Add NONE:STRING,POINTER
21301         * gdk/gdkwindow.c: Don't send expose events, or invalidate pieces
21302         of, windows that aren't shown.
21303         * gdk/linux-fb: Redraw-when-menu-hidden solved, plus a bunch of
21304         pointer grab stuff.
21305
21306 Mon Jul 31 13:53:16 BST 2000  Tony Gale <gale@gtk.org>
21307
21308         * docs/gtkfaq.sgml docs/gtk-faq.sgml:
21309           s/gtk_main_iteration/g_main_iteration/
21310
21311           Did this already in change:
21312                 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
21313           don't know how it got reverted.
21314
21315 2000-07-31  Stanislav Brabec  <utx@penguin.cz>
21316
21317         * gdk/gdk.c: #ifdef G_ENABLE_DEBUG around gdk_arg_debug_cb and
21318         gdk_arg_no_debug_cb to fix compilation problem with --disable-debug.
21319
21320         * gdk/Makefile.am: Link gdk against actually compiled gdk_pixbuf-1.3,
21321         not gdk_pixbuf.
21322
21323 2000-07-30  Pablo Saratxaga <pablo@mandrakesoft.com>
21324
21325         * configure.in,po/{sp,sr}.po: Added Serbian files
21326
21327 2000-07-30  Tor Lillqvist  <tml@iki.fi>
21328
21329         * gdk/Makefile.am: Add makefile.mingw.in to EXTRA_DIST.
21330
21331         * gdk/win32/gdkevents-win32.c (gdk_events_init, gdk_events_queue):
21332         Remove the g_pipe_readable_msg stuff. Not needed with new GLib
21333         GIOChannel implementation.
21334
21335         * gdk/win32/gdkinput.c
21336         * gdk/win32/gdkpango-win32.c: Update license name here, too.
21337
21338         * gdk/win32/gdkwin32id.c (gdk_win32_handle_table_lookup): Fix
21339         definition to match prototype.
21340
21341         * gtk/makefile.mingw.in: Add libiconv CFLAGS and LIBS.
21342
21343 2000-07-27  Elliot Lee  <sopwith@redhat.com>
21344
21345         * gtk/gdk-pixbuf-loader.[ch]: Add gdk_pixbuf_loader_new_with_type
21346         function, to allow handling image formats that cannot be detected
21347         by looking at content alone.
21348
21349 Thu Jul 27 13:13:21 BST 2000  Tony Gale <gale@gtk.org>
21350
21351         * docs/tutorial/*.gif *.jpg *.eps
21352           Update these to the same look-n-feel.
21353           Why does including images in DocBook suck so badly?
21354
21355 Thu Jul 27 05:06:29 2000  Tim Janik  <timj@gtk.org>
21356
21357         * gtk/gtktable.c: applied patch from Phil Thompson
21358         <phil@river-bank.demon.co.uk> that enables space settings for
21359         the last row/columns as well.
21360
21361 Wed Jul 26 12:59:31 2000  Tim Janik  <timj@gtk.org>
21362
21363         * *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
21364         updates the license headers to the GNU Lesser General Public License,
21365         as well as updating the copyright year to 2000.
21366
21367 2000-07-26  Robert Brady  <rwb197@zepler.org>
21368
21369         * configure.in: Cause GETTEXT_PACKAGE to be consistent in config.h
21370           and po/Makefile, was installing and looking for them under gtk20
21371           and gtk2 respectively.
21372
21373 2000-07-25  Havoc Pennington  <hp@redhat.com>
21374
21375         * gtk/testtext.c: Comment out some stuff that depends on the rest
21376         of my patches.
21377
21378 2000-07-25  Havoc Pennington  <hp@redhat.com>
21379
21380         * gtk/gtkmarshal.list: Add NONE:POINTER,POINTER,INT for the text
21381         buffer
21382
21383 2000-07-25  Havoc Pennington  <hp@redhat.com>
21384
21385         * gtk/testtext.c, gtk/testtextbuffer.c: update to reflect text
21386         widget changes.
21387
21388         * gtk/gtktextview.h: To be consistent with usage of "line"
21389         throughout the API to mean "newline-terminated thingy", change
21390         MOVEMENT_LINE to be MOVEMENT_WRAPPED_LINE, and MOVEMENT_PARAGRAPH
21391         to MOVEMENT_LINE.
21392
21393         (GtkTextView): Add flags for default editability, and whether to
21394         show the cursor. Add functions to get/set that. Add 
21395
21396         (gtk_text_view_get_iter_location): new function
21397
21398         * gtk/gtktexttypes.h: Move GtkTextLine typedef from here to
21399         gtktextlayout.h
21400         (g_convert): Add g_convert temporarily, will go in glib in a bit
21401         
21402         * gtk/gtktexttagtable.h: include gtktexttag.h, and define
21403         GtkTextTagTableForeach instead of brokenly using GHFunc.
21404         Change gtk_text_tag_table_foreach() so it doesn't use GHFunc.
21405
21406         * gtk/gtktexttagprivate.h: Remove GtkTextStyleValues from here,
21407         moved to public header.
21408
21409         * gtk/gtktexttag.h: Rename the "elide" attribute of tags to
21410         "invisible", since "elide" was a bad name.
21411         (gtk_text_tag_get_priority): Added
21412
21413         (GtkTextStyleValues): put this in public header, along with
21414         functions to use it.
21415
21416         * gtk/gtktextmarkprivate.h: Include more headers, since we no
21417         longer include gtktextbtree.h.
21418
21419         * gtk/gtktextmark.h: Add gtk_text_mark_ref, gtk_text_mark_unref,
21420         gtk_text_mark_deleted
21421
21422         * gtk/gtktextlayout.h: Don't include the "really private" headers,
21423         only buffer/iter. Forward declare GtkTextLIne and GtkTextLineData
21424         to make this possible. Now we only need to install
21425         gtktextlayout.h, not gtktextbtree.h and gtktext*private.h.
21426         (However the Makefile.am isn't changed yet because of the
21427         logistics of merging gtk-hp-patches piecemeal)
21428
21429         * gtk/gtktextiterprivate.h: include btree header, so it compiles;
21430         rename gtk_text_iter_get_line to gtk_text_iter_get_text_line since
21431         gtk_text_iter_get_line is now used in the public API for a
21432         different purpose.
21433
21434         * gtk/gtktextiter.h: Clean up function names to be more
21435         consistent. Always call char offset "offset" and byte index
21436         "index". A "line" is always a line number. 
21437
21438         (gtk_text_iter_is_last): new function, more efficient than 
21439         the existing way to check
21440         (gtk_text_iter_is_first): new function, also more efficient
21441
21442         (gtk_text_iter_up_lines, gtk_text_iter_down_lines): Remove these
21443
21444         (gtk_text_iter_next_char, gtk_text_iter_prev_char): Renamed from 
21445         gtk_text_iter_forward_char, etc.
21446
21447         (gtk_text_iter_forward_to_tag_toggle): Renamed from
21448         forward_find_tag_toggle, since this isn't a linear search
21449
21450         (GtkTextCharPredicate): rename from GtkTextViewCharPredicate
21451
21452         (gtk_text_iter_forward_search, gtk_text_iter_backward_search): 
21453         New functions, search for a buffer substring.
21454
21455         * gtk/gtktextbuffer.h: Add fields to store whether a paste is
21456         interactive and default editable (since we need to store that info
21457         until we receive the selection data).
21458
21459         Remove all the _at_char and at_line etc. versions of functions;
21460         only have iterator versions.
21461
21462         Add _interactive() versions of functions, that consider the
21463         editability of text. (FIXME add interactive flag to the 
21464         insert/delete signals per Darin's suggestion)
21465
21466         (gtk_text_buffer_get_tag_table): new function, demand-creates the
21467         tag table if necessary
21468
21469         Remove declaration of gtk_text_buffer_get_iter_from_string
21470
21471         (_gtk_text_buffer_get_btree): private/internal function, added.
21472         
21473
21474         * gtk/gtktextbtree.h: Remove forward decl of GtkTextLineData.
21475         (gtk_text_line_is_last): new function
21476
21477 2000-07-25  Havoc Pennington  <hp@redhat.com>
21478
21479         * gtk/gtkprogressbar.h: Implement new sane, 5-function API for
21480         using GtkProgressBar. See Changes-2.0.txt for details.
21481
21482         * gtk/gtkprogressbar.c: Add object arguments "fraction" and
21483         "pulse_step" which are the equivalent of
21484         gtk_progress_bar_set_pulse_step and gtk_progress_bar_set_fraction.
21485         Implement new API.
21486         
21487         * gtk/gtkprogress.h (struct _GtkProgress): Add a field
21488         (use_text_format) to mark whether text set on the progress bar is
21489         a format string. Deprecate entire GtkProgress interface.
21490
21491         * gtk/gtkprogress.c (gtk_progress_init): init use_text_format to TRUE
21492         (gtk_progress_build_string): make this a no-op if use_text_format
21493         is FALSE
21494
21495         * docs/Changes-2.0.txt: Describe progress bar changes.
21496
21497 2000-07-25  Tor Lillqvist  <tml@iki.fi>
21498
21499         * Makefile.am: Include the build directory.
21500
21501         * configure.in: Generate build/Makefile, build/win32/Makefile,
21502         gdk/, gdk/win32/, and gtk/makefile.mingw.
21503
21504         * config.h.win32: Add USE_GMODULE and USE_MMX for gdk-pixbuf.
21505         Add GETTEXT_PACKAGE.
21506         
21507         * gdk/gdk.def
21508         * gtk/gtk.def: Updates.
21509
21510         * gdk/gdkfont.h
21511         * gdk/gdkpixmap.h: Remove temporary Win32-only functions, we don't
21512         need them any longer.
21513
21514         * gdk/gdkinput.h: Mark gdk_core_pointer for export/import.
21515
21516         * gdk/makefile.mingw.in: Define GDK_COMPILATION. Link with
21517         PANGOWIN32_LIBS and gdk_pixbuf.
21518
21519         * gdk/win32: Compiles, but no doubt doesn't work at all.
21520
21521         * gdk/win32/makefile.mingw.in: Define GDK_COMPILATION. 
21522
21523         * gdk/win32/gdkinput.c: New file, temporarily.
21524         
21525         * gdk/win32/gdkinput-win32.h: New file
21526
21527         * gdk/win32/gdkinputprivate.h: Remove.
21528
21529         * gdk/win32/gdkpango-win32.c: New file.
21530
21531         * gtk/makefile.mingw.in: New file
21532
21533         * gtk/makefile.cygwin: Removed
21534         
21535         * gtk/Makefile.am: Update accordingly.
21536
21537         * gtk/gtkrc.[ch] (gtk_win32_get_installation_directory): Renamed and
21538         made externally visible.
21539
21540         * gtk/gtkmain.c: Use it.
21541         
21542         * gtk/gtktextdisplay.c: No need to include pangox.h, pango.h
21543         is enough.
21544
21545         * gtk/gtktypeutils.c: Mark glib_debug_objects for import.
21546
21547 2000-07-24 Elliot Lee <sopwith@redhat.com>
21548         * gdk/gdkprivate.h: Remove gdk_*_lookup() defines, since they are defined by the
21549         individual backends already.
21550         * gdk/gdkregion-generic.h, gdk/gdktypes.h: Put gdkregionbox & gdksegment back together
21551         again. Yes, there really is a good reason for this, if you are using the gdkregion
21552         internals, and if you're not, why do you care?
21553         * gdk/gdkwindow.c: Fix inverted condition
21554         * gdk/linux-fb: Compiles (for me - it will not work elsewhere most likely).
21555         * gtk/gtkcolorsel.c, gtk/gtkwindow.c: Add include for linux-fb
21556         * gtk/gtkrange.c: Redraw trough when moving.
21557         * gtk/gtktypeutils.c: Fix warning by adding const cast.
21558         * modules/linux-fb/basic.c: Fix unknown glyph retrieval.
21559
21560 2000-07-23  Tor Lillqvist  <tml@iki.fi>
21561
21562         * configure.in: Check for mkstemp and sigsetjmp. Output
21563         gdk-pixbuf/makefile.mingw and gdk-pixbuf/pixops/makefile.mingw.
21564
21565         More work on GDK for Win32. Still in an intermediate state.
21566
21567         * gdk/makefile.cygwin
21568         * gdk/win32/makefile.cygwin: Removed.
21569         
21570         * gdk/makefile.mingw.in
21571         * gdk/win32/makefile.mingw.in: New files.
21572
21573         * gdk/Makefile.am
21574         * gdk/win32/Makefile.am: Generate and distribute them.
21575
21576         * gdk/win32/gdkwindow-win32.h
21577         * gdk/win32/gdkdrawable-win32.h
21578         * gdk/win32/gdkpixmap-win32.h: New files.
21579
21580         * gdk/win32/gdkcolor-win32.c
21581         * gdk/win32/gdkcursor-win32.c
21582         * gdk/win32/gdkdrawable-win32.c
21583         * gdk/win32/gdkgc-win32.c
21584         * gdk/win32/gdkimage-win32.c
21585         * gdk/win32/gdkprivate-win32.h
21586         * gdk/win32/gdkwin32.h: Update data structures. Cosmetics:
21587         Rename fields and variables called xcursor, xid, etc (these names
21588         were leftovers from the X11 backend) to hcursor, hwnd, hbitmap etc.
21589
21590 Sat Jul 22 17:41:26 2000  Owen Taylor  <otaylor@redhat.com>
21591
21592         * gtk/gtkentry.[ch]: Fix some problems with vertical
21593         alignment.
21594
21595         * gtk/gtkentry.c (gtk_entry_find_position): Fix 
21596         char/byte confusion.
21597
21598 Sat Jul 22 11:16:05 2000  Owen Taylor  <otaylor@redhat.com>
21599
21600         * gtk/gtktextview.c (changed_handler): Fix bug where
21601         redraw wasn't being done properly when height of
21602         dirty region changed.
21603
21604         * demos/Makefile.am: Remove various references to
21605         -lgmodule
21606
21607 Fri Jul 21 15:28:13 2000  Owen Taylor  <otaylor@redhat.com>
21608
21609         * gtk/gtktextlayout.[ch], gtk/gtktextdisplay.c: Use new
21610         PangoAttrShape to reserve space for pixmaps, add 
21611         GSList *pixmaps to GtkTextLineDisplay, draw the pixmaps
21612         in the display functions.
21613         
21614         * gtk/testgtk.c (create_layout): Set some more exotic
21615         scrolled window options
21616
21617         * gtk/gtkscrolledwindow.[ch] (gtk_scrolled_window_set_shadow_type):
21618         Add function to set the shadow type of a window, to allow
21619         putting a shadow around widgets such as GtkLayout or GnomeCanvas
21620         which don't draw their own frame.
21621
21622 Fri Jul 21 16:34:42 BST 2000  Tony Gale <gale@gtk.org>
21623
21624         * docs/tutorial/package-db-tutorial.sh: New file for
21625           packaging DocBook format tutorial
21626
21627 Fri Jul 21 14:23:51 BST 2000  Tony Gale <gale@gtk.org>
21628
21629         * docs/tutorial/gtk-tut.sgml: Minor updates
21630
21631         * docs/tutorial/*.jpg *.eps: Screenshots for tutorial
21632
21633 2000-07-19  Tor Lillqvist  <tml@iki.fi>
21634
21635         * gtk/gtksignal.c: Fix C++ comment.
21636
21637         * gtk/gtkimmulticontext.c
21638         * gtk/gtktextbtree.c: Remove gccisms: Don't use __FUNCTION__,
21639         don't return value from void functions.
21640
21641         * gtk/gtk.def: Add gtk_rc_style_unref.
21642
21643 2000-07-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
21644
21645         * gdk-pixbuf/gdk-pixbuf.h, gtk/gtkhsv.h, gtk/gtktextbtree.h,
21646         gtk/gtktextbuffer.h, gtk/gtktextchild.h, gtk/gtktextdisplay.h,
21647         gtk/gtktextiter.h, gtk/gtktextiterprivate.h, gtk/gtktextlayout.h,
21648         gtk/gtktextmarkprivate.h, gtk/gtktextsegment.h, gtk/gtktexttag.h,
21649         gtk/gtktexttagtable.h, gtk/gtktexttypes.h, gtk/gtktextview.h,
21650         gtk/gtktypeutils.h: Include files outside of the extern "C"
21651         block. Makes some C++ compiler happy. Reported by Denis Vakatov
21652         <vakatov@peony.nlm.nih.gov>.
21653
21654 Wed Jul 19 14:07:57 BST 2000  Tony Gale <gale@gtk.org>
21655
21656         * docs/tutorial/gtk-tut.sgml: Yet more clean ups.
21657           Completes first pass. Hurrah!
21658
21659 Tue Jul 18 17:17:55 BST 2000  Tony Gale <gale@gtk.org>
21660
21661         * docs/tutorial/gtk-tut.sgml: More clean ups.
21662
21663 Mon Jul 17 18:52:38 2000  Owen Taylor  <otaylor@redhat.com>
21664
21665         * gtk/gtkentry.c (gtk_entry_draw_text): Restore code to
21666         paint the background of the text area which was accidentally
21667         removed at some point.
21668
21669         * gtk/gtkrc.[ch] gtk/gtkstyle.[ch] gtk/gtkthemes.[ch]: 
21670           
21671          - Move most of the functionality from the theme vtable
21672            into GtkRcStyleClass and GtkStyleClass. The moved
21673            vtable functions were changed a bit in the move to
21674            work better in their new home.
21675
21676          - Get rid of the engine and engine_data fields from
21677            GtkRcStyle and GtkStyle; instead the theme
21678            engine derives theme-specific subclasses of GtkRcStyle
21679            and GtkStyle
21680
21681          - Add extra dlsym() found entry point to themes,
21682            theme_create_rc_style().
21683
21684         * gtk/gtkstyle.c: Copy xthickness, ythickness fields
21685         in gtk_style_real_copy.
21686
21687         * gtk/themes.[ch]: add a function gtk_theme_engine_register_type()
21688         to register a type associated with an engine. (The engine
21689         won't be unloaded as there is an instance of the type.)
21690
21691
21692 Mon Jul 17 18:19:06 BST 2000  Tony Gale <gale@gtk.org>
21693
21694         * docs/tutorial/gtk-tut.sgml: Clean ups.
21695
21696 Mon Jul 17 13:59:29 BST 2000  Tony Gale <gale@gtk.org>
21697
21698         * docs/tutorial/gtk-tut.sgml: Initial DocBook version. Lots
21699           of cleaning up to do.
21700
21701 2000-07-15  Tor Lillqvist  <tml@iki.fi>
21702
21703         * gdk/testgdk.c: New file, quick hack to test backends for
21704         pixel-by-pixel correctness of the most simple graphic operations.
21705
21706 Fri Jul 14 20:30:25 2000  Owen Taylor  <otaylor@redhat.com>
21707
21708         * Really release 1.3.1
21709         
21710         * gtk-config-2.0.in gtk-2.0.m4: Fix up to correspond to new
21711         include structure.
21712
21713 Fri Jul 14 18:40:39 2000  Owen Taylor  <otaylor@redhat.com>
21714
21715         * Released 1.3.1
21716
21717 Fri Jul 14 16:21:26 2000  Owen Taylor  <otaylor@redhat.com>
21718
21719         * gtk/gtktextlayout.c: use FALSE for size_only most
21720         of the time when calling gtk_text_layout_get_line_display()
21721         to avoid causing double reshapes when a redraw follows
21722         immediately after.
21723
21724 Tue Jul 11 11:13:40 2000  Owen Taylor  <otaylor@redhat.com>
21725
21726         * gtk/gtkrange.c (gtk_range_default_[hv]slider_update): Invalidate
21727         appropriate region and gdk_window_process_updates() so trough
21728         updating doesn't lag behind the window being scrolled.
21729
21730         * gdk/gdkgc.c: Make parent_class pointer static.
21731          
21732 Sun Jul  9 21:31:23 2000  Owen Taylor  <otaylor@redhat.com>
21733
21734         * gdk/gdk-pixbuf.c gtk/gdk-pixbuf-loader.c gtk/gtktextview.c:
21735         include <string.h>.
21736          
21737         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Fix
21738         cut-and-paste error in computing memory offset for 4 channels.
21739
21740 Fri Jul 14 14:05:02 2000  Owen Taylor  <otaylor@redhat.com>
21741
21742         * gtk/gtkrc.c (gtk_rc_parse_pixmap_path_string): Remove
21743         gtk_rc_append_default_pixmap_path(), since it wasn't
21744         adding an interesting path and we don't have a meaningful
21745         default for this value.
21746
21747 Fri Jul 14 12:22:49 2000  Owen Taylor  <otaylor@redhat.com>
21748
21749         * configure.in Makefile.am gtk-config.m4 gtk.m4: Move
21750         gtk-config to gtk-config-2.0 move gtk_.m4 to
21751         gtk-2.0.m4
21752
21753         * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am
21754         gdk/Makefile.am demos/Makefile.am: Change 
21755         library names to libgtk-1.3.la, etc, so that we
21756         can distinguish gtk-1.2 and gtk-2.0 on the linkline.
21757
21758         * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am
21759         gdk/Makefile.am gdk/x11/Makfile.am
21760         Move include files into /usr/include/gtk-2.0, 
21761         /usr/lib/gtk-2.0/include/
21762          
21763         * autogen.sh acconfig.h configure.in gtk/gtkmain.c
21764         gtk/gtkintl.h: Change package for gettext from 
21765         gtk+ to gtk20. Put hack in autogen.sh to modify
21766         po/Makefile.in.in after gettextize to make this
21767         possible.
21768
21769         * gtk+.spec: Some updates, not tested.
21770
21771         * gdk-pixbuf/Makefile.am: Move loaders into
21772         $(libdir)/gtk-2.0/$(GTK_VERSION)/loaders.
21773
21774         * gtk/Makefile.am gtk/gtkrc.c: Move RC file locations
21775         $(sysconfdir)/gtk-2.0 ~/.gtkrc-2.0; theme subdir
21776         to THEMENAME/gtk-2.0/. Move engine directory  to
21777         $(libdir)/gtk-2.0/$(GTK_VERSION)/engines.
21778         
21779 2000-07-12  Tor Lillqvist  <tml@iki.fi>
21780
21781         Win32 changes, still doesn't build though.
21782
21783         * gdk/makefile.cygwin
21784         * gdk/win32/makefile.cygwin
21785         * gtk/makefile.cygwin: Updates.
21786
21787         * gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Use the same
21788         default values for fg and bg pixel as X11 does (0 and 1), not
21789         black and white. Use PS_ENDCAP_FLAT and PS_JOIN_MITER by default.
21790         Use 0 for pen width by default (treated as 1 anyway later, but for
21791         apps that might check the value in the GdkGC).
21792         (gdk_win32_hdc_get, gdk_win32_hdc_release): New functions, public
21793         interface to gdk_gc_predraw and _postdraw.
21794
21795         * gdk/win32/gdkwin32.h
21796         * gdk/gdk.def: Add gdk_win32_hdc_{get,release}.
21797
21798         * gdk/win32/gdkcolor-win32.c (gdk_colormap_alloc1): Remove
21799         extraneous semicolon.
21800
21801         * gdk/win32/gdkdrawable-win32.c: Check also for pen_width == 0.
21802
21803         * gdk/win32/gdkimage-win32.c (gdk_image_new): Use the visual's depth,
21804         not the Win32 bitspixel value.
21805
21806         * gdk/win32/gdkcc-win32.c:
21807         * gdk/win32/gdkcolor-win32.c 
21808         * gdk/win32/gdkprivate-win32.h
21809         * gdk/win32/gdkwin32.h: Changes to make compilable, with new
21810         GDK object structure.
21811
21812 Tue Jul 11 20:59:35 2000  Tim Janik  <timj@gtk.org>
21813
21814         * docs/tutorial/gtk_tut_12.es.sgml (name): 
21815         * docs/tutorial/gtk_tut_it.sgml (name): 
21816         * docs/tutorial/gtk_tut_fr.sgml (name): 
21817         * docs/tutorial/gtk_tut.sgml (name): scratched notion of completely
21818         outdated email adress: s/timj@psynet.net/timj@gtk.org/.
21819
21820 Tue Jul 11 13:10:57 BST 2000  Tony Gale <gale@gtk.org>
21821
21822         * docs/faq/gtk-faq.sgml: Cleanup indenting and various
21823           small changes.
21824
21825 Tue Jul 11 08:04:58 2000  Tim Janik  <timj@gtk.org>
21826
21827         * gtk/gtktree.c (gtk_real_tree_select_child): eek, i've never seen
21828         a bug here, never been here and never fixed anything ;(
21829         (don't segfault if tree->root_tree is NULL, which happens prior
21830         to widget realization, but puke instead).
21831
21832 Tue Jul 11 06:38:42 2000  Tim Janik  <timj@gtk.org>
21833
21834         * gtk/gtkrc.h: add xthickness and ythickness to GtkRcStyle and
21835         add the necessary tokens.
21836
21837         * gtk/gtkrc.c (gtk_rc_style_init): properly initiality the rc style.
21838         (gtk_rc_style_to_style): copy thicknesses.
21839         (gtk_rc_init_style): apply thicknesses.
21840         (gtk_rc_parse_style): parse xthickness and ythickness.
21841
21842         * gdk/x11/gdkdnd-x11.c: silence compiler in switch() statements.
21843
21844         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): 
21845         (gdk_window_new): 
21846         (_gdk_windowing_window_init): 
21847         * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_foreign_new): 
21848         (gdk_pixmap_create_from_data): 
21849         (gdk_bitmap_create_from_data): 
21850         (gdk_pixmap_new): 
21851         * gdk/x11/gdkimage-x11.c (gdk_image_get): 
21852         (gdk_image_new): 
21853         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): 
21854         * gdk/x11/gdkdnd-x11.c (gdk_drag_context_new): 
21855         * gdk/x11/gdkcolor-x11.c (gdkx_colormap_get):
21856         (gdk_colormap_get_system): 
21857         (gdk_colormap_new): 
21858         * gdk/gdkwindow.c (gdk_window_init): 
21859         * gtk/gtkstyle.c (gtk_style_new):
21860         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done):
21861         * gdk/gdkpixmap.c (gdk_pixmap_init): 
21862         * gtk/gtkrc.c (gtk_rc_style_new):
21863         use g_object_new() instead of g_type_create_instance() which
21864         is a private function for fundamental type implementations.
21865
21866 Thu Jul  6 16:12:14 2000  Owen Taylor  <otaylor@redhat.com>
21867
21868         * configure.in: Add check for db2html
21869
21870 Thu Jul  6 14:53:05 2000  Owen Taylor  <otaylor@redhat.com>
21871
21872         * gtk/gtktypeutils.c (gtk_type_init): Add a temporary 
21873         hack to set glib_debug_objects based on gtk_debug_flags.
21874
21875 Thu Jul  6 14:12:13 2000  Owen Taylor  <otaylor@redhat.com>
21876
21877         * INSTALL.in: Update the Prerequisites section.
21878
21879         * Makefile.am demos/Makefile.am docs/Makefile.am
21880         docs/tutorial/Makefile.am gdk/x11/Makefile.am
21881         gdk/linux-fb/Makefile.am: Dist fixes
21882
21883 Thu Jul  6 12:26:03 2000  Owen Taylor  <otaylor@redhat.com>
21884
21885         * NEWS: 10,000 foot view of 1.3.1 changes.
21886
21887 Thu Jul  6 11:54:03 2000  Owen Taylor  <otaylor@redhat.com>
21888
21889         * gdk/gdk.h gdk/gdktypes.h gdk/linux-fb/gdkmain-fb.c
21890         gdk/nanox/gdkmain-nanox.c gdk/win32/gdkevents-win32.c
21891         gdk/win32/gdkinput-win32.c gdk/win32/gdkwin32.h
21892         gdk/x11/gdkmain-x11.c: 
21893
21894         Patch from George Lebl to add a GdkGrabStatus enumeration to use
21895         as a return value of gdk_*_grab(). Previously, we just
21896         returned the X11 values directly.
21897
21898 Thu Jul  6 11:27:44 2000  Owen Taylor  <otaylor@redhat.com>
21899
21900         * gdk/x11/Makefile.am: Patch from George Lebl to 
21901         install all the headers in the right place.
21902
21903 Tue Jul  4 13:13:01 BST 2000  Tony Gale <gale@gtk.org>
21904
21905         * docs/faq/gtk-faq.sgml: Add remaining sections. Completes
21906           initial conversion to DocBook.
21907
21908 2000-07-04  Tor Lillqvist  <tml@iki.fi>
21909
21910         * README.win32: Improve a bit.
21911
21912         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle also
21913         WM_SYSCHAR, and other changes to get handling of Alt+nnn or
21914         Alt+0nnn on the numpad (used to enter characters by numeric code
21915         from current DOS or ANSI codepage) working correctly, as in other
21916         Windows apps.
21917
21918         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Use
21919         same argument validity tests as in X11 version.
21920         (_gdk_cursor_destroy): Use DestroyCursor, not DestroyIcon.
21921
21922         * gdk/win32/gdkwin32.h: Add also WM_MOUSEWHEEL and CopyCursor
21923         definitions in case missing from headers.
21924
21925         * gdk/win32/gdkwindow-win32.c (gdk_win32_window_destroy): Also
21926         destroy the window-specific cursor.
21927         (RegisterGdkClass): Use the global gdk_ProgInstance instead of
21928         calling GetModuleHandle(NULL).
21929         (gdk_window_set_cursor): Reworked to always copy the passed cursor
21930         with CopyCursor before setting it as the window-specific
21931         cursor. It is OK for the caller to destroy the GdkCursor (and thus
21932         also its Windows cursor) after calling this function. Destroy any
21933         previous window-specific cursor.
21934
21935 Mon Jul  3 17:54:49 2000  Owen Taylor  <otaylor@redhat.com>
21936
21937         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): 
21938         font charset is iso8859-1, not iso-8859-1.
21939
21940 Mon Jul  3 17:08:14 2000  Owen Taylor  <otaylor@redhat.com>
21941
21942         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale):
21943         Use g_get_charset() instead of g_get_codeset().
21944
21945         * gtk/gtkframe.[ch] gtkframe.h gtk/gtktextmark.h: 
21946         Comment out some strdup'ing functions to keep timj
21947         happy until we finish fighting this out.
21948
21949 Mon Jul  3 14:24:16 2000  Owen Taylor  <otaylor@redhat.com>
21950
21951         * gtk/gtkwidget.c (gtk_widget_draw): Ignore calls with
21952         <= width or height.
21953
21954         * gtk/gtktable.c (gtk_table_attach): Fix missed merge
21955         from 1.2 for parent/child states.
21956
21957         * gdk/gdkgc.c (gdk_gc_set_rgb_fg/bg_color): Fix a couple
21958         of typos.
21959
21960         * gdk/gdkevents.[ch]: Remove press/xtilt/ytilt fields of
21961         event structures, replace with a generic axes field. Replace 
21962         deviceid/sourec with GdkDevice *device.
21963
21964         * gdk/gdkevents.[ch] (gdk_event_get_axis): Add function
21965         to extract particular axis use value from event. (Also
21966         can be used for normal X/Y.)
21967
21968         * gdk/gdkinput.h gdk/x11/gdkinput*: Major revision;
21969         allow for arbitrary number of axes, namespace everything
21970         as gdk_device_*. Replace guint32 deviceid with GdkDevice *
21971         everywhere.
21972
21973         * gdk/x11/{gdkmain-x11.c,gdkevent-x11.c,gdkinput*}: 
21974         Get rid of the gdk_input_vtable setup if favor of simply
21975         defining the functions in gdkinput-none/gxi/xfree.c in
21976         a similar fashion to the way that the port structure is 
21977         done.
21978
21979         * gtk/gtkdnd.c: Fix fields of synthesized button press event
21980         for new event structures. 
21981
21982         * gtk/gtkinputdialog.c gtk/testinput.c: Revise to match
21983         new device interfaces.
21984
21985 Sun Jul  2 18:19:50 2000  Owen Taylor  <otaylor@redhat.com>
21986
21987         * gtk/gtkwidget.[ch] (gtk_widget_create_pango_layout): Add a 'text' argument to
21988         set the initial text.
21989
21990         * gtk/gtkaccellabel.c gtk/gtkcalendar.c gtk/gtkclist.c
21991         gtk/gtkentry.c gtk/gtkhruler.c gtk/gtkhscale.c gtk/gtklabel.c
21992         gtk/gtkprogressbar.c gtk/gtkscale.c gtk/gtkvruler.c
21993         gtk/gtkvscale.c: Adapt to new argument of create_pango_layout().
21994
21995         * gtk/gtkclist.c (_gtk_clist_create_cell_layout): Use new
21996         pango_layout_set_font_description to simplify.
21997
21998 Sun Jul  2 17:43:41 2000  Owen Taylor  <otaylor@redhat.com>
21999
22000         * gtk/gtkclist.c (_gtk_clist_create_cell_layout): Use new
22001         pango_layout_set_font_description to simplify.
22002
22003 Sun Jul  2 17:06:40 2000  Owen Taylor  <otaylor@redhat.com>
22004
22005         * gtk/gtkcalendar.c gtk/gtkclist.c gtk/gtkctree.c gtk/gtkhscale.c
22006         gtk/gtkprogressbar.c gtk/gtkscale.c gtk/gtkvscale.c gtk/gtkaccellabel.c: Use
22007         pango_layout_get_pixel_extents() to remove a large number of '/ PANGO_SCALE'.
22008
22009         * gtk/gtk[hv]ruler.c gtk/gtklabel.c: replace some / PANGO_SCALE with
22010         PANGO_PIXELS() macro.
22011
22012 Sun Jul  2 15:24:41 2000  Owen Taylor  <otaylor@redhat.com>
22013
22014         * gtk/gtkwidget.[ch] (gtk_widget_get_pango_context): Add new function
22015         that returns a PangoContext owned by the widget and updated to
22016         match future changes in the widget. Also, make 
22017         gtk_widget_create_pango_layout() use this context. If we ever
22018         add a ::changed signal to PangoContext, this will make things
22019         much more convenient. 
22020
22021         * gtk/gtkentry.c gtk/gtklabel.c: Call pango_layout_context_changed()
22022         in the appropriate places instead of destroying the layouts and
22023         creating new ones.
22024
22025         * gtk/gtkfontsel.[ch] gtk/gtkclist.c: Use gtk_widget_get_pango_context()
22026         in a few strategic places.
22027
22028 Sun Jul  2 14:37:58 2000  Owen Taylor  <otaylor@redhat.com>
22029
22030         * gtk/gtkoptionmenu.c (gtk_option_menu_size_request): Call 
22031         gtk_widget_size_request() on reparented child, if one. Otherwise,
22032         queue_resize() on the child never results in it getting size-requested
22033         at all.
22034
22035         * gtk/testgtk.c (build_option_menu): Remove silly radio-menu-items
22036         in option menus, so that (with luck) people won't copy it into
22037         their apps in the future.
22038
22039         * gtk/gtkoptionmenu.c: Connect ::size_request on the menu
22040         to gtk_option_menu_calc_size. This isn't perfect, but should fix
22041         a lot of problems with changing the size of the menu's menu
22042         items after adding it to the option menu.
22043
22044         * gtk/gtktexttag.c: Include gtkmain.h for gtk_get_default_language().
22045
22046         * gtk/gtkwidget.[ch]: Add a ::direction_changed that triggers when
22047         the text direction for a widget changes.
22048
22049         * gtk/gtk{entry.c,label.[ch],textview.[ch]} gtk/testgtk.c: Use
22050         ::direction_changed to get rid of various hacks.
22051
22052 Sun Jul  2 13:19:12 2000  Owen Taylor  <otaylor@redhat.com>
22053
22054         * docs/Changes-2.0.txt: Move Changes-1.4.txt to the appropriate
22055         name.
22056
22057 Sun Jul  2 13:06:26 2000  Owen Taylor  <otaylor@redhat.com>
22058
22059         * gdk/x11/gdkpixmap-x11.[ch] Changes-1.4.txt: Add a is_foreign
22060         flag to the structure. Do not call XFreePixmap on pixmaps created
22061         by gdk_pixmap_foreign_new().
22062
22063 Sun Jul  2 12:45:50 2000  Owen Taylor  <otaylor@redhat.com>
22064
22065         * gdk/gdkrgb.[ch]: Add gdk_rgb_find_color() to get a pixel
22066         value using GdkRGB functionality given GdkColormap and GdkColor.
22067         (name not final, waiting for inspiration.)
22068         
22069         * gdk/gdkgc.[ch] (gdk_gc_set_rgb_fg/bg_color): New functions to
22070         set the foreground/background of a GC using the GC's colormap
22071         and GdkRGB. (name not final, waiting for inspiration.)
22072
22073         * gdk/gdkcompat.h gdk/gdkrgb.c (gdk_rgb_get_colormap): Rename from 
22074         gdk_rgb_get_cmap(), put #define in gdkcompat.h.
22075
22076         * gtk/gtkwidget.[ch] gtkcompat.h: Make visuals for
22077         gtk_widget_get_visual(), gtk_widget_get_default_visual, etc,
22078         purely a function of the corresponding colormap. Make
22079         gtk_widget_set_visual(), etc, noop macros in gtkcompat.h.
22080
22081         * gdk/gdkpixmap.c gdk/x11/gdkpixmap-c11.c: Rewrite
22082         gdk_pixbuf_*create_from_xpm_* in terms of
22083         gdk_pixbuf_new_from_xpm_data(), move into platform independent
22084         code.
22085
22086         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Take
22087         advantage of the new draw_rgb_32_image_dithalign.
22088
22089         * gdk/gdkrgb.c (gdk_draw_rgb_32_image_dithalign): Added.
22090
22091         * gtk/gtkgc.c (gtk_gc_new): Set the appropriate colormap
22092         on each created GC.
22093
22094         * gdk/gdkgc.[ch]: Add gdk_gc_get/set_colormap.
22095
22096         * gdk/gdkgc.[ch]: Add a colormap field to the GdkGC structure
22097         which we initialize from the drawable when the GC is created,
22098         if the drawable has a colormap.
22099
22100         * gdk/x11/gdkgc-x11.c: include string.h for memset.
22101
22102         * gdk/x11/gdkinput-x11.c: include string.h for strlen, etc.
22103
22104         * gtk/gtklayout.[ch]: Remove unsed configure serial member.
22105
22106 Sat Jul  1 16:28:32 2000  Owen Taylor  <otaylor@redhat.com>
22107
22108         * gdk/x11/gdkevents-x11.c (gdk_event_translate): When
22109         actually returning expose events, make sure to set
22110         the count field properly.
22111
22112         * gdk/x11/gdkgc-x11.c (gdk_x11_gc_values_to_xvalues): Fix
22113         accidentally reintroced bug which always cleared
22114         the graphics_exposures value. 
22115
22116 Wed Jun 28 18:03:09 BST 2000  Tony Gale <gale@gtk.org>
22117
22118         * docs/faq/gtk-faq.sgml: Change DocBook layout slightly
22119
22120 Wed Jun 28 17:49:05 BST 2000  Tony Gale <gale@gtk.org>
22121
22122         * docs/faq/gtk-faq.sgml: Finish Section 6. Add Section 7.
22123
22124 Wed Jun 28 13:31:55 BST 2000  Tony Gale <gale@gtk.org>
22125
22126         * docs/faq/gtk-faq.sgml: Start of Section 6.
22127
22128 Mon Jun 26 19:37:04 2000  Owen Taylor  <otaylor@redhat.com>
22129
22130         * configure.in: Put 1.3.1 in warning message, not 1.3.0.
22131         
22132         (Fixes problem with drawing childless frames. Pointed out
22133         by and a first patch from Anders)
22134         
22135         * gtk/gtkframe.c (gtk_frame_compute_child_allocation): Always
22136         compute a child_allocation, even if we don't have a child.
22137
22138         * gtk/gtkaspectframe.c (gtk_aspect_frame_compute_child_allocation):
22139         Always chain to the parent's impl, even if we don't have a child.
22140
22141 Mon Jun 26 18:53:31 2000  Owen Taylor  <otaylor@redhat.com>
22142
22143         * gdk/gdkrgb.c: If possible, create only a single shm segment and
22144         use multiple parts of it instead of creating a bunch of separate
22145         segments, since the maximum number of segments per system is not
22146         large. (This might be worth backporting to GTK+-1.2.x if we make a
22147         new release )
22148
22149         * gdk/gdkrgb.c: Localize a bunch of variables into the GdkRgbInfo
22150         structure in preparation for per-colormap GdkRGB.
22151
22152         * gdk/x11/gdkimage-x11.c (gdk_image_new): Don't set gdk_use_xshm
22153         to False when we get EINVAL from shmget so that the caller of
22154         gdk_image_new can retry with a smaller segment size.
22155
22156 Mon Jun 26 13:01:16 BST 2000  Tony Gale <gale@gtk.org>
22157
22158         * docs/faq/gtk-faq.sgml: Add Sections 4 & 5.
22159
22160 Fri Jun 23 17:54:23 2000  Tim Janik  <timj@gtk.org>
22161
22162         * configure.in: make the current version number 1.3.1 (binary age 0,
22163         interface age 0).
22164         
22165         * gtkfeatures.h, gtkfeatures.h.in: dejavue, get rid of these *again*,
22166         gtkcompat.h is all we want.
22167
22168         * gtk/gtktypeutils.[hc]: define most of the primitive types in terms of
22169         GLib primitive types. fixed g_type_register_fundamental() argument
22170         ordering.
22171
22172         * gtk-config.in (lib_gtk): add -lgdk_pixbuf so third party code
22173         compiles.
22174
22175         * gdk-pixbuf-loader.[hc]: get rid of unistd.h include.
22176         object code cleanup, comment trigraph fixes, etc...
22177
22178 2000-06-23  Havoc Pennington  <hp@redhat.com>
22179
22180         * gtk/gtktextview.c (gtk_text_view_set_buffer): Use anonymous mark 
22181         instead of making up a bogus name for first_para_mark
22182
22183         * gtk/gtkstatusbar.h, gtk/gtkstatusbar.c: Allow 
22184         0 as a context ID
22185
22186 Thu Jun 22 17:43:51 BST 2000  Tony Gale <gale@gtk.org>
22187
22188         * docs/faq/gtk-faq.sgml: Change filename. Add Section 3.
22189
22190 2000-06-21  Havoc Pennington  <hp@pobox.com>
22191
22192         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): Fix bug where
22193         we didn't check window->bg_pixmap != GDK_NO_BG.
22194
22195         * gtk/gdk-pixbuf-loader.c: Change to reflect GObject-ification of
22196         gdk-pixbuf
22197
22198 Thu Jun 22 14:02:19 BST 2000  Tony Gale <gale@gtk.org>
22199
22200         * docs/faq/gtk-faq.sgm: Move file to here.
22201           TODO: Update Makfile.am 
22202
22203 Thu Jun 22 13:41:09 BST 2000  Tony Gale <gale@gtk.org>
22204
22205         * docs/gtk-faq.sgm: Add Section 2
22206
22207 Thu Jun 22 08:43:45 BST 2000  Tony Gale <gale@gtk.org>
22208
22209         * docs/gtk-faq.sgm: New file. Start of DocBook
22210           version of the FAQ.
22211
22212 Wed Jun 21 23:04:17 2000  Owen Taylor  <otaylor@redhat.com>
22213
22214         * configure.in (GDK_PIXBUF_MAJOR): Define version
22215         numbers for GDK_PIXBUF_*, as they get substituted
22216         into a header file. Need to consider versioning
22217         for gdk-pixbuf more carefully later.
22218
22219 2000-06-21  Raja R Harinath  <harinath@cs.umn.edu>
22220
22221         Work with srcdir != builddir.   
22222         * demos/testanimation.c: Don't include "gdk-pixbuf.h".  Use
22223         <gtk/gdk-pixbuf-loader.h>, not "gtk-pixbuf/gdk-pixbuf-loader.h".
22224         * demos/testpixbuf.c: Likewise.
22225         * demos/testpixbuf-scale.c: Don't include "gdk-pixbuf.h".
22226         * demos/testpixbuf-drawable.c: Don't include "gdk-pixbuf.h".  Use
22227         <gdk/x11/gdkx.h>.
22228         * demos/pixbuf-demo.c: Use <gtk/gtk.h> not "gtk.h".  Don't include
22229         "gdk-pixbuf.h".
22230         * demos/Makefile.am (INCLUDES): Remove unneeded directories.
22231
22232 Wed Jun 21 19:45:02 2000  Owen Taylor  <otaylor@redhat.com>
22233
22234         * TODO.xml: Change 1.4 version numbers to 2.0.
22235
22236 Wed Jun 21 19:29:08 2000  Owen Taylor  <otaylor@redhat.com>
22237
22238         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf-drawable.c: Indentation
22239         fixups to GTK+ standard.
22240
22241 Wed Jun 21 16:38:13 2000  Owen Taylor  <otaylor@redhat.com>
22242
22243         * gdk-pixbuf/* docs/reference/gdk-pixbuf/*: Welcome aboard,
22244         gdk-pixbuf.
22245
22246         * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init):
22247         fixups for GObject.
22248
22249         * gdk/Makefile.am gdk/gdkpixbuf-render.[ch] gdk/gdkpixbuf.[ch]: Bits of 
22250         gdk-pixbuf with GDK dependencies moved into GDK.
22251         
22252         * gtk/Makefile.am gtk/gdk-pixbuf-loader.[ch]: Temporarily
22253         move gdk-pixbuf-loader here until GObject has signals.
22254
22255         * demos/: New directory of demos. Move demos from
22256         gdk-pixbuf here.
22257
22258         * demos/pixbuf-init.c: Small bit of code to check for
22259         loaders in ../gdk-pixbuf/.libs/gdk-pixbuf, and if found,
22260         set GDK_PIXBUF_MODULEDIR appropriately.
22261
22262         * gdk/gdkcompat.h: Remove GDK_DRAWABLE_PIXMAP compat
22263         define which no longer makes sense.
22264
22265 2000-06-21  Havoc Pennington  <hp@redhat.com>
22266
22267         * gtk/gtkwidget.c (gtk_widget_create_pango_context): Use
22268         gtk_get_default_language
22269
22270         * gtk/gtkmain.h, gtk/gtkmain.c (gtk_get_default_language): 
22271         new function to get the default language
22272
22273         * gtk/gtktexttagprivate.h, gtk/gtktexttag.c, gtktextview.c: 
22274         s/gtk_text_view_style_values/gtk_text_style_values/
22275
22276         * gtk/gtktexttag.c, gtk/gtktexttag.h, gtk/gtktexttagprivate.h:
22277         Add a "language" field to tags.
22278
22279         (gtk_text_tag_set_arg): Fix bug in setting
22280         "bg_full_height_set" tag.
22281
22282 2000-06-21  Havoc Pennington  <hp@redhat.com>
22283
22284         * gtk/gtktextiter.h: Use gunichar instead of gint when appropriate
22285         in the interfaces
22286
22287         * gtk/gtktexttypes.c: Remove UTF functions, use glib 
22288         stuff instead when possible.
22289
22290         * gtk/gtktexttypes.h: Delete some unused constants
22291
22292         * gtktextbtree.c, gtktextiter.c, gtktextsegment.c, gtktextview.c,
22293         testtextbuffer.c: use glib instead of custom unicode routines
22294
22295 Wed Jun 21 12:50:58 2000  Owen Taylor  <otaylor@redhat.com>
22296
22297         * docs/es/: Removed mistakenly added generated sgml
22298
22299         * docs/{gdk.texi,gtk.texi,gdk.sgml} macros.texi texinfo.tex:
22300         Remove outdated info files.
22301
22302         * docs/gtk_tut* docs/package_tutorial.sh docs/tutorial:
22303         Moved tutorial files into subdir
22304
22305         * docs/gtkfaq.sgml docs/faq/gtkfaq.sgml: Move FAQ into
22306         subdir.
22307
22308         * docs/man/gtk_button.pod: Remove. (contents will be
22309         integrated into gtk-reference button page.)
22310
22311         * configure.in docs/Makefile.am docs/tutorial/Makefile.am
22312         docs/faq/Makefile.am: Adjust for new organization
22313
22314 2000-06-21 Christopher Blizzard  <blizzard@redhat.com>
22315
22316         * gdk/x11/Makefile.am (install-data-local): use $(mkinstalldirs)
22317         not $(MKINSTALLDIRS)
22318
22319 Wed Jun 21 12:24:28 2000  Owen Taylor  <otaylor@redhat.com>
22320
22321         * gtk/testgtk.c (create_text): Finish the job Elliot started
22322         of removing font setting test for text widget. (Since text widget
22323         and GdkFont are not deprecated, and cause portability problems.)
22324
22325 Wed Jun 21 11:41:43 2000  Owen Taylor  <otaylor@redhat.com>
22326
22327         * gtk/gtkentry.c gtk/gtkimcontextsimple.c gtk/gtklabel.c
22328         gtk/gtktexttypes.c gtk/testtext.c modules/linux-fb/basic.c:
22329         Remove use of libunicode in favor of new GLib functions.
22330
22331         * gtk/gtkcolorsel.c: Remove conditional includes for FB, win32,
22332         nano-x, framebuffer. The X11 include is just a hack until we get
22333         the necessary functions in gdkcolor.h, so there is no reason to
22334         add other includes of platforms.
22335
22336         * gtk/gtkwindow.c (gtk_window_compute_default_size): Revert 
22337         window bigger than the screen change.
22338
22339         * gtk/testgtk.c: Revert some random changes from Elliot
22340         that had no particular point and were causing testgtkrc
22341         not to function correctly.
22342         
22343         * gdk/gdkregion-generic.h: Revert change from Elliot. Just
22344         because GdkSegment and GdkRegionBox have the same fields,
22345         it doesn't mean that 'typedef GdkSegment GdkRegionBox'
22346         results in clearer code.
22347
22348         * gdk/x11/gdkinput-x11.c (gdk_input_common_select_events,
22349         gdk_input_translate_coordinates): Fix missed GdkObjectification
22350
22351 2000-06-18  Elliot Lee  <sopwith@redhat.com>
22352
22353         * gdk/Makefile.am, gdk/*/Makefile.am: Fix conditionality to work the "right" way.
22354         * gtk/gtk{plug,socket}.h: Missed commits from previous.
22355
22356 2000-06-20  Havoc Pennington  <hp@redhat.com>
22357
22358         * modules/linux-fb/Makefile.am: Make this compile
22359         without framebuffer enabled
22360
22361         * gdk/linux-fb/Makefile.am: Add conditional to not build
22362         framebuffer unless specified in configure
22363
22364         * gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
22365         the size of the target instead of source if -1 was passed for
22366         width/height
22367
22368         * gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix 
22369         width/height confusion.
22370
22371 2000-06-19  Havoc Pennington  <hp@redhat.com>
22372
22373         * gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
22374         GDK_DRAWABLE_XID. In the future, we probably want to make it
22375         faster with G_DISABLE_CHECKS turned on.
22376
22377 2000-06-14  Havoc Pennington  <hp@redhat.com>
22378
22379         * gdk/Makefile.am: add gdkpixmap.c
22380
22381         * gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
22382         s/gdk_image_init/_gdk_windowing_image_init
22383
22384         * gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
22385         ref/unref
22386
22387         * gdk/gdkcolor.h: make GdkColormap a GObject subclass
22388
22389         * gdk/gdkcompat.h: remove GdkWindowType compat, since
22390         GdkWindowType is now non-deprecated; 
22391         change gdk_window_get_type() compat to be
22392         gdk_window_get_window_type().
22393
22394         * gdk/gdkdnd.h: make GdkDragContext a GObject.
22395
22396         * gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
22397         virtual GObject. Make all functions call into the vtable.
22398         Move gdk_image_put() guts in here. Remove GdkDrawableType
22399         and gdk_drawable_get_type(), these are now GdkWindow-specific.
22400         draw_image, get_depth, get_size, set_colormap, get_colormap,
22401         get_visual added to the vtable.
22402         
22403         * gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual 
22404         GObject. Virtualize everything. 
22405         (gdk_gc_new_with_values): remove check for destroyed window,
22406         because now GdkWindow::create_gc will check this.
22407         (gdk_gc_set_values): New function to set GC values, this 
22408         was already implemented but wasn't in the header
22409
22410         * gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
22411
22412         * gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
22413         _gdk_window_draw_image(), remove _gdk_windowing_window_class,
22414         remove _gdk_window_class; add _gdk_window_impl_get_type() and
22415         _gdk_pixmap_impl_get_type(). Rename gdk_window_init to
22416         _gdk_windowing_window_init, rename gdk_image_init to
22417         _gdk_windowing_image_init.
22418         
22419         * gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
22420         (gdk_draw_layout): Remove check for destroyed window, 
22421         because all the drawable methods already check it.
22422         
22423         * gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
22424         Add gdkpixmap.c which contains implementation of GdkDrawable
22425         virtual table (by chaining to a platform-specific implementation
22426         object).
22427         
22428         * gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP, 
22429         GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
22430         GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
22431         GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
22432         GdkColormapPrivate. 
22433
22434         * gdk/gdktypes.h: #include <glib-object.h>
22435
22436         * gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
22437         Move most functionality to platform-specific implementation
22438         object. GdkWindow itself now handles the backing store, then
22439         chains to the platform-specific implementation.
22440         (gdk_window_get_window_type): return GdkWindowType of the window.
22441         (gdk_window_peek_children): New routine, returns the children of 
22442         a GdkWindow
22443         (gdk_window_get_children): Was in X11-specific code and did 
22444         XQueryTree. Changed to simply return a copy of window->children; 
22445         so it can go in cross-platform code.
22446         
22447         * gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
22448
22449         * gdk/x11/gdkcolor-x11.c: implement X-specific parts of 
22450         GdkColormap; just changed to use the new private data instead
22451         of casting to GdkColormapPrivate.
22452
22453         * gdk/x11/gdkcursor-x11.c: added a couple typechecks to 
22454         gdk_cursor_new().
22455
22456         * gdk/x11/gdkdnd-x11.c: Change the way we access private fields 
22457         (private data member in the GObject). 
22458         (xdnd_manager_source_filter): Function had broken 
22459         error handling, fix it (use gdk_error_trap_push).
22460
22461         * gdk/x11/gdkdrawable-x11.c: This file now implements
22462         a base class for GdkWindowImplX11/GdkPixmapImplX11. This 
22463         base class is purely for the convenience of the X port,
22464         and not part of the interface to cross-platform GDK.
22465
22466         * gdk/x11/gdkevents-x11.c: Reflect various renamings.
22467         
22468         * gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
22469         specific to X, and returned by the create_gc virtual method
22470         of GdkDrawableImplX11. 
22471         (gdk_x11_gc_set_dashes): Change this to take an array of gint8
22472         rather than gchar, this was also changed in the GdkGC vtable.
22473         (gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
22474         mask is 0, return immediately, instead of checking every flag.
22475         This is faster, and keeps us from segfaulting if values is NULL
22476         and the mask contains some nonzero flags.
22477
22478         * gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
22479         GdkWindow.
22480
22481         * gdk/x11/gdkglobals-x11.c: change type of grab window, since 
22482         GdkWindowPrivate is gone.
22483
22484         * gdk/x11/gdkim-x11.c: rename things that got renamed.
22485
22486         * gdk/x11/gdkimage-x11.c: implement in terms of GObject, and 
22487         remove the image_put stuff that got transferred to GdkDrawable.
22488         
22489         * gdk/x11/gdkinput.c: renamings
22490
22491         * gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
22492
22493         * gdk/x11/gdkpixmap-x11.c: GObject conversion
22494
22495         * gdk/x11/gdkprivate-x11.h: indentation fixes
22496
22497         * gdk/x11/gdkproperty-x11.c: renamings
22498
22499         * gdk/x11/gdkselection-x11.c: renamings
22500
22501         * gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now 
22502         implements the platform-specific "impl" object.
22503         Moved gdk_window_get_children to gdk/gdkwindow.c
22504
22505         * gdk/x11/gdkx.h: Remove all the private structs and private datas
22506         that no longer exist. Add declaration of GdkGCX11 object here.
22507         Fix all the macros to still work. 
22508
22509         * gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
22510         GdkDragContext from the boxed types since they are now GObjects.
22511
22512         * gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
22513         moved xthickness/ythickness into the instance. GtkStyleClass
22514         functions are now in the standard vtable for GtkStyle, so you have
22515         to create a GObject subclass to write a theme engine.
22516         (gtk_style_copy): fixed a leaked PangoFontDescription
22517         (gtk_style_init): renamed gtk_style_realize, so gtk_style_init
22518         can be the standard GObject function.
22519         
22520         * Throughout GTK:
22521         s/style->klass->[xy]thickness/style->[xy]thickness
22522         s/pango_layout_unref/g_object_unref/
22523
22524         * gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
22525         
22526         * gtk/gtksocket.c: Use gdk_window_get_user_data() instead of 
22527         accessing GDK internals.
22528
22529         * gtk/gtkwidget.c: Use gdk_window_peek_children() instead of 
22530         accessing GDK internals.
22531
22532 2000-06-18  Elliot Lee  <sopwith@redhat.com>
22533
22534         * gtk/gtkwindow.c: Don't allow creation of a window bigger than the screen.
22535
22536         * gtk/gtkrange.c: Fix the mega-jumpy-with-lagged-events scrollbar
22537         problem by calculating event position relative to the trough
22538         rather than the slider.
22539         * gtk/gtkdnd.c, gtk/gtkcolorsel.c: Include FB headers if appropriate.
22540
22541         * gdk/gdkgc.h: Add GDK_NOR.
22542
22543         * configure.in, Makefile.am: Add modules top level dir
22544         * configure.in: Only use pangox library if building x11 target.
22545         * gdk/gdkdnd.h: Add GDK_DRAG_PROTO_LOCAL enum for future intra-app use.
22546
22547 Fri Jun 16 22:24:22 2000  Christopher Blizzard  <blizzard@redhat.com>
22548
22549         * gtk/gtkcolorsel.c: Change private class member to be named
22550         private_data throughout the file.
22551
22552         * gtk/gtkcolorsel.h (struct _GtkColorSelection): Change private to
22553         private_data to avoid clashing with keyword.
22554
22555 Fri Jun 16 22:24:22 2000  Christopher Blizzard  <blizzard@redhat.com>
22556
22557         * gdk/gdkdnd.h: Add comment to remove warning.
22558
22559 Sun Jun 18 15:35:35 2000  Pablo Saratxaga <pablo@mandrakesoft.com>
22560
22561         * gtk/gtkrc.cp1251,gtk/Makefile.am: the cp1251 is also used by
22562         Byelorussian language; changed the Makefile and file names 
22563         to reflect that.
22564
22565 Mon Jun 12 16:58:40 2000  Owen Taylor  <otaylor@redhat.com>
22566
22567         * gtk/gtkwindow.c (gtk_window_unmap): Call gdk_window_withdraw
22568         rather than gdk_window_hide; this makes things work
22569         correctly if the window is programmatically hidden while
22570         iconified.
22571
22572 Sun Jun 11 12:46:19 2000  Owen Taylor  <otaylor@redhat.com>
22573
22574         * gtk/gtkdnd.c (gtk_drag_set_default_icon): Fix
22575         cut and paste typo where wrong pixmap was being
22576         unref'ed. (Pointed out by a friend of KUSANO Takayuki.)
22577
22578 Sun Jun 11 10:22:36 2000  Owen Taylor  <otaylor@redhat.com>
22579
22580         * gtk/gtkselection.c (gtk_selection_bytes_per_item):
22581         Add helper function to compute format / bytes 
22582         relationship. Use in a couple places to fix up
22583         errors which assume 8 * format.
22584
22585         * gtk/gtkselection.c (gtk_selection_request): Use 32
22586         rather than 8 * sizeof (GdkAtom), to work correctly
22587         on Alpha.
22588
22589 Thu Jun  8 21:54:51 2000 Christopher Blizzard  <blizzard@redhat.com>
22590
22591         * gtk/Makefile.am (DEPS): deps include libgtk-x11.la, not
22592         libgtk.la
22593         (LDADDS): include libgtk-x11.la and libgdk-x11.la, not the non-x11
22594         versions
22595
22596         * gtk/gtklabel.c (gtk_label_get_text): Make sure that the error
22597         checking macros return NULL since the function has a return value.
22598
22599 Wed Jun  7 15:44:42 2000  Owen Taylor  <otaylor@redhat.com>
22600
22601         * gtk/Makefile.am (LDFLAGS): Add missing backslash that was keeping
22602         GTK+ from building at all.
22603
22604         * gdk/Makefile.am (gdk_c_sources): Fix up some indentation issues.
22605
22606 Mon Jun  5 19:32:53 CEST 2000 Paolo Molaro <lupus@linuxcare.com>
22607
22608         * configure.in, gtk-config.in, gdk/Makefile.am, gdk/*/Makefile.am,
22609         gtk/Makefile.am: make it possible to configure gtk for different
22610         targets on the same platform. The library name is now 
22611         libgtk-$target-$version.so. gtk-config accepts a --target x11|nanox|linux-fb
22612         flag. Only the x11 target compiles right now.
22613         * gdk/gdkregion-generic.h, gdk/gdkregion-generic.c, gdk/gdkpoly-generic.h,
22614         gdk/gdkpolyreg-generic.c: move generic region code in the main GDK dir.
22615         * gdk/nanox/gdk*generic*: delete generic region code.
22616         * gdk/linux-fb/gdk*generic*: delete generic region code.
22617         * README.nanox: update information.
22618         
22619 Tue Jun  6 10:53:59 2000  Owen Taylor  <otaylor@redhat.com>
22620
22621         * gtk/gtktoolbar.c (gtk_toolbar_prepend_widget): Fix to
22622         prepend not append. (Pointed out by Brett Hall.)
22623
22624 Tue Jun  6 01:59:57 2000  Owen Taylor  <otaylor@redhat.com>
22625
22626         * gtk/gtkentry.c (gtk_entry_finalize): Unref the entry's layout.
22627
22628 Mon Jun  5 16:00:09 2000  Owen Taylor  <otaylor@redhat.com>
22629
22630         * gdk/gdk.c (gdk_init_check): Add call to g_type_init() - we'll
22631         need this later, and this makes sure that the atexit for
22632         glib gets called after that for GDK, so atexits are
22633         properly ordered for object leak checking.
22634
22635         * gdk/gdk.c (gdk_exit_func): Call gdk_windowing_exit().
22636
22637         * gdk/x11/gdkmain-x11.c (gdk_windowing_exit): Call 
22638         pango_x_shutdown_display()
22639
22640         * gtk/simple.c (main): Close window on destroy.
22641
22642 Mon Jun  5 11:50:02 2000  Owen Taylor  <otaylor@redhat.com>
22643
22644         * gdk/x11/gdkgc-x11.c (gdk_x11_gc_values_to_xvalues): We need
22645         to treat initial creation different from setting with 
22646         regards to the graphics-exposures parameter, so add a parameter
22647         indicating whether this is initial or not.
22648
22649 Mon Jun  5 13:29:31 2000  Owen Taylor  <otaylor@redhat.com>
22650
22651         * gdk/x11/gdkevents-x11.c: Hack gdk_event_get_graphics_expose()
22652         to sort of work by adding an extra return_exposes arg
22653         to gdk_event_translate() - it might be better to simply
22654         deprecate the function altogether and force people to rewrite
22655         without it. gdk_window_scroll() handles most of it, and where
22656         gdk_window_scroll() doesn't work, simply redrawing more does.
22657
22658         * gtk/gtkwidget.c (gtk_widget_set_default_direction): Fix up
22659         assertion.
22660
22661         * gtk-config.in: Include PANGO_CFLAGS/LIBS.
22662
22663         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Remove a 
22664         bunch of pretty much useless /* Print debugging info */ comments 
22665         which had drifted away from the code they were commenting.
22666
22667 2000-06-02  Havoc Pennington  <hp@pobox.com>
22668
22669         * gtk/testtextbuffer.c: Test program to make sure GtkTextBuffer
22670         is in working order.
22671         
22672         * gtk/testtext.c: Change to reflect anonymous mark API
22673
22674         * gtk/gtktextview.c: Convert from mark names to GtkTextMark*.
22675
22676         * gtk/gtktexttag.h (struct _GtkTextTag): remove the affects_size
22677         field, which was unused.
22678
22679         * gtk/gtktextmarkprivate.h (GTK_IS_TEXT_MARK): add this macro,
22680         saves some typing.
22681
22682         * gtk/gtktextbuffer.c: Switch from mark names to GtkTextMark*   
22683
22684         * gtk/gtktextbtree.c (gtk_text_btree_new): set the not_deleteable
22685         flag on the insertion point and selection bound
22686
22687         Throughout, use GtkTextMark instead of GtkTextLineSegment, and 
22688         make mark-manipulation functions take a GtkTextMark* instead of a
22689         mark name.
22690         
22691         * gtk/gtktextmarkprivate.h: Add a "not_deleteable" flag to 
22692         GtkTextMarkBody; will be used to detect attempts to delete
22693         the permanent marks (insert and selection bound)
22694
22695         * gtk/Makefile.am (noinst_PROGRAMS): add testtextbuffer 
22696
22697 Fri Jun  2 12:56:01 2000  Owen Taylor  <otaylor@redhat.com>
22698
22699         * gtk/gtkwidget.c (gtk_widget_init): Initialize DOUBLE_BUFFERED
22700         flag to on.
22701
22702         * gtk/gtkwidget.c (gtk_widget_draw) gtk/gtkmain.c (gtk_main_do_event): 
22703         Honor DOUBLE_BUFFRED_FLAG
22704
22705         * gtk/gtkwidget.c (gtk_widget_set_double_buffered): Add a
22706         function to set the DOUBLE_BUFFERED flag.
22707
22708         * gtk/gtkwidget.h: Add GTK_DOUBLE_BUFFERED flag to indicate whether
22709         or not exposes done on the widget should be double-buffered.
22710
22711         * gtk/gtkenums.h (GtkTextDirection): Reverse order of enumerations
22712         to be what would be expected. (Fixes problem with a
22713         g_return_if_fail() validating a TextDirection enumeration)
22714
22715 Thu Jun  1 23:05:13 2000  Owen Taylor  <otaylor@redhat.com>
22716
22717         * gtk/gtkwidget.c: Remove all references to 
22718         offscreen flag which was no longer used.
22719
22720         * gtk/gtkprivate.h (enum): Remove unused flags and compress.
22721
22722         * gtk/gtkframe.c (gtk_frame_set_label_widget): Check
22723         for non-null label_widget->parent.
22724
22725         * gtk/gtkentry.c: Get rid of code to deal with PangoAttribute 
22726         which no longer was used.
22727
22728         * gdk/gdkpango.c (gdk_pango_context_get_info): make static.
22729
22730         * gdk/gdkpango.c (gdk_draw_layout[_line]): Add checks
22731         for null arguments.
22732
22733         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): add
22734         check for destroyed windows.
22735
22736 Thu Jun  1 13:48:45 2000  Owen Taylor  <otaylor@redhat.com>
22737
22738         * gtk/gtkimmulticontext.c: Add a finalize method and unref
22739         the slave context there.
22740
22741         * gtk/gtkinvisible.[ch]: Make reference counting behavior
22742         identical to GtkWindow.
22743
22744 Thu Jun  1 01:54:11 2000  Owen Taylor  <otaylor@redhat.com>
22745
22746         * Makefile.am gdk/gdkpango.c: Copy the layout render function from
22747         pangox to here, so we can write them independent of rendering
22748         system, using GDK primitives.
22749
22750         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c
22751         gdk/x11/gdkdrawable-x11.c: Remove draw_layout() from the vtable,
22752         since we have a rendering-system independent implementation in
22753         terms of draw_glyphs().
22754         
22755         * gdk/gdkpango.c gdkdrawable.h (gdk_draw_layout_line): New
22756         function to render a single line.
22757
22758         * gdk/x11/gdkpango.c: Move the guts of this file mostly
22759         into ../gdkpango.c, which simplifies things, since we
22760         don't have to deal with raw X gc's.
22761
22762 Fri May 19 04:28:16 2000  Owen Taylor  <otaylor@redhat.com>
22763
22764         * gtk/gtktextlayout.[ch]: Add get_log_attrs() function to
22765         get the logical attributes for a given GtkTextLine.
22766
22767 Tue May 30 16:05:39 2000  Owen Taylor  <otaylor@redhat.com>
22768
22769         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Track
22770         g_locale_get_codeset() to g_get_codeset() change.
22771
22772 Tue May 30 15:03:19 2000  Owen Taylor  <otaylor@redhat.com>
22773
22774         * gtk/testcalendar.c (calendar_font_selection_ok): Use font
22775         descriptions.
22776
22777         * gtk/gtkentry.c (gtk_entry_draw_text): Center text within
22778         the entry.
22779
22780         * gtk/gtkfontsel.c (gtk_font_selection_dialog_init): Start of
22781         redoing (vastly simplifying) for Pango. Still needs quite
22782         a bit of work. (Size selection is currently poor. List of 
22783         predefined sizes is not a good idea, since all of these
22784         sizes won't necessarily be distinct.)
22785
22786 Tue May 30 13:50:19 2000  Owen Taylor  <otaylor@redhat.com>
22787
22788         * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Handle
22789         CODESET results for LANG=C.
22790
22791 Mon May 29 15:49:10 2000  Owen Taylor  <otaylor@redhat.com>
22792
22793         * gtk/gtkrc.[ch]: Add a 'font_name' declaration to RC
22794         which takes a stringized pango font description;
22795         ignore the older 'font' and 'fontset' declarations.
22796
22797         * gtk/gtkstyle.c gtk/gtkrc.c: Fill in the style->font
22798         field with a GdkFont derived via gdk_font_from_description(),
22799         for compatibility. (Should we just remove it entirely?
22800         Probably too much compatibility breakage, but people
22801         should be migrating to the new Pango stuff as quickly
22802         as possible.)
22803
22804 Mon May 29 15:47:41 2000  Owen Taylor  <otaylor@redhat.com>
22805
22806         * gtk/gtkentry.c gtk/gtkclist.c: s/pango_font_unref/g_object_unref/.
22807
22808 Mon May 29 15:44:46 2000  Owen Taylor  <otaylor@redhat.com>
22809
22810         * gtk/gtkcalender.c: Roughly pango-ized. Really needs 
22811         redoing; there are some bugs in size allocation right
22812         now, the semi-existant distinction between header / day
22813         fonts was removed, but, with Pango, could actually
22814         be made functional in a nice way.
22815         
22816         * gtk/testcalender: Move calender from examples into this
22817         directory as a test program. (We really need to restrcture
22818         testgtk into a whole directory full of tests for every
22819         widget or functionality group, separated into multiple .c
22820         files.)
22821
22822 Mon May 29 15:19:56 2000  Owen Taylor  <otaylor@redhat.com>
22823
22824         * gtk/testgtk.c (file_exists): Fix stupid typo that
22825         was keeping RC file from being loaded.
22826
22827         * gtk/testgtkrc gtk/testgtkrc2: Test new pango-ized
22828         RC file font code.
22829
22830 Mon May 29 14:31:27 2000  Owen Taylor  <otaylor@redhat.com>
22831
22832         * gdk/gdkfont.h gdk/x11/gdkfont-x11.c (gdk_font_from_description):
22833         Add function to load a GdkFont from a PangoFontDescription.
22834
22835 2000-05-29  Tor Lillqvist  <tml@iki.fi>
22836
22837         * gdk/win32/gdkevents-win32.c (gdk_WindowProc): The local "event"
22838         variable should be of type GdkEventPrivate.
22839
22840 Fri May 26 17:16:40 2000  Owen Taylor  <otaylor@redhat.com>
22841
22842         * gtk/frame.[ch] gtkaspectframe.c: Make frame widgets able
22843         to have any widget for the label, use a GtkLabel widget
22844         to display the text. (Based partially on a patch from
22845         Anders Carlson.)
22846
22847         (Quite a bit of code reorganization - strip 90% of the
22848         guts out of gtkaspectframe and add a single virtual
22849         func to GtkFrameClass - compute_child_allocation.)
22850
22851 Fri May 26 12:00:02 2000  Owen Taylor  <otaylor@redhat.com>
22852
22853         * gtk/gtkctree.c gtk/gtkclist.[ch]: Pangoized.
22854         (Removed clist->row_center_offset field because caching
22855         it wasn't saving time or code, added private function
22856         _gtk_clist_create_cell_layout()).
22857
22858 Wed May 24 15:59:37 2000  Owen Taylor  <otaylor@redhat.com>
22859
22860         * gtk/gtkaccellabel.c: Pangoized.
22861
22862         * gtk/[hv]ruler.c: Pangoized
22863
22864 Mon May 22 19:23:59 2000  Owen Taylor  <otaylor@redhat.com>
22865
22866         * gtk/gtkfilesel.c (gtk_file_selection_init):
22867         Use gtk_clist_set_column_auto_resize() to remove need
22868         need for manual column width computations.
22869
22870 Mon May 22 18:50:26 2000  Owen Taylor  <otaylor@redhat.com>
22871
22872         * gtk/gtktooltips.[ch]: Replace custom drawing with a GtkLabel, 
22873         ensuring Pango correctness, and considerably simplifying the
22874         code.
22875         
22876         * gtk/gtklabel.c gtk[hv]scale.c: 1000 => PANGO_SCALE.
22877
22878         * gtk/gtklabel.c (gtk_label_size_request): Fixed incorrect
22879         getting of numbers of lines.
22880
22881         * gtk/gtklabel.c (gtk_label_size_request): Set the requisition
22882         to the actual requested width of the lable, not to the wrap
22883         width we set.
22884
22885         * gtk/gtktextchild.h: Remove extraneous include of gtk/gtk.h.
22886
22887         * gtk/gtktextbtree.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
22888           gtk/gtktextview.c gtk/gtktextview.[ch]: Fix up includes.
22889
22890         * gtk/gtktextview.c: Fix structure inheritance.
22891
22892         * gtk/gtkprogressbar.c: Pangoize.
22893
22894 Mon May 22 15:47:30 2000  Owen Taylor  <otaylor@redhat.com>
22895
22896         * gtk/gtktextview.c (gtk_text_view_get_first_para_iter): Encapsulate
22897         in a function.
22898
22899         * gtk/gtktextlayout.c (find_display_line_above): Fixed
22900         bug with computing line tops.
22901
22902         * gtk/gtktextview.c (changed_handler): Fix < , <= confusion.
22903
22904 Thu May 18 18:53:31 2000  Owen Taylor  <otaylor@redhat.com>
22905
22906         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix up the x_offset
22907         and y_offset coordinates to do what we need now. (The offset between
22908         buffer and layout coordinates has been reintroduced, but is a 
22909         bit different than before.)
22910
22911         * gtk/gtktextview.[ch]: No longer inherit from GtkLayout; instead
22912         handle the adjustments ourselves, and scroll as necessary using
22913         the new gdk_window_scroll().
22914         
22915         The advantage of this is that when we are incrementally revalidating,
22916         we are essentially rearranging things around the visible portion
22917         of the screen. With the old setup, the visible portion of the
22918         screen was moved around in the layout, so scrolling and redrawing
22919         to track that caused jumping of the display. Since we now
22920         control the scrolling ourselves, we can suppress this and
22921         only redraw when things actually change.
22922
22923 Thu May 18 18:47:25 2000  Owen Taylor  <otaylor@redhat.com>
22924
22925         * gtk/gtktextbtree.c (redisplay_mark): We need to invalidate
22926         the region not just redisplay it after-all, since we store the
22927         cursors in the LineDisplay. (Ugly interactions here between
22928         GtkLayout and GtkTextBTree here.)
22929         
22930         * gtk/gtktextbtree.c (redisplay_region): Fixed reversed comparison.
22931
22932 Thu May 18 18:43:21 2000  Owen Taylor  <otaylor@redhat.com>
22933
22934         * gdk/gdkwindow.h gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): 
22935         Added function to scroll contents of a window while keeping the
22936         window constant. Works by XCopyArea or guffaw-scrolling depending
22937         on the details of how the window is set up. (guffaw-scrolling
22938         still needs to be filled in.)
22939
22940 Wed May 17 22:36:53 2000  Owen Taylor  <otaylor@redhat.com>
22941
22942         * gtk/gtktextiter.c gtk/gtkmain.c: Add a debug key for the text widget,
22943         move the debugging that was tied to a global variable
22944         to that.
22945
22946         * gtk/gtkmarshal.list: Add NONE:INT,INT,INT
22947
22948         * gtk/gtktextbtree.[ch] gtk/gtktextlayout.c: Keep a separate
22949         validated flag, in line data instead of setting height/width to
22950         -1. This allows us to perform operations with partially invalid
22951         buffer (using the old size for invalid lines) and thus to do
22952         incremental vaidation. Keep height/width aggregates up to date
22953         when deleting text and rebalancing the tree.
22954
22955         * gtk/gtktextbtree.[ch]: Add functions validate a line
22956         (gtk_text_btree_validate_line), and to validate up
22957         to a number of pixels (gtk_text_btree_validate).
22958
22959         * gtk/gtktextlayout.[ch]: Add an ::invalidated signal
22960         that indicates that something is changed and a revalidation
22961         pass is needed. Change ::need_repaint to ::changed, and
22962         make it take old and new yranges instead of a rectangle.
22963
22964         * gtk/gtktextbtree.[ch] gtk/gtktextlayout.[ch]: Move
22965         the line_data_destroy() function from 
22966         gtk_text_btree_add_view() to a virtual function in 
22967         GtkTextLayout
22968
22969         * gtk/gtktextbtree.[ch]: Remove gtk_text_btree_get_damage_range(),
22970         since we are handling partial repaints in a different fashion
22971         now.
22972
22973         * gtk/gtktextbtree.[ch]: Only repaint the changed portion
22974         of the selection instead of queueing a repaint on the
22975         entire widget.
22976
22977         * gtk/gtktextbuffer.[ch] gtk/gtktextbtree.[ch]: Move
22978         get_selection_bounds() down to btree, make the function
22979         in buffer a wrapper around the btree function.
22980
22981         * gtk/gtktextlayout.[ch]: Add functions to check if the
22982         layout is valid and to recompute either a range of pixels
22983         aroudn a line or a certain total number of pixels.
22984
22985         * gtk/gtktextlayout.[ch]: Cache a single line display;
22986         now that we only redraw the needed portions, the hit rate
22987         for this cache is quite high.
22988         
22989         * gtk/gtktextview.[ch]: Keep track of the first paragraph
22990         on the screen so that when re-laying-out the buffer, we can
22991         keep the same place. This requires connecting to ::value_changed
22992         on the adjustments
22993
22994         * gtk/gtktextview.[ch]: Add idle functions to revalidate
22995         the buffer after we receive an ::invalidated signal.
22996         
22997 Wed May 17 22:10:47 2000  Owen Taylor  <otaylor@redhat.com>
22998
22999         * gtk/gtklayout.c (gtk_layout_size_allocate): Set upper
23000         to max of allocation and layout size, not just to the
23001         layout size.
23002
23003         * gtk/gtk[hv]scrollbar.c (gtk_[hv]scrollbar_calc_slider_size): 
23004         Invalidate window so it gets redrawn properly.
23005
23006         * gdk/gdkwindow.c (gdk_window_invalidate_rect): Allow rect == NULL
23007         to mean the entire window.
23008
23009         * gdk/gdkevents.h: Move definition for GDK_PRIORITY_REDRAW
23010         into public header.
23011
23012 Mon May 15 14:51:31 2000  Owen Taylor  <otaylor@redhat.com>
23013
23014         * gtk/gtktextmark.c (gtk_text_mark_get_name): Add function
23015         to get the name of a mark.
23016
23017         * gtk/gtktextlayout.c (gtk_text_layout_get_line_at_y): Add a function
23018         to find the paragraph from a y position.
23019
23020 Thu May 11 12:57:20 2000  Owen Taylor  <otaylor@redhat.com>
23021
23022         * gtk/gtktextbtree.c (gtk_text_btree_node_invalidate_upward): Valid
23023         nodes have width/height >= 0, not > 0.
23024
23025 Tue May  9 21:29:06 2000  Owen Taylor  <otaylor@redhat.com>
23026
23027         * gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c (gtk_text_layout_get_line_display):
23028         Add a size_only flag, so when we only need the size, we don't create
23029         useless appearance attributes.
23030
23031         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Remove
23032         duplicate setting of font description.
23033
23034         * gtk/gtkscale.c: Use PANGO_SCALE instead of 1000 
23035
23036 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
23037
23038         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
23039         EXTRA_DIST. It does not work well when the file that
23040         everything depends on is not in the tarball.
23041
23042 Wed Apr 26 00:56:14 2000  Owen Taylor  <otaylor@redhat.com>
23043
23044         * gtk/testgtk.c: Some hacks and fixes so that it basically
23045         works when not sitting in the GTK+ build tree.
23046
23047 2000-05-03  Havoc Pennington  <hp@redhat.com>
23048
23049         * gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
23050         Properly determine the ordering of the tag root and the current
23051         line within the tree. Previous algorithm only worked if the tag
23052         root's immediate parent was the common root of both the current
23053         line and the tag root.
23054
23055 Wed Apr 26 00:43:00 2000  Owen Taylor  <otaylor@redhat.com>
23056
23057         * gtk/gtktextlayout.c (set_para_values): Fix some bugs in
23058         alignment.
23059
23060         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Track
23061         the widget text directional dynamically.
23062
23063         * gtk/gtktextview.[ch]: Added functions to get and set default
23064         wrap mode.
23065
23066 Tue Apr 25 23:47:38 2000  Owen Taylor  <otaylor@redhat.com>
23067
23068         * gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Fix bug
23069         in cursor location computation.
23070
23071 Tue Apr 25 23:22:59 2000  Owen Taylor  <otaylor@redhat.com>
23072
23073         * gtk/gtklayout.c (gtk_layout_set_size): Clamp hadjustment/
23074         vadjusment values properly when layout gets smaller.
23075
23076         * gtk/gtktextview.c (need_repaint_handler): Areas being
23077         passed in are far completely inaccurate, and sometimes
23078         too small, so, for now, just queue a redraw on the
23079         whole visible region.
23080
23081 2000-04-25  Havoc Pennington  <hp@redhat.com>
23082
23083         * gtk/gtktextbtree.c (summary_destroy): new function to 
23084         destroy tag summary nodes
23085         (gtk_text_line_next_could_contain_tag): this function was 
23086         totally broken if the line passed in wasn't below the tag
23087         root. Fix it.
23088         (gtk_text_btree_first_could_contain_tag): In the tag == NULL 
23089         "wildcard" case, we have to do a linear scan. Blah.
23090         (gtk_text_btree_last_could_contain_tag): In tag == NULL case,
23091         we have to do the linear scan
23092         (tag_removed_cb): When a tag is removed from the tag table, 
23093         remove the GtkTextTagInfo node from the btree.
23094         (gtk_text_btree_spew): Implement the spew function, for 
23095         our debugging pleasure.
23096
23097 Tue Apr 25 19:40:18 2000  Owen Taylor  <otaylor@redhat.com>
23098
23099         * gtk/gtktextlayout.c (gtk_text_layout_set_buffer): Fix
23100         a problem with referring to the wrong buffer.
23101
23102         * gtk/gtkentry.c: Fix focus-in/focus-out confusion.
23103
23104         * gtk/gtkrc.c gtk/gtkstyle.c: Moving setting default
23105         font description to gtk_style_new() - otherwise things
23106         don't work without a .gtkrc file.
23107
23108         * gtk/gtktextbuffer.c (gtk_text_buffer_new): Sink the
23109         tags table if we create it ourself, too.
23110
23111         * gdk/gdktypes.h (enum): Move GDK_RELEASE_MASK, since
23112         it was conflicting with XKB modifiers.
23113
23114         * gtk/gtktextview.[ch]: Add simple support for 
23115         GtkIMContext.
23116
23117 Mon Apr 24 19:34:18 2000  Owen Taylor  <otaylor@redhat.com>
23118
23119         * gtk/gtkentry.c (gtk_entry_move_cursor_visually): Fix problem
23120         with deletion from last commit.
23121
23122 Mon Apr 24 19:29:40 2000  Owen Taylor  <otaylor@redhat.com>
23123
23124         * gtk/gtkwidget.c (gtk_widget_create_pango_context): Set the language
23125         in the context from the current locale.
23126         
23127         * gtk/gtkentry.c (gtk_entry_size_request): Use language from the
23128         context, not hardcoded value.
23129
23130         * gtk/gtkentry.c (gtk_entry_move_cursor): Make character movement visual,
23131         not logical.
23132
23133 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
23134
23135         * gtk/gtkentry.c gtk/gtktextdisplay.c: Don't handle selections as
23136         attributes - that doesn't handle partial-glyph selection
23137         properly. Instead use new pango_layout_line_get_x_ranges()
23138         functionality to draw the selection.
23139
23140         * gtk/gtkentry.c: Simplify code since pango_layout_line_index_to_x()
23141         now properly handles out-of-range coordinates.
23142
23143         * gtk/gtktextbuffer.c: Emit "mark_set" when the cursor is moved.
23144
23145         * gtk/gtktextiter.h gtk/gtktextiterprivate.h: Make gtk_text_iter_get_line_byte()
23146         public.
23147
23148         * gtk/gtktextlayout.[ch]: Properly set the direction in the PangoContext
23149         for paragraphs opposite to the base direction of the widget.
23150
23151         * gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c: Fixes for alignment.
23152
23153         * gtk/gtktextlayout.c: Don't split segments on marks, since that
23154         causes Arabic words to reshape as you cursor through.
23155
23156         * gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Implement virtual
23157         cursor position when moving vertically with the arrow keys and
23158         scrolling with page-up/page-down. (Arrow keys save only the X,
23159         scrolling saves both X and Y.)
23160
23161         This means you can line-up / line-down or page-up / page-down
23162         without losing your place, and also that moving vertically
23163         with the cursor keys keeps the same X position, not the same
23164         character count:
23165
23166         * gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Make vertical
23167         arrow keys move by display lines, not paragraphs.
23168
23169 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
23170
23171         * gtk/gtklayout.c: Make sure that the bin window is at least
23172         as big as the allocation. (Should we also make sure that the
23173         bin window is big enough to completely cover widget->window?)
23174
23175         * gtk/gtktextview.c (gtk_text_view_get_visible_rect): Add
23176         function to get the onscreen rectangle.
23177
23178         * gdk/x11/gdkwindow-x11.c (gdk_window_get_pointer): Correctly account
23179         for offsets in window coordinates.
23180
23181 Sun Apr 16 16:13:27 2000  Owen Taylor  <otaylor@redhat.com>
23182
23183         * gtk/gtkentry.c (gtk_entry_get_cursor_locations): Fix index/offset
23184         confusion.
23185
23186         * gtk/gtktextview.c (gtk_text_view_ensure_layout): Set the default direction
23187         from the widget direction.
23188
23189         * gtk/gtktexttag.c gtk/gtktexttagprivate.h (gtk_text_tag_set_arg): 
23190         Add a "direction" attribute.
23191
23192         * gtk/gtktextview.c: global s/tkxt/text_view/.
23193
23194         * gtk/testtext.c: Added long block of text in Arabic, to test out
23195         the direction attributes. (Some problems with the shaping system
23196         for arabic become obvious - like the fact the cursor splits words
23197         into unjoined pieces.)
23198
23199 Fri Apr 14 12:54:34 2000  Owen Taylor  <otaylor@redhat.com>
23200
23201         * gtk/gtktextdisplay.c (render_layout): Add overstrike handling.
23202
23203         * gtk/gtktextlayout.c: Fix up alignment.
23204
23205         * gtk/testtext.c: Add some tests for centering, wrapping.
23206
23207 Fri Apr 14 09:26:22 2000  Owen Taylor  <otaylor@redhat.com>
23208
23209         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c gdk/x11/gdkdrawable-x11.c:
23210         Add a draw_glyphs() operation to the drawable vtable and gdk_draw_glyphs().
23211         If we wrote GTK+-specific layout-render function this could just replace
23212         the draw_layout() operation in the vtable.
23213
23214         * gtk/gtkentry.c: Move guts of gtk_entry_get_cursor_locations to 
23215         pango_layout_get_cursor_pos() and use that function.
23216
23217         * gtk/gtktextchild.[ch]: add gtk_ onto pixmap_segment_new(), since it
23218         is a non-static symbol.
23219
23220         * gtk/gtktextbtree.[ch]: Replace gtk_text_btree_find_line_data_by_y()
23221         with gtk_text_btree_find_line_by_y()
23222
23223         * gtk/gtktextdisplay.c: Rewrote for Pango - uses a custom layout
23224         renderer that handles GtkTextAppearance attributes.
23225
23226         * gtk/gtktexttag.[ch] gtk/gtktexttagprivate.h: 
23227
23228           - Move the values in the style that don't affect geometry into a
23229             GtkTextAppearance structure.
23230           - Change underline to take a PangoUnderline and "font" a string
23231             representation of a font description
23232           - Add a "font_desc" attribute which takes a FontDescription structure.
23233
23234         * gtk/gtktextlayout.[ch]:
23235
23236           - Get rid of the display-line list per each line. Instead, we
23237             generate, on demand, a GtkTextLineDisplay structure which]
23238             contains a PangoLayout * and other necesary information
23239             (offsets, cursor locations) for displaying a paragraph.
23240           - Get rid of the code to wrap lines, create display chunks,
23241             etc. Instead, we just go through a paragraph and convert
23242             it into the necessary inputs to a PangoLayout.
23243           - Implement a new attribute type, GtkTextAttrAppearance. This
23244             holds a GtkTextAppearance, and is used to pass colors, 
23245             stipple, etc, through from the layout to the display without
23246             having to use lots and lots of individual attributes.
23247           - Reimplement gtk_layout_get_iter_at_pixel() gtk_layout_get_iter_pos()
23248             in terms of PangoLayout functions.
23249         
23250         * gtk/gtktextview.c: 
23251          
23252           - Handle passing the necessary PangoContext to the layout
23253           - Some fixups in painting to deal with the automatic backing store
23254             and offsetting of GTK+-1.4
23255           - Add a style_set handler so that the default style reacts
23256             properly to theme changes.
23257         
23258         * gtk/gtktext?*.[ch]: Random code-style fixes.
23259
23260         * gtk/testtext.c: Substitute in languages that Pango handles now for Thai
23261
23262 Mon Apr 10 10:33:45 2000  Owen Taylor  <otaylor@redhat.com>
23263
23264         * gtk/gtktext?*.[ch]: Check in Havoc's port of the Tk text widget,
23265         in original form preparatory to Pango-ization and gdkimcontext-ization.
23266
23267 Thu Apr  6 19:25:39 2000  Owen Taylor  <otaylor@redhat.com>
23268
23269         * gtk/gtkimcontext.c: Move default implementations to real_* vfuncs,
23270         so that we can derive from gtkimcontext in language bindings properly.
23271
23272 Thu Apr  6 16:02:52 2000  Owen Taylor  <otaylor@redhat.com>
23273
23274         * gtk/gtkimcontextsimple.[ch]: Use gdk_keyval_to_unicode to gdk_unicode_to_keyval.
23275         Add a compose table including (almost) all the compose combinations
23276         from X. This is 6k of static, shared data as opposed to 50k or so of dynamic
23277         data in the XIM implementation.
23278
23279         * gdk/gdk.h gdk/gdkkeyuni.c gdk/win32/gdkevents-win32.c (gdk_keyval_to_unicode, gdk_unicode_to_keyval):
23280         Moved functions to convert keyvalues from and to unicode here from
23281         the win32 port and made them public.
23282
23283 Wed Apr  5 16:37:29 2000  Owen Taylor  <otaylor@redhat.com>
23284
23285         * gtk/gtkeditable.c (gtk_editable_insert_text): Allow new_text_length == -1.
23286
23287 Wed Apr  5 16:27:45 2000  Owen Taylor  <otaylor@redhat.com>
23288
23289         * gtk/gtkimcontext.[ch]: Base class for new input context system
23290
23291         * gtk/gtkimmulticontext.[ch]: Proxy input context that allows
23292         the real input context implementation to be loaded from modules
23293         and switched on the fly.
23294
23295         * gtk/gtkcontextsimple.[ch]: Simple implementation of an input
23296         context that just does direct keysymbol => unicode translation.
23297
23298         * gtk/gtkentry.[ch]: Start switching editing over to using
23299         GtkInputContext. (No handling of preedit yet.)
23300
23301 Wed Apr  5 15:48:41 2000  Owen Taylor  <otaylor@redhat.com>
23302
23303         * gtk/gtktypeutils.h (GTK_CHECK_GET_CLASS): Fix problem with one too
23304         many substitutions. (klass should not be subsituted.)
23305
23306 Wed Apr  5 00:18:14 2000  Owen Taylor  <otaylor@redhat.com>
23307
23308         * configure.in: Add checks for Pango
23309
23310         * configure.in docs/Makefile.am: Add test for sgml2html
23311         and allow 'make dist' without building html, but print out
23312         warnings in that case. (For making snapshots)
23313
23314         * gdk/Makefile.am gdk/x11/Makefile.am gtk/Makefile.am:
23315         Add Pango libraries and C flags
23316
23317         * gdk/gdkdraw.c gdk/gdkdrawable.h gdkwindow.c gdk/x11/gdkdrawable-x11.c:
23318         Add function (gdk_draw_layout) to draw a pango layout.
23319
23320         * gdk/gdkpango.h gdk/x11/gdkpango-x11.c: New file with functions
23321         for getting Pango contexts for GDK.
23322
23323         * gtk/gtkeditable.c: Get rid of dead code gtk_editable_parent_set()
23324
23325         * gtk/gtkentry.[ch]: Complete rewrite to use Pango, add bidirectional
23326         editing.
23327
23328         * gtk/gtkentry.c: Hack in simple Hebrew input with direct
23329         keysym => unicode translations. More languages can be added
23330         here, but real input-method support is needed.
23331
23332         * docs/Changes-1.4.txt: Added note about entry behavior.
23333         
23334         * gtk/gtkenums.h gtk/gtkwidget.[ch] testgtk.c gtkprivate.h: Add functions
23335         to set the reading direction for a widget and the global direction.
23336         Add test which allows toggling the global direction. Two private
23337         flags are used to store the direction. (GTK_DIRECTION_SET + GTK_DIRECTION_LTR)
23338
23339         * gtk/gtkcheckbutton.c gtk/gtkframe.c gtk/gtkhbbox.c gtk/gtkhbox.c
23340           gtk/gtkradiobutton.c gtk/gtkspinbutton.c gtk/gtktable.c 
23341
23342         * gtk/gtk[hv]scale.c gtk/gtkscale.[ch]: Draw numbers using Pango
23343
23344         * gtk/gtklabel.[ch]: Moved to Pango and considerably rewritten. Line breaking,
23345         underlining now handled by Pango.
23346
23347         * gtk/gtkstyle.[ch] gtk/gtkrc.[ch]: Add a PangoFontDescription
23348         to RCStyle and Style. (Having both this and the old font name and GdkFont 
23349         is temporary.)
23350
23351         * gtk/gtkwidget.[ch] (gtk_widget_create_pango_{context,layout}): Added 
23352         convenience functions for creating contexts and layouts for widgets.
23353
23354         * gtk/testgtk.c: Enhance label tests with multilingual labels.
23355
23356 2000-05-29  Jonathan Blandford  <jrb@redhat.com>
23357
23358         * gtk/gtkclist.c (gtk_clist_column_titles_active): let you set the
23359         titles to be active, even if they aren't visible.
23360         (gtk_clist_column_titles_passive):  Ditto.
23361
23362 2000-05-21  Nils Barth  <nils_barth@post.harvard.edu>
23363
23364         * gtkmenu.c:
23365         * gtkmenu.h:
23366         * gtktypeutils.h: Spelling/grammar fixes in comments.
23367
23368 Tue May 23 12:25:07 CEST 2000 lupus <lupus@debian.org>
23369
23370         * gdk/nanox/*.h: add missing header files.
23371
23372 Fri May 19 11:52:59 2000  Tim Janik  <timj@gtk.org>
23373
23374         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set
23375         send_event to TRUE.
23376         (gtk_drawing_area_size): queue a resize.
23377
23378 Sun Mar 26 03:21:28 2000  Tim Janik  <timj@gtk.org>
23379
23380         * gtk/gtksignal.c (gtk_signal_handlers_destroy): when unref-ing
23381         the handlers, also invalidate them. bug nailed down by Karl Nelson
23382         <kenelson@ece.ucdavis.edu>.
23383
23384 Fri May 19 06:49:23 2000  Tim Janik  <timj@gtk.org>
23385
23386         * gtk/gtkfontsel.c (gtk_font_selection_get_font_name): handle
23387         "(nil)" foundries, patch from Grigorios Magklis.
23388
23389         * gtk/gtkfontsel.c (gtk_font_selection_load_font): don't crash
23390         on non-available fonts, based on a patch by Grigorios Magklis
23391         <maglis@cs.rochester.edu>.
23392
23393 2000-05-18  Elliot Lee  <sopwith@redhat.com>
23394
23395         * gdk/x11/gdkregion-generic.c: If a region does not have any
23396         rectangles, or if the specified rectangle is not in the region, then return GDK_OVERLAP_RECTANGLE_OUT
23397         instead of GDK_OVERLAP_RECTANGLE_IN.
23398
23399 2000-05-17  Jonathan Blandford  <jrb@redhat.com>
23400
23401         * gtk/gtklayout.c (gtk_layout_map): Remove references to
23402         OFFSCREEN, as it is no longer necessary.
23403
23404 Wed May 17 10:52:12 2000  Owen Taylor  <otaylor@redhat.com>
23405
23406         * gtk/gtkcolorsel.c: Patch from David Santiago
23407         <mrcooger@cyberverse.com> to change things so that the 
23408         indicator of the active palette entry is done independently,
23409         not via the focus, since it should always be visible.
23410
23411 2000-05-17  Tor Lillqvist  <tml@iki.fi>
23412
23413         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Plug same
23414         refcount leaks as in the X11 backend.
23415
23416         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Logging
23417         cosmetics.
23418
23419         * gdk/win32/gdkwindow-win32.c: Similar changes as in X11
23420         backend. Add _gdk_windowing_window_destroy().
23421
23422         * gtk/gtkcolorsel.c: Include correct backend-specific header.
23423         Don't use XColor unless on X11. (No GDK_VISUAL_STATIC_COLOR
23424         either, but these probably do exist on nanox?)
23425         
23426         * gtk/gtkhsv.c: Use G_PI (fresh from <glib.h>) instead of M_PI
23427         which isn't necessarily defined by <math.h>.
23428
23429         * gtk/gtkobject.c (gtk_object_init): Don't go up the class
23430         ancestry past GtkObject.
23431
23432         * gtk/gtktypeutils.h: Mark GTK_TYPE_IDENTIFIER for export/import
23433         from DLL on Win32.
23434
23435         * gtk/gtk.def: Update corresponding to recent changes.
23436
23437         * gtk/makefile.{cygwin,msc}: Updates.
23438
23439 Fri May 12 18:46:51 2000  Owen Taylor  <otaylor@redhat.com>
23440
23441         * docs/Changes-1.4.txt: A bit of editing.
23442
23443         * gdk/gdkwindow.c (_gdk_window_clear_update_area) 
23444         * gdk/x11/gdkwindow-x11.c (gdk_window_hide): Add a function
23445         to clear the update area for the window, and clear it
23446         when hiding a window.
23447
23448         * gdk/gdkwindow.c (gdk_window_begin_paint_region): Ignore
23449         if window destroyed.
23450
23451         * gdk/gdkwindow.c (gdk_window_end_paint): Likewise.
23452
23453         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c gdk/gdkinternals.h: Move 
23454         gdk_window_destroy() to the generic code, since there was a lot of 
23455         window-system-independent logic it in. Add a function:
23456         
23457          _gdk_window_destroy() 
23458
23459         to the internal API to destroy a window without unreferencing it.
23460         Add a function:
23461
23462          _gdk_windowing_window_destroy()
23463
23464         That does the windowing-system-dependent part of destroying 
23465         the window.
23466
23467 Fri May 12 11:07:41 2000  Owen Taylor  <otaylor@redhat.com>
23468
23469         * gtk/testgtk.c: Fix various memory leaks of pixmaps.
23470
23471 Fri May 12 11:06:10 2000  Owen Taylor  <otaylor@redhat.com>
23472
23473         * gtk/gtkwidget.c docs/Changes-1.4.txt (gtk_widget_shape_combine_mask): 
23474         Make gtk_widget_shape_combine_mask() keep a reference count on
23475         the pixmap since it keeps it around.
23476
23477 Fri May 12 10:53:29 2000  Owen Taylor  <otaylor@redhat.com>
23478
23479         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix refcount
23480         leak.
23481
23482         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Fix refcount
23483         leak with event filters.
23484
23485 Thu May 11 14:29:44 2000  Owen Taylor  <otaylor@redhat.com>
23486
23487         * gtk/gtkdnd.c (gtk_drag_dest_set_internal): Remove the
23488         signal handlers with the right data arguments. (Fixes
23489         some warnings when a widget was repeatedly set as a drag
23490         destination.)
23491
23492         * gdk/x11/gdkdnd-x11.c (gdk_window_register_dnd): Set data on the
23493         window so we can avoid avoid setting the DND properties on the
23494         toplevel window repeatedly.
23495
23496 2000-05-13  Tor Lillqvist  <tml@iki.fi>
23497
23498         * gdk/win32/gdkwin32.h: Define more message types missing from
23499         mingw headers.
23500
23501         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On WM_DESTROY
23502         call gdk_window_destroy_notify(). It was never called. This
23503         probably meant that the GdkWindow was never freed. Thanks Owen for
23504         noticing (!).
23505
23506         * gdk/win32/gdkwindow-win32.c (gdk_window_internal_destroy): Mark
23507         window as destroyed before calling DestroyWindow(). DestroyWindow()
23508         causes a call to the window procedure (gdk_WindowProc), which
23509         calls gdk_event_translate(), which calls
23510         gdk_window_destroy_notify(), which gets confused unless the window
23511         is set as destroyed.
23512
23513         * gdk/win32/gdkcolor-win32.c (gdk_win32_color_to_string): Rename
23514         this function to indicate it's win32 only. Put inside #ifdef
23515         G_ENABLE_DEBUG.
23516
23517         * gdk/win32/gdkevents-win32.c (gdk_win32_message_name): New
23518         debugging function. (gdk_event_translate:) Add a default branch
23519         that uses the above function to print debug messages with all
23520         Windows messages symbolically.
23521
23522         * gdk/win32/gdkprivate-win32.h: Declare it, and
23523         gdk_win32_color_to_string, but only if G_ENABLE_DEBUG.
23524
23525 Fri May 12 20:07:32 2000  Tim Janik  <timj@gtk.org>
23526
23527         * gtk/gtkcolorseldialog.c: don't include gtk/gtkintl.h in a
23528         public header file.
23529
23530 Fri May 12 17:13:32 2000  Tim Janik  <timj@gtk.org>
23531
23532         * docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
23533
23534         * gtk/gtktext.c: made the adjustments no-construct args, simply
23535         provide default adjustments.
23536         (gtk_text_destroy): release adjustments.
23537
23538         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
23539         adjustment argument non-construct.
23540
23541         * gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
23542         instead of in finalize.
23543         (gtk_progress_get_text_from_value): 
23544         (gtk_progress_get_current_text): 
23545         (gtk_progress_set_value): 
23546         (gtk_progress_get_percentage_from_value): 
23547         (gtk_progress_get_current_percentage): 
23548         (gtk_progress_set_percentage): 
23549         (gtk_progress_configure): ensure an adjustment is present.
23550
23551 Thu May 11 01:24:08 2000  Tim Janik  <timj@gtk.org>
23552
23553         * gtk/gtkcolorsel.[hc]:
23554         * gtk/gtkcolorseldialog.[hc]:
23555         * gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
23556         their parent implementation, use bit fields for boolean values, don't
23557         create unused widgets, usage of glib types, braces go on their own
23558         lines, function argument alignment, #include directives etc. etc. etc..
23559
23560         * gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
23561
23562 Wed May 10 23:29:52 2000  Tim Janik  <timj@gtk.org>
23563
23564         * gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
23565
23566         * gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
23567         of NULL.
23568
23569         * gtk/gtkcombo.c (gtk_combo_item_destroy): don't keep references
23570         to freed data.
23571         (gtk_combo_destroy): don't keep a pointer to a destroyed window.
23572
23573         * gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
23574         to NULL when the toplevel is getting destroyed.
23575         (gtk_menu_set_tearoff_state): same here for the tearoff_window.
23576         (gtk_menu_destroy): 
23577         (gtk_menu_init): store the information of whether we have to
23578         readd the initial child ref_count during destruction in a new
23579         GtkMenu field needs_destruction_ref_count.
23580
23581         * gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
23582         here, those reading: learn from my mistake! ;)
23583         in order for set_?adjustment to support a default adjustemnt if
23584         invoked with an adjustment pointer of NULL, the code read (pseudo):
23585         if (v->adjustment) unref (v->adjustment);
23586         if (!adjustment) adjustment = adjustment_new ();
23587         if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
23588         now imagine the first unref to actually free the old adjustment and
23589         adjustment_new() creating a new adjustment from the very same memory
23590         portion. here, the latter comparision will unintendedly fail, and
23591         all hell breaks loose.
23592         (gtk_viewport_set_hadjustment):
23593         (gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
23594         after unreferencing it.
23595
23596         * gtk/gtkcontainer.[hc]: removed toplevel registration
23597         functions: gtk_container_register_toplevel(),
23598         gtk_container_unregister_toplevel() and
23599         gtk_container_get_toplevels() which had wrong semantics
23600         anyways: it didn't reference and copy the list.
23601
23602         * gtk/gtkwindow.c: we take over the container toplevel registration
23603         bussiness now. windows are registered across multiple destructions,
23604         untill they are finalized. the initial implicit reference count
23605         users are holding on windows is removed with the first destruction
23606         though.
23607         (gtk_window_init): ref & sink and set has_user_ref_count, got
23608         rid of gtk_container_register_toplevel() call. add window to
23609         toplevel_list.
23610         (gtk_window_destroy): unref the window if has_user_ref_count
23611         is still set, got rid of call to
23612         gtk_container_unregister_toplevel().
23613         (gtk_window_finalize): remove window from toplevel list.
23614         (gtk_window_list_toplevels): new function to return a newly
23615         created list with referenced toplevels.
23616         (gtk_window_read_rcfiles): use gtk_window_list_toplevels().
23617
23618         * gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
23619         adjustment a non-construct arg.
23620         * gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
23621         * gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
23622         * gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
23623
23624         * gtk/gtkrange.c: added some realized checks.
23625         (gtk_range_destroy): get rid of the h/v adjustments in the
23626         destroy handler instead of finalize. remove timer.
23627         (gtk_range_get_adjustment): demand create adjustment.
23628
23629         * gtk/gtkviewport.c: made h/v adjustment non-construct args.
23630         we simply create them on demand now and get rid of them in
23631         the destroy handler.
23632         (gtk_viewport_destroy): get rid of the h/v adjustments in the
23633         destroy handler instead of finalize.
23634         (gtk_viewport_get_hadjustment): 
23635         (gtk_viewport_get_vadjustment): 
23636         (gtk_viewport_size_allocate): demand create h/v adjustment
23637         if required.
23638
23639         * gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
23640         gtk_widget_real_destroy () functionality.
23641         (gtk_widget_real_destroy): reinitialize with a new style, instead
23642         of setting widget->style to NULL.
23643
23644 Fri May  5 13:02:09 2000  Tim Janik  <timj@gtk.org>
23645
23646         * gtk/gtkcalendar.c:
23647         * gtk/gtkbutton.c: ported _get_type() implementation over to
23648         GType, either to preserve memchunks allocation facilities,
23649         or because Gtk+ 1.0 GtkTypeInfo was still being used.
23650
23651         * gtk/gtkobject.[hc]: derive from GObject. ported various functions
23652         over. prepare for ::destroy to be emitted multiple times.
23653         removed reference tracer magic. chain into GObjectClass.shutdown()
23654         to emit ::destroy signal.
23655
23656         * gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
23657         fundamental.
23658
23659         * gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
23660         cludge.
23661
23662         * gtk/gtksocket.c:
23663         * gtk/gtkplug.c:
23664         * gtk/gtklayout.c:
23665         * gtk/gtklabel.c:
23666         * gtk/gtkargcollector.c:
23667         * gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
23668         not being a fundamental anymore, and to work with the new
23669         type system (nuked fundamental type varargs clutter).
23670
23671         * gtk/*.c: install finalize handlers in the GObjectClass
23672         part of the class structure.
23673         changed direct GTK_OBJECT()->klass accesses to
23674         GTK_*_GET_CLASS().
23675         changed direct object_class->type accesses to GTK_CLASS_TYPE().
23676
23677         * gtktypeutils.[hc]: use the reserved fundamental ids provided by
23678         GType. made most of the GTK_*() type macros and Gtk* typedefs
23679         simple wrappers around macros and types provided by GType.
23680         most notably, a significant portion of the old API vanished:
23681         GTK_TYPE_MAKE(),
23682         GTK_TYPE_SEQNO(),
23683         GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
23684         GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
23685         GTK_TYPE_ARGS,
23686         GTK_TYPE_CALLBACK,
23687         GTK_TYPE_C_CALLBACK,
23688         GTK_TYPE_FOREIGN,
23689         GtkTypeQuery,
23690         gtk_type_query(),
23691         gtk_type_set_varargs_type(),
23692         gtk_type_get_varargs_type(),
23693         gtk_type_check_object_cast(),
23694         gtk_type_check_class_cast(),
23695         gtk_type_describe_tree(),
23696         gtk_type_describe_heritage(),
23697         gtk_type_free(),
23698         gtk_type_children_types(),
23699         gtk_type_set_chunk_alloc(),
23700         gtk_type_register_enum(),
23701         gtk_type_register_flags(),
23702         gtk_type_parent_class().
23703         replacements, where available are described in ../docs/Changes-1.4.txt.
23704         implemented compatibility functions for the remaining API.
23705
23706         * configure.in: depend on glib 1.3.1, use gobject module.
23707
23708 Thu May 11 12:39:50 2000  Owen Taylor  <otaylor@redhat.com>
23709
23710         * TODO.xml: Various updates to current status.
23711
23712 Wed May 10 20:25:04 2000  Owen Taylor  <otaylor@redhat.com>
23713
23714         * gtk.m4: Print out version when test succeeds.
23715
23716 Wed May 10 16:38:17 2000  Owen Taylor  <otaylor@redhat.com>
23717
23718         * gtk/Makefile.am docs/Changes-1.4.txt gtk/gtkcolorsel.[ch]
23719         gtk/gtkhsv.[ch]: Color selection dialog rewrite.
23720         
23721         (Original triangle color selector from Simon Budig
23722         <Simon.Budig@unix-ag.org>, Cleaned up and rewritten for GTK+ by
23723         from Jonathan, Havoc, and Federico. Merge into GTK+ done by David
23724         Santiago <mrcooger@cyberverse.com>)
23725
23726         * gtk/gtkcolorseldialog.[ch]: Split color selection dialog
23727         out into a separate widget.
23728
23729         * gtk/testgtk.c: Add some checkbuttons for toggling palette
23730         and opacity controls.
23731
23732 Wed May 10 16:08:09 2000  Owen Taylor  <otaylor@redhat.com>
23733
23734         * configure.in (GTK_LIBS_EXTRA): Remove references to gobject that 
23735         snuck in prematurely.
23736
23737 2000-05-07  Tor Lillqvist  <tml@iki.fi>
23738
23739         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Fix typo. I
23740         had deleted a ! operator by mistake, which caused
23741         GDK_SELECTION_CLEAR events never to be generated, which caused
23742         only the first copy to the clipboard from an gtkeditable to
23743         actually cause a copy to the Windows clipboard.
23744
23745 2000-05-06  Tor Lillqvist  <tml@iki.fi>
23746
23747         * gdk/win32/gdkdnd-win32.c: Enable shortcut resolution for gcc
23748         compilation, too. Current mingw gcc distributions include the
23749         necessary headers. Also the necessary IIDs are now in mingw
23750         headers/libraries, and own definitions unnecessary.
23751
23752         More hacking on OLE2 DND, still doesn't work though, and thus
23753         ifdeffed out.
23754
23755         * gdk/win32/gdkwindow-win32.c: Remove gdk_window_clear() from
23756         here, too.
23757
23758 Sat,  6 May 2000 13:31:34 +0200 Paolo Molaro <lupus@linuxcare.com>
23759
23760         * gdk/nanox/*: nano-X port work in progress.
23761         * gdk/simple.c: simple test for Gdk.
23762         * README.nanox: notes about the port: read this first!
23763         * gtk/gtk{dnd,plug,selection,window}.c: minimal changes to make gtk compile
23764         with nano-X.
23765
23766 Fri May  5 11:18:47 2000  Owen Taylor  <otaylor@redhat.com>
23767
23768         * gdk/gdkwindow.c gdk/x11/gdkwindow-x11.c (gdk_window_clear): Move
23769         gdk_window_clear() into common code, implement in terms of
23770         gdk_window_clear_area(). (Fixes bug where gdk_window_clear() was
23771         not redirected to the backing rectangle.
23772
23773 Wed Apr 26 01:53:23 2000  Owen Taylor  <otaylor@redhat.com>
23774
23775         * gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into 
23776         EXTRA_DIST. It does not work well when the file that
23777         everything depends on is not in the tarball.
23778
23779 Tue Apr 25 22:20:41 2000  Owen Taylor  <otaylor@redhat.com>
23780
23781         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Fix error
23782         with recursion where process_updates() is called from
23783         an expose handler. (GtkTextView is highly broken in
23784         doing this, but it should work, so it is a nice test
23785         case.)
23786
23787 Sun Apr 23 23:39:18 2000  Owen Taylor  <otaylor@redhat.com>
23788
23789         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Gracefully
23790         handle the case where updates are queued during processing of
23791         updates.
23792
23793 Tue Apr 18 14:16:50 2000  Owen Taylor  <otaylor@redhat.com>
23794
23795         * gdk/x11/gdkwindow-x11.c (gdk_window_foreign_new): We already assume
23796         window is on gdk_display - use that instead of segfaulting.
23797
23798 Thu May  4 02:04:46 2000  Tim Janik  <timj@gtk.org>
23799
23800         * configure.in (STRIP_DUMMY): some Make 3.79 $(strip ) versions are
23801         broken and require an empty arg, give it to them.
23802
23803 Fri Apr 28 19:34:32 2000  Tim Janik  <timj@gtk.org>
23804
23805         * gtk/gtklabel.h: indentation fixes.
23806
23807 2000-05-02  Tor Lillqvist  <tml@iki.fi>
23808
23809         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_arc): Don't try to
23810         draw too narrow or too low arcs, they seem to fail, at least with
23811         some display drivers.
23812
23813         * gdk/gdk.c (gdk_init_check): Use G_DIR_SEPARATOR.
23814
23815         Large changes to the Win32 backend, partially made necessary by
23816         the changes to the backend-independent internal
23817         structures. Attempts to implement similar backing store stuff as
23818         on X11. The current (CVS) version of the Win32 backend is *not* as
23819         stable as it was before the no-flicker branch was merged. A
23820         zipfile with that version is available from
23821         http://www.gimp.org/win32/. That should be use by "production"
23822         code until this CVS version is usable. (But note, the Win32
23823         backend has never been claimed to be "production quality".)
23824
23825         * README.win32: Add the above comment about versions.
23826
23827         * gdk/gdkwindow.c: Don't use backing store for now on Win32.
23828
23829         * gdk/gdk.def: Update.
23830
23831         * gdk/gdkfont.h: Declare temporary Win32-only functions. Will
23832         presumably be replaced by some more better mechanism as 1.4 gets
23833         closer to release shape.
23834
23835         * gdk/makefile.{cygwin,msc}: Update.
23836
23837         * gdk/win32/*.c: Correct inclusions of the backend-specific and
23838         internal headers. Change code according to changes in these. Use
23839         gdk_drawable_*, not gdk_window_* where necessary.
23840
23841         * gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
23842         our old DND.
23843
23844         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
23845         to interpret single characters as UTF-8. Thanks to Hans Breuer.
23846         Use correct function name in warning messages.
23847
23848         * gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
23849         GSourceFuncs gdk_event_prepare and gdk_event_check.
23850         (gdk_event_get_graphics_expose): Do implement, use
23851         PeekMessage. Thanks to Hans Breuer.
23852         (event_mask_string): Debugging function to print an GdkEventMask.
23853         (gdk_pointer_grab): Use it.
23854
23855         * gdk/win32/gdkfont-win32.c: The Unicode subrange that the
23856         (old) book I used claimed was Hangul actually is CJK Unified
23857         Ideographs Extension A. Also, Hangul Syllables were missing.
23858         Improve logging.
23859
23860         * gdk/win32/gdkgc-win32.c: Largish changes.
23861
23862         * gdk/win32/gdkim-win32.c (gdk_set_locale): Use
23863         g_win32_getlocale() from GLib, and not setlocale() to get current
23864         locale name.
23865
23866         * gdk/win32/gdkprivate-win32.h
23867         * gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
23868         gdkwin32.h, similarily as in the X11 backend.
23869
23870         * gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
23871         assignment was used instead of equals in if test. Thanks to Hans
23872         Breuer.
23873
23874         * gdk/win32/gdkgeometry-win32.c: New file, just a quick hack of
23875         the X11 version.
23876
23877         * gdk/win32/makefile.{cygwin,msc}
23878         * gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
23879         path to the Win32 headers that works also with the mingw compiler.
23880
23881         * gtk/gtkstyle.c: Include <string.h>.
23882
23883 2000-04-26  Havoc Pennington  <hp@redhat.com>
23884
23885         * gtk/gtklabel.c (gtk_label_get_text): Add this function,
23886         replacing the broken gtk_label_get ()
23887
23888 2000-04-15  Havoc Pennington  <hp@pobox.com>
23889
23890         * gdk/gdkdnd.h: clean up enum format, remove extra comma, 
23891         this keeps scanner scripts from getting confused.
23892
23893         * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
23894         data, rather than void
23895
23896 2000-04-15  Tor Lillqvist  <tml@iki.fi>
23897
23898         * gtk/gtkclist.c (gtk_clist_motion)
23899         * gtk/gtklist.c (gtk_list_motion_notify): If we get a motion event
23900         with is_hint FALSE, get x and y from the event. They used to be
23901         used uninitialised. The Win32 backend never sends motion events
23902         marked as hints. This for instance fixes the annoying file and
23903         font selector behaviour in the Win32 version.
23904
23905 2000-04-14  Tor Lillqvist  <tml@iki.fi>
23906
23907         * gtk/gtksignal.c: (Win32:) Export the gtk_private_signals and
23908         gtk_private_n_signals variables, they are used by some software,
23909         sigh.
23910
23911         * gtk/gtkrc.c (get_gtk_sysconf_directory): (Win32:) Fetch the
23912         installation directory from the Registry, where the installer
23913         should have put it.
23914
23915 Fri Apr  7 17:19:27 2000  Owen Taylor  <otaylor@redhat.com>
23916
23917         * gdk/x11/Makefile.am: Fix problem with installation directory for
23918         gdkx.h
23919
23920         * gtk/gtkmenuitem.c gtk/gtkmenushell.c: Patch from David Santiago
23921         <mrcooger@cyberverse.com> so that when selecting menus with the
23922         mouse, the first item will not be selected, but when selecting
23923         with an accelerator, or navigating left-right on a menubar with
23924         the menus popped up, the first item will be selected.
23925
23926 2000-04-05  Dan Damian  <dand@dnttm.ro>
23927
23928         * configure.in: Added "ro" to ALL_LINGUAS.
23929
23930 Wed Apr  5 00:08:36 2000  Owen Taylor  <otaylor@redhat.com>
23931
23932         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): Fix screwy
23933         indentation.
23934
23935         * Makefile.am (EXTRA_DIST): Fix typo.
23936
23937         * gdk[/x11]/Makefile.am (INCLUDES): Add $(top_builddir)/gdk
23938         to catch gdkconfig.h
23939
23940         * gtk/gtkitemfactory.c: Added FIXME.
23941
23942 2000-03-30  Jonathan Blandford  <jrb@redhat.com>
23943
23944         * gtk/gtkpaned.c (gtk_paned_get_position): oops.
23945         s/return_if_fail/return_val_if_fail/g and add a return value.
23946
23947 Mon Mar 27 20:56:14 2000  Owen Taylor  <otaylor@redhat.com>
23948
23949         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Fix up 
23950         merge slipup.
23951
23952         * gdk/gdkinput.h: Fix missing line from merge.
23953
23954 Mon Mar 27 20:39:49 2000  Owen Taylor  <otaylor@redhat.com>
23955
23956         * gdk/gdkcolor.c cursor.c gdkdraw.c gdkfont.c: Include gdkinternals.h
23957         instead of gdkprivate.h.
23958
23959 Sun Mar 12 15:19:24 2000  Owen Taylor  <otaylor@redhat.com>
23960
23961         * gtk/gtkinputdialog.h (struct _GtkInputDialogClass): Fix
23962         parent class to correctly be GtkDialogClass.
23963
23964 Thu Feb 24 23:58:21 2000  Owen Taylor  <otaylor@redhat.com>
23965
23966         * gdk/x11/gdkgeometry-x11.c: Don't worry about clipping of
23967         toplevel windows and their immediate children by their parents,
23968         since the size of toplevel windows is out of our immediate
23969         control and we don't get any real benefit from trying to track
23970         this size for clipping.
23971
23972         * gdk/gdkprivate.h (struct _GdkWindowPrivate) gdk/x11/gdkwindow-x11.c : Add a flag
23973         for input_only windows.
23974
23975         * gdk/gdkwindow.c gdk/x11/gdkgeometry-x11.c: Use the above flag
23976         to fix some hacks and make sure that we don't try to set the
23977         background of input only windows.
23978
23979 Thu Feb 24 18:11:46 2000  Owen Taylor  <otaylor@redhat.com>
23980
23981         * gdk/gdkinternals.h gdk/gdkprivate.h gdk/Makefile.am: Add a header file for
23982         the _really_ internal stuff, and leave gdkprivate.h for the fake private
23983         stuff that we've traditionally exposed.
23984
23985         * gdk/**.c: Use gdkinternals.h where appropriate.
23986
23987         * gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h gdk/x11/*.c: Make gdkx.h
23988         not include gdkprivate-x11.h, move all stuff of conceivable public
23989         interest into gdkx.h; keep all really private stuff in
23990         uninstalled header gdkprivate-x11.h.
23991
23992         * gdk/gdkdraw.c gdk/gdkwindow.c gdk/gdkinternals: Redirect all calls to
23993         image->image_put on windows through a new function _gdk_window_draw_image()
23994         to allow us to do backing store for images. (Sort of ugly)
23995
23996         * gdk/gdkgc.c gdk/gdkprivate.h: Cache the ts and clip origins for graphics
23997         contexts locally so that we can offset them properly when drawing 
23998         onto backing pixmaps.
23999
24000         * gdk/gdkinput.h: Reindented
24001
24002         * gdk/gdkprivate.h gdk/x11/gdkwindow-x11.c: Store the background
24003         pixmap or color for the window, so we can properly initialize
24004         our double-buffer pixmaps, and also so that we temporarily set
24005         a background of None while scrolling.
24006
24007         * gdk/gdkregion.h: Revise region boolean operators to have an
24008         interface that is actually convenient - switch from creating new
24009         regions on every op, to "methods" that modify existing regions
24010         (A = A OP B). 3 argument forms which allow dest == src, would also
24011         be possible, but the current interfaces seem to map nicely
24012         onto what needs to be done. (There is quite a lot of region
24013         code in GDK now.)
24014
24015         * gdk/gdkregion.h: Add constructor from rectangle and a copy
24016         operator.
24017
24018         * gdk/x11/{gdkregion-generic.[ch],gdkpolyreg-generic.c,
24019         gdkpoly-generic.h: Copy region code from Xlib, switch it over
24020         to 32 bit coordinates, modify it to be mostly GTK+ style
24021         and to have interfaces that match gdkregion.h.
24022
24023         * gdk/gdkwindow.c gdk/gdkprivate.h: Add facility for
24024         double-buffered drawing. gdk_window_begin_paint_{rect,region}()
24025         create a backing pixmap and redirect all drawing to
24026         that backing pixmap until a matching gdk_window_end_paint().
24027
24028         * gdk/gdkwindow.[ch] gdk/gdkinternals.h gdk/x11/gdkdrawable-x11.c:
24029         Create a special drawable class for GtkWindow's that 
24030         redirects the drawing to the backing pixmap as necessary
24031         and then calls the real operations in _gdk_windowing_window_class.
24032
24033         * gdk/gdkprivate.h gdk/gdkwindow.[ch] gdk/x11/gdkevents-x11.c:
24034         Store invalid region for each window. Generate expose events for invalid
24035         region in an idle. This replaces both the expose compression
24036         and the redrawing queuing in GTK+. It is both more efficient and
24037         simpler than either one individually and far more so then the
24038         combination.
24039
24040         * gdk/x11/gdkgeometry.c gdk/x11/gdkwindow.c gdk/x11/gdkprivate-x11.h:
24041         Emulate 32 bit coordinates for windows with 16 bit coordinates
24042         by offsetting drawing, guffaw scrolling techniques and
24043         mapping/unmapping child windows as necessary.
24044
24045         * gdk/gdkwindow.[ch] gdk/x11/gdkgeometry.c: Add anti-exposes,
24046         where, when invalid regions are processed, the region is stored,
24047         and if expose events come in that are detectably duplicate
24048         the processed exposes (by comparison of event serial numbers),
24049         the stored region is subtracted out of those exposes.
24050
24051         * gdk/x11/gdkgeometry.c: Temporarily unset backing pixmaps of
24052         regions newly exposed when scrolling or resizing windows.
24053         This, combined with forcing processesing of queued invalidated
24054         regions, gives nice flicker-free scrolling.
24055
24056         * gtk/gtklayout.c gtk/gtkviewport.c: Force processing of
24057         invalidated regions after every scroll.
24058
24059         * gtk/gtklayout.c: Vastly simplify using the new 32 bit coordinate
24060         emulation in GDK. Its, for all practical purposes just a
24061         GtkViewport/GtkFixed hybrid now.
24062
24063         * gdk/gdkdrawable-x11.c: Convert from GDK (32 bit) to X11
24064         (16-bit) structures as necessary instead of just casting.
24065
24066         * gdk/x11/gdkgc-x11.c gdk/x11/gdkx.h: Replace XSetRegion with code
24067         in terms of the structures from gdkregion-generic.c, using appropriate
24068         offsets from GDK to X11 coordinates. Cache clip mask and
24069         origin and ts origin locally and only flush to the server
24070         when drawing, to avoid constantly setting and resetting these
24071         values when offsetting GC's for scrolling and backing pixmaps.
24072
24073         * gdk/x11/gdkinput-x11.c: Fix leak of axes structures.
24074
24075         * gtk/gtkcontainer.c: Call process_all_updates at end
24076         of resizing to reduce flicker. (Avoids having redraw
24077         lag arbitrarily behind resize under some circumstances)
24078
24079         * gtk/gtkentry.c: Remove old backing store code, and simply take
24080         advantage of the new backing store capabilities of GDK.
24081
24082         * gtk/gtkmain.c: Simple implementation of widget backing
24083         store - simply push a paint while handling each expose.
24084         (Should really be configurable widget for widget.)
24085         
24086         * gtk/gtkwidget.c: Remove all the old complicated redraw
24087         code, and simply invalidate the GDK windows from
24088         gdk_window_queue_clear(), etc. (Sigh, so much carefully
24089         debugged complexity ... gone to the winds.)
24090
24091         Remove all the code for suppressing expose events while
24092         resizes are pending; this isn't needed since the invalid
24093         areas won't be processed until after the resizes are
24094         processed, since they are in a lower priority idle.
24095
24096 Thu Feb 24 15:37:41 2000  Owen Taylor  <otaylor@redhat.com>
24097
24098         * gdk/gdkrectangle.c (gdk_rectangle_intersect): Set width
24099         and height of dest rectangle for non-intersecting rectangles.
24100
24101 Sun Feb 20 16:47:31 2000  Owen Taylor  <otaylor@redhat.com>
24102
24103         * gtk/gtkwidget.h: Make GtkAllocation just a typedef
24104         for GdkRectangle.
24105
24106 Sun Feb 20 11:27:00 2000  Owen Taylor  <otaylor@redhat.com>
24107
24108         * gdk/gdk{events,image,private,types,window}.h
24109          gdk/x11/gdkinputprivate.h: Change all coordinates
24110          from int16 to int. Also, Change width and height from
24111          unsigned to signed to avoid all the stupid C 
24112          signedness bugs.
24113
24114 Sat Feb 19 12:01:53 2000  Owen Taylor  <otaylor@redhat.com>
24115
24116         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_drawable):
24117         Use gdk_drawable_get_depth instead of gdk_drawable_get_visual.
24118         Add some more detailed checking.
24119
24120         * gdk/gdkdraw.c gdk/gdkdrawable.h (gdk_drawable_get_depth):
24121         New function to retrieve the depth of a drawable.
24122
24123         * gdk/gdkprivate.h (struct _GdkDrawablePrivate): Add a depth
24124         field, reorder fields to save memory. 
24125
24126 Mon Dec 13 14:06:03 1999  Owen Taylor  <otaylor@redhat.com>
24127
24128         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): Draw a small portion
24129         of the background image instead of scaling the background down to
24130         a line.
24131
24132         * gtk/gtk[hv]scrollbar.c (gtk_hscrollbar_size_allocate): Removed mysterious
24133         which temporarily set slider to wrong size.
24134
24135         * gtk/gtkaspectframe.c gtkbin.c: Remove unecessary calls to
24136         queue_clear().
24137
24138 Wed Nov 17 18:36:05 1999  Owen Taylor  <otaylor@redhat.com>
24139
24140 2000-03-23  Jonathan Blandford  <jrb@redhat.com>
24141
24142         * gtk/gtkpaned.c (gtk_paned_get_position): add getter.
24143
24144 2000-03-17  Tor Lillqvist  <tml@iki.fi>
24145
24146         * gdk/win32/gdkevents-win32.c: Remove the #ifndef
24147         USE_DISPATCHMESSAGE sections, we do want to use DispatchMessage.
24148
24149         * gdk/win32/gdkfont-win32.c
24150         * gdk/win32/gdkproperty-win32.c
24151         * gdk/win32/gdkselection-win32.c
24152         * gdk/win32/gdkwindow-win32.c: Add const to some arguments that are
24153         now declared such.
24154
24155 Wed Mar 15 02:59:38 PST 2000 Manish Singh <yosh@gimp.org>
24156
24157         * gtk/gtkvpaned.c: removed stray gutter_size reference, a 1.2 relic
24158
24159 Mon Mar 13 18:37:55 2000  Owen Taylor  <otaylor@redhat.com>
24160
24161         * gdk/gdkdnd.c: Fix a bunch of cases where XGetWindowProperty()
24162         is called without trapping X errors.
24163
24164 Fri Feb 25 10:48:53 2000  Owen Taylor  <otaylor@redhat.com>
24165
24166         * gtk/gtkrc.*: Fix problem where stray '"' characters found their
24167         way into the fontset lists.
24168
24169 Tue Feb 22 08:52:52 2000  Tim Janik  <timj@gtk.org>
24170
24171         * gtk/gtkthemes.h: add extern "C" scope.
24172
24173 Mon Feb 21 20:16:42 2000  Lars Hamann  <lars@gtk.org>
24174
24175         * gtk/gtkclist.c: applied  patch from Guy Harris <guy@netapp.com>
24176         to make appends to the list constant. (gtk-guy-990901-0.patch)
24177
24178 Mon Feb 14 22:50:10 2000  Tim Janik  <timj@gtk.org>
24179
24180         * gtk/gtktypeutils.c (gtk_type_init): use g_str_hash() and g_str_equal()
24181         for the typename hash table.
24182
24183 Mon Feb 14 15:01:23 2000  Owen Taylor  <otaylor@redhat.com>
24184
24185         * gtk/gtkpaned.c (gtk_paned_compute_position): Add some sanity checks
24186         to make sure we never divide by zero. 
24187         (Problem pointed out by Michal Jaegermann <michal@ellpspace.math.ualberta.ca>)
24188
24189 Mon Feb 14 12:29:38 2000  Owen Taylor  <otaylor@redhat.com>
24190
24191         * gtk/gtkfontsel.c: Apply patch from
24192         SHIRASAKI Yasuhiro <yasuhiro@awa.tohoku.ac.jp> to make font selector work a little
24193         better with 2-byte fonts. (Load a fontset instead of a font for two byte fonts.)
24194
24195         Also, some cleanups in atom handling.
24196
24197 Sun Feb 13 08:02:21 2000  Tim Janik  <timj@gtk.org>
24198
24199         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
24200         not GtkWidget.
24201
24202 Fri Feb 11 02:19:32 2000  Tim Janik  <timj@gtk.org>
24203
24204         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): 
24205         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): 
24206         * gtk/gtkpaned.c (gtk_paned_compute_position): had to squeeze some
24207         more guint wrap-around bugs before going to bed.
24208
24209 Thu Feb 10 16:16:35 2000  Tim Janik  <timj@gtk.org>
24210
24211         * gtk/gtkspinbutton.c (gtk_spin_button_size_allocate): guard against
24212         guint wrap arounds in allocation.width.
24213
24214         * gtk/gtktable.c (gtk_table_size_allocate_pass1): repeat shrinking
24215         process untill we fit the allocation given.
24216
24217 Tue Feb  8 09:38:29 2000  Tim Janik  <timj@gtk.org>
24218
24219         * gtk/gtkwidget.c:
24220         (gtk_widget_unrealize): guard widget access with ref/unref
24221         around signal emission.
24222         (gtk_widget_hide): same here, but also check its destroyed
24223         state before queueing a resize.
24224
24225 Tue Feb  8 03:05:55 2000  Tim Janik  <timj@gtk.org>
24226
24227         * gtk/gtkstyle.c (gtk_style_new): use gtk_default_prelight_bg instead
24228         of gtk_default_insensitive_bg as insensitive base color.
24229
24230         * gtk/gtktext.c (gtk_text_style_set): set the background color according
24231         to the widget's state.
24232         (gtk_text_realize): same here.
24233         (gtk_text_state_changed): same here.
24234         (draw_bg_rect): compare background color against base[] from
24235         GTK_WIDGET_STATE (text) not GTK_STATE_NORMAL.
24236
24237 Mon Feb  7 04:01:55 2000  Tim Janik  <timj@gtk.org>
24238
24239         * gtk/gtkmain.c (gtk_main_do_event): ignore delete events when
24240         grabs are active, unless a delete event is send to the toplevel
24241         of the currently grab holding widget.
24242
24243 Sun Feb  6 10:13:15 2000  Owen Taylor  <otaylor@redhat.com>
24244
24245         * gtk/gtkctree.c (gtk_ctree_drag_data_received): Remove
24246         debugging g_print's.
24247
24248 Fri Feb  4 15:54:54 2000  Owen Taylor  <otaylor@redhat.com>
24249
24250         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_size_request): Don't
24251         ever make the scrolled-window requisition ever depend on the 
24252         visibility state of the scrollbars for the AUTOMATIC policy. 
24253         This breaks the GTK+ requisition model, and causes loops.
24254
24255 Fri Feb  4 15:09:12 2000  Owen Taylor  <otaylor@redhat.com>
24256
24257         * gtk/gtkstyle.c (gtk_style_new): Set the charset explicitely for
24258         the default font to avoid problems with XFree86-4.0 where the
24259         default charset is iso10646-1, not iso8859-1.
24260
24261 Thu Feb  3 14:58:48 PST 2000 Manish Singh <yosh@gimp.org>
24262
24263         * acinclude.m4
24264         * config.guess
24265         * config.sub
24266         * ltconfig
24267         * ltmain.sh: upgrade to libtool 1.3.4 (bugfix only release)
24268
24269         * gtk/Makefile.am: minor cosmetic consistency tweak
24270
24271 Thu Feb  3 14:46:01 2000  Owen Taylor  <otaylor@redhat.com>
24272
24273         * gtk/gtkmenushell.c (gtk_menu_shell_button_release): Set
24274         the activate_time to 0, so that we handle a quick
24275         press/release press/release properly and don't suppress
24276         the second release. (Red Hat bug #7545)
24277
24278 Wed Feb  2 22:25:17 2000  Tim Janik  <timj@gtk.org>
24279
24280         * gtk/gtkctree.c (row_delete):
24281         (gtk_ctree_node_set_row_data_full): fixed very evil reentrancy
24282         bugs with destruction notifier, *always* update internal
24283         structures *before* calling user code.
24284
24285 Sun Jan 30 20:10:52 2000  Lars Hamann  <lars@gtk.org>
24286
24287         A few more fixes for bug #5487, #2051, #2677.
24288         * gtk/gtkclist.c : 
24289         (gtk_clist_button_press):  Reset clist->anchor to -1 if event->type is
24290         not GDK_BUTTON_PRESS.
24291         (resync_selection): resync only if selection_mode is
24292         GTK_SELECTION_EXTENDED
24293         * gtk/gtkctree.c (resync_selection): same here
24294
24295 Sun Jan 30 12:29:20 2000  Owen Taylor  <otaylor@redhat.com>
24296
24297         * gdk/gdk.h gtk/gtkmenu.h: Removed duplicate prototypes for
24298         gdk_drag_get_selection() and gtk_menu_detach().
24299
24300         [ From Jeroen Ruigrok/Asmodai ]
24301
24302 Sat Jan 29 10:11:56 2000  Owen Taylor  <otaylor@redhat.com>
24303
24304         * gtk/gtknotebook.c (gtk_notebook_size_request): 
24305         page->tab_label can be NULL.
24306
24307 2000-01-25  Havoc Pennington  <hp@pobox.com>
24308         
24309         * gdk/gdkwindow.c (gdk_window_set_back_pixmap): parent_relative
24310         arg is boolean
24311
24312         * gdk/gdkselection.c (gdk_selection_owner_set): return boolean
24313
24314         * gdk/gdkrectangle.c (gdk_rectangle_intersect): return boolean
24315
24316         * gdk/gdkproperty.c (gdk_property_get): return boolean
24317
24318         * gdk/gdkinput.c (gdk_input_set_mode): return boolean
24319
24320         * gdk/gdkim.c (gdk_im_ready): return boolean
24321
24322         * gdk/gdkgc.c (gdk_gc_set_exposures): gboolean arg
24323
24324         * gdk/gdkfont.c (gdk_font_equal): return gboolean (mild
24325         glib clash, should fix glib)
24326
24327         * gdk/gdkevents.c (gdk_set_show_events): take gboolean arg
24328         (gdk_get_show_events): return gboolean, and canonicalize 
24329         to TRUE/FALSE
24330
24331         * gdk/gdkcolor.c (gdk_colormap_new): gboolean flag whether the
24332         colormap is private
24333         (gdk_colors_alloc): gboolean whether to be contiguous
24334         (gdk_color_equal): return gboolean since we are a predicate
24335         and not a qsort() (this looks semi-wrong due to glib breakage,
24336         IMO glib should be fixed)
24337         
24338         * gdk/gdk.c (gdk_set_use_xshm): take gboolean arg
24339         (gdk_get_use_xshm): return gboolean
24340         (gdk_pointer_is_grabbed): return gboolean
24341
24342         * gdk/gdk.h: Change prototypes to match all the above changes,
24343         and re-run egtk-format-protos as required.
24344
24345 Fri Jan 28 12:28:17 2000  Owen Taylor  <otaylor@redhat.com>
24346
24347         * gtk/gtkctree.c (resync_selection): 
24348         * gtk/gtkclist.c (resync_selection):
24349
24350         Return immediately if clist->drag_pos < 0. This is a workaround
24351         for the corrupt state that the clist gets into when a
24352         GDK_2BUTTON_PRESS occurs. See note in gtk_clist_button_press().
24353
24354         Bug #5487, #2051, #2677; fix suggested by David Helder and T. Alexander Popiel.
24355         
24356         * gtk/gtknotebook.c (gtk_notebook_size_request): Fix uninitialized
24357         variable from recent commit.
24358
24359 Thu Jan 27 15:22:09 2000  Owen Taylor  <otaylor@redhat.com>
24360
24361         * gtk/gtkdnd.c (gtk_drag_begin): Fix stupid typo in last commit.
24362
24363 Thu Jan 27 18:00:55 2000  Tim Janik  <timj@gtk.org>
24364
24365         * gtk/Makefile.am: prefix all autogenerated source that get build in
24366         $(srcdir) with $(srcdir)/, so make doesn't assume they got generted
24367         in builddir. since we subsequently cd into srcdir for autogeneration,
24368         the paths have to be stripped from the target file names, thusly we
24369         use $(@F) as target names now.
24370         put a comment about configure.in's --disable-rebuilds option,
24371         which can be used for non-writable source directories, for development
24372         setups though, srcdir has to be *writable*.
24373
24374 hu Jan 27 00:15:03 2000  Owen Taylor  <otaylor@redhat.com>
24375
24376         * gtk/gtkdnd.c (gtk_drag_begin gtk_drag_get_event_actions):
24377           Finish the job of allowing event to be NULL.
24378           (Fixes bug #4283, reported by Chris Blizzard)
24379
24380         * gtk/gtkentry.c (entry_adjust_scroll): When calculating
24381           things so that the cursor appears on screen, properly
24382           take into account INNER_BORDER.
24383           (Fixes bug #4754, reported by Antonio Campos)
24384
24385 Wed Jan 26 23:12:28 2000  Owen Taylor  <otaylor@redhat.com>
24386
24387         * gtk/gtknotebook.c (gtk_notebook_map): Don't
24388           show the tab_label unless it itself is visible.
24389
24390           gtk/gtknotebook.c (gtk_notebook_size_request):
24391           Do a better job of making sure that the visibility
24392           of the tab label corresponds to whether it should
24393           be mapped or not.
24394
24395 Wed Jan 26 21:17:03 2000  Owen Taylor  <otaylor@redhat.com>
24396
24397         * gtk/gtkoptionmenu.c (gtk_option_menu_position):
24398           Use the requisition, not the allocation, since the
24399           allocation has not necessarily been computed yet.
24400           (Pointed out by Eugene Osintsev)
24401
24402 Wed Jan 26 19:44:25 2000  Owen Taylor  <otaylor@redhat.com>
24403
24404         * gtk/gtkstyle.c (gtk_style_new): Dont' set
24405           style/base[GTK_STATE_INSENSITIVE] both to
24406           gtk_default_insensitive_bg!
24407           (Bug #2187, reported by Jonathan Blandford)
24408
24409         * gtk/gtkaccelgroup.c (gtk_accelerator_valid):
24410           Add Alt_L, Alt_R to list of invalid accelerators.
24411           (Bug #3736, reported by Vlad Harchev)
24412
24413 Wed Jan 26 19:01:56 2000  Owen Taylor  <otaylor@redhat.com>
24414
24415         * gtk/gtkfilesel.c (open_ref_dir): Fix several
24416         bugs which occured after an attempt to open 
24417         invalid home directory left cmpl_state->reference_dir == NULL.
24418
24419          - completion on files in home directory didn't work
24420          - completion on an empty string caused  segfault
24421
24422          (Bug #3678, reported by Steve Ratcliffe)
24423
24424         * gtk/gtkscale.c (gtk_scale_get_value_width): Fix
24425         cut and paste error that was causing scales to
24426         be incorrectly positioned.
24427         (Bug #2956,
24428          patch from Steve Ratcliffe <steve@parabola.demon.co.uk>)
24429
24430 2000-01-27  Shirasaki Yasuhiro  <yasuhiro@gnome.gr.jp>
24431
24432         * acinclude.m4 (AM_GTK_WITH_NLS): Add -lintl to libs
24433         when checking for dcgettext, if we've found we needed
24434         it for dgettext.
24435 +
24436 Wed Jan 26 18:06:07 2000  Owen Taylor  <otaylor@redhat.com>
24437
24438         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
24439         queue_clear on NO_WINDOW widgets during a reparent,
24440         since at that point the window and widget heirarchies
24441         are out of sync. This stops crashing in some cases
24442         (the scrolled window reparent test, for instance), and
24443         _probably_ won't cause drawing errors.
24444
24445         * gtk/testgtk.c: Make the reparenting-a-scrolled-window
24446         test do what it was supposed to do and be robust against
24447         window closings, etc. (Bug #2443)
24448
24449 Wed Jan 26 16:56:54 2000  Owen Taylor  <otaylor@redhat.com>
24450
24451         * gtk/gtkentry.c: Fix return values on mouse events.
24452         (Bug #2686, Sky <seb_sky@yahoo.com>)
24453
24454         * gtk/genmarshal.pl: Fix up handling of FOREIGN.
24455         (pointed out by George Lebl)
24456
24457         * gdk/gdkcolor.c (gdk_color_copy): Made const-safe.
24458         (From Ettore Perazzoli  <ettore@helixcode.com>)
24459  
24460 Mon Jan 24 10:44:48 2000  Owen Taylor  <otaylor@redhat.com>
24461
24462         * gtk/gtkcalendar.c (gtk_calendar_main_button): Handle
24463         clicks between rows or outside calender area correctly.
24464         (Patch from Damon Chaplin)
24465
24466         * gtk/gtkclist.c (gtk_clist_set_row_data_full): 
24467         * gtk/gtkctree.c (gtk_ctree_node_set_row_data_full): 
24468           Call destroy function when overwriting existing data. 
24469           (Pointed out by Damon Chaplin)
24470
24471 Tue Jan 25 09:55:41 2000  Owen Taylor  <otaylor@redhat.com>
24472
24473         * gdk/gdk.c: Remove useless #include of <X11/Xmu/WinUtil.h>,
24474           which was causing problems on various systems with Xmu.
24475           This hasn't been needed for a very long time.
24476           (Fixes #1185 3167)
24477
24478 Sun Jan 23 22:27:36 2000  Owen Taylor  <otaylor@redhat.com>
24479
24480         * gdk/gdki18n.h: Include <ctype.h> when defining
24481           gdk_isw* in terms of is* as a fallback.
24482           (Bug #4106 - Dan Winship <danw@MIT.EDU>)
24483
24484 Sun Jan 23 22:12:36 2000  Owen Taylor  <otaylor@redhat.com>
24485
24486         * gtk/gtkviewport.c (gtk_viewport_size_allocate): Don't
24487           realize the widget when it is size allocated!
24488           (old, old bug)
24489
24490         * gtk/gtkviewport.c (gtk_viewport_adjustment_value_changed):
24491           Removed unused call to gdk_window_get_size() that
24492           showed up when the above was fixed.
24493
24494 Sat Jan 22 15:44:30 2000  Owen Taylor  <otaylor@redhat.com>
24495
24496         * gtk/gtkwidget.c (gtk_widget_reparent): Correctly
24497           fix up widget->window when the widget is a
24498           NO_WINDOW container widget.
24499
24500 Sat Jan 22 12:40:48 2000  Owen Taylor  <otaylor@redhat.com>
24501
24502         * gdk/gdkpixmap.c (gdk_pixmap_seek_string): Rewrite
24503           to account for the fact that feof() does _not_ 
24504           return TRUE on errors, and thus avoid infinite loops
24505           when trying to use gdk_pixmap_create_from_xpm()
24506           on unreadable values.
24507
24508 Fri Jan 21 18:32:43 2000  Owen Taylor  <otaylor@redhat.com>
24509
24510         * gtk/gtkaspectframe.h (struct _GtkAspectFrame): s/gint/gboolean/.
24511
24512 Fri Jan 21 16:24:08 2000  Owen Taylor  <otaylor@redhat.com>
24513
24514         * gdk/gdkgc.c (gdk_gc_set_dashes): Change from
24515           gdk_gc_set_dashes to take gint8 instead of gchar to
24516           make it clearer that it is _not_ a NULL terminated string.
24517
24518         * gdk/gdk.h gdk/gdkfont.c gdk/gdkgc.c gdk/gdkselection.c
24519           gdk/gdkwindow.c gtk/gtkprogress.[ch] gtk/gtkthemes.[ch]
24520           gtk/gtktreeitem.[ch] gtk/gtkwidget.[ch]: Constify string
24521           arguments.
24522
24523 Thu Dec 30 04:51:05 1999  Tim Janik  <timj@gtk.org>
24524
24525         * gtk/gtkvscale.c (gtk_vscale_pos_background): 
24526         * gtk/gtkhscale.c (gtk_hscale_pos_background): when calculating the
24527         background size relative to our allocation, guard against small
24528         allocations, we may have not yet been size allocated.
24529
24530 Thu Dec  2 10:59:14 1999  Owen Taylor  <otaylor@redhat.com>
24531
24532         * gdk/gdkdnd.c (xdnd_check_dest): Allow version >= 3,
24533         not just version == 3. We implement all 3 + most of 4 - 
24534         (we don't support matching text/plain;charset=iso-8859-1
24535         to a dest that expects text/plain). We'll still advertise
24536         3 to be safe, but any client implementing version >= 3
24537         must interoperate with 3.
24538         
24539 Tue Mar 14 11:53:31 2000  Owen Taylor  <otaylor@redhat.com>
24540
24541         * gtk/gtktooltips.[ch] (struct _GtkTooltips): Remove foreground,
24542         background and gc members, add a warning in gtk_tooltips_set_color()
24543         indicating that this function is deprecated.
24544
24545 Thu Mar  9 22:10:56 GMT 2000  Tony Gale <gale@gtk.org>
24546
24547         * docs/gtkfaq.sgml: FAQ Update:
24548           - Minor cleanups (Emmanuel, me)
24549           - New questions:
24550                 I need to add a new signal to a GTK+ widget. Any idea? (timj)
24551                 How can I retrieve the text from a GtkMenuItem? (timj)
24552                 How do I validate/limit/filter the input to a GtkEntry? (me)
24553                 Memory does not seem to be released when I free the list
24554                         nodes I've allocated (timj)
24555
24556 2000-03-07  Tor Lillqvist  <tml@iki.fi>
24557
24558         * gdk/win32/gdkmain-win32.c: Internal GDK error reporting changes:
24559         (gdk_win32_gdi_failed) New function for reporting errors from GDI,
24560         for which it is no use to call GetLastError onWin9x.
24561         (gdk_other_api_failed) New function, for general error
24562         reporting without calling GetLastError.
24563         (gdk_win32_api_failed) OTOH, this function always calls
24564         GetLastError. (gdk_win32_last_error_string) Remove this function,
24565         GLib has the equivalent now.
24566
24567         * gdk/win32/gdkprivate-win32.h: Declare the above, and macros to
24568         call them with function name, file name and line number in the
24569         arguments.
24570
24571         * gdk/win32/*.c: Use the new macros for reporting errors from GDI
24572         functions.
24573         
24574         * gtk/gtk.def: Add some missing entry points.
24575
24576         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
24577         gtk_paned_set_gutter_size, which don't exist any longer, as void.
24578         
24579         Fixes by Hans Breuer:
24580
24581         * gdk/makefile.msc: Update for debugging.
24582
24583         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Fake
24584         implementation, just use the PS_DASH, PS_DOT, PS_DASHDOT or
24585         PS_DASHDOTDOT or PS_DASH styles depending on the number of entries
24586         in the dash_list.
24587
24588         * gdk/win32/gdkwin32.h (GDK_FONT_XFONT): New macro, similar as in
24589         the x11 backend.
24590
24591         * gdk/win32/gdkprivate-win32.h (IS_WIN_NT): New macro.
24592
24593         * gtk/testgtk.c: Include config.h, guard inclusion of unistd.h.
24594
24595 2000-03-04  Tor Lillqvist  <tml@iki.fi>
24596
24597         * gdk/win32/gdkprivate-win32.h (struct _GdkWindowWin32Data): Store
24598         just pixel value of background colour.
24599
24600         * gdk/win32/gdkgc-win32.c (gdk_colormap_color): New function
24601         containing code snippet previously duplicated in a couple of
24602         places.
24603         
24604         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_points): Use
24605         gdk_colormap_color.
24606
24607         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Generate
24608         GDK_SCROLL events for WM_MOUSEWHEEL messages. Don't generate
24609         events for autorepeated Shift, Control and Alt keys. Use
24610         gdk_colormap_color.
24611
24612         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): If the
24613         pointer is inside the window the cursor of which we are setting,
24614         call SetCursor immediately.
24615
24616         * gdk/win32/makefile.cygwin
24617         * gtk/makefile.cygwin: If we don't have the build number stamp
24618         file, use zero.
24619
24620         * gtk/gtkcompat.h.in: Define gtk_paned_gutter_size and
24621         gtk_paned_set_gutter_size as empty.
24622
24623         * gtk/gtk.def: Remove gtk_paned_set_gutter_size.
24624         
24625 Tue Feb 29 13:10:00 GMT 2000  Tony Gale <gale@gtk.org>
24626
24627         * gdk/gdkwindow.h gdk/x11/gxid.c gtk/gtkclist.c gtk/gtkclist.h
24628           gtk/gtkctree.c gtk/gtkmenu.h gtk/gtkwidget.c gtk/testgtk.c
24629           docs/styles.txt docs/refcounting.txt docs/gtkfaq.sgml
24630           docs/gtk_tut.sgml docs/gtk.texi TODO:
24631
24632           Spelling/grammar fixes from Martin Buchholz <martin@xemacs.org>
24633
24634 Sat Feb 26 11:46:25 GMT 2000  Tony Gale <gale@gtk.org>
24635
24636         * gtk/gtkcalendar.c: Implement num_marked_dates,
24637           and don't emit mutiple day_selected signals on
24638           month_prev.
24639
24640 2000-02-25  Jonathan Blandford  <jrb@redhat.com>
24641
24642         * docs/make-todo (lineno): let title and logo be configurable so
24643         that GNOME can use this script too.
24644
24645         * TODO.xml: added logourl and a title
24646
24647 Fri Feb 25 11:12:00 2000  Owen Taylor  <otaylor@redhat.com>
24648
24649         * TODO.xml: Added some UI items, and an explanatory
24650         comment at the top of the file.
24651
24652 Thu Feb 24 09:07:28 2000  Tim Janik  <timj@gtk.org>
24653
24654         * TODO.xml: some updates, added abunch of new entries.
24655         a note for those fiddeling with this file, when done
24656         with it, invoke:
24657         $ ./docs/make-todo TODO.xml >/dev/null
24658         and correct output errors before comitting changes.
24659
24660 Wed Feb 23 22:59:50 2000  Owen Taylor  <otaylor@redhat.com>
24661
24662         * TODO.xml: Added XML-structured TODO file.
24663         * docs/make-todo: python script to turn TODO.xml into
24664           pretty XML output. 
24665
24666 2000-02-23  Jonathan Blandford  <jrb@redhat.com>
24667
24668         * gtk/gtkstyle.c (gtk_default_draw_handle): add a 'paned' mode to
24669         the function to let it draw the seven dots, instead of the old,
24670         much maligned, method.
24671         (draw_dot): New function to draw a dot.
24672
24673         * gtk/gtkhpaned.c (gtk_hpaned_size_allocate): changed allocation
24674         to draw the handle inside the border width as opposed to outside.
24675         Use paint function instead of gdk_draw_point.
24676
24677         * gtk/gtkvpaned.c (gtk_vpaned_size_allocate): changed allocation
24678         to draw the handle inside the border width as opposed to outside.
24679         Use paint function instead of gdk_draw_point.
24680
24681         * gtk/gtkfilesel.c (gtk_file_selection_update_history_menu):
24682         Change indenting to be more GTK like.
24683
24684 Wed Feb 23 10:54:14 GMT 2000  Tony Gale <gale@gtk.org>
24685
24686         * docs/gtk_tut.sgml: New section on GtkCalendar
24687         * examples/calendar: Update example code
24688
24689 Tue Feb 22 13:54:12 GMT 2000  Tony Gale <gale@gtk.org>
24690
24691         * docs/gtkfaq.sgml: FAQ Update
24692
24693 2000-02-19  Anders Carlsson  <andersca@gnu.org>
24694
24695         * gtk/gtkrange.c (gtk_range_scroll_event): Return TRUE
24696         to prevent the scroll event to be propagated upwards.
24697
24698 Fri Feb 18 14:37:29 2000  Owen Taylor  <otaylor@redhat.com>
24699
24700         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Remove
24701         OwnerGrabButtonMask from button entries for
24702         GDK_BUTTON_PRESS / GDK_BUTTON_RELEASE.
24703
24704         * gtk/gtklayout.c (gtk_layout_realize): Always add GDK_SCROLL
24705         to the event mask (which will result in button/press release
24706         being added to the event mask on Unix) so scrolling works
24707         for layouts in scroll windows.
24708
24709         * gdk/gdkevents.h (enum): Fix up GDK_ALL_EVENTS_MASK.
24710
24711         Patch from Anders Carlsson  <andersca@gnu.org> to add
24712         a scroll event.
24713
24714         * gtk/testgtk.c (scroll_test_scroll): Added an example of mouse wheel
24715         scrolling to the "Test Scrolling" part of testgtk.
24716  
24717         * gtk/gtkwidget.h (struct _GtkWidgetClass): Added scroll_event signal.
24718  
24719         * gtk/gtkwidget.c: Added "scroll_event" GTK+ signal and matched
24720         it against GDK_SCROLL.
24721  
24722         * gtk/gtkrange.c (gtk_range_scroll_event): Updated to use the new
24723         way of mouse wheel scrolling.
24724  
24725         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_scroll_event): Likewise.
24726  
24727         * gtk/gtkspinbutton.c (gtk_spin_button_scroll): Likewise.
24728  
24729         * gtk/gtkmain.c: Removed previous mouse wheel hack.
24730  
24731         * gdk/x11/gdkwindow-x11.c (gdk_event_mask_table): Added entry in
24732         gdk_event_mask_table.
24733  
24734         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Added 
24735         GdkEventScroll handler.
24736  
24737         * gdk/gdkevents.h: Added GdkEventScroll structure.
24738  
24739 Thu Feb 17 17:10:12 2000  Owen Taylor  <otaylor@redhat.com>
24740
24741         * gtk/gt{h,k,}vpaned.[ch]: Add patch from Jonathan Blandford
24742         and Anders Carlsson to change the Paned widgets so that they
24743         can be dragged from anywhere along the length. Also change
24744         the way that this is drawn to make this apparent.
24745
24746         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): Apply patch
24747         from George Lebl to check that option_menu->menu is present
24748         before getting history.
24749
24750 2000-02-14  Tor Lillqvist  <tml@iki.fi>
24751
24752         * gdk/gdkdraw.c (gdk_draw_segments): Move the test for no segments
24753         before the assertion for non-NULL segment list.
24754
24755         * gdk/win32/gdkgc-win32.c: (gdk_win32_gc_values_to_win32values):
24756         Seems that pattern brushes *must* be 8x8 pixels! At least on my
24757         machine, but it might be display driver dependent. Sigh, so make
24758         sure the stipple is that size. Does Windows suck or what?
24759
24760         * gdk/win32/gdkdrawable-win32.c: Improve error handling in a few
24761         places.
24762
24763 2000-02-13  Havoc Pennington  <hp@pobox.com>
24764
24765         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): init
24766         refcount to 1
24767         (gdk_cursor_new): init refcount to 1
24768
24769         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new): init refcount to 1
24770
24771 2000-02-13  Tor Lillqvist  <tml@iki.fi>
24772
24773         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Add an extra parameter
24774         so that we don't have to do unnecessary settings to the HDC.
24775
24776         * gdk/win32/gdkdrawable-win32.c
24777         * gdk/win32/gdkimage-win32.c: Corresponding changes to the calls of
24778         gdk_gc_predraw.
24779
24780         * gdk/win32/gdkdrawable-win32.c: Special-casing for GdkGCs where
24781         the fill style is GDK_OPAQUE_STIPPLED. In those cases we construct
24782         GDI paths, call WidenPath to get the outline of the stroken path,
24783         and then fill the outline (with the brush that was built from the
24784         stipple).
24785
24786         * gdk/win32/gdkgc-win32.c: Factor out common code from
24787         _gdk_win32_gc_new and gdk_win32_gc_set_values into
24788         gdk_win32_gc_values_to_win32values. Use correct colour for
24789         SetBkColor() (Until now the code actually used a random colour in
24790         the call to SetBkColor()... but that didn't show up as not many
24791         GDI APIs use the background colour. Pattern (opaque stippled)
24792         brushes do.)
24793
24794         * gdk/win32/gdkmain-win32.c (gdk_win32_last_error_string,
24795         gdk_win32_api_failed): New functions for error logging.
24796
24797         * gdk/win32/gdkprivate-win32.h: Declare them, and define a macro
24798         WIN32_API_FAILED to call them, passing function or file name and
24799         line number.
24800
24801         * gdk/win32/*.c: Use the WIN32_API_FAILED macro.
24802
24803         * gdk/win32/gdkprivate-win32.h: Store just the pixel values from
24804         GdkColor for foreground and background in GdkGCWin32Data.
24805
24806         * gdk/makefile.cygwin: Link in the resource object separately.
24807
24808         * gdk/win32/rc/gdk.rc
24809         * gtk/gtk.rc (New file)
24810         * gdk/win32/makefile.cygwin
24811         * gtk/makefile.cygwin: Update build number in DLLs automatically,
24812         as in GLib.
24813
24814 Sun Feb 13 08:54:45 2000  Tim Janik  <timj@gtk.org>
24815
24816         * gdk/gdkcursor.h (struct _GdkCursor): s/refcount/ref_count/.
24817         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): 
24818         * gdk/x11/gdkcursor-x11.c (_gdk_cursor_destroy): 
24819         * gdk/gdkcursor.c (gdk_cursor_ref): insert assertments for the
24820         parameters given and cursor->ref_count. coding style fixups.
24821
24822         * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer,
24823         not GtkWidget.
24824         
24825         * gtk/*.h: applied patch from Mathieu Lacage <lacage@email.enst.fr> to
24826         fix up widget macros and add _GET_CLASS() variant.
24827         
24828         * gtk/*.c: some GtkType fixups.
24829
24830 2000-02-09  Tor Lillqvist  <tml@iki.fi>
24831
24832         * gdk/win32/gdkproperty-win32.c
24833         * gdk/x11/gdkproperty-x11.c: The assertions for GDK_IS_WINDOW
24834         were reversed.
24835
24836 2000-02-04  Tor Lillqvist  <tml@iki.fi>
24837
24838         * gdk/win32/gdkfont-win32.c (logfont_to_xlfd): Use
24839         g_filename_to_utf8 to convert the font names Windows gives us from
24840         whatever is the default codepage to UTF-8.
24841         (gdk_font_load_internal) Use g_filename_from_utf8 for conversion
24842         in the other direction.
24843
24844         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_values): Fix cut&paste
24845         error in debugging output.
24846
24847 2000-02-02  Tor Lillqvist  <tml@iki.fi>
24848
24849         * gdk/win32/gdkwindow-win32.c (gdk_window_clear): Pass zero width
24850         and height parameters to gdk_window_clear_area(). Not minus one.
24851
24852 Wed Feb  2 11:58:05 2000  Owen Taylor  <otaylor@redhat.com>
24853
24854         * gtk/gtkdnd.c (gtk_drag_selection_received): Add some sanity
24855         checks if the widget passed to gtk_drag_get_data() was not the
24856         dest widget.
24857
24858 2000-02-01  Tor Lillqvist  <tml@iki.fi>
24859
24860         * gtk/gtkfilesel.c: Use the g_filename_to_utf8 and
24861         g_filename_from_utf8 functions (which were added a moment ago to
24862         GLib). Some cleanups: Use gbooleans. Use GStrings instead of fixed
24863         size buffers.
24864
24865         gtk_file_selection_get_filename returns the filename in the C
24866         runtime encoding. It calls g_filename_from_utf8, but copies the
24867         returned string to a static buffer, which is returned. I think
24868         this is better than returning the result from g_filename_from_utf8
24869         directly, which would mean all apps that use it would have to free
24870         the return value. Or should this function care about this issue at
24871         all? Maybe a new function with clearly defined semantics.
24872
24873         * gtk/gtkfilesel.h: Add comment about
24874         gtk_file_selection_get_filename returning the filename in the C
24875         runtime's encoding.
24876
24877         * README.win32
24878         * gdk/gdk.def
24879         * gdk/makefile.{cygwin,msc}
24880         * gtk/gtk.def: Updates.
24881
24882         * gdk/gdkcursor-win32.c: Initialise refcount.
24883
24884 2000-01-31  Yuan-Chung Cheng <platin@linux.org.tw>
24885
24886         * configure.in: Added "zh_CN.GB2312" to ALL_LINGUAS.
24887
24888 2000-01-30  Havoc Pennington  <hp@pobox.com>
24889
24890         * gtk/testgtk.c (set_cursor): use gdk_cursor_unref instead of
24891         destroy
24892
24893         * gdk/gdkimage.c (gdk_image_ref): image wasn't being returned
24894
24895         * gdk/gdkprivate.h: declare _gdk_cursor_destroy which is then 
24896         implemented in platform-specific code
24897
24898         * gdk/Makefile.am (gdk_c_sources): add gdkcursor.c
24899
24900         * gdk/x11/gdkcursor-x11.c (gdk_cursor_destroy): rename with an
24901         underscore in front
24902
24903         * gdk/win32/gdkcursor-win32.c (gdk_cursor_destroy):
24904         put an underscore in front
24905
24906         * gdk/gdkcursor.c: new file, implements
24907         gdk_cursor_ref/gdk_cursor_unref
24908
24909         * gdk/gdkcursor.h: Refcount GdkCursor
24910
24911         * gdk/gdkcompat.h (gdk_cursor_destroy): compat
24912
24913 2000-01-29  Tor Lillqvist  <tml@iki.fi>
24914
24915         * gdk/gdkwindow.h
24916         * gdk/gdkpixmap.h: Remove prototypes for renamed functions.
24917
24918 Tue Jan 25 11:43:21 2000  Owen Taylor  <otaylor@redhat.com>
24919
24920         * gtk/gtkinvisible.h (struct _GtkInvisible[Class]): Fix
24921         structures to properly inherit from GtkWidget not GtkBin.
24922
24923 Sun Jan 23 20:28:24 2000  Owen Taylor  <otaylor@redhat.com>
24924
24925         * gtk+.spec.in: Added lib/gtk+/include/* to %files
24926         (bug #5178 - Peter Wainright)
24927         
24928         * gtk/Makefile.am (gtk_public_h_sources): Add gtkcompat.h
24929         so that it will be installed.
24930         (bug #4889 - "david d `zoo' zuhn" <zoo@mnnr.org>)
24931
24932 Fri Jan 21 16:29:28 2000  Owen Taylor  <otaylor@redhat.com>
24933
24934         * gtk/gtkstyle.[ch] docs/Changes-1.4.txt: Make the @detail argument
24935         for the GtkStyleClass vtable const.
24936
24937         * gtk/gtkitemfactory.[ch] docs/Changes-1.4.txt: Make GtkPrintFunc
24938         take a const string argument like GtkTranslateFunc. This will
24939         require changes in use code.
24940
24941 2000-01-19  Tor Lillqvist  <tml@iki.fi>
24942
24943         * gdk/win32/gdkwindow-win32.c (gdk_window_clear_area): The correct
24944         semantics (to mimic the X11 backend, which just calls XClearArea)
24945         is to check for zero width (and height), and in that case use the
24946         window's width minus x (height minus y). This fixes for instance
24947         some redraw problems with gtkclist, which were easily noticeable
24948         in the gtk file selection widget.
24949
24950         (gdk_window_new): Don't set WS_EX_TOPMOST for dialog
24951         windows.
24952
24953 2000-01-13  Tor Lillqvist  <tml@iki.fi>
24954
24955         * configure.in
24956         * gdk/Makefile.am
24957         * gdk/x11/Makefile.am
24958         * gdk/win32/Makefile.am: Small fixes, thanks to Peter Wainwright
24959         (bug #5177).
24960         * gdk/win32/gdkcc-win32.c: Reintroduce, to be thrown
24961         out later.
24962
24963 2000-01-09  Tor Lillqvist  <tml@iki.fi>
24964
24965         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Ignore
24966         WM_MOVE for iconified or invisible windows. This fixes various
24967         problems when minimising windows. Thanks to Bernd Herd.
24968
24969 2000-01-05  Tor Lillqvist  <tml@iki.fi>
24970
24971         * gdk/gdkdraw.c (gdk_draw_lines): Fix copy&paste error: Call the
24972         backend's draw_lines method, not draw_points.
24973
24974 2000-01-02  Tor Lillqvist  <tml@iki.fi>
24975
24976         * gdk/win32/gdkevents-win32.c: Clean up some more leftovers from
24977         before Owen's reorganisation: Don't have queued_events and
24978         queued_tail statics in this file, but use gdk_queued_events and
24979         gdk_queued_tail. This makes exposure event compression work again.
24980
24981         (gdk_WindowProc): Comment out a posting of gdk_ping_msg, doesn't
24982         seem to be needed?
24983
24984 1999-12-30  Tor Lillqvist  <tml@iki.fi>
24985
24986         * gdk/gdk.c: If we don't HAVE_XCONVERTCASE we must #include
24987         gdkkeysyms.h to get the GDK_* keysym constants that are needed by
24988         gdk_keyval_convert_case(). Otherwise, gdk_keyval_convert_case()
24989         doesn't do anything.
24990
24991         * gdk/gdk.def: Add gdk_xid_table_insert.
24992
24993         * gdk/win32/gdkprivate-win32.h
24994         * gdk/win32/gdkevents-win32.c
24995         * gdk/win32/gdkinput-win32.c
24996         
24997         * gdk/win32/gdkwindow-win32.c: Remove the superfluous
24998         extension_events field in the GdkWindowWin32Data struct. Use only
24999         the extension_events field in GdkWindowPrivate. Previously one was
25000         set, and the other one tested, which broke tablet
25001         functionality. Thanks to Keishi Suenaga for pointing this out.
25002
25003 1999-12-18  Tor Lillqvist  <tml@iki.fi>
25004
25005         * gdk/win32/gdkfont-win32.c (gdk_text_size, gdk_text_extents):
25006         When handling a single character (text length == 1), don't handle
25007         it as if it was UTF-8.
25008
25009 1999-12-11  Tor Lillqvist  <tml@iki.fi>
25010
25011         * Makefile.am: Distribute README.win32.
25012         
25013         * gdk/Makefile.am
25014         * gdk/win32/Makefile.am: Distribute Win32 files.
25015
25016         * gdk/makefile.msc: New file.
25017
25018         * gdk/gdk.c (gdk_arg_context_parse): Fix gccism (no statement
25019         after label).
25020
25021         * gdk/gdkprivate.h: Must mark also gdk_error_warnings and
25022         gdk_error_code as GDKVAR, as they are referred outside GDK.
25023
25024         * gdk/win32/makefile.msc: Update.
25025
25026         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): More
25027         tweaks. Check only if at least one of those Unicode subrange bits
25028         we care for is set. If no code page bits are set, guess (wildly)
25029         based on the charset.
25030
25031         * gdk/win32/gdkinput-win32.c: Remove debugging leftover.
25032
25033         * gdk/win32/gdkwindow-win32.c (gdk_window_new): Assure title is
25034         non-NULL.
25035
25036         * gtk/gtkdnd.c
25037         * gtk/gtklayout.c
25038         * gtk/gtkplug.c
25039         * gtk/gtkselection.c
25040         * gtk/gtksocket.c
25041         * gtk/gtkwindow.c: Include x11/gdkx.h *or* win32/gdkwin32.c as
25042         appropriate. There must be a cleaner way to handle this?
25043
25044         * gtk/gtkrc.c: Must include windows.h on Win32.
25045
25046         * gtk/testgtk.c: No need to include gdkx.h.
25047
25048         * gtk/makefile.cygwin: Correct invokation of genmarshal.pl.
25049
25050 1999-12-07  Tor Lillqvist  <tml@iki.fi>
25051
25052         * gdk/win32/gdkfont-win32.c: Fix string measurement code. For now,
25053         the rbearing is set to the same as the width, but this should be
25054         fixed.
25055
25056 1999-12-06  Tor Lillqvist  <tml@iki.fi>
25057
25058         * gdk/win32/gdkfont-win32.c (check_unicode_subranges): New
25059         function. If Windows doesn't tell us what Unicode subranges a font
25060         covers, guesstimate based on the codepages it covers. This will
25061         hopefully help those Windows versions or fonts that don't give us
25062         any useful Unicode subrange information with GetTextCharsetInfo.
25063         Call this function in gdk_font_load_internal.
25064
25065         * gdk/win32/{gdkdnd,gdkimage,gdkpixmap,gdkprivate}-win32.c: Misc
25066         minor changes.
25067
25068 Fri Dec  3 14:09:50 1999  Owen Taylor  <otaylor@redhat.com>
25069
25070         * gtk/gtkoptionmenu.[ch] (gtk_option_menu_get_history):
25071         New function, long needed.
25072
25073 Wed Dec  1 22:35:43 1999  Owen Taylor  <otaylor@redhat.com>
25074
25075         * gdk/gdkproperty.h x11/gdkproperty.c: Change 
25076         only_if_exists argument of gdk_atom_intern to
25077         bool.
25078
25079 1999-11-25  Tor Lillqvist  <tml@iki.fi>
25080
25081         * gdk/gdkgc.c (gdk_gc_set_ts_origin, gdk_gc_set_clip_origin): 
25082         Fix two copy&paste errors.
25083
25084         * gdk/makefile.cygwin: Also rebuild DLL when the static archive in
25085         win32 has changed.
25086
25087         * gdk/win32/gdkprivate-win32.h: Don't need CPINFO in the
25088         GdkWin32SingleFont struct.
25089
25090         * gdk/win32/gdkfont-win32.c: Some more debugging: Print Unicode
25091         subranges of loaded fonts. Clear font signature first, in case
25092         GetTextCharsetInfo fails. Pretend SYMBOL_CHARSET fonts have
25093         ASCII+Basic Latin (i.e. 0x40--0xFF) as they are single-byte.
25094
25095         * gdk/win32/gdkgc-win32.c: Improved logging. (gdk_gc_postdraw):
25096         Unoffset clip region.
25097
25098 1999-11-23  Tor Lillqvist  <tml@iki.fi>
25099
25100         * gdk/win32/gdkevents-win32.c (gdk_event_translate): set
25101         event->any.window before calling filter functions.
25102
25103 Fri Nov 19 10:34:41 1999  Owen Taylor  <otaylor@redhat.com>
25104
25105         * gtk/gtkgamma.h: Adapt cast macros to standard.
25106
25107 [ Merges from 1.2 ]
25108
25109 Tue Nov 16 10:15:54 1999  Owen Taylor  <otaylor@redhat.com>
25110
25111         * gtk/gtkitemfactory.c (gtk_item_factory_parse_path):
25112         If translation does not include a '/', use entire
25113         translation instead of crashing.
25114
25115 Sun Oct 31 22:21:11 1999  Tim Janik  <timj@gtk.org>
25116
25117         * docs/gtk_tut.sgml:
25118         s/gtk_accel_group_attach/gtk_window_add_accel_group/.
25119
25120 Sat Oct 30 09:09:09 1999  Owen Taylor  <otaylor@redhat.com>
25121
25122         * gtk/gtkselection.c (gtk_target_list_remove): Use
25123         g_list_remove_link, not g_list_remove.
25124
25125         [ From Geert Bevin <gbevin@thunderstorms.org> ]
25126         
25127 Sun Oct 24 07:41:40 1999  Tim Janik  <timj@gtk.org>
25128
25129         * gtk/gtkclist.c (real_undo_selection): commented out g_print()
25130         statement upon unselection (how the heck did that slip in?).
25131
25132 Sat Oct 23 03:03:08 1999  Tim Janik  <timj@gtk.org>
25133
25134         * gtk/gtktext.c (gtk_text_freeze): 
25135         (gtk_text_thaw): undraw/draw cursor here to avoid unnecessary scrolling
25136         in frozen state (and aparently crashes). patch provided by Anders
25137         Melchiorsen <and@kampsax.dtu.dk>.
25138
25139 Sat Oct 23 02:53:20 1999  Tim Janik  <timj@gtk.org>
25140
25141         * fix insensitive default/focus widget activation,
25142         reported by Matt Goodall <mgg@isotek.co.uk>.
25143
25144         * gtk/gtkwindow.c (gtk_window_key_press_event): 
25145         (gtk_window_activate_default):
25146         (gtk_window_activate_focus):
25147         return handled=FALSE for actiavtion of insensitive default
25148         widgets. return handled=TRUE for activation of insensitive
25149         focus widgets. don't activate in either case.
25150
25151 Tue Oct 19 09:55:08 1999  Owen Taylor  <otaylor@redhat.com>
25152
25153         * gtk-config.in (lib_gtk): Switch order of @x_cflags@
25154         and $glib_cflags to match library order and in the
25155         theory that an old version of GLib is more likely to
25156         be in the include directory for X then vice-versa.
25157         (Bug #2776)
25158
25159 Tue Oct 19 09:46:49 1999  Owen Taylor  <otaylor@redhat.com>
25160
25161         * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE 
25162         to determine the locale for fontsets, not LC_MESSAGES;
25163         the user may want English messages with a handling
25164         for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR
25165         will still be broken) (Bug #2891)
25166
25167 Tue Oct 19 20:36:42 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
25168
25169         * gtk/gtkrc.ko: Fixed the wrong number of "*"'s.
25170
25171 Tue Oct 19 12:15:13 1999  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
25172
25173         * gtk/gtkrc.ko: Changed the Korean default fontset.
25174
25175 Fri Oct  8 02:32:47 1999  Owen Taylor  <otaylor@redhat.com>
25176
25177         * gtk/gtklayout.c (gtk_layout_adjustment_changed): Fix bug
25178         where when scrolling to the left or top double exposes
25179         were done, causing major slowdowns.
25180
25181 Thu Oct  7 18:31:55 1999  Owen Taylor  <otaylor@redhat.com>
25182
25183         * gtk/gtkrc.c (gtk_rc_init): Always normalize codeset
25184         names to lowercase and alphanumeric, before looking
25185         them up.
25186
25187         * gtk/Makefile.am: Install codeset variant gtkrc files
25188         with normalized names.
25189
25190 Thu Oct  7 22:52:42 1999  Tim Janik  <timj@gtk.org>
25191
25192         * gtk/gtkitemfactory.c (gtk_item_factory_popup_with_data): even
25193         popup menus when the menu is already visible, but its parent
25194         is still hidden, (happens after tornoff window got hidden).
25195
25196 Thu Oct  7 11:09:55 1999  Owen Taylor  <otaylor@redhat.com>
25197
25198         * gtk/Makefile.am (install-data-local): Fix
25199         a typo where gtkrc.vi_VN.tcvn5712 wasn't getting
25200         deleted, causing error messages on install.
25201
25202 Thu Oct  7 11:03:06 1999  Owen Taylor  <otaylor@redhat.com>
25203
25204         * gtk/gtk[hv]paned.c (gtk_{h,v}paned_draw): Redraw
25205         the handle as well, since we now sometimes ignore
25206         exposes on the handle while resizing.
25207
25208 Wed Oct  6 18:02:31 1999  Owen Taylor  <otaylor@redhat.com>
25209
25210         * gtk/gtkrc.c (gtk_rc_append_default_pixmap_path): Fix stupid
25211         extra g_free introduced in one of the last one or two 
25212         commits.
25213
25214 Wed Oct  6 16:38:36 1999  Owen Taylor  <otaylor@redhat.com>
25215
25216         * gtk/Makefile.am gtk/gtkrc*: Make naming of gtkrc files
25217         consistent, put each style that a gtkrc.* file creates
25218         in a unique namespace, remove old files before installing.
25219
25220 Wed Oct  6 14:31:16 1999  Owen Taylor  <otaylor@redhat.com>
25221
25222         * gtk/gtkrc.c (gtk_rc_init): Avoid leaking memory when
25223         gtk_rc_init is called multiple times. (Yes, people who
25224         do that have bugs in their code.)
25225
25226 Tue Oct  5 11:36:57 PDT 1999 Manish Singh <yosh@gimp.org>
25227
25228         * gtk/Makefile.am: listing gtkrc in gtkconf_DATA seems to barf.
25229         Remove it since it's generated by the Makefile anyway
25230
25231 Tue Oct  5 02:43:41 1999  Owen Taylor  <otaylor@redhat.com>
25232
25233         * gdk/gdkinputcommon.h (gdk_input_device_new): Free
25234         device->info.axes for core pointer.
25235
25236 Thu Sep 30 13:55:25 1999  Owen Taylor  <otaylor@redhat.com>
25237
25238         * gtk/testgtk.c (destroy_idle_test): Rename idle to 
25239         idle_id, to deal with obsolete, broken C libraries.
25240
25241 Mon Sep 27 02:50:15 1999  Owen Taylor  <otaylor@redhat.com>
25242
25243         * gtk/gtkvscale.c (gtk_vscale_draw): Don't add in
25244         allocation->x/y twice!
25245
25246         * gtk/gtkhscale.c: Make usage of gtk_hscale_pos_trough()
25247         consistent with gtk_vscale_pos_trough().
25248
25249 Sun Sep 26 19:44:34 1999  Owen Taylor  <otaylor@redhat.com>
25250
25251         * gtk/gtkcontainer.c (gtk_container_queue_resize): We may
25252         be queueing a resize on a toplevel container between
25253         the time we show it and when we map it. So, we need
25254         to test GTK_WIDGET_VISIBLE() for toplevels, and only
25255         use GTK_WIDGET_DRAWABLE() for child windows.
25256
25257 Thu Sep 23 16:41:03 1999  Owen Taylor  <otaylor@redhat.com>
25258
25259         * gtk/Makefile.am (LDADDS): Add GDK_WLIBS to LDADDS 
25260         (fixes bug #2144)
25261
25262 Fri Sep 24 00:51:45 1999  Tim Janik  <timj@gtk.org>
25263
25264         * gtk/gtkcontainer.c (gtk_container_queue_resize): check for
25265         container DRAWABLE (instead of VISIBLE), so we don't queue
25266         resizes on non-toplevel containers.
25267
25268 Sun Sep 19 18:13:31 1999  Owen Taylor  <otaylor@redhat.com>
25269
25270         * gtk/gtkselection.[ch]: Make the data argument
25271         const guchar *.
25272
25273 Sat Sep 18 21:27:40 1999  Owen Taylor  <otaylor@redhat.com>
25274
25275         * gtk/gtkwindow.c: Try to behave sensibly if 
25276         the focus widget is the window itself. (Should
25277         we allow this at all?)
25278
25279 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
25280
25281         * gtk/gtkwidget.c (gtk_widget_set_sensitive): 
25282         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): 
25283         * gtk/gtknotebook.c (gtk_notebook_set_show_border): 
25284         * gtk/gtkclist.c (gtk_notebook_set_show_border): make gboolean args
25285         in prototypes and implementations consistent (Tomas Ogren).
25286
25287         * gtk/gtklayout.c (gtk_layout_remove): unset GTK_IS_OFFSCREEN flag
25288         before the widget is unparented (reported by damon).
25289
25290         * gtk/gtkdnd.c: make the cursor and icon data _unsigned_ char,
25291         since we provide unsigned data anyways.
25292
25293 Thu Sep 16 21:32:01 1999  Owen Taylor  <otaylor@redhat.com>
25294
25295         * gtk/gtktooltips.c (gtk_tooltips_set_tip): Delay
25296         the call to gtk_tooltips_layout_text() until later.
25297
25298         * gtk/gtktooltips.c (gtk_tooltips_draw_tips):
25299         Call gtk_widget_ensure_style() before using the style.
25300
25301 Wed Sep 15 02:52:19 1999  Owen Taylor  <otaylor@redhat.com>
25302
25303         * gtk/gtkwidget.c (gtk_widget_event): Added workaround
25304         for old widgets that don't propagate draws to all
25305         children. (Namely gnome-dock for gnome-libs <= 1.0.16)
25306
25307 Tue Sep 14 19:22:19 1999  Tim Janik  <timj@gtk.org>
25308
25309         * gtk/gtkwidget.c (gtk_widget_queue_resize): don't queue the parent
25310         for a redraw but just the widget that requested the resize.
25311
25312 Tue Sep 14 18:29:47 1999  Tim Janik  <timj@gtk.org>
25313
25314         * gtk/gtkcontainer.c: added new widget level method
25315         gtk_container_set_reallocate_redraws() and a GtkContainer flag
25316         reallocate_redraws : 1 to reflect the setting, exported this through
25317         the argument system as a boolean ::reallocate_redraws.
25318
25319         * gtk/gtkwidget.c (gtk_widget_size_allocate): when queueing redraws
25320         on the widget because the allocation changes, do so as well for
25321         widget->parent if the parent has reallocate_redraws set to TRUE.
25322         with that containers requesting reallocation redraws get automatically
25323         redrawn if their children changed allocation (this unfortunately
25324         affects also other children that didn't change allocation, but we
25325         cannot work around that before 1.3).
25326
25327 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
25328
25329         * gtk/gtkwidget.c (gtk_widget_idle_draw): only emit ::draw if width
25330         _and_ height are >0 (not _or_).
25331
25332         * gtk/gtktable.c (gtk_table_remove): use gtk_widget_queue_resize()
25333         instead of gtk_container_queue_resize(), which is a core gtk internal
25334         function (must have been on crack when i queued that).
25335
25336         * gtk/gtkprivate.h: added new private flag GTK_FULLDRAW_PENDING, so
25337         we can check more reliably if we want to discard expose events.
25338         * gtk/gtkwidget.c: added setting/unsetting of the GTK_FULLDRAW_PENDING
25339         flag.
25340         
25341         * gtk/gtkwidget.c (gtk_widget_event): don't discard synthesized exposes,
25342         we simply trust these events. for deciding whether to discard exposes,
25343         check GTK_FULLDRAW_PENDING instead of RESIZE_PENDING.
25344         
25345 Mon Sep 13 15:01:21 1999  Owen Taylor  <otaylor@redhat.com>
25346
25347         * gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
25348         queues of areas that are completely off screen.
25349
25350         * gtk/gtkwidget.c (gtk_widget_idle_draw): Fix broken
25351         logic for handleboxes.
25352
25353         * gtk/gtkwidget.c (gtk_widget_queue_draw_data): Add santity
25354         check on width/height.
25355
25356 Mon Sep 13 02:22:47 1999  Tim Janik  <timj@gtk.org>
25357
25358         * gtk/Makefile.am: backed out Raja's recent VPATH build "improvements",
25359         we are fine with using $@ the way we do (if we actually encounter
25360         brokeness with $@ in VPATH builds because of additional path prefixes,
25361         we need to use $(@F) actually).
25362
25363 Mon Sep 13 01:34:53 1999  Tim Janik  <timj@gtk.org>
25364
25365         * gtk/gtksignal.c: renamed two variables, hopefully didn't introduce
25366         short lived bugs, that would allow language bindings to do surgeries
25367         to our guts.
25368
25369 Fri Sep 10 15:22:50 1999  Owen Taylor  <otaylor@redhat.com>
25370
25371         * gtk/gtkwindow.c (gtk_window_size_allocate): Fix typo
25372         where comparison was being done against an uninitialized
25373         value causing intermittant results depending on
25374         compiler flags. Also make it clearer that we aren't
25375         ever initializing the child as 0x0 (though this will
25376         be caught in gtk_widget_size_allocate())
25377
25378 Fri Sep 10 10:06:56 1999  Owen Taylor  <otaylor@redhat.com>
25379
25380         * gtk/gtkwindow.c (gtk_window_set_transient_for): Move
25381         gtk_window_unset_transient_for() call after we do checks
25382         involving the old transient parent.
25383         [ From Lance Capser <lmc@cyberhighway.net> ]
25384
25385 1999-09-07  Raja R Harinath  <harinath@cs.umn.edu>
25386
25387         * gtk/Makefile.am (gtk.defs): Go back to using `touch' to create
25388         an empty file.
25389
25390 Mon Sep  6 00:11:56 1999  Lars Hamann  <lars@gtk.org>
25391
25392         * gtk/gtkctree.c (gtk_ctree_is_ancestor): return FALSE if node has
25393         no children. (Reported by: Chris Rogers <gandalf@pobox.com>)
25394
25395 1999-09-03  Raja R Harinath  <harinath@cs.umn.edu>
25396
25397         * gtk/Makefile.am (gen_sources): Improve VPATH builds.
25398         `$@' is valid only in the build dir, not after we've done 
25399         `cd $srcdir'.  Also use `test -f' instead of less portable
25400         `test -e'.
25401
25402 Fri Sep  3 15:59:56 1999  Owen Taylor  <otaylor@redhat.com>
25403
25404         * gtk/gtktext.c (correct_cache_insert): Rewrite
25405          for simplicity, and hopefully correctness.
25406          (Fixes bug #1322, which was a segfault when
25407           on some insertions with the properties around
25408           the insertion set up just wrong.)
25409
25410         * gtk/gtktext.c (gtk_text_adjustment): When we receive
25411          a "changed" signal, clamp the new value to the adjustment
25412          bounds to avoid segfaulting if someone tries to change
25413          the adjustment to a bogus value. (Bug #1795)
25414
25415 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
25416
25417         * gtk/gtkmain.c: Ignore unexpected destroy notifies
25418         for children, for toplevel windows handle them
25419         like delete_event.
25420
25421         * gtk/gtkplug.c: Add an unrealize handler so that
25422         we unref plug->socket_window when we are done
25423         with it.
25424
25425 Fri Sep  3 14:52:54 1999  Owen Taylor  <otaylor@redhat.com>
25426
25427         * gtk/gtktext.c (clear_area): Fix stupid signedness
25428          problem that was causing background to sometimes
25429          be misaligned.
25430
25431 Fri Sep  3 12:26:33 1999  Owen Taylor  <otaylor@redhat.com>
25432
25433         [ Fixes pointed out by Ettore Perazzoli <ettore@comm2000.it> ]
25434         
25435         * gtk/gtkmenu.c (gtk_menu_position): Make
25436          sure we never position menus with negative x, y,
25437          since gtk_widget_set_uposition() can't handle that.
25438
25439         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu):
25440          Modify the positioning code a bit so that we always
25441          put the top-left corner onscreen. (This is for
25442          UI reasons, gtk_menu_position() now takes care of
25443          gtk_widet_set_uposition() brokeness.)
25444
25445 Fri Sep  3 03:06:30 1999  Tim Janik  <timj@gtk.org>
25446
25447         * gtk/Makefile.am: fixed up things for -jx, x > 1.
25448
25449 Sun Sep  5 08:48:51 1999  Owen Taylor  <otaylor@redhat.com>
25450
25451         * gtk/gtkwidget.c (gtk_widget_modify_style): Ref the
25452           RC style that is passed in. The lack of the ref
25453           before was a bug. If people worked around this
25454           bug, this will introduce a slight memory leak
25455           in their code. The code should typically look like:
25456
25457             rc_style = gtk_rc_style_new ();
25458             [...]
25459             gtk_widget_modify_style (widget, rc_style);
25460             gtk_rc_style_unref (rc_style);
25461
25462         * gtk/gtkwidget.c (gtk_widget_modify_style): Reset
25463           the style if it was already set.
25464
25465         * gtk/gtkwidget.c (gtk_widget_set_name): Only set the
25466           style if it was set before.
25467
25468 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
25469
25470         * gtk/testgtk.c (main): Add a check to see if we
25471           are being run from the correct directory and
25472           to quit nicely if we are not.
25473
25474         * gtk/gtkrc.c (gtk_rc_slist_remove_all): Make function
25475           static.
25476
25477 Thu Sep  2 23:00:03 1999  Tim Janik  <timj@gtk.org>
25478
25479         * gtk/gtkenums.h (GtkWindowPosition): added GTK_WIN_POS_CENTER_ALWAYS.
25480
25481         * gtk/gtkwindow.c:
25482         queue resizes unconditionally (gtk_widget_queue_resize will figure
25483         what to do if the window is not realized).
25484         (gtk_window_move_resize): only recenter the window
25485         for GTK_WIN_POS_CENTER_ALWAYS.
25486         (gtk_window_compute_reposition): handle GTK_WIN_POS_CENTER_ALWAYS in
25487         the same way as GTK_WIN_POS_CENTER.
25488
25489 Thu Sep  2 22:39:27 1999  Tim Janik  <timj@gtk.org>
25490
25491         * gtk/gtkwindow.c (gtk_window_reposition): check for the last position
25492         with (!(info->last_flags & GDK_HINT_POS)) instead of
25493         (!info->last_flags & GDK_HINT_POS).
25494
25495         * gtk/gtkwindow.c (gtk_window_move_resize): constrain new_width and
25496         new_height unconditionally, because we use these values even if
25497         !default_size_changed && !hints_changed.
25498         comented the (default_size_changed || hints_changed) case with
25499         respect to resize rejects from the window manager.
25500
25501         * gtk/gtkwindow.c (gtk_window_move_resize): save info->last values
25502         in the zvt condition hack, since this includes the window hints, set
25503         the hints after the handling_resize case.
25504
25505         * gtk/gtkwindow.c (gtk_window_show): constrain the default size that a
25506         window is initially shown with to the geometry.
25507
25508 Thu Sep  2 07:38:56 1999  Tim Janik  <timj@gtk.org>
25509
25510         * gtk/gtkwindow.c (gtk_window_move_resize):
25511         s/size_changed/default_size_changed/g so i know what's
25512         really going on (frying brain on smaller flame now).
25513
25514 Thu Sep  2 05:47:47 1999  Tim Janik  <timj@gtk.org>
25515
25516         * gtk/gtkwindow.c (gtk_window_move_resize): queue a new resize if
25517         we have size_changed upon handling_resize. this is a gross
25518         workaround for the broken zvt widget and should be removed in
25519         1.3 again (search for FIXME).
25520         Owen provided an accurate comment for this:
25521
25522         /* We could be here for two reasons
25523          *  1) We coincidentally got a resize while handling
25524          *     another resize.
25525          *  2) Our computation of size_changed was completely
25526          *     screwed up, probably because one of our children
25527          *     is broken. It's probably a zvt widget.
25528          *
25529          * For 1), we could just go ahead and ask for the
25530          * new size right now, but doing that for 2)
25531          * might well be fighting the user (and can even
25532          * trigger a loop). Since we really don't want to
25533          * do that, we requeue a resize in hopes that
25534          * by the time it gets handled, the child has seen
25535          * the light and is willing to go along with the
25536          * new size. (this happens for the zvt widget, since
25537          * the size_allocate() above will have stored the
25538          * requisition corresponding to the new size in the
25539          * zvt widget)
25540          *
25541          * This doesn't buy us anything for 1), but it shouldn't
25542          * hurt us too badly, since it is what would have
25543          * happened if we had gotten the configure event before
25544          * the new size had been set.
25545          */
25546
25547 Wed Sep  1 20:46:11 1999  Owen Taylor  <otaylor@redhat.com>
25548
25549         * gtk/gtkrc.c: deal properly with the fact that RC
25550           style lists may include rc styles more than once.
25551
25552         * gtk/gtkrc.c (gtk_rc_append_pixmap_path): Removed
25553           unused static function.
25554
25555         * gtk/gtkrc.c (gtk_rc_find_pixmap_in_path): Keep a
25556           stack of directories of RC files currently being
25557           parsed and implicitely add them to pixmap path.
25558           
25559           This fixes a bug where the directory would get
25560           appended then overwritten by pixmap_path declarations.
25561
25562           (bug #1462, from Peter Wainright <prw@wainpr.demon.co.uk>)
25563
25564         * gtk/gtkthemes.c (gtk_theme_engine_unref): Call
25565           theme's exit function. (Patch from Peter Wainwright,
25566           bug #1454)
25567
25568         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_destroy):
25569           Add a destroy() handler to take care of removing
25570           group for menu item. (Fixes bug #1197)
25571
25572         * gtk/gtkwidget.c (gtk_widget_size_request): Fixed thinko
25573           in warning message.
25574
25575 Wed Sep  1 21:27:42 1999  Tim Janik  <timj@gtk.org>
25576
25577         * gtk/gtkwindow.c (gtk_window_move_resize): don't require a server
25578         roundtrip to figure window's width and height, since we know that
25579         anyways from widget->allocation.
25580
25581 Wed Sep  1 12:37:44 1999  Owen Taylor  <otaylor@redhat.com>
25582
25583         * gtk/gtkwindow.c (gtk_window_move_resize): Compute
25584           the hints after we request the new size.
25585
25586 Wed Sep  1 10:38:37 1999  Owen Taylor  <otaylor@redhat.com>
25587
25588         * gtk/gtkwindow.c (gtk_window_compute_hints): Removed
25589           GTK_WIDGET_REALIZED() assertion - we can compute the
25590           hints before we are realized.
25591
25592         * gtk/gtkwindow.c (gtk_window_move_resize): Reorder
25593           hint changing so that we have a value of hints_changed
25594           when we decide whether to constrain the window size.
25595
25596         * gtk/gtkwindow.c (gtk_window_move_resize): Spelling fix.
25597
25598         * gtk/gtkwindow.c (gtk_window_constrain_size): cleanups,
25599         change back to G_MAXINT.
25600
25601 Wed Sep  1 06:54:59 1999  Tim Janik  <timj@gtk.org>
25602
25603         * gtk/gtkwindow.c (gtk_window_get_geometry_info): zero initialize
25604         new GtkWindowGeometryInfo, so fields like GdkGeometry geometry
25605         contain uncluttered values.
25606         (gtk_window_compute_hints): simply assert that window is realized
25607         and that geometry_info is valid, since we rely on this anyways.
25608         (gtk_window_constrain_size): major cleanups to the code.
25609         if (flags & GDK_HINT_BASE_SIZE) use geometry's base width and height
25610         for the base size, instead of the minimums. use 32767 as max width
25611         and height (like in gtkwindow.c) instead of G_MAXINT.
25612
25613 Wed Sep  1 04:41:25 1999  Tim Janik  <timj@gtk.org>
25614
25615         * cleaned up the GtkContainer.need_resize flag handling mess, we
25616         only need to force resize requests when we were prematurely
25617         realized, or our widget tree was modified when we were temporarily
25618         hidden. handling these cases directly upon showing the window (i.e.
25619         while the GdkWindow is still unmapped) avoids the need to wait for
25620         a configure event response and therefore makes the GUI more snappier
25621         and avoids blank windows during the roundtrip.
25622
25623         * gtk/gtkwidget.c:
25624         (gtk_widget_hide): 
25625         (gtk_widget_show): don't queue resizes on toplevels, they know how
25626         to deal with matters.
25627
25628         * gtk/gtkcontainer.c (gtk_container_queue_resize): set the ->need_resize
25629         flag directly for not visible resize containers and spare us unecessary
25630         signal emissions.
25631
25632         * gtk/gtkwindow.c:
25633         (gtk_window_realize): if we need to enforce premature size allocation,
25634         queue a container resize so we are correctly resized later on.
25635         (gtk_window_init):
25636         (gtk_window_size_request):
25637         don't freak around with the ->need_resize flag,
25638         gtk_container_queue_resize() will care about that.
25639         (gtk_window_show):
25640         handle initial resizing issues here, we can handle matters better in
25641         this place, especially since we know that our GdkWindow is still
25642         unmapped.
25643         (gtk_window_move_resize):
25644         don't care about ->need_resize at all.
25645         handle size changes properly that occoured while we waited for a
25646         configure event.
25647
25648 Tue Aug 31 15:58:46 1999  Owen Taylor  <otaylor@redhat.com>
25649
25650         * gtk/gtkwidget.c (gtk_widget_set_uposition):
25651         * gtk/gtkwindow.[hc] (gtk_window_reposition):
25652         Move the hint setting code from gtk_widget_set_uposition
25653         to here; set the hints so that we respect any previously
25654         set geometry hints.
25655
25656         * gtk/gtkwindow.c (gtk_window_compute_reposition): Don't
25657         change the window hints here or move the window here,
25658         let that happen in gtk_window_move_resize().
25659
25660 Tue Aug 31 06:58:52 1999  Tim Janik  <timj@gtk.org>
25661
25662         * gtk/gtkwidget.c (gtk_widget_event): when discarding exposes due
25663         to already queued resizes (and therefore redraws) on a widget, check
25664         its anchestry as well.
25665
25666         * gtk/gtkcontainer.c:
25667         (gtk_container_queue_resize): clear resize widgets for resize
25668         containers before aborting prematurely. this is especially important
25669         for toplevels which may need imemdiate processing or their resize
25670         handler to be queued.
25671         (gtk_container_dequeue_resize_handler): added new internal function for
25672         gtkwindow.c.
25673
25674         * gtk/gtkwindow.c (gtk_window_move_resize): if we are resizing due to a
25675         configure event, take possible changes in window position into account
25676         as well.
25677         if we request a new window size, queue up a resize handler that will
25678         last until the configure event response arrives.
25679         combined the ->need_resize case (initial show) with the general size
25680         (hints) changed case and added even more comments.
25681         if !auto_shrink, only revert to the old allocation if the new size
25682         is smaller than the current allocation.
25683
25684 Tue Aug 31 11:55:20 1999  Owen Taylor  <otaylor@redhat.com>
25685
25686         * gtk/gtkwindow.c (gtk_window_set_arg, gtk_window_set_policy,
25687                            gtk_window_set_geometry_hints
25688                            gtk_window_set_default_size):
25689         When hints are set, queue a resize so that the hints will
25690         be eventually reset on the toplevel.
25691
25692         * gtk/gtkwindow.c (gtk_window_show): Use
25693         gtk_window_compute_default_size(). Clear the need_resize flag
25694         on the initail map so that we don't unnecessarily trigger the
25695         resize code.
25696
25697         * gtk/gtkwindow.c (gtk_window_move_resize): Split apart
25698         into separate functions. Compare the hints we are setting
25699         with what we set last time so that we can accurately
25700         tell when we need to reset the hints.
25701
25702         * gtk/gtkwindow.c (gtk_window_compute_default_size): New
25703         function to figure out the size from requisition
25704         and default_size.
25705
25706         * gtk/gtkwindow.c (gtk_window_constrain_size): Function
25707         from fvwm to constrain a size to the geometry hints.
25708
25709         * gtk/gtkwindow.c (gtk_window_compare_hints): New function
25710         to compare two sets of geometry hints.
25711
25712         * gtk/gtkwindow.c (gtk_window_compute_hints): Renamed
25713         from gtk_window_set_hints(), just compute the hints,
25714         don't set them.
25715
25716         * gtk/gtkwindow.c (gtk_window_compute_reposition): Move
25717         code from gtk_window_move_resize() to separate function,
25718         rationalize a bit.
25719
25720 Tue Aug 31 13:05:03 1999  Owen Taylor  <otaylor@redhat.com>
25721
25722         * gtkrc.h: Move the ref_count member out of the GtkRcStyle
25723         structure into a new private structure.
25724
25725         * gtkrc.c: Split GtkRcStyle into public/private.
25726         In the private part, add a list of pointers to the
25727         RcStyle lists this RcStyle participates in.
25728
25729         * gtkrc.c: When a RcStyle is free, remove all
25730         lists referencing it from the 
25731         realized_style_ht hash, and free those lists.
25732         
25733         * gtk/gtkrc.c (gtk_rc_clear_styles): Don't call
25734         gtk_rc_init(), since that adds the default styles
25735         to the list of parsed RC files again.
25736
25737         * gtk/gtkrc.c: Use gtk_rc_style_find() consistently.
25738         
25739 Thu Aug 26 14:14:42 1999  Tim Janik  <timj@gtk.org>
25740
25741         * gtk/gtkwidget.c (gtk_widget_size_allocate): reactivated the sanity
25742         checks that ensure that a widget's allocation is at least 1 in width
25743         and height. (GNOME note: this doesn't affect old panel code anymore,
25744         because GtkSocket will request width and height of at least 1 since
25745         Fri Jul 23).
25746
25747         * gtk/gtkwindow.c (gtk_window_realize): if the widget hasn't been
25748         allocated yet (happens if the user realizes the window prematurely),
25749         size request and allocate it.
25750         (gtk_window_size_allocate): guard against guint underflows.
25751
25752 Wed Aug 25 19:01:36 1999  Lars Hamann  <lars@gtk.org>
25753
25754         * gtk/Makefile.am (gtk_built_sources): reordered stamp-gtk.defs
25755         in gtk_built_sources, so gtk.defs gets built prior to all other
25756         sources.
25757
25758 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
25759
25760         * gtk/Makefile.am:
25761         invoke indent on gtkmarshal.*. 
25762         rewrote source generation rules, use COPYING as oldest source tag for
25763         a piggyback rule to generate all sources from (don't touch it ;).
25764         major cleanups, strip spaces on build rules for GNU Make.
25765
25766         * gtk/genmarshal.pl: don't operate on hardcoded filenames but take
25767         source and target files from commandline arguments. don't invoke indent.
25768
25769 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
25770
25771         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
25772         notebook after switch to avoid drawing problems.
25773         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
25774         
25775         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
25776         show them instead. 
25777         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
25778
25779 Sat Aug 21 14:07:36 1999  Lars Hamann  <lars@gtk.org>
25780
25781         * gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
25782         notebook after switch to avoid drawing problems.
25783         (Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
25784         
25785         (gtk_notebook_pages_allocate): don't map not visible tab_labels, 
25786         show them instead. 
25787         (Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
25788
25789 Wed Aug 18 09:20:10 1999  Tim Janik  <timj@gtk.org>
25790
25791         * gtk/gtkwindow.c:
25792         we use window->need_resize from configure_event now, to indicate that
25793         the gtkwindow should keep its allocation (e.g. because the user resized
25794         the window through window manager handles). resize_count is now reliably
25795         used to figure whether we got the allocation we requested from the
25796         window manager.
25797         configure events get queued as resizes now, the real stuff (size
25798         computation and allocation) now only goes on in gtk_window_move_resize().
25799         GtkWindow's requisition now contains its *real* requisition (like all
25800         other widgets), *not* taking usize into account.
25801         geometry_info->last_{width|height} is now updated from set_hints() only
25802         so it always contains the last hints we set for the window manager.
25803         made some event handlers return TRUE instead of FALSE.
25804         the overall code should be much more straight forward now, and the
25805         significant code portions are accompanied by comments now.
25806         (gtk_window_set_hints):
25807         removed requisition argument and made it
25808         fetch the requisition through gtk_widget_get_child_requisition.
25809         we also don't move the gdkwindow here anymore, gtk_window_move_resize()
25810         does that now.
25811         (gtk_window_show):
25812         ensure that the widget is realized before calling 
25813         gtk_container_check_resize() (and thus gtk_window_move_resize()), also
25814         ensure that we got properly size requested and allocated before
25815         realization.
25816         (gtk_window_configure_event):
25817         ignore plain window moves, or reallocate the widget tree through the
25818         resize queue otherwise.
25819         (gtk_window_move_resize):
25820         mostly rewrote this function to figure window manager hints more
25821         reliably, coalesce window moves and resizes to reduce configure events
25822         and do actuall size allocations.
25823
25824 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
25825
25826         * gtk/gtkwidget.c (gtk_widget_event): discard expose events for widgets
25827         that have a resize pending, because a redraw is already queued for them.
25828
25829         * gtk/gtkcontainer.c: removed ugly connect_to ::size_allocate signal
25830         hack to clear resize_widgets.
25831
25832         * gtk/gtkwidget.c (gtk_widget_size_allocate): call clear_resize_widgets
25833         for resize containers prior to size allocation. (this is also a bit
25834         ugly, but avoids side effects for stopped emissions and is thus more
25835         reliable).
25836         (gtk_widget_unparent): removed disconnect call for clear_resize_widgets.
25837
25838         * gtk/gtktooltips.c (gtk_tooltips_paint_window): renamed this
25839         function from gtk_tooltips_expose, as we connect to ::expose_event
25840         *and* ::draw now.
25841
25842 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
25843
25844         * gtk/gtkselection.c (gtk_target_list_ref): Added missing sanity
25845         checks.
25846         (gtk_target_list_unref): Likewise.
25847
25848         * gtk/gtkthemes.c (gtk_theme_engine_unref): Likewise.
25849
25850 Tue Aug 17 15:47:07 1999  Owen Taylor  <otaylor@redhat.com>
25851
25852         * gtk/gtkcolorsel.c (gtk_color_selection_draw_value_bar):
25853         guard against division by zero. (Fixes bug #1339)
25854
25855 Tue Aug 17 10:56:49 1999  Owen Taylor  <otaylor@redhat.com>
25856
25857         * gtk/gtkentry.c (gtk_move_{forward,backward}_word): 
25858         Prevent the trivial leak of information of allowing
25859         word motion when the entry is not visible.
25860
25861 Tue Aug 17 10:28:52 1999  Owen Taylor  <otaylor@redhat.com>
25862
25863         * gtk/gtkfilesel.c (gtk_file_selection_fileop_error): Propagate
25864         modality to error dialog as well as confirmation dialogs.
25865         (Bug #1803, reported by Rosanna Wing Sze Yuen)
25866
25867 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
25868
25869         * gtk/gtktreeitem.c (gtk_tree_item_draw_lines): Honor
25870         tree->view_lines.
25871         (gtk-guy-990611-3.patch: Guy Harris <guy@netapp.com>)
25872
25873         * gtk/Makefile.am (install-data-local): Solaris apparently
25874         has various troubles with ln -f; use rm first instead.
25875         (gtk-guy-990611-2.patch: Guy Harris <guy@netapp.com>)
25876
25877 1999-07-30  Raja R Harinath  <harinath@cs.umn.edu>
25878
25879         * gtk/Makefile.am (stamp-m): Don't `mv' from builddir to srcdir,
25880         use `cp' followed by `rm' (the `rm' was already there).
25881
25882 July 30, 1999 Elliot Lee <sopwith@redhat.com>
25883         
25884         * configure.in: Fix autoconf warnings about cross compilation by
25885         trying to provide sane defaults for AC_TRY_RUN.
25886         * gtk/Makefile.am: If we refer to gtkmarshal.[ch] in $(srcdir),
25887         put them into $(srcdir) when generated. Also add a dependency of
25888         gtksignal.h on gtkmarshal.h for -j builds. 
25889         * gtk/gtk(dnd,style,gamma).c: Minor warning fixes.
25890
25891 Wed Jul 28 09:29:19 1999  Owen Taylor  <otaylor@redhat.com>
25892
25893         * gtk/gtkmain.c (gtk_main_iteration_do): Added missing
25894         GDK_THREADS_{LEAVE,ENTER} pair.
25895         (From Paul Fisher <pnfisher@redhat.com>)
25896
25897 Fri Jul 23 01:00:15 1999  Tim Janik  <timj@gtk.org>
25898
25899         * gtk/gtksocket.c (gtk_socket_size_request): asure that the requested
25900         width and height are always >0 (owen).
25901
25902 Fri Jul 23 00:00:47 1999  Tim Janik  <timj@gtk.org>
25903
25904         * gtk/gtkwidget.c (gtk_widget_size_allocate): backed out my recent
25905         change that assured that a widget's allocated with and height are
25906         always >1, since this breaks *buggy* panel code. unfortunately this
25907         back-breaks the gimp's color selector.
25908
25909         * gtk/gtkdrawingarea.c (gtk_drawing_area_size_allocate): asure that our
25910         allocation is always >0 in width and height, before sending the
25911         configure event; this is a *gross* hack to get the gimp back to work.
25912         
25913         * marked both cases with TODO-1.3
25914
25915 Wed Jul 21 15:47:39 1999  Owen Taylor  <otaylor@redhat.com>
25916
25917         * gtk/gtktext.c: Don't display wrap indicators when
25918         text is not editable and word wrap is on.
25919
25920 Wed Jul 21 08:21:40 1999  Tim Janik  <timj@gtk.org>
25921
25922         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): special case
25923         option menus here as they are not derived from menu shell, assure that
25924         the option menu has a menu we can add items to.
25925
25926 Tue Jul 20 23:29:48 1999  Tim Janik  <timj@gtk.org>
25927
25928         * gtk/gtknotebook.c (gtk_notebook_page_allocate): convert allocation->
25929         width/height to (gint) before calculations and check against < 0 to
25930         avoid guint wraparounds.
25931
25932 Sun Jul 18 00:35:49 1999  Tim Janik  <timj@gtk.org>
25933
25934         * gtk/gtkwidget.c (gtk_widget_size_allocate): ensure that the allocated
25935         width and height is never zero. sanity check both dimensions against
25936         32767 and issue a warning if the allocation is greater than that.
25937
25938 Wed Jul  7 15:03:30 1999  Owen Taylor  <otaylor@redhat.com>
25939
25940         * gtk/gtkmain.c (gtk_events_pending): Unlock around call
25941         to g_main_pending() as well.
25942
25943 Wed Jul  7 14:59:01 1999  Owen Taylor  <otaylor@redhat.com>
25944
25945         * gtk/gtkmain.c (gtk_main_iteration): Unlock around
25946         call to g_main_iteration() - since that will regrab
25947         GTK+ lock to process events.
25948
25949 Thu Jul  1 15:01:55 1999  Owen Taylor  <otaylor@redhat.com>
25950
25951         * gtk/gtkwindow.c
25952         - Regularize with the rest of GTK+ by making widget->requisition
25953           not reflect the set_usize()
25954         - Always recompute geometry hints, then check if they
25955           changed before sending them to the X server. The
25956           previous checks for changes would fail in a number
25957           of circumstances. 
25958
25959 Thu Jul  1 11:55:59 1999  Owen Taylor  <otaylor@redhat.com>
25960
25961         * gtk/gtkstyle.c: Include <stdlib.h> for strcmp().
25962
25963 Wed Jun 30 19:26:36 1999  Owen Taylor  <otaylor@redhat.com>
25964
25965         * gtk/gtkdnd.c:
25966         - Code cleanups
25967         - Instantaneously update on modifier key presses
25968         - Allow cancellation of the drag with Escape.
25969
25970 Tue Jun 29 17:04:09 1999  Owen Taylor  <otaylor@redhat.com>
25971
25972         * gtk/testgtk.c (create_handle_box): Set the policy
25973         to auto_shrink - otherwise the appearance is rather
25974         strange when flipping between horizontal and vertical.
25975
25976 Mon Jun 28 09:29:52 1999  Tim Janik  <timj@gtk.org>
25977
25978         * gtk/gtkwindow.c: add ::default_width and ::default_height arguments.
25979         (gtk_window_set_default_size): don't change a value if it's < 0.
25980         queue a resize.
25981
25982 Sun Jun 27 11:00:33 1999  Tim Janik  <timj@gtk.org>
25983
25984         * gtk/gtktext.c (gtk_text_insert): don't segfault on NULL inserts.
25985
25986 Mon Jun 28 12:08:25 1999  Owen Taylor  <otaylor@redhat.com>
25987
25988         * gtk/gtkfilesel.c (cmpl_completion_fullname): Don't
25989         add an extra "/" when concating "/" + filename.
25990         (From Matt Grossman <mattg@oz.net>)
25991
25992 Mon Jun 28 10:57:12 1999  Owen Taylor  <otaylor@redhat.com>
25993
25994         * gtk/gtkctree.c (draw_cell_pixmap): Reset clip mask
25995         for fg_gc if we set it for drawing pixmap.
25996
25997 Tue Jun 15 12:45:12 1999  Owen Taylor  <otaylor@redhat.com>
25998
25999         Fixes from Peter Wainwright <prw@wainpr.demon.co.uk>
26000         
26001         * gtk/gtkrc.c (gtk_rc_parse_engine): If rc_style->engine is
26002         already set, call old engine's destroy function and
26003         unref the old engine.
26004
26005 Thu Jun 10 17:59:38 1999  Tim Janik  <timj@gtk.org>
26006
26007         * gtk/gtkdrawingarea.c (gtk_drawing_area_size): queue a resize.
26008
26009 Wed Jun  9 15:13:16 1999  Tim Janik  <timj@gtk.org>
26010
26011         * gtk/gtkaccelgroup.h: mark certain functions as internal.
26012
26013 Wed Jun  9 13:48:28 1999  Tim Janik  <timj@gtk.org>
26014
26015         * gtk/gtkpreview.c (gtk_preview_set_expand): queue a resize if the
26016         expand behaviour changed.
26017
26018         * gtk/gtklabel.c (gtk_label_set_pattern):
26019         (gtk_label_set_justify):
26020         (gtk_label_set_line_wrap):
26021         don't bother invoking queue_clear, the reallocation does
26022         that for us, always free_words so the upcoming resize will
26023         relayout the label's contents.
26024
26025 Wed Jun  9 12:50:48 1999  Tim Janik  <timj@gtk.org>
26026
26027         * applied argument implementation patches from Elena Devdariani
26028         <elena@cogent.ca>.
26029
26030         * gtk/gtktoolbar.c: ::orientation, ::toolbar_style, ::space_size,
26031         ::space_style, ::relief
26032         * gtk/gtkruler.c: ::lower, ::upper, ::position, ::max_size
26033         * gtk/gtkpreview.c: ::expand
26034         * gtk/gtkpaned.c: ::handle_size, ::gutter_size
26035         * gtk/gtknotebook.c: ::homogeneous
26036         * gtk/gtklabel.c: ::wrap
26037         * gtk/gtklist.c: ::selection_mode
26038         * gtk/gtkhandlebox.c: ::handle_position, ::snap_edge
26039         * gtk/gtkcurve.c: ::curve_type, ::min_x, ::max_x, ::min_y, ::max_y
26040         * gtk/gtkcolorsel.c: ::update_policy, ::use_opacity
26041         * gtk/gtkclist.c: ::sort_type
26042         * gtk/gtkcheckmenuitem.c: ::active, ::show_toggle
26043         * gtk/gtkaspectframe.c: ::xalign, ::yalign, ::ratio, ::obey_child
26044
26045 Tue Jun  1 23:38:38 1999  Owen Taylor  <otaylor@redhat.com>
26046
26047         * gtk/gtkstyle.c: Removed ill-thought-out part of last
26048         comment.
26049
26050 Tue Jun  1 23:30:09 1999  Owen Taylor  <otaylor@redhat.com>
26051
26052         * gtk/gtkstyle.c (gtk_style_attach): Get the reference
26053         counting right when we have to attach a new style
26054         for a different visual. (Chi-Deok Hwang <cdhwang@sr.hei.co.kr>)
26055
26056         * gtk/gtkstyle.c: Documented the refcounting
26057         peculularities of gtk_style_attach.
26058
26059 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
26060
26061         * gtk/gtkwindow.c (gtk_window_new): added return if fail for invalid
26062         window types.
26063
26064         * examples/packer/pack.c (main): use GTK_WINDOW_TOPLEVEL instead
26065         of GTK_TOPLEVEL for creating the window.
26066
26067 1999-06-01  Tim Janik  <timj@dhcpd7.redhat.com>
26068
26069         * gtk/gtkmain.c (gtk_init_check): don't segfault when --gtk-module is
26070         the last argument (reported by Per Winkvist).
26071         
26072 Tue May 25 13:13:12 1999  Owen Taylor  <otaylor@redhat.com>
26073
26074         Fixes for invisible XOR lines (Frank Loemker
26075         <floemker@TechFak.Uni-Bielefeld.DE>)
26076         
26077         * gtk/gtkclist.c (gtk_clist_realize): Always use
26078         a non-zero pixel for GDK_XOR.
26079
26080         * gtk/gtkvpaned.c gtk/gtkhpaned.c: 
26081         Use GDK_INVERT instead of GDK_XOR.
26082
26083 Wed May 12 21:56:40 1999  Lars Hamann  <lars@gtk.org>
26084
26085         * gtk/gtkclist.c (adjust_adjustments): signal emit value_changed
26086         signals if h/voffsets differ from adjustment values.
26087         Reportet by Jerome Bolliet <bolliet@in2p3.fr>
26088
26089 Mon May 10 04:20:41 1999  Tim Janik  <timj@gtk.org>
26090
26091         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): propagate
26092         ::selection-done emissions up to the topmost menu shell.
26093
26094 Fri May  7 10:15:14 1999  Owen Taylor  <otaylor@redhat.com>
26095
26096         * gtk/gtknotebook.c (gtk_notebook_set_scrollable): Unset
26097         the user data on the window before destroying it.
26098
26099         * gtk/gtknotebook.c (gtk_notebook_unrealize): Add an
26100         unrealize handler to take care of destroying 
26101         notebook->panel properly. 
26102         (Bug #1198 - Morten Welinder <terra@diku.dk>)
26103
26104         * gtk/gtktext.c (expand_scratch_buffer): Fix reversal
26105         of g_new and g_realloc to stop memory leak. (Actually,
26106         we could just use g_realloc(), but I'm not 100% sure
26107         that is portable).
26108         (Bug #1196 - Morten Welinder <terra@diku.dk>)
26109
26110 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
26111
26112         * gtk/gtkplug.h: Removed stray GtkPlugButton declaration.
26113
26114         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
26115         for fontsets.
26116
26117         * gtk/gtkbutton.c (gtkbutton_expose): Fix warning
26118         with bin/button confusion.
26119
26120 Thu May  6 04:53:26 1999  Tim Janik  <timj@gtk.org>
26121
26122         * gtk/testgtk.c: in the ItemFactory test, link radio items together,
26123         and show how preselection of radio items is done.
26124
26125 Sun May  2 13:31:14 1999  Tim Janik  <timj@gtk.org>
26126
26127         * gtk/gtktreeitem.c (gtk_tree_item_set_subtree): 
26128         * gtk/gtktree.c (gtk_tree_add) (gtk_tree_insert):
26129         * gtk/gtktoolbar.c (gtk_toolbar_insert_element): 
26130         * gtk/gtkpaned.c (gtk_paned_pack2) (gtk_paned_pack1):
26131         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_add): 
26132         * gtk/gtktable.c (gtk_table_attach): 
26133         * gtk/gtklist.c (gtk_list_insert_items): 
26134         * gtk/gtkmenushell.c (gtk_menu_shell_insert): 
26135         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): 
26136         * gtk/gtkpacker.c (gtk_packer_add_defaults) (gtk_packer_add): 
26137         * gtk/gtkbin.c (gtk_bin_add): 
26138         * gtk/gtkbox.c (gtk_box_pack_start) (gtk_box_pack_end): 
26139         * gtk/gtkfixed.c (gtk_fixed_put): 
26140         * gtk/gtklayout.c (gtk_layout_put):
26141         general fixups to container_add logic. always realize child if
26142         child->parent is realized, only map the child and queue a resize
26143         if child and child->parent are both visible.
26144
26145 Fri Apr 30 09:02:28 1999  Tim Janik  <timj@gtk.org>
26146
26147         * gtk/gtkwidget.c (gtk_widget_real_unrealize): use gtk_container_forall
26148         instead of gtk_container_foreach to walk and unrealize children, so
26149         composite children get also unrealized.
26150         (gtk_widget_real_show): don't call gtk_widget_map() if we don't need to.
26151         (gtk_widget_map): assert that the widget is visible (basic constrain).
26152         (gtk_widget_real_map): assert that the widget is realized (basic
26153         constrain).
26154
26155 Fri Apr 29 00:53:20 1999  Tim Janik  <timj@gtk.org>
26156
26157         * gtk/gtkbindings.c (gtk_pattern_spec_init): plugged a memory leak.
26158
26159 Tue May  4 09:32:08 1999  Owen Taylor  <otaylor@redhat.com>
26160
26161         * gtk/Makefile.am gtk/gtkrc.iso-8859-2: Add a gtkrc
26162         file for iso-8859-2 locales.
26163
26164         * configure.in (ALL_LINGUAS): ALL_LINGUAS update.
26165
26166 Tue Apr 27 16:38:32 1999  Owen Taylor  <otaylor@redhat.com>
26167
26168         * gtk/Makefile.am: Fix typo of static_sources for static_SOURCES.
26169          (Pointed out by andy@rz.uni-karlsruhe.de and others).
26170          Remove some suspicious and useless lines. 
26171
26172 Tue May  4 08:44:08 1999  Owen Taylor  <otaylor@redhat.com>
26173
26174         * gtk/gtkclist.c (gtk_clist_draw, draw_rows): Use 
26175         width,height = 0, 0 to mean - here to edge of window,
26176         instead of -1, -1, since the former is all we support.
26177
26178 Tue May  4 08:34:43 1999  Owen Taylor  <otaylor@redhat.com>
26179
26180         * gtk/gtkmain.c (gtk_main): Correctly free list nodes
26181         when removing from quit_functions list.
26182
26183 Tue Apr 27 14:17:16 1999  Tim Janik  <timj@gtk.org>
26184
26185         * gtk/gtkpacker.c (gtk_packer_size_request): remove unused variable.
26186
26187 Tue Apr 27 18:23:35 1999  Owen Taylor  <otaylor@redhat.com>
26188
26189         * gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable): 
26190          When redrawing characters on non-visible entry, use appropriate
26191          '*' character. (Bug #1130 - Jean-Marc Jacquet <jm@littleigloo.org>)
26192
26193 Tue Apr 27 01:31:40 1999  Lars Hamann  <lars@gtk.org>
26194
26195         * gtk/gtkclist.c (drag_dest_cell): compute destination cell
26196         from drag coordinates.
26197         (gtk_clist_drag_data_received) (gtk_clist_drag_motion):
26198         use drag_dest_cell.
26199
26200         * gtk/gtktree (drag_dest_cell)
26201         (gtk_ctree_drag_data_received) (gtk_ctree_drag_motion): likewise.
26202         (Bug #1129)
26203
26204 Wed Apr 21 21:26:11 1999  Tim Janik  <timj@gtk.org>
26205
26206         * gtk/gtkitemfactory.c (gtk_item_factory_init): properly initialize
26207         translate_* fields.
26208         (gtk_item_factory_finalize): invoke translate_notify independant from
26209         translate_data.
26210         (gtk_item_factory_set_translate_func): likewise.
26211         (gtk_item_factory_destroy): only remove ifactory pointer from those
26212         widgets that belong to us (stupid me).
26213
26214 Mon Apr 19 12:05:31 1999  Owen Taylor  <otaylor@redhat.com>
26215
26216         * gtk/gtkrc.c (gtk_rc_style_init): Fixed leak of
26217         rc_style list when lookup succeeeds.
26218
26219 Thu Apr 15 01:11:24 1999  Lars Hamann  <lars@gtk.org>
26220
26221         * gtk/gtkctree.c (resync_selection): 
26222         * gtk/gtkclist.c (resync_selection): fixed undo_selection bug.
26223         * gtk/gtkclist.c (gtk_clist_button_release): fixed resync_selection
26224         bug.
26225
26226 Fri Apr  9 19:22:19 1999  Owen Taylor  <otaylor@redhat.com>
26227
26228         * gtk/gtkcolorsel.c gtk/gtkdnd.c gtk/gtkmenuitem.c:
26229         Add some missing GDK_THREADS_ENTER()/LEAVE around
26230         timeouts. (Patches from Sebastian Wilhelmi <wilhelmi@ira.uka.de>)
26231
26232 Thu Apr  8 20:10:33 1999  Tim Janik  <timj@gtk.org>
26233
26234         * gtk/gtkentry.c (gtk_entry_key_press): use gtk_widget_activate()
26235         rather than emit_by_name.
26236
26237         * gtk/gtkeditable.c (gtk_editable_insert_text): keep a reference
26238         on the widget across multiple signal emissions.
26239         (gtk_editable_delete_text): same here.
26240         (gtk_editable_class_init): set widget_class->activate_signal after
26241         editable_signals[ACTIVATE] has been created.
26242
26243 Wed Apr  7 22:59:47 1999  Owen Taylor  <otaylor@redhat.com>
26244
26245         * gtk/gtkpaned.c (gtk_paned_set_position): Don't clamp
26246         position here prematurely -- we might not have the
26247         right ->min_position and ->max_position yet.
26248
26249 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
26250
26251         * gtk/gtkselection.c gdk/gdkselection.c: (gtk_selection_request):
26252         Add error traps so if the other end of the connection
26253         dies, we survive.
26254
26255         * gtk/gtkselection.c (gtk_selection_notify): Clean
26256         up properly when selection property retrieval fails.
26257         
26258         * gtk/gtkselection.c (gtk_selection_request): Correctly
26259         reject SelectionRequest notifies where the handler
26260         returns no data.
26261
26262 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
26263
26264         * gtk/gtkdnd.c (gtk_drag_dest_leave): Only unhighlight
26265         when we've previously highlighted.
26266
26267         * gtk/gtkdnd.c (gtk_drag_dest_handle_event): Don't
26268         emit two "drag_leave" signals for Motif drops.
26269
26270         * gtk/gtkdnd.c (gtk_drag_source_handle_event): Send
26271         back the correct status messages when dropping from
26272         Motif onto a proxy window that is rejecting the
26273         drop.
26274
26275 Sat Mar 27 23:32:13 1999  Tim Janik  <timj@gtk.org>
26276
26277         * gtk/gtkarg.[hc]: added functions from GLE, gtk_arg_reset() to free
26278         the value and reset type to GTK_TYPE_INVALID, and gtk_arg_values_equal()
26279         to compare two argument values. added gtk_arg_to_valueloc() to set a
26280         variable from an arg through its location (pointer).
26281
26282         * gtk/gtkobject.[hc]: implemented gtk_object_get() in terms of
26283         gtk_object_arg_get() and gtk_arg_to_valueloc(), floats are collected
26284         as gfloat*, uchars are collected as guchar*, ints are collected as
26285         gint*, etc...
26286
26287 Mon Mar 29 17:45:47 1999  Owen Taylor  <otaylor@redhat.com>
26288
26289         * gtk/gtkaccelgroup.c gtk/gtkgtkbindings.c:
26290         Include <string.h> instead of <strings.h>.
26291
26292         * gtk/gtkstyle.c: Fix double include of gtkthemes.h
26293         (actually, a lot more duplicate includes occur if
26294          you trace through the sequence of #include's)
26295         gtk-jbb-990320-0: John Bley, jbb6@acpub.duke.edu
26296         
26297 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
26298
26299         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
26300         gtk-a-higuti-990322-[0-3]
26301
26302         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
26303         that was causing -DX_LOCALE not to work.
26304
26305         * gtk/gtkrc.c (gtk_rc_init):
26306         X_LOCALE will never have LC_MESSAGES defined
26307
26308 Thu Mar 25 12:38:31 1999  Tim Janik  <timj@gtk.org>
26309
26310         * gtk/gtkrc.c (gtk_rc_append_default_module_path): get $HOME from
26311         g_get_home_dir() (gtk-pmc-990123-0.patch.gz).
26312
26313         * gtk/gtkwindow.c (gtk_window_key_press_event): feature keypad up/down/
26314         left/right as well (gtk-michael-980726-0.patch.gz).
26315
26316         * gtk/gtklabel.[hc]: bunch of miscellaneous cleanups, such as s/0/NULL/
26317         for pointer values, use gchar instead of char. fixed uline allocation
26318         leaks, changed the allocation pattern so we use G_ALLOC_AND_FREE mem
26319         chunks instead of G_ALLOC_ONLY.
26320         (gtk_label_size_request): always alter requisition as passed and leave
26321         widget->requisition alone.
26322         (gtk_label_set_text): allow NULL strings.
26323         (gtk_label_new): likewise.
26324
26325 Wed Mar 24 09:24:03 1999  Tim Janik  <timj@gtk.org>
26326
26327         * gtk/gtkdrawingarea.[hc]: type/macro fixups.
26328
26329 Mon Mar 22 05:51:34 1999  Tim Janik  <timj@gtk.org>
26330
26331         * gtk/gtkbin.c (gtk_bin_draw): only redraw children that are visible
26332         *and* mapped (i.e. drawable).
26333         (gtk_bin_expose): only send exposes to drawable children.
26334
26335         * gtk/gtkbox.c (gtk_box_draw): only redraw children that are drawable.
26336         (gtk_box_expose): only send exposes to drawable children.
26337
26338         * gtk/gtkhscale.c (gtk_hscale_draw): 
26339         * gtk/gtkvscale.c (gtk_vscale_draw):
26340         hm, this is an ugly one. we first compute the size of our trough area
26341         here (window relative) and then check intersection with the draw_area
26342         which is parent relative because we're a NO_WINDOW widget, so we need
26343         to offset the trough area by allocation.x and allocation.y before the
26344         check. (this must not be done for the background area though, since
26345         that's already computed parent relative).
26346
26347 Mon Mar 22 00:41:39 1999  Lars Hamann  <lars@gtk.org>
26348
26349         * gtk/gtkclist.c (gtk_clist_unrealize): unmap clist if neccessary,
26350         unrealize title buttons.
26351
26352 Fri Mar 19 00:00:22 1999  Lars Hamann  <lars@gtk.org>
26353
26354         * gtk/gtkclist.c (gtk_clist_column_title_passive)
26355         (gtk_clist_column_title_active): 
26356         only connect/disconnect to GtkWidgetClass::event to block mouse events.
26357
26358         * gtk/gtkclist.c (vertical_timeout) (horizontal_timeout): 
26359         zero initialize event, removed superfluous gdk_window_get_pointer call
26360
26361         * gtk/gtklist.c (gtk_list_vertical_timeout)
26362         (gtk_list_horizontal_timeout): removed superfluous
26363         gdk_window_get_pointer call
26364
26365 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
26366
26367         * plugging problems reported by "Bruce Mitchener, Jr."
26368         <bruce@puremagic.com> due to a purify session.
26369
26370         * gtk/gtkstyle.c:
26371         (gtk_style_ref): 
26372         (gtk_style_unref): assert ref_count to be > 0.
26373
26374         * gtk/gtkclist.c (gtk_clist_set_cell_style): { 0 } initilaize
26375         the requisition.
26376         (gtk_clist_set_shift): likewise.
26377
26378         * gtk/gtklayout.c: introduce gtk_layout_finalize() to unref the
26379         adjustments.
26380
26381         * gtk/gtklist.c (gtk_list_horizontal_timeout): zero initialize the
26382         event before sending it and set send_event to TRUE (which needs to
26383         be done for *all* synthesized events).
26384         (gtk_list_vertical_timeout): likewise.
26385
26386         * gtk/gtktipsquery.c (gtk_tips_query_destroy): plug small memory
26387         leaks.
26388
26389         * gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set send_event
26390         to TRUE when synthesizing events.
26391
26392 [ *** end of merges from 1.2 *** ]      
26393         
26394 1999-11-21  Tor Lillqvist  <tml@iki.fi>
26395
26396         * gdk/gdkconfig.h: Remove, as this is a file generated by configure
26397         (or copied from gdkconfig.h.win32 on Win32, sigh).
26398
26399         * gdk/gdkprivate.h: Mark gdk_parent_root for export from DLL.
26400
26401         * gdk/gdk.c (gdk_keyval_convert_case): Fix typo.
26402
26403         * gdk/gdkgc.c (gdk_gc_alloc): Remove duplicated line.
26404
26405         * gdk/gdkconfig.h.win32: New file.
26406
26407         * gdk/win32/makefile.cygwin: Build just a static archive here.
26408
26409         * gdk/makefile.cygwin: New file. Get the win32-specific stuff
26410         for the DLL from the static archive built above.
26411
26412         * gdk/gdk.def: Moved here from the win32 subdirectory.
26413
26414         * gdk/win32/*: Adapt for the changed private struct organisation.
26415
26416         * gtk/makefile.{cygwin,msc}: Get gdk library from ../gdk now.
26417
26418 Sun Nov 21 16:44:35 1999  Stefan Jeske  <stefan@gtk.org>
26419
26420         * gtk/gtkspinbutton.c (gtk_spin_button_button_press): Added support 
26421         for wheel mice (buttons 4 and 5).
26422
26423 1999-11-18  Tor Lillqvist  <tml@iki.fi>
26424
26425         * gdk/win32/gdkgc-win32.c (gdk_gc_predraw): Also for truecolor
26426         drawables use just the pixel field in the foreground and
26427         background GdkColor of the GdkGC.
26428
26429         gdk_gc_set_{fore,back}ground() are called in the GIMP with
26430         GdkColors containing uninitialized (red,green,blue) fields, and
26431         just the pixel field filled in, and furthermore in the
26432         visual-dependent format as returned by gdk_rgb_xpixel_from_rgb().
26433         It thus turns out that we really don't need to have the full
26434         GdkColor for fg and bg in GdkGCWin32Data after all. Will change
26435         it later to have just the pixel values.
26436
26437 Mon Nov 15 17:17:51 GMT 1999 Tony Gale  <gale@gtk.org>
26438
26439         * docs/gtkfaq.sgml: s/gtk_main_iteration/g_main_iteration/
26440
26441 Sat Nov 13 22:30:29 GMT 1999 Tony Gale  <gale@gtk.org>
26442
26443         * docs/gtkfaq.sgml: threads example from Erik Mouw.
26444         New question on GtkLabel background colors.
26445
26446         * docs/gtk_tut.sgml:
26447           - Correct the example code callback
26448             function definitions.
26449           - Update the gtkdial example code, from Frans van Schaik.
26450           - Update setselection.c to current API.
26451
26452         * examples/Makefile examples/*/*.c: Update to code
26453         listed in tutorial.
26454
26455 1999-11-10  Tor Lillqvist  <tml@iki.fi>
26456
26457         * gdk/win32/gdkfont-win32.c: Fix a couple of bugs. The Unicode
26458         subrange table (from the "Developing International Software for
26459         WIndows 95 and Windows NT" book) was missing the Hangul syllable
26460         block... Get the loaded font's charset correctly.
26461
26462         (Note that this, and the other *-win32.c files, still really are
26463         the old ones, the win32 subdirectory is not ready for compilation
26464         yet after the reorg.)
26465
26466 Wed Nov 10 17:26:49 GMT 1999 Tony Gale  <gale@gtk.org>
26467
26468         * gtk/gtkclist.c: Fix off-by-one bug in parameter
26469         check.
26470
26471 Wed Nov 10 12:12:03 1999  Owen Taylor  <otaylor@redhat.com>
26472
26473         * gdk/x11/gdkinput-{x11,xfree}.c: Call XFreeDeviceState()
26474         on results of XQueryDeviceState().
26475
26476 Mon Nov  8 16:40:43 1999  Owen Taylor  <otaylor@redhat.com>
26477
26478         * gtk/gtkwidget.c: Substitute gdkx.h => gdkprivate.h since
26479         we need to accesss only ->children. We need an accessor
26480         for the children.
26481
26482         * gtk/gtkhandlebox.c gtk/testgtk.c: Substitute G
26483         DK_ROOT_PARENT() => NULL, in call to gtk_window_get_pointer()
26484         to get rid of gdkx.h include.
26485         
26486         * gtk/gtkctree.c: Get rid of #include <gdk/gdkx.h>
26487         and random references to 'None'.
26488
26489         * gtk/gtkclist.c gtk/gtkeditable.c gtk/gtkpreview.c
26490         Get rid of unused #include <gdk/gdkx.h>
26491
26492         * gtk/gtkrc.c gtk/gtkmain.c: Get rid of #include <gdk/gdkx.h>
26493         gdkx.h is _X_ specific stuff. GDK_WINDOWING comes from
26494         gdkconfig.h.
26495
26496 1999-11-08  Tor Lillqvist  <tml@iki.fi>
26497
26498         * gdk/win32/gdkdraw.c
26499         * gdk/win32/gdkfont.c
26500         * gdk/win32/gdkgc.c: Various minor cleanups and bugfixes
26501         following yesterday's changes. (Unrelated to Owen's reorg.)
26502
26503 Mon Nov  8 16:18:25 1999  Owen Taylor  <otaylor@redhat.com>
26504
26505         * gdk/x11/gdkinput-gxi.c: Add missing include,
26506           fix GdkWindowPrivate => GdkDrawablePrivate.
26507
26508         * gdk/x11/gdkinputprivate.h: include <X11/Xlib.h>.
26509
26510         * gdk/x11/Makefile.am (xinput_sources): Add missing
26511         backslash to fix building with --with-xinput=none
26512
26513 Mon Nov  8 14:47:04 1999  Owen Taylor  <otaylor@redhat.com>
26514
26515         Move all X specific code into the x11/ directory.
26516         Aside from shuffling things around, did the following:
26517
26518        * gdk/gdkprivate.h gdk/gdk.h gdk/x11/gdkmain-x11.h: Add
26519          gdk_arg_context_* - a simple argument parsing system
26520          in the style of popt.
26521
26522        * gdk/gdkdrawable.[ch] gdk/gdkprivate.h gdk/gdkwindow.[ch]
26523          gdk/x11/gdkprivate-x11.h:
26524          Remove X specific stuff from GdkDrawable and GdkWindowPrivate - 
26525          add ->klass and ->klass_data fields. The klass_data
26526          field points to an auxilliary structure that is
26527          windowing system dependent.
26528
26529        * gdk/gdkfont.c: Make most of the measurement functions
26530          simply wrappers around gdk_text_extents().
26531
26532        * gdk/gdkfont.c gdk/gdkprivate.h gdk/x11/gdkfont-x11.c: Add a 
26533          _gdk_font_strlen() function that hides the weird
26534          behavior in gtk+-1.[02] where a string is interpreted
26535          differently for 8-bit and 16-bit fonts.
26536
26537        * gdk/gdkevents.c: Add a new function gdk_event_button_generate()
26538          to store common code for synthesizing double/triple
26539          press events.
26540         
26541        * gdk/gdkgc.[ch]: Virtualize in the same way as gdkdrawable.h.
26542          Make all the function that modify an existing GC
26543          simply wrappers around gdk_gc_set_values().
26544          
26545        * gdk/gdkcc.[ch]: Moved into x11/ directory in preparation
26546          for throwing out later.
26547
26548        * gdk/gdkfont.c gdk/gdkimage.c gdk/gdkcolor.c: Change GdkFontPrivate,
26549          GdkImagePrivate and GdkColormapPrivate to have a
26550          windowing system dependent part (GdkFontPrivateX etc.)
26551          that "derives" from the system-independent part.
26552
26553        * configure.in gdk/x11/Makefile.in gdk/x11/gdkinput*.c:
26554          Got rid of the included-source-files for XInput in
26555          favor of automake conditionals. (Which didn't exist
26556          when XInput support was originally added.)
26557
26558        * gdk/gdkrgb.c: Remove the visual id from the debugging
26559          statements since that is X11 specific; print out
26560          type/depth info instead.
26561          
26562
26563 Wed Nov  3 18:14:49 1999  Owen Taylor  <otaylor@redhat.com>
26564
26565         * gdk/x11/gdkfont-x11.c (gdk_font_load): Ref fonts when
26566         loading duplicates of hashed fonts.
26567
26568         * gdk/gdk.c (gdk_keysym_convert_case): rename
26569         gdk_XConvertCase to gdk_keysym_convert_case, allow
26570         results to be NULL in the GTK+ style.
26571
26572         * gdk/gdkcompat.h: Started compatibility header
26573         for renames.
26574
26575 1999-11-07  Tor Lillqvist  <tml@iki.fi>
26576
26577         * gdk/win32/gdkprivate.h: New font private structures, related to
26578         fontsets.
26579
26580         * gdk/win32/gdkfont.c: New functions gdk_font_list_new() and
26581         gdk_font_list_free(). On X11, will just be wrappers to
26582         XListFonts() and XFreeFontNames(). On Win32, the code previously
26583         in gtkfontsel.c is now here.
26584
26585         New function gdk_font_xlfd_create(). On X11 will get the FONT
26586         property of the font (for GDK_FONT_FONTs), or call
26587         XBaseFontNameListOfFontSet (for GDK_FONT_FONTSETs), on Win32
26588         builds a XLFD style name from the font information in the LOGFONT
26589         struct(s).
26590
26591         New function gdk_font_xlfd_free(), which correspondingly frees the
26592         string returned by gdk_font_xlfd_create().
26593
26594         Implement fontsets on Win32. Add a function that iterates over a
26595         wide char string and calls a callback function for each substring
26596         of wide chars from the same Unicode subrange (and thus probably
26597         available in the same real font).
26598
26599         Improve the XLFD emulation a bit.
26600
26601         * gdk/win32/gdkim.c (gdk_nmbstowchar_ts): Small bugfix.
26602
26603         * gdk/win32/gdkevents.c: Workaround for suspected bug on Win2k
26604         Beta3, WM_IME_CHAR messages don't seem to contain the composed
26605         multi-byte char as with the Active IMM on Win9x. Oh well, handle
26606         WM_IME_COMPOSITION with GCS_RESULTSTR instead, use
26607         ImmGetCompositionStringW() to get the composed Unicode chars.
26608
26609         * gdk/win32/gdkgc.c
26610         * gdk/win32/gdkdraw.c: Changes needed because of the font private
26611         struct changes.
26612
26613         * gdk/win32/gdk.def: Add the new functions.
26614
26615 1999-11-04  Tor Lillqvist  <tml@iki.fi>
26616
26617         * config.h.win32: Don't define HAVE_DIMM_H if MSC, as you have to
26618         get the Platform SDK to get <dimm.h>.
26619
26620         * gdk/win32/gdkevents.c: More event handling fixes and
26621         simplification. Never generate motion events with is_hint true. We
26622         used to do that on bogus grounds earlier. Windows sends
26623         WM_MOUSEMOVE messages on button events even if the mouse hasn't
26624         moved, ignore these.
26625
26626         * gdk/win32/gdkfont.c: Load all fonts as (pretended) fontsets.
26627
26628         * gdk/win32/gdkglobals.c
26629         * gdk/win32/gdkprivate.h: Define a typedef for the pointer to
26630         the TrackMouseEvent function, and use it.
26631
26632         * gdk/win32/gdkwindow.c: Terminate widechar string with a zero
26633         char before calling WideCharToMultiByte in order to get a string
26634         for the window title.
26635
26636         * gdk/win32/gdkdnd.c: Some more random hacking, ifdeffed out.
26637
26638         * gdk/win32/gdk.def: Remove obsolete functions.
26639
26640         * gdk/win32/makefile.{cygwin,msc}: Remove gdkcompat.{o,obj}. Add
26641         /nodefaultlib and /defaultlib switches.
26642
26643         * gtk/gtkrc.c: s/gwin_getlocale/g_win32_getlocale/.
26644
26645 1999-10-31  Tor Lillqvist  <tml@iki.fi>
26646
26647         * gdk/gdkkeysyms.h: Add new keysyms from X11R6.4 (including
26648         EuroSign).
26649
26650         * gdk/gdktypes.h: Add note about wchar_t not necessarily being the
26651         same type as GdkWChar, especially on Win32.
26652
26653         * gdk/win32/*.c: Change gdk_root_parent to be a pointer.
26654
26655         * gdk/win32/*.c: Assume all strings are UTF-8. Convert to Unicode
26656         before passing to Windows GDI for drawing etc. Convert to the
26657         system default codepage before passing to Windows as window
26658         titles.
26659
26660         * gdk/win32/gdkprivate.h: Add more fields to GdkWindowPrivate to
26661         support changing input locale on the fly.
26662
26663         * gdk/win32/gdkevent.c: Support input language (keyboard locale)
26664         on-the-fly changes. Convert incoming characters from the current
26665         codepage to Unicode (and then to a UTF-8 multi-byte string) based
26666         on the current input language. Use keysym<->Unicode mapping tables
26667         and functions borrowed from xterm sources.
26668
26669         Support IMEs (Input Method Editors) for CJK languages. On non-CJK
26670         editions of Win9x, use the ActiveX-based Active IMM (Input Method
26671         Manager) if available. IMEs and the Active IMM are available under
26672         the disguise of Chinese, Korean and Japanese support for IE and
26673         Outlook Express from "Windows Update" for Win98. On Win2k, the CJK
26674         support is present in all editions (as long as you install it).
26675
26676         Call DispatchMessage from gdk_events_queue() (and thus
26677         gdk_WindowProc()), instead of duplicating the code in
26678         gdk_WindowProc().
26679
26680         Reworked the grab handling and propagation code, factored out
26681         duplicated code snippets into separate functions. Other cleanups,
26682         too.
26683
26684         * gdk/win32/surrogate-dimm.h: Provide just the bits we need from
26685         the <dimm.h> header describing the Active IMM.
26686
26687         * gdk/win32/gdkfont.c: Pretend to support fontsets, but so far
26688         just do the same as for "single" fonts.
26689
26690         * gdk/win32/gdk.c: Call CoInitialize() (COM initialisation) from
26691         gdk_init_check, and CoUninitialize() from gdk_exit_func. Handle
26692         the new keysyms from gdkkeysyms.h.
26693
26694         * gtk/gtkfontsel.c (Win32): Load the font for the preview as a
26695         fontset, so that gtkentry uses wide characters.
26696
26697         * gtk/gtkrc.c (Win32): Get the locale with gwin_getlocale(). Call
26698         GTk+'s system directory "gtk+", not "gtk".
26699
26700 Sat Oct 30 13:17:18 BST 1999 Tony Gale <gale@gtk.org>
26701
26702         * docs/gtkfaq.sgml: FAQ update
26703
26704 1999-10-21  Tor Lillqvist  <tml@iki.fi>
26705
26706         * gdk/win32/gdkprivate.h: Add more font private data.
26707
26708         * gdk/win32/gdkfont.c
26709         * gdk/win32/gdkdraw.c: Revamped handling of multi-byte charset
26710         fonts and strings. Now works much better. You still have to
26711         have a correct font selected, though. No fontset emulation yet.
26712
26713 1999-10-19  Tor Lillqvist  <tml@iki.fi>
26714
26715         * gtk/maketypes.awk: Use G_OS_WIN32.
26716
26717         * gtk/gtk.def: Add some missing entry points. Also some non-public
26718         ones, but PyGTK porter claims to need them.
26719
26720         * gtk/makefile.{cygwin,msc}: Drop some unneeded headers from the
26721         built-in type generation.
26722
26723 1999-10-14  Tor Lillqvist  <tml@iki.fi>
26724
26725         * gdk/win32/gdkdraw.c (gdk_draw_text_wc): Don't use TextOutW for
26726         GDK_FONT_FONT fonts (which is all we have for now, we don't
26727         emulate fontsets). The X11 version uses plain XDrawString in that
26728         case, too. The string passed to gdk_draw_text_wc seems to be in
26729         fact (at least, when used by gtkentry and gtktext) either in a
26730         single-byte charset, or a DBCS. Not Unicode.
26731
26732         This fixes the problem in gtkfontsel, where even if you had
26733         selected a font with a non-Latin1 charset (windows-greek, for
26734         instance), the preview still used Latin-1 glyphs.
26735
26736         * gdk/win32/gdkfont.c (gdk_text_width_wc): Similar change. Don't
26737         use GetTextExtentPoint32W, use GetTextExtentPoint32A.
26738         (gdk_font_load): Recognize the demibold etc weights, even if we
26739         don't have the corresponding constants in the headers.
26740         (gdk_font_hash_insert): Use same hash mechanism as in the X11
26741         version. Should save font resources a bit, when we don't have
26742         multiple HFONTs for the same font.
26743
26744         * gdk/win32/gdkprivate.h: Add the names field as in the X11
26745         version.
26746
26747 1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
26748
26749         * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
26750         X values
26751
26752 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
26753
26754         * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
26755         layout support (as mentioned on
26756         http://www.jcinteractive.com/gnome-ui/software/widgets/)
26757
26758 Wed Oct  6 12:46:17 PDT 1999 Manish Singh <yosh@gimp.org>
26759
26760         * gtk/fnmatch.c
26761         * gtk/gtkfilesel.c: s/G_HAVE_CYGWIN/G_WITH_CYGWIN/
26762
26763 1999-10-05  Jesus Bravo Alvarez  <jba@pobox.com>
26764
26765         * configure.in (ALL_LINGUAS): Added Galician (gl)
26766
26767 1999-10-05  Tor Lillqvist  <tml@iki.fi>
26768
26769         * gdk/win32/*.[ch]: Corresponding changes as in X11 backend.
26770
26771         * gdk/win32/gdkcompat.c: New file, actually provide an
26772         implementation for the deprecated functions. (Just temporarily.)
26773
26774         * gtk/gtkfilesel.c: Fix an #ifdef syntax botch.
26775
26776         * gtk/makefile.{cygwin,msc}: Update gdk_headers.
26777
26778         * gdk/win32/gdk.def gtk/gtk.def: Updates.
26779
26780 1999-10-05  Kjartan Maraas  <kmaraas@online.no>
26781
26782         * configure.in: Added "uk" to ALL_LINGUAS.
26783         
26784 Mon Oct  4 11:57:11 PDT 1999 Manish Singh <yosh@gimp.org>
26785
26786         * configure.in: correct checking for BeOS check
26787
26788         * gdk/gdktypes.h
26789         * gtk/fnmatch.c
26790         * gtk/gtkfilesel.c
26791         * gtk/gtkitemfactory.c
26792         * gtk/gtkmain.[ch]
26793         * gtk/gtkrc.c: use G_OS_WIN32 and G_HAVE_CYGWIN #defines
26794
26795 Mon Oct  4 16:16:53 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
26796
26797         * gtk/gtkrc.{bg,iso88591[345]}: add gtkrc files for some new charset
26798         encodings: iso-8859-13 (for Lithuanian), iso-8859-14 (used by celtic
26799         languages), iso-8859-15 (used in Estonia) and microsoft-cp1251 (used
26800         by Bulgarian). 
26801
26802 Sun Oct  3 18:13:44 1999  Owen Taylor  <otaylor@redhat.com>
26803
26804         * gtk/gtkwidget.c (gtk_reset_shapes_recurse): 
26805         Fix a reference to window_private->destroyed.   
26806
26807         * gtk/gtkplug.c (gtk_plug_realize): Fix up a direct
26808         (ugly) setting of an internal GdkWindow member to use
26809         a _slightly_ cleaner macro.
26810
26811         * gdk/gdkprivate.h: Split GdkWindowPrivate into
26812         GdkDrawablePrivate and GdkWindowPrivate.
26813         Add extra macros for accessing GDK_DRAWABLE_ components.
26814
26815         * *.[ch]: Massive adjustments for the above, use the
26816         new macros in a lot of places.
26817
26818 Sun Oct  3 15:16:24 1999  Owen Taylor  <otaylor@redhat.com>
26819
26820         * gdk/gdktypes.h: Make GdkDrawable the base type,
26821         not GdkWindow.
26822
26823 Sun Oct  3 15:08:44 1999  Owen Taylor  <otaylor@redhat.com>
26824
26825         * gdk/gdkdraw.c (gdk_drawable_get_data): Added new function.
26826
26827 Sun Oct  3 14:26:15 1999  Owen Taylor  <otaylor@redhat.com>
26828
26829         * gdk/gxid* gdk/x11/gxid*: Move files into x11 subdirectory.
26830
26831 Sun Oct  3 14:16:23 1999  Owen Taylor  <otaylor@redhat.com>
26832
26833         * gdk/gdkdrawable.h: Include gdk/gdkdrawable.h with
26834         gdk/ prefix. (Pointed out by chak@is.tsukuba.ac.jp)
26835
26836         * configure.in gdk/Makefile.am x11/: create x-specific subdirectory.
26837
26838         * docs/gtk-config.1: Now autogenerated.
26839         * docs/Changes-1.4.txt: started
26840         
26841 1999-10-03  Tor Lillqvist  <tml@iki.fi>
26842
26843         * gdk/gdkimage.h gdk/gdkpixmap.h: Change GDK_WINDOWING_WIN32 usage
26844         to #ifdef also here.
26845
26846         * gdk/win32/*.h gdk/win32/*.c: Make corresponding changes as those
26847         Owen did to the X11 backend.
26848
26849         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Fix it again, don't use
26850         ScrollWindowEx when blitting inside a window, it can't be correct
26851         in the general case.
26852
26853         * gdk/win32/gdkevents.c: Don't handle WM_SIZING, handling
26854         WM_GETMINMAXINFO is easier.
26855
26856         * gdk/win32/gdkimage.c (gdk_image_new): Create new image with
26857         depth equal to the bitspixel value, not the visual's depth.
26858
26859         * gdk/win32/gdkvisual.c (gdk_visual_init): Set the visual's depth
26860         to 24 even if the bitspixel value is 32.
26861
26862         * gdk/gdkrgb.c (gdk_rgb_select_conv): After the above change, no
26863         need to check for depth==32 when bpp==32, depth will always be 24.
26864
26865 Fri Oct  1 18:03:36 1999  Owen Taylor  <otaylor@redhat.com>
26866
26867         * docs/Changes-1.4.txt: Started
26868         
26869         * gtk/Makefile.am (gdk_headers): Include all the new headers.
26870
26871         * gdk/*.h gdk/*.c: Split gdk.h into lots of itty-bitty little pieces.
26872         
26873         * gdk/gdkprivate.h gdk/gdkcc.c: Moved GdkColorContext private
26874         into C file.
26875         
26876         * gdkinput.h gdkinputprivate.h - renamed the internal gdkinput
26877         header to gdkinputprivate.h.
26878
26879         * gdk/gdk.h gdk/gdk.c: Removed gdk_time* functions which have been
26880         unused since before 1.2.
26881
26882 1999-09-30  Tor Lillqvist  <tml@iki.fi>
26883
26884         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): On Win32,
26885         expand possible hex escapes in the font family (put there by
26886         logfont_to_xlfd if the font name isn't a legal XLFD font family,
26887         mainly if it contains slashes). (gtk_font_selection_create_xlfd):
26888         On Win32, add hex escapes here, too.
26889
26890 Wed Sep 29 19:55:35 1999  Owen Taylor  <otaylor@redhat.com>
26891
26892         * */*.[ch]: Changed from #if GDK_WINDOWING == GDK_WINDOWING_X11
26893         to #ifdef GDK_WINDOWING_X11.
26894
26895 [ Merges from gtk-1-2 ]
26896
26897 Wed Sep  8 07:13:29 1999  Tim Janik  <timj@gtk.org>
26898
26899         * configure.in: fixed "GNU Make" check to pass with new make version
26900         3.77.95.
26901
26902 Fri Sep  3 16:04:41 1999  Tim Janik  <timj@gtk.org>
26903
26904         * gtk-config.in (--version): don't echo @GTK_VERSION@, but
26905         @GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
26906         AM_PATH_GTK() macros don't get confused by the -pre1.
26907
26908 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
26909
26910         * configure.in (REBUILD): Change check for perl5
26911           to check explicitely for v >= 5.002. (5.001
26912           does not work with our scripts.)
26913
26914 Wed Aug 25 15:45:46 1999  Tim Janik  <timj@gtk.org>
26915
26916         * configure.in: evaluate $PERL for the perl version check. added
26917         --disable-rebuilds to give the user an option to completely disable
26918         any source autogeneration rules.
26919
26920 Mon Aug 23 23:16:14 1999  Tim Janik  <timj@gtk.org>
26921
26922         * configure.in: evaluate $ac_make when checking for GNU Make.
26923
26924 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
26925
26926         * docs/Makefile.am: added generation.txt.
26927
26928         * Makefile.am: require automake 1.4, build README from README.in and
26929         INSTALL from INSTALL.in in dist-hook.
26930         
26931         * README.in:
26932         * INSTALL.in: new files to autogenerate README and INSTALL from.
26933
26934         * configure.in: figure whether we have GNU Make
26935
26936         * docs/generation.txt: minor additions/corrections.
26937
26938 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
26939
26940         * docs/gtkfaq.sgml: FAQ Update
26941
26942 July 30, 1999 Elliot Lee <sopwith@redhat.com>
26943         
26944         * configure.in: Fix autoconf warnings about cross compilation by
26945         trying to provide sane defaults for AC_TRY_RUN.
26946
26947 Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
26948
26949         * ltconfig
26950         * ltmain.sh: upgrade to libtool 1.3.3
26951
26952 Thu Jul  8 11:30:18 1999  Owen Taylor  <otaylor@redhat.com>
26953
26954         * INSTALL: Indicate that the --with-glib= configure
26955         time flag is unsupported.
26956
26957 Mon Jul  5 20:36:03 1999  Owen Taylor  <otaylor@redhat.com>
26958
26959         * docs/generation.txt: Added a file that gives
26960         documenation about the autogeneration process for
26961         various autogenerated files.
26962         
26963 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
26964
26965         * configure.in (LIBS): Look for libgmodule in the
26966         right location.
26967
26968 Thu Jun 17 13:57:31 1999  Owen Taylor  <otaylor@redhat.com>
26969
26970         * docs/gtk_tut.sgml: Removed references to
26971         code examples in my directory on gtk.org as
26972         they should all be in the tutorial now.
26973
26974         * docs/gtk_tut.sgml: Added sources for dial-test
26975         and scribble-xinput programs that were previously
26976         missing.
26977
26978 Fri Jun  4 00:08:59 1999  Owen Taylor  <otaylor@redhat.com>
26979
26980         * TODO: Added entry about menu keyboard navigation, removed
26981         some finished items.
26982
26983 Mon May 31 00:11:24 1999  Owen Taylor  <otaylor@redhat.com>
26984
26985         * acinclude.m4: Standardize on func_dgettext
26986         not func_gettext, so that the checks for dgettext
26987         actually are paid attention to.
26988
26989 Wed May  5 10:47:54 1999  Owen Taylor  <otaylor@redhat.com>
26990
26991         * configure.in (LIBS): Add $INTLLIBS into $LIBS
26992         directly, rather than repeating the checks for
26993         gettext.
26994
26995         * INSTALL: Added information about gettext and
26996         NLS support.
26997
26998         * acinclude.m4 (LIBM): Check for dgettext, not
26999         just gettext. This should hopefully fix things wrt
27000         systems with old versions of GNU gettext installed.
27001
27002 Tue Jun 29 15:59:25 1999  Owen Taylor  <otaylor@redhat.com>
27003
27004         * configure.in (LIBS): Look for libgmodule in the
27005         right location.
27006
27007 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
27008
27009         * autogen.sh: add --enable-maintainer-mode
27010
27011         * configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
27012
27013 Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
27014
27015         * docs/gtk-config.1.in:
27016           docs/Makefile.am:
27017           configure.in: gtk-config is now generated.
27018
27019         * docs/gtk-config.1: Removed, now generated.
27020
27021 Thu Sep 23 17:59:59 1999  Tim Janik  <timj@gtk.org>
27022
27023         * gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
27024         handle CreateNotify itself, still put out a debuging message for
27025         --gdk-debug=events. made the ReparentNotify debugging message more
27026         verbose.
27027         wrap xcoords translation for ConfigureEvents into an error trap,
27028         a destroy event may already be pending, and in that case, the
27029         actuall coordinate values are not at all critical.
27030
27031 Sat Sep 18 22:24:15 1999  Owen Taylor  <otaylor@redhat.com>
27032
27033         * gdk/gdkcc.c: Stop leaking the color_hash all over
27034         the place. Simplify and improve the logic.
27035
27036 Fri Sep 17 09:57:15 1999  Tim Janik  <timj@gtk.org>
27037
27038         * gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
27039         for prototypes and function implementations consistent (reported
27040         by Tomas Ogren).
27041
27042 Tue Sep 14 18:23:01 1999  Tim Janik  <timj@gtk.org>
27043
27044         * gdk/gdkevents.c (gdk_event_translate): tell if expose events have
27045         send_event set in debugging output.
27046         (gdk_compress_exposures): default initialize the event so we don't
27047         operate on bogus values (namely send_event).
27048
27049 Thu Sep  2 16:33:59 1999  Owen Taylor  <otaylor@redhat.com>
27050
27051         * gdk/gdkwindow.c: When we receive an unexpected
27052         destroy notify on one of our windows, don't just
27053         warn about it, also mark our windows as destroyed.
27054
27055 Sun Sep  5 08:10:53 1999  Owen Taylor  <otaylor@redhat.com>
27056
27057         * gdk/gdkfont.c (gdk_font_hash_insert): Add
27058           name => font and name => fontset hashes. The 
27059           name => fontset hash is a _big_ win since we
27060           weren't previously caching fontsets at all and loading
27061           fontsets is expensive. The name => font hash
27062           is less of a win, but it does save us from doing
27063           repeated XQueryFont calls on the same font.
27064
27065         * gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
27066           list so we can remove font/fontset from hash.
27067
27068 Thu Sep  2 19:02:37 1999  Owen Taylor  <otaylor@redhat.com>
27069
27070         * gdk/gdkproperty.c (gdk_atom_intern): Remove useless
27071           and slightly confusing test. [ XInternAtom (,,TRUE)
27072           will never return None ].
27073
27074 Sat Sep  4 08:39:26 1999  Owen Taylor  <otaylor@redhat.com>
27075
27076         * gdk/gdkwindow.c (gdk_window_set_geometry_hints)
27077           gdk/gdkwindow.c (gdk_window_set_hints):
27078
27079         Don't omit setting the properties if flags == 0 -
27080         there may be an existing set of properties there
27081         already. (Very old bug. Would it be better to
27082         delete the property instead?)
27083
27084         * gdk/gdkselection.c (gdk_selection_property_get): Fix 
27085           spelling error in comment.
27086
27087 Wed Sep  1 14:05:30 1999  Owen Taylor  <otaylor@redhat.com>
27088
27089         * gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
27090           to avoid stomping over gdk_error_warnings.
27091
27092         * gdk/gdkimage.c (gdk_image_new): compute image->bpp
27093           as (bits_per_pixel + 7) / 8. This gives the same
27094           result as before for multiples of 8, but actually
27095           a "reasonable" value for 1bit or 4bit displays.
27096
27097 Mon Aug 23 19:11:17 1999  Tim Janik  <timj@gtk.org>
27098
27099         * gdk/Makefile.am: minor cleanups, strip spaces on build rules for
27100         GNU Make.
27101
27102 Tue Aug 17 07:43:04 1999  Tim Janik  <timj@gtk.org>
27103
27104         * gdk/gdkevents.c (gdk_event_translate): give a debugging note when
27105         discarding configure events.
27106
27107 1999-08-18  Federico Mena Quintero  <federico@redhat.com>
27108
27109         * gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
27110         refcount is greater than zero.
27111
27112         * gdk/gdkwindow.c (gdk_window_unref): Likewise.
27113
27114         * gdk/gdkfont.c (gdk_font_unref): Likewise.
27115
27116         * gdk/gdkgc.c (gdk_gc_unref): Likewise.
27117
27118         * gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
27119
27120 Wed Aug 11 01:04:57 1999  Owen Taylor  <otaylor@redhat.com>
27121
27122         * gdk/gdkproperty.c (gdk_property_get): Fix assumption
27123         that format 32 => sizeof(item) == 4. It really is
27124         sizeof(long).
27125
27126 Tue Jun 29 23:02:42 1999  Owen Taylor  <otaylor@redhat.com>
27127
27128         * gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
27129         core dump at all on X IO errors, only core dump
27130         if --enable-debug for X errors.
27131
27132 Thu Jun 24 17:06:23 1999  Tim Janik  <timj@gtk.org>
27133
27134         * gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
27135         unknown window:" message. disabled ConfigureNotify discarding code,
27136         because it led to events being processed out of order.
27137
27138 Thu Jun 24 12:22:02 1999  Tim Janik  <timj@gtk.org>
27139
27140         * gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
27141
27142         * gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
27143         we export this function, supress error warnings and don't reset the
27144         error code in the first half of this function.
27145
27146         * gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
27147         code (instead of just -1) so gdk_error_trap_pop() reveals something
27148         actually informative about the error that happened.
27149
27150         * gdk/*.c:
27151         don't rely on gdk_error_code being -1 if an error occoured, but just
27152         gdk_error_code != 0.
27153
27154 Thu Jun 24 11:50:07 1999  Tim Janik  <timj@gtk.org>
27155
27156         * gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
27157         pointer *before* invoking the filter function, so we at least don't
27158         crash if a filter is removed that is currently executed. window filters
27159         *really* need to be made truely reentrant at some point.
27160
27161 Mon Jun 14 11:10:15 1999  Tim Janik  <timj@gtk.org>
27162
27163         * gdk/gdkevents.c (gdk_event_translate): print the atom name in the
27164         PropertyNotify debug messages.
27165
27166 Wed May  5 22:51:06 1999  Owen Taylor  <otaylor@redhat.com>
27167         
27168         Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
27169         
27170         * gdk/gdkim.c: Fix cut-and-paste errors for 
27171         x/y and PreeditAttributes/StatusAttributes.
27172
27173 Wed May  5 22:24:21 1999  Owen Taylor  <otaylor@redhat.com>
27174
27175         * gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
27176         G_MAXINT to 2^16 to alleviate overflow problems in
27177         various window managers.
27178
27179 Wed Apr 21 00:42:08 1999  Owen Taylor  <otaylor@redhat.com>
27180
27181         * gdk/gdkfont.c (gdk_text_measure): Fix the return value
27182         for fontsets.
27183
27184 Wed May  5 12:42:01 1999  Owen Taylor  <otaylor@redhat.com>
27185
27186         * gdk/gdkwindow.c (gdk_window_set_geometry_hints):
27187         Initialize size_hints.x and size_hints.y because kwm
27188         brokenly pays attention to them.
27189         (Bug #1181 -  Lars Heete <hel@admin.de>)
27190
27191 Wed May  5 11:38:56 1999  Owen Taylor  <otaylor@redhat.com>
27192
27193         * gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the 
27194         return value of gdk_list_visuals(). 
27195         (Bug #1193 - Morten Welinder <terra@diku.dk>)
27196
27197 Tue May  4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
27198
27199         * gdk/gdkim.c (gdk_im_real_open): cast the return value of
27200         XSetIMValues to (void *) when comparing to NULL, to workaround
27201         the problem of some compilers barfing since older X headers don't
27202         have the prototype for it.
27203
27204 Mon Apr 19 10:11:12 1999  Owen Taylor  <otaylor@redhat.com>
27205
27206         * gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
27207         for pseudocolor where colormap->colors was double
27208         allocated.
27209
27210         * gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
27211         color value in the hash table with the pixel filled
27212         in so when we do later hash table lookups, the color
27213         value is correct.
27214         
27215 Sun May  2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
27216
27217         * gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
27218         making the call
27219
27220 Tue Apr 27 11:17:35 1999  Owen Taylor  <otaylor@redhat.com>
27221
27222         * gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
27223         pointed out by Morten Welinder <terra@diku.dk>.
27224
27225 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
27226
27227         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
27228           default filter from the list
27229
27230 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
27231
27232         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
27233           default filter from the list
27234
27235 Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
27236
27237         * gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
27238
27239         * gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
27240         g_strdup_printf instead of calcing the length separately
27241
27242 Tue Apr 13 02:49:33 1999  Owen Taylor  <otaylor@redhat.com>
27243
27244         * gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
27245         that we don't do in many other places. (Fixing duplicate 
27246         #include of config.h)
27247
27248         * gdk/gdkevents.c: include gdkinput.h _after_ config.h.
27249         Otherwise, #ifndef XINPUT_NONE check in the latter
27250         doesn't work. (Bug #546)
27251
27252 Sun Apr 11 14:38:03 1999  Tim Janik  <timj@gtk.org>
27253
27254         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
27255         "None" case insensitive.
27256
27257 Tue Apr  6 16:38:51 1999  Owen Taylor  <otaylor@redhat.com>
27258
27259         * gdk/gdkselection.c: 
27260         Add error traps so if the other end of the connection
27261         dies, we survive.
27262
27263 Tue Apr  6 12:24:21 1999  Owen Taylor  <otaylor@redhat.com>
27264
27265         * gdk/gdkdnd.c (gdk_drag_motion): Separate out the
27266         dest_xid field into two fields - one for the window
27267         to send in messages, one to indicate the last looked
27268         up window for caching purposes. This is needed, so
27269         that Leave messages get the correct window.
27270
27271 Mon Apr  5 13:21:30 1999  Owen Taylor  <otaylor@redhat.com>
27272
27273         * gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
27274         Fix warning created by people mucking around
27275         with the gsource API.
27276
27277         * gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
27278         Change mapping between GIOCondition and GdkInputCondition
27279         to match the way the Linux kernel does it. This should
27280         fix problems where closed pipes were no longer signalling
27281         GDK_INPUT_READ on systems with a native poll().
27282
27283 Mon Apr  5 17:11:57 1999  Owen Taylor  <otaylor@redhat.com>
27284
27285         * gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check 
27286         explicitly for the string "None" - it is in the XPM
27287         spec and some servers treat unknown colors in odd ways
27288         (like asking the user!)
27289
27290 Thu Apr  1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
27291
27292         * gdk/gdkevents.c: made "->" into a "." of previous change so
27293         it compiles
27294
27295 Thu Apr  1 18:41:25 1999  Owen Taylor  <otaylor@redhat.com>
27296
27297         * gdk/gdkevents.c (gdk_compress_exposures): Set the
27298         window field of the event structure before calling
27299         user filters.
27300
27301 1999-03-31  Federico Mena Quintero  <federico@nuclecu.unam.mx>
27302
27303         * gdk/gdk.c (gdk_init_check): Use False as the last argument to
27304         XInternAtom() here.  This is a particularly Old And Nasty(tm) bug.
27305
27306 Mon Mar 29 17:31:52 1999  Owen Taylor  <otaylor@redhat.com>
27307
27308         * gdk/gdkim.c (gdk_mbstowcs): Free the value of the
27309         intermediate text property - prevents major memory
27310         leak when gdk_use_mb.
27311         gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
27312
27313 Mon Mar 29 17:02:58 1999  Owen Taylor  <otaylor@redhat.com>
27314
27315         Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
27316         gtk-a-higuti-990322-[0-3]
27317
27318         * gdk/gdkfont.c (gdk_text_extents_wc): Make  work when
27319         sizeof(wchar_t) != sizeof (GdkWChar)
27320
27321         * configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
27322         that was causing -DX_LOCALE not to work.
27323
27324         * gtk/gtkrc.c (gtk_rc_init):
27325         X_LOCALE will never have LC_MESSAGES defined
27326
27327         * gdk/gdk.c (gdk_init_check):
27328         Remove --xim-preedit and --xim-status from argv properly.
27329
27330         * gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
27331         that the client window is present on the X server
27332         before we pass it to the input method.
27333
27334 Tue Mar  9 10:46:49 1999  Owen Taylor  <otaylor@redhat.com>
27335
27336         * gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
27337         if --display is specified on the command line, than
27338         the drag window will not be created on that display.
27339         
27340 Tue Mar  9 10:38:24 1999  Owen Taylor  <otaylor@redhat.com>
27341
27342         * gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
27343         lookups with only_if_exists == TRUE were inserting
27344         bogus values into the atom cache.
27345
27346 Wed Mar 17 09:00:00 1999  Tim Janik  <timj@gtk.org>
27347
27348         * gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
27349         then reset it to NULL.
27350
27351         * gdk/gdkcolor.c:
27352         (gdk_colors_free): 
27353         (gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
27354         key for g_hash_table_remove() in both functions, this prevents us
27355         from accessing possibly uninitialized portions of a GdkColor structure
27356         where we are only interested in its pixel value.
27357
27358 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
27359
27360         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
27361         font hash table, if we have a GdkFontPrivate entry for this font
27362         already, simply increment its reference count, provided by Olaf Dietsche
27363         <olaf.dietsche+list.gtk@netcologne.de>.
27364
27365 1999-09-21  Tor Lillqvist  <tml@iki.fi>
27366
27367         * gdk/win32/gdk.c (gdk_exit_func): Delete the gdk_DC when exiting,
27368         just to be sure.
27369
27370         * gdk/win32/gdkvisual.c (gdk_visual_init): Remove a couple of
27371         unused variables, leftovers from the X11 version.
27372
27373         * gdk/win32/rc/*.cur: Better cursors provided by Bernd Herd.
27374
27375         * gtk/gtkfontsel.c (gtk_font_selection_get_xlfd_field): Only
27376         downcase fields on X11.
27377
27378 Mon Sep 20 13:17:39 1999  Pablo Saratxaga <pablo@mandrakesoft.com>
27379         
27380         * configure.in,po/pt_BR.po: added Portuguese Brazilian file from
27381         Alex Sandro Queiroz e Silva <asandro@lcg.dc.ufc.br>
27382
27383 1999-09-17  Tor Lillqvist  <tml@iki.fi>
27384
27385         * gdk/win32/gdk.def: Add gdk_threads_mutex.
27386
27387         * gtk/makefile.msc: Correct path to libintl.
27388
27389         Thanks to Tomi Ollila and Bernd Herd: Fix some inconsistencies in
27390         use of gint vs. int, and gint vs. gboolean in headers and
27391         definitions. Use GtkType for the *_get_type functions. Note that
27392         these changes preserve binary compatibility.
27393
27394         * gdk/gdk.c
27395         * gdk/win32/gdk.c
27396         * gdk/gdk.h: Fix inconsistencies: gint vs int.
27397
27398         * gtk/gtkmain.c
27399         * gtk/gtkclist.c
27400         * gtk/gtkmenufactory.c
27401         * gtk/gtknotebook.c
27402         * gtk/gtkwidget.c: Fix inconsistencies, also gint
27403         vs. gboolean.
27404
27405         * gtk/gtkcolorsel.[ch]
27406         * gtk/gtkcombo.[ch]
27407         * gtk/gtkdrawingarea.[ch]
27408         * gtk/gtkgamma.[ch]
27409         * gtk/gtkhandlebox.[ch]
27410         * gtk/gtkhpaned.[ch]
27411         * gtk/gtkhruler.[ch]
27412         * gtk/gtkplug.[ch]
27413         * gtk/gtkpreview.[ch]
27414         * gtk/gtkruler.[ch]
27415         * gtk/gtksocket.[ch]
27416         * gtk/gtkstatusbar.[ch]
27417         * gtk/gtktoolbar.[ch]
27418         * gtk/gtkvbbox.[ch]
27419         * gtk/gtkvpaned.[ch]
27420         * gtk/gtkvruler.[ch]: Always use type GtkType for the *_get_type
27421         functions.
27422
27423         * gtk/gtkgamma.h: Fix bug, missing () in call of
27424         gtk_gamma_curve_get_type() in GTK_GAMMA_CURVE_CLASS. 
27425
27426 1999-09-14  Tor Lillqvist  <tml@iki.fi>
27427
27428         * gdk/gdkcolor.c (gdk_colormap_new)
27429         * gdk/win32/gdkcolor.c (gdk_colormap_new): Fix memory leak:
27430         colormap->colors was allocated twice.
27431
27432         * gdk/win32/gdk.c: Remove some unused stuff.
27433
27434         * gdk/win32/gdkcolor.c (gdk_colormap_sync): Initialize all of the
27435         colormap.
27436
27437         * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_type)
27438         * gtk/gtklabel.h (gtk_label_get_type)
27439         * gtk/gtktipsquery.c (gtk_tips_query_get_type)
27440         * gtk/gtktypeutils.h (gtk_type_name): : Use GtkType
27441         in a couple of places, not guint.
27442
27443 Fri Sep 10 21:31:00 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
27444
27445         * configure.in,po/et.po: added Estonian language file
27446
27447 Wed Sep  1 14:36:12 CEST 1999 Pablo Saratxaga <pablo@mandrakesoft.com>
27448
27449         * configure.in,po/da.po: added Danish file
27450
27451 Sun Aug 29 13:38:59 BST 1999 Tony Gale <gale@gtk.org>
27452
27453         * docs/gtkfaq.sgml: Minor FAQ Update
27454
27455 Sat Aug 28 14:34:37 BST 1999 Tony Gale <gale@gtk.org>
27456
27457         * docs/gtkfaq.sgml: FAQ update
27458
27459 1999-08-27  Tor Lillqvist  <tml@iki.fi>
27460
27461         Win32: Philippe Colantoni <colanton@aris.ss.uci.edu> suggests a
27462         way to get window contents continually refreshed while resizing. I
27463         didn't like the effects myself, so it's not on by default.
27464
27465         * gdk/win32/gdkprivate.h: New flag variable
27466         gdk_event_func_from_window_proc, FALSE by default.
27467
27468         * gdk/win32/gdk.c (gdk_init_check): Set above flag if the
27469         environment variable GDK_EVENT_FUNC_FROM_WINDOW_PROC is set, or we
27470         are passed --gdk-event-func-from-window-proc.
27471
27472         * gdk/win32/gdkevents.c (gdk_WindowProc): If above flag is set,
27473         and we have am event_func, call it instead of enqueing the event.
27474
27475 1999-08-23  Tor Lillqvist  <tml@iki.fi>
27476
27477         * gdk/win32/gdkevents.c (gdk_event_translate): Fix from Simon
27478         Kelley: Set expose_count in GdkEventExposes correctly.
27479
27480         * gdk/win32/gdkwindow.c: Remove dead code (#ifdef
27481         MULTIPLE_WINDOW_CLASSES).
27482
27483         * gdk/win32/gdkdraw.c (gdk_draw_line): Workaround from Hans Breuer
27484         for bug in NT, apparently NT *does* draw the end pixel, too, in
27485         LineTo with a one-pixel pen, so we don't have to do it ourselves.
27486
27487 1999-08-21  Tor Lillqvist  <tml@iki.fi>
27488
27489         Improvements by Hans Breuer: 
27490
27491         * gdk/win32/gdkwindow.c (RegisterGdkClass): New function
27492
27493         * gdk/win32/gdkwindow.c (gdk_window_new): Use it. Don't set the
27494         CS_?REDRAW flags as they cause lots of (late) redraws when "show
27495         window contents while dragging" is turned on. Allocate at least
27496         one unique class for every GdkWindowType. If support for single
27497         window-specific icons is ever needed (eg. Dialog specific), every
27498         such window should get its own class.
27499
27500 1999-08-19  Tor Lillqvist  <tml@iki.fi>
27501
27502         * gdk/win32/gdkgc.c (gdk_gc_new_with_values): Fix a cut&paste
27503         error that caused crashes.
27504
27505 1999-08-17  Tor Lillqvist  <tml@iki.fi>
27506
27507         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): When blitting inside one
27508         window, use ScrollWindowEx, and call UpdateWindow. This prevents
27509         bugs when for instance part of the window was outside the
27510         display. Thanks to Philippe Colantoni for finding and fixing this.
27511
27512 1999-08-16  Tor Lillqvist  <tml@iki.fi>
27513
27514         * gdk/win32/gdkdraw.c (gdk_draw_arc): Fix start and end radial
27515         endpoint calculations which were totally wrong. (A little RTFMing
27516         helps a lot ;-)
27517
27518         * gtk/makefile.{cygwin,msc}: Use libintl extracted from glibc
27519         from a separate directory, not from gettext, because of licensing
27520         issues (we want to use the LGPL version).
27521
27522         * README.win32: Mention the intl from glibc vs from gettext issue.
27523
27524 1999-08-13  Tor Lillqvist  <tml@iki.fi>
27525
27526         * gdk/win32/gdkevents.c (gdk_event_translate): Fix a couple of bugs
27527         in the key event handling: Now AltGr chars work again. Also,
27528         now Alt-digits are passed up as well as Control-digits.
27529         Pass keypad plus and minus as normal plus and minus.
27530
27531 Wed Aug 11 13:38:26 BST 1999 Tony Gale  <gale@gtk.org>
27532
27533         * docs/gtkfaq.sgml: FAQ Update
27534
27535 1999-07-25  Tor Lillqvist  <tml@iki.fi>
27536
27537         * README.win32
27538         * config.h.win32: Add HAVE_WINTAB. Undefine it if bulding without
27539         the Wintab SDK.
27540
27541         * gdk/win32/gdkinput.c: Hack some more. Still doesn't quite work
27542         OK, but getting closer. Guard against bogus tilt data from Wacom
27543         ArtPad II with the 3.40 driver. Add ifdefs for HAVE_WINTAB to
27544         enable easier building without Wintab.
27545
27546         * gdk/win32/gdkinput.h
27547         * gdk/win32/gdkevents.c 
27548         * gdk/win32/gdkwindow.c: Minor changes related related to above.
27549         
27550         * gdk/win32/gdkvisual.c: Simplify a lot, remove leftovers from X11
27551         code. As we have just one visual on Win32, no sense to have it in a
27552         table, and no need for the hash table.
27553
27554         * gdk/win32/rc/cursor*.cur: Edit some of the cursors a bit to look
27555         better on white background.
27556
27557 1999-07-21  Tor Lillqvist  <tml@iki.fi>
27558
27559         * README.win32: Update gcc build instructions. Mention gettext is
27560         GPL.
27561
27562         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Get correct
27563         supported cursor size with GetSystemMetrics.
27564
27565         * gdk/win32/gdkfont.c
27566         * gtk/gtkfontsel.c: Guard against some font weight and charset
27567         symbols being undefined (in mingw32 headers).
27568
27569         * gdk/win32/makefile.cygwin
27570         * gtk/makefile.cygwin
27571         * gtk/gtkthemes.c: No longer need to have differently named
27572         gcc-built DLLs when using gcc-2.95 and -fnative-struct.
27573
27574 hu Jul 15 13:33:15 BST 1999 Tony Gale <gale@gtk.org>
27575
27576         * docs/gtkfaq.sgml: Long awaited FAQ update.
27577
27578 1999-07-15  Tor Lillqvist  <tml@iki.fi>
27579
27580         * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Implement
27581         it. Obscure bit manipulation needed.
27582
27583         * gdk/win32/gdkevents.c: Logging.
27584         
27585         * gtk/gtkthemes.c (gtk_theme_engine_get): (Win32) Use new DLL naming
27586         style (file name include compiler name) for theme engines.
27587
27588 1999-07-13  Tor Lillqvist  <tml@iki.fi>
27589
27590         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Less logging verbiage.
27591
27592         * gdk/win32/gdkevents.c: Fix long-standing bug in key
27593         events. The key.string wasn't zero-terminated, still we strdup'ed
27594         it in gdk_event_copy(). Synthesize crossing events for button
27595         events before possible propagation.
27596
27597         * gdk/win32/gdkwindow.c: Log gdk_window_set_title.
27598
27599         * gdk/win32/makefile.cygwin
27600         * gtk/makefile.cygwin: Use new DLL naming style for the
27601         GCC-compiled ones.
27602
27603         * gdk/win32/makefile.msc
27604         * gtk/makefile.msc: Cosmetics mostly.
27605
27606         * gtk/gtk.def: Add missing entry points.
27607
27608         * gtk/gtksocket.c: Add dummy gtk_socket_get_type() for Win32.
27609
27610 1999-07-09  Tor Lillqvist  <tml@iki.fi>
27611
27612         * gdk/win32/gdkdraw.c (gdk_draw_arc): Don't draw anything if width
27613         or height is zero. Don't print a warning if Pie or Arc fails, they
27614         always fail (?) for very narrow ellipses.
27615
27616         * gdk/win32/gdkdraw.c (gdk_draw_pixmap): Call InvalidateRgn for
27617         the part or the destination window corresponding to source area
27618         outside of the source drawable's boundary.
27619
27620         * gdk/win32/gdkdraw.c (gdk_draw_lines, gdk_draw_polygon): Don't do
27621         anything if less than two points.
27622
27623         * gdk/win32/gdkselection.c (gdk_selection_owner_get): Always
27624         return NULL. Gtk cut-and-paste inside a single program works
27625         better this way. (It always gets the clipboard contents from
27626         Windows, not from its own copy, which is cleared anyway. I can't
27627         say I fully understand what happens... Emulating the X selection
27628         and property stuff is a bit of a mess.)
27629
27630         * gdk/win32/gdkevents.c
27631         * gdk/win32/gdkproperty.c: A bit more verbose logging.
27632
27633         * gdk/win32/gdkregion.c: Fix some memory leaks (temporary regions
27634         that never got deleted). Revamp gdk_region_shrink.
27635
27636         * gdk/win32/gdkregion.c: Fix memory leak, delete temporary regions
27637         after use.
27638
27639         * gtk/gtk.def: Add some missing entry points.
27640
27641         * gtk/gtkrc.c: Strip trailing directory separator from pixmap path
27642         component.
27643
27644 1999-07-04  Tor Lillqvist  <tml@iki.fi>
27645
27646         * gdk/win32/gdkevents.c (gdk_event_translate): Handle
27647         Control-digits specially.
27648
27649 1999-07-03  Tor Lillqvist  <tml@iki.fi>
27650
27651         * gtk/makefile.{cygwin,msc}: New pthreads version. Use gettext.
27652
27653 1999-06-28  Tor Lillqvist  <tml@iki.fi>
27654
27655         * gdk/win32/gdkimage.c (gdk_image_get): bpl was set wrong for
27656         bitmaps, should be multiple of 4. (Thanks to Hans Breuer for
27657         finding this.)
27658
27659 1999-06-01  Jose H Mercado  <jmercado@mit.edu>
27660
27661         * gtk+.spec.in: Corrected some typos in files section.
27662         
27663 1999-06-15  Tor Lillqvist  <tml@iki.fi>
27664
27665         * README.win32: Mention using GNU gettext.
27666         * config.h.win32: Enable NLS stuff.
27667         * gtk/makefile.msc: Use GNU gettext.
27668         * gdk/win32/gdkdnd.c: Minor header reorg.
27669         * gdk/win32/{gdkevents,gdkwindow}.c: No semantic changes, mainly
27670         cosmetics.
27671         * gtk/gtkrc.c (Win32): Make get_gtk_sysconf_directory() public.
27672         * gtk/gtkmain.c (Win32): Use it in bindtextdomain() call.
27673
27674 Wed Jun  2 11:44:25 PDT 1999 Manish Singh <yosh@gimp.org>
27675
27676         * acinclude.m4
27677         * config.guess
27678         * config.status
27679         * ltconfig
27680         * ltmain.sh: upgrade to libtool 1.3.2 (BeOS changes merged)
27681
27682 1999-05-30  Tor Lillqvist  <tml@iki.fi>
27683
27684         * gdk/win32/gdkwindow.c: AdjustWindowRectEx2 renamed to
27685         SafeAdjustWindowRectEx. Don't override all calls to
27686         AdjustWindowRectEx by it, but use it only in two places: When
27687         creating a new top-level window and when moving a top-level
27688         window.
27689
27690         Use screen coordinate rectangle, not client rectangle, in
27691         gdk_window_move. Thus SafeAdjustWindowRectEx will do its job only
27692         when we try to place a window so that the decoration (mainly,
27693         title bar) isn't visible.
27694
27695         These changes fix the bug that showed up for instance as the
27696         GIMP's saved top-level windows moving right and down (by an amount
27697         equal to the window decoration) for each session. This bug showed
27698         up also in testgtk's "Saved Position".
27699
27700         gdk_window_resize also redone a bit.
27701
27702 1999-05-25  Tor Lillqvist  <tml@iki.fi>
27703
27704         * gtk/testgtkrc: Add (commented out) Windows-style theme
27705         include line.
27706
27707         * gdk/win32/gdk.def,gtk/gtk.def: Add some missing entry points.
27708
27709 1999-05-18  Tor Lillqvist  <tml@iki.fi>
27710
27711         * gdk/win32/makefile.{cygwin,msc}: Copy our gdkprivate.h and
27712         gdkx.h to a gdk subdirectory, so that applications can include
27713         these with <gdk/*.h> without trouble.
27714
27715         * gdk/win32/gdkimage.c (gdk_image_new_with_depth): Code simplified.
27716         (gdk_image_destroy): Plug resource leak, some GdkImages didn't
27717         have their bitmap destroyed.
27718
27719         * gdk/win32/gdk.def: Add gdk_root_parent.
27720
27721 Wed May 12 03:00:56 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
27722
27723         * configure.in
27724           gtk-config.in
27725           ltconfig
27726           ltmain.sh     
27727           gtk/Makefile.am: changes to compile nicely (with xlib) 
27728           on BeOS
27729
27730 Sat May  1 15:04:42 PDT 1999 Manish Singh <yosh@gimp.org>
27731
27732         * acinclude.m4
27733         * config.guess
27734         * config.sub
27735         * ltconfig
27736         * ltmain.sh: upgrade to libtool 1.3
27737
27738 Fri Apr 30 13:38:16 1999  Lars Hamann  <lars@gtk.org>
27739
27740         * gtk/gtkclist.c:
27741         * gtk/gtkctree.c: merges from gtk-1-2
27742
27743 1999-04-25  Tor Lillqvist  <tml@iki.fi>
27744
27745         Support added for building using a GNU toolchain on Win32,
27746         gcc -mno-cygwin (egcs-1.1.2) on cygwin-b20.1.
27747
27748         * gdk/win32/makefile.cygwin gtk/makefile.cygwin: New files.
27749         * config.h.win32: Changes for gcc.
27750         * gdk/gdkrectangle.c: Include gdk.h as <gdk/gdk.h>.
27751         * gdk/gdkcolor.c: config.h.win32 already defines strcasecmp.
27752         * gdk/win32/gdkconfig.h: Only the MS compiler has wctype.h.
27753         * gdk/win32/gdkdnd.c: Protect (unused) OLE2 stuff better.
27754         Protect shl stuff unavaiilable with mingw32 headers.
27755         * gdk/win32/gdkevents.c: Fix typo.
27756         * gdk/win32/gdkglobals.c: Use GDKVAR here also for gcc.
27757         * gdk/win32/gdkim.c: Use OEM code page for multibyte chars. (?)
27758         * gdk/win32/gdkinput.c: Use __try __except only with the MS compiler.
27759         * gdk/win32/gdkprivate.h: Make up for some stuff missing from
27760         the mingw32 headers.
27761         * gdk/win32/makefile.msc: Use latest Wintab kit and glib.
27762         * gtk/gtkfilesel.c: Include <glib.h> early, to get stat->_stat
27763         definition on Win32. Test for NATIVE_WIN32, not _MSC_VER.
27764         * gtk/gtkfontsel.c: Protect CHARSET redefinition on Win32.
27765         Test for NATIVE_WIN32, not _MSC_VER.
27766         * gtk/gtkmain.c: No use warning about developer version on Win32,
27767         there aren't any non-developer versions anyhow.
27768         * gtk/gtkrc.c: Test for NATIVE_WIN32, not _MSC_VER.
27769         * gtk/makefile.msc: Use pthread from another directory. Minor other
27770         changes. 
27771
27772 Wed Apr 21 14:20:22 1999  George Lebl  <jirka@5z.com>
27773
27774         * gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
27775           default filter from the list
27776
27777 Mon Mar  8 12:52:53 1999  Owen Taylor  <otaylor@redhat.com>
27778
27779         * gtk/gtkwidget.c (gtk_widget_grab_default): Add a warning
27780          when gtk_widget_grab_default() is called for a widget that
27781          is not within a GtkWindow.
27782
27783 Sat Apr 10 13:52:54 BST 1999  Tony Gale <gale@gtk.org>
27784
27785         * docs/gtk_tut.sgml, examples/clist.c: use a
27786           scrolled window in the clist example. Minor
27787           tutorial fixes.
27788
27789 Fri Apr  2 09:19:20 BST 1999  Tony Gale <gale@gtk.org>
27790
27791         * docs/gtk_tut.sgml: Style check from David King
27792           <dking@youvegotmail.net>
27793
27794 1999-03-30  Pavel Machek  <pavel@artax.karlin.mff.cuni.cz>
27795
27796         * gtk/gtkfontsel.c (gtk_font_selection_get_fonts): Make code
27797         compile with unknown value of GDK_WINDOWING
27798
27799 1999-03-28  Raja R Harinath  <harinath@cs.umn.edu>
27800
27801         * gdk/Makefile.am (gdkconfig.h): Make sure `gdkconfig.h' exists
27802         after the rule is fired.
27803         (install-exec-local): Install gdkconfig.h only if the contents are
27804         different from the currently installed gdkconfig.h.
27805
27806 1999-03-26  Raja R Harinath  <harinath@cs.umn.edu>
27807
27808         * gdk/Makefile.am (configexecincludedir): Rename from 
27809         configincludedir so that gdkconfig.h will be installed 
27810         as part of `make install-exec'. 
27811
27812 Fri Mar 19 16:50:33 PST 1999 Manish Singh <yosh@gimp.org>
27813
27814         * acinclude.m4
27815         * config.guess
27816         * config.sub
27817         * ltconfig
27818         * ltmain.sh: upgrade to libtool 1.2f
27819
27820         * autogen.sh: libtool is not required to autogen gtk+
27821
27822         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
27823         needed)
27824
27825 1999-03-18  Tor Lillqvist  <tml@iki.fi>
27826
27827         * gdk/gdktypes.h: Merge in Win32 version: Define macro GDKVAR for
27828         declaring gdk variables exported/imported from the DLL. New image
27829         type enum, GDK_IMAGE_SHARED_PIXMAP, for gdk_imlib. New drag and
27830         drop protocol enums, GDK_DRAG_PROTO_WIN32_DROPFILES and
27831         GDK_DRAG_PROTO_OLE2.
27832
27833         * gdk/gdk.h: Merge in Win32 version: Two new functions,
27834         gdk_pixmap_create_on_shared_image and gdk_image_bitmap_new. So far
27835         declared only for the Win32 version, but could be in the X11
27836         version as well. (Needed for a Xlib-less gdk_imlib.)
27837         gdk_color_hash should have only one parameter. Declare
27838         gdk_threads_mutex with GDKVAR.
27839         
27840         * gdk/gdkcolor.c (gdk_color_hash): A hash function should have
27841         just one parameter.
27842
27843         * gdk/gdkimage.c (gdk_image_get): Initialize bpp correctly. Bytes
27844         per pixel, not bits.
27845
27846         * gdk/gdkrgb.c: Mingle includes somewhat. (gdk_rgb_select_conv):
27847         Fetch bpp (which means bits-per-pixel here) from another place on
27848         Win32. Accept also depth==32 (which we might get on Win32) with
27849         bpp==32.
27850
27851         * gtk/{gtkclist,gtkctree,gtkdnd,gtkditable,gtkfontsel,
27852         gtkhandlebox,gtklayout,gtkmain,gtkplug,gtkpreview,gtkrc,
27853         gtkselection,gtksocket,gtkstyle,gtkwidget,gtkwindow}.c:
27854         Include gdx.h from "gdkx.h", not "gdk/gdkx.h", as gdkx.h will be
27855         in the backend-dependent directory, not in the common gdk
27856         directory.
27857
27858         * gtk/testgtk.c: Ditto. Also, don't use ../gdk path to gdk
27859         headers.
27860
27861 Wed Mar 17 05:06:49 1999  Tim Janik  <timj@gtk.org>
27862
27863         * gtk/gtkmain.c (gtk_init_check): tell people that they don't really
27864         want to use the Gtk+ devel version (which is true, and yes - even i am
27865         currently working with the 1.2.x branch). so everyone reading this, you
27866         probably want to issue
27867         cvs checkout -r glib-1-2 glib
27868         and
27869         cvs checkout -r gtk-1-2 gtk+
27870         as your next two comands.
27871
27872 Wed Mar 17 02:49:32 1999  Tim Janik  <timj@gtk.org>
27873
27874         * configure.in: build gtkcompat.h from gtkcompat.h.in instead of
27875         gtkfeatures.h from gtkfeatures.h.in, require GLib 1.3.0.
27876
27877         * gtk/gtkcompat.h.in: combined gtkcompat.h and gtkfeatures.in in this
27878         file. strongly deprecated the GTK_HAVE_* macros, we provide
27879         GTK_CHECK_VERSION() for people that need to check for certain
27880         Gtk+ versions.
27881
27882         * gtk/gtkcompat.h: removed this from CVS.
27883         * gtk/gtkfeatures.h.in: removed this from CVS, gtkfeatures.h was a bad
27884         idea right from the start, it just didn't seem like that back then.
27885
27886 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
27887
27888         * merges from gtk-1-2:
27889
27890 Tue Mar 16 17:43:33 1999  Tim Janik  <timj@gtk.org>
27891
27892         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_string): ensure the
27893         item factory class has been created.
27894         (gtk_item_factory_parse_rc): likewise.
27895
27896         * gtk/gtkmenu.c:
27897         keep proper references for old_active_menu_item.
27898         (gtk_menu_reparent): unset the usize of the new parent,
27899         so the menu can sanely be size requested and we don't get nasty screen
27900         artefacts upon next reparentation.
27901         (gtk_menu_motion_notify): set send_event to TRUE if we synthesize an
27902         enter notify. only synthesize enter notifies if the pointer really is
27903         inside the event window.
27904         (gtk_menu_popdown): use gtk_menu_shell_deselect().
27905         (gtk_menu_popup): move the background setting stuff into
27906         gtk_menu_tearoff_bg_copy() so it can be called from other places as well.
27907
27908         * gtk/gtkmenushell.c (gtk_menu_shell_button_press): use
27909         gtk_menu_shell_select_item() to select the new item.
27910         (gtk_menu_shell_deselect): export this function, so gtkmenu.c can
27911         do the right thing for deselection as well.
27912
27913 Sat Mar 15 20:10:33 1999  Tim Janik  <timj@gtk.org>
27914
27915         * gtk/gtkwidget.[hc]:
27916         (gtk_widget_accelerators_locked): return whether a widget's accelerators
27917         are locked.
27918
27919         * gtk/gtkmenu.c (gtk_menu_key_press): don't remove or install new or
27920         existing accelerators if the widget's accelerators are locked.
27921
27922 Sat Mar 14 19:44:05 1999  Tim Janik  <timj@gtk.org>
27923
27924         * gtk/gtkitemfactory.[hc]: allow managing of foreign menu items.
27925
27926         * gtk/gtkmenu.c: truely forward key press and key release events to
27927         the menu widget from the toplevel or tearoff window. we can't simply
27928         connect to that, we need to stop further processing of the events as
27929         well.
27930
27931 Sat Mar 13 13:14:17 1999  Tim Janik  <timj@gtk.org>
27932
27933         * gtk/gtkmenu.c:
27934         (gtk_menu_key_press): pass event->keyval, event->state to
27935         gtk_accelerator_valid, instead of event->keyval twice.
27936         refuse to install single letter accelerators for menus that use
27937         single letter shortcuts.
27938
27939         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): use
27940         gtk_menu_ensure_uline_accel_group().
27941
27942         * gtk/gtkmenu.[hc]: added gtk_menu_ensure_uline_accel_group()
27943         which will always return an uline accel group, made
27944         gtk_menu_get_uline_accel_group() return NULL if the group isn't
27945         yet created.
27946
27947 Mon Mar 15 01:03:27 1999  Lars Hamann  <lars@gtk.org>
27948
27949         * gtk/gtkclist.h (struct _GtkCListColumn): added button_passive flag.
27950
27951         * gtk/gtkclist.c (gtk_clist_column_title_passive):
27952         Leave button sensitive, trap  button_press, button_release,
27953         motion_notify, enter_notify and leave_notify events instead.
27954         (gtk_clist_column_title_active): disconnect event handler.
27955         (gtk_clist_drag_data_get): fixed memory leak. Reported by
27956         Guillaume Laurent <glaurent@worldnet.fr>
27957
27958 Wed Mar 10 23:49:55 1999  Lars Hamann  <lars@gtk.org>
27959
27960         * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few
27961         width/height mixups.
27962
27963         * gtk/gtkctree.c (tree_delete): emit an tree_unselect_row signal
27964         if needed.
27965
27966 Wed Mar 10 00:11:32 1999  Tim Janik  <timj@gtk.org>
27967
27968         * gtk/testgtk.c (create_item_factory): unref the item factory after
27969         window's destruction.
27970
27971         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): keep a reference
27972         count on the menu shell around the menu item's activation, since the
27973         signal emission may cause menu shell destruction.
27974
27975         * gtk/gtkitemfactory.c:
27976         the previous code leaked one accel group per menu. we use
27977         gtk_menu_get_uline_accel_group() now to fix that, and with that
27978         also create the underline accelerator group of the menus only if
27979         required (i.e. an underline accelerator has been specified).
27980         (gtk_item_factory_construct):
27981         (gtk_item_factory_create_item): removed code that would create an
27982         extra accel group for the menu (and leak references).
27983         (gtk_item_factory_create_item): adapted the underline accelerator
27984         installation code to properly feature gtk_menu_get_uline_accel_group().
27985
27986         * gtk/gtkmenu.[hc]: added gtk_menu_get_accel_group() to retrive
27987         menu->accel_group, this may return NULL if the accelerator group
27988         hasn't been set yet.
27989         added gtk_menu_get_uline_accel_group() to retrive the underline
27990         accelerator group of the menu, this will be created on demand
27991         and proper care is taken about its reference count.
27992
27993         * gtk/gtkitemfactory.h:
27994         * gtk/gtkitemfactory.c:
27995         dumped the approach of keeping a widgets by action list on the
27996         factory since the factory<->widget destroy negotiation didn't work
27997         and would be hard to get going at all. instead we keep a list of
27998         GtkItemFactoryItem items on the factory (GtkItemFactoryItems are
27999         persistant throughout a program's life time).
28000         also, i removed the static const gchar *key_* variables, and made
28001         them inline strings (they weren't actually used anyways).
28002         (gtk_item_factory_add_item): update ifactory->items.
28003         (gtk_item_factory_destroy): destroy ifactory->items (and remove
28004         the item factory pointer from the remaining ifactory widgets).
28005         (gtk_item_factory_get_widget_by_action): walk the GtkItemFactoryItem
28006         list to find the widget.
28007         (gtk_item_factory_get_item): new function that works around
28008         gtk_item_factory_get_widget() limitations, this function will only
28009         return menu items, even for <Branch> entries.
28010
28011 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
28012
28013         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
28014         font hash table, if we have a GdkFontPrivate entry for this font
28015         already, simply increment its reference count, provided by Olaf Dietsche
28016         <olaf.dietsche+list.gtk@netcologne.de>.
28017
28018         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
28019         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
28020
28021 Sun Mar  7 06:13:29 1999  Tim Janik  <timj@gtk.org>
28022
28023         * gtk/gtkcontainer.c:
28024         (gtk_container_add_with_args):
28025         (gtk_container_addv):
28026         (gtk_container_add): before adding a child to a conatiner, make sure
28027         it is (default) constructed, this is neccessary because under certain
28028         circumstances the child will get relized and mapped immediatedly, in
28029         which case it has to be constructed already.
28030
28031 Mon Mar  1 17:58:21 1999  Tim Janik  <timj@gtk.org>
28032
28033         * gtk/gtksignal.c (gtk_signal_connect_by_type): count object_signal
28034         values > 1 as TRUE also.
28035
28036 1999-03-16  Tor Lillqvist  <tml@iki.fi>
28037
28038         * README.win32: New file.
28039                 
28040         * configure.in: Check for lstat.
28041
28042         * config.h.win32: Add non-definition of HAVE_LSTAT, just for
28043         completeness.
28044
28045         * gtk/gtkrc.c: If don't HAVE_LSTAT, use stat.
28046
28047         * gtk/gtk.def: Removed CRs.
28048
28049         * gtk/makefile.msc: Correct include path to Win32 GDK version (in
28050         ..\gdk\win32).
28051
28052         * gdk/win32/makefile.msc: Correct upwards relative paths.
28053         
28054 Mon Mar 15 03:38:34 1999  George Lebl  <jirka@5z.com>
28055
28056         * gtk/gtkdnd.c: (gtk_drag_highlight) swap the
28057           gtk_drag_highlight_expose and gtk_drag_highlight_paint since
28058           it was connecting a void function to expose_event and the int
28059           returning function to the draw signal
28060
28061 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
28062
28063         * configure.in:
28064         Use correct path to libgmodule.la when ref'ing uninstalled copy
28065         of glib.  (Already in stable branch, Bug #417)
28066
28067 1999-03-15  Tor Lillqvist  <tml@iki.fi>
28068
28069         Win32 merge and general portability stuff:
28070                 
28071         * acconfig.h,configure.in: Check for <sys/time.h>.
28072
28073         * gdk/win32: New directory (actually, been there for a while).
28074         
28075         * gtk/fnmatch.c: Include <glib.h> for G_DIR_SEPARATOR, WIN32 and
28076         NATIVE_WIN32, and use these. Always case fold on Win32. No
28077         backslashed escapes on native Win32.
28078
28079         * gtk/{gtk.def,makefile.msc}: New files.
28080
28081         * gtk/Makefile.am: Add above new files.
28082         
28083         * gtk/{gtkaccelgroup,gtkbindings}.c: Include <string.h>
28084         instead of <strings.h>.
28085
28086         * gtk/{gtkcalendar,gtkitemfactory,gtkpreview,gtkrc}.c: Include
28087         config.h. Protect inclusion of <sys/param.h>, <sys/time.h>, and
28088         <unistd.h> appropriately.
28089
28090         * gtk/gtkdnd.c: Merge in Win32 version (which doesn't do much).
28091         Use ABS() (from <glib.h>) instead of abs().
28092         
28093         * gtk/gtkfilesel.c: Moved Win32-specific includes after inclusion
28094         of gtk (and thus glib) headers, so that WIN32 will be
28095         defined. With MS C, include <direct.h> for mkdir prototype.
28096
28097         * gtk/gtkitemfactory.c (gtk_item_factory_callback_marshal): Add
28098         some casts, needed by MS C.
28099
28100         * gtk/{gtklayout,gtkplug}.c: Merge in Win32 version (which isn't
28101         implemented).
28102
28103         * gtk/gtkmain.c: Include gdk/gdkx.h for GDK_WINDOWING. Include
28104         <X11/Xlocale.h> only on X11 platform, otherwise <locale.h>.  Use
28105         G_SEARCHPATH_SEPARATOR_S and g_module_build_path.
28106
28107         * gtk/gtkmain.h: Mark variables for export/import on Win32.
28108                 
28109         * gtk/gtkrange.c (gtk_range_motion_notify): Set mods also in case
28110         the event is not a hint, or its window is not the slider. Needed
28111         on Win32, at least.
28112
28113         * gtk/gtkrc.c: Include config.h and gdk/gdkx.h. Use <locale.h>
28114         unless on X11. Skip \r chars, too. Use G_DIR_SEPARATOR and
28115         G_SEARCHPATH_SEPARATOR(_S). Use g_path_is_absolute. On Win32, use
28116         a subdirectory of the Windows directory as gtk system
28117         configuration directory.
28118
28119         * gtk/gtkselection.c: No chunks on Win32.
28120
28121         * gtk/gtksocket.c: Not implemented on Win32.
28122
28123         * gtk/gtkthemes.c (gtk_theme_engine_get): Use g_module_build_path.
28124
28125         * gtk/makeenums.h: Include gdkprivate.h after gdk.h.
28126
28127         * gtk/maketypes.awk: Declare variables with a macro that expands to
28128         necessary export/import magic in the case of Win32.
28129                 
28130         * gtk/testrgb.c: Use dynamically allocated buffer. Use GTimers.
28131
28132 1999-03-13  Raja R Harinath  <harinath@cs.umn.edu>
28133
28134         * configure.in (gdk_wc): Move widechar tests from `glib' to here,
28135         since those were meant only for gdki18n.h.  
28136         * gdk/gdki18n.h: Include gdkconfig.h and use GDK_* instead of G_*
28137         for widechar tests.
28138         * gtk/Makefile.am (INCLUDES): Add -I../gdk for gdkconfig.h.
28139
28140 1999-03-13  Tor Lillqvist  <tml@iki.fi>
28141
28142         * configure.in acconfig.h: Check for dirent.h and pwd.h. Generate
28143         gdk/gdkconfig.h using similar mechanism as GLib's glibconfig.h.
28144
28145         * gtk-config.in: Add @libdir/gtk+/include (where gdkconfig.h is
28146         installed) to CFLAGS.
28147
28148         * gdk/Makefile.am: Add rules for gdkconfig.h.
28149
28150         * gdk/gdktypes.h: Include gdkconfig.h. Define macros for windowing
28151         APIs.
28152
28153         * gdk/gdkfontsel.c: Don't include Xlib.h, it gets included via
28154         gdkx.h anyway when compiling for X11.
28155         (gtk_font_selection_create_xlfd): Use g_strdup_printf. (In
28156         general): Merge in Win32 version.
28157         
28158         * gtk/gtkfilesel.c: Use g_get_current_dir(). Merge in Win32
28159         version: Use G_DIR_SEPARATOR, g_path_is_absolute, no tilde
28160         expansion (if we don't have HAVE_PWD_H), allow for drive
28161         letters. UNC paths (\\server\share\...) are not handled yet.  Also,
28162         included code from Craig Setera's port to Win32 (the one that uses
28163         X11, and the cygwin dll), even if it probably will be abandoned.
28164
28165         * gtk/gtkfilesel.c: Don't append a * to the pattern to complete if
28166         the user entered one herself.  This way one can complete *.h and
28167         don't get matches on any .help files, for instance.
28168         
28169 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
28170
28171         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
28172         font hash table, if we have a GdkFontPrivate entry for this font
28173         already, simply increment its reference count, provided by Olaf Dietsche
28174         <olaf.dietsche+list.gtk@netcologne.de>.
28175
28176         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
28177         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
28178
28179 1999-03-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
28180
28181         * gtk/gtkstyle.c (gtk_default_draw_handle): Significantly reduced
28182         the number of calls to gdk_draw_point() (and thus to X) by
28183         clipping the points by hand.
28184
28185         * gtk/gtkhandlebox.c (draw_textured_frame): Actually make use of
28186         the clip parameter.
28187         (gtk_handle_box_paint): Only paint the handle if the expose area
28188         intersects it.
28189
28190 Sun Mar  7 18:46:37 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
28191
28192         * gtk/gtkmain.c (add_dll_suffix): Add this function (OS/2 ver.)
28193
28194 Sun Mar  7 11:43:34 1999  ape@spacetec.no  (Asbjorn Pettersen)
28195
28196         * gtk/gtkthemes.c (gtk_theme_engine_get): Add OS/2 changes.
28197         Added function gen_8_3_dll_name(gchar *name, gchar *fullname).
28198
28199 Fri Mar  5 09:12:24 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
28200
28201         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): Open file in
28202          textmode (O_TEXT) for OS/2 version.
28203
28204 Sun Feb 28 16:46:02 1999  Stefan Jeske  <stefan@gtk.org>
28205
28206         * gtk/gtkspinbutton.[c,h] gtk/testgtk.c: Added two new signals to 
28207         GtkSpinButton, "input" and "output", to make the output more flexible.
28208         The user has to provide a mapping between adjustment->value and the
28209         output string (and vice versa, if the spin button is editable). 
28210         See testgtk for examples.
28211
28212 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
28213
28214         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
28215         new one.
28216         
28217         * configure.in: set gtk+ version to 1.3.0.
28218
28219         * gtk/gtkfilesel.h, gtk/gtkfilesel.c: Derive from GtkDialog,