]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-4
Look for G_DIR_SEPARATOR in the display_name, and err out if it is
[~andy/gtk] / ChangeLog.pre-2-4
1 2004-04-05  Federico Mena Quintero  <federico@ximian.com>
2
3         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_make_path): Look
4         for G_DIR_SEPARATOR in the display_name, and err out if it is
5         present; use the same error message as Nautilus.  Fixes #136467.
6
7         * gtk/gtkfilechooserdefault.c (file_pane_create): Make the
8         new-folder button say "Create Fo_lder" rather than "Create
9         _Folder", so that the mnemonic doesn't conflict with the "Save in
10         _folder" label.  Fixes #136975.
11
12 2004-04-05  Federico Mena Quintero  <federico@ximian.com>
13
14         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Ref/sink the
15         buttons.  Also, free them correctly upon failure.  Based on a
16         patch by Morten Welinder, fixes #137956.
17
18 2004-04-05  Anders Carlsson  <andersca@gnome.org>
19
20         * gdk/gdk.c (gdk_arg_context_parse): Handle '--' correctly.
21
22 Fri Apr  2 17:57:33 2004  Jonathan Blandford  <jrb@redhat.com>
23
24         * gtk/gtktreeview.c (gtk_tree_view_row_inserted): set the height
25         correctly for fixed height when inserting a node, #138082
26
27 2004-04-01  Federico Mena Quintero  <federico@ximian.com>
28
29         Fix #136077.
30
31         * gtk/gtkpathbar.h (struct _GtkPathBarClass): Add a
32         "child_is_hidden" boolean argument to the "path-clicked" signal.
33
34         * gtk/gtkpathbar.c (struct _ButtonData): Added a file_is_hidden
35         field.
36         (make_directory_button): Take a file_is_hidden argument; put it in
37         the ButtonData.
38         (_gtk_path_bar_set_path): See whether each path component path is
39         a hidden file.
40         (gtk_path_bar_class_init): Add the file_is_hidden argument to the
41         "path-clicked" signal.
42         (button_clicked_cb): See if the downwards button represents a
43         hidden file for the file_is_hidden argument in the signal
44         emission.
45
46         * gtk/gtkmarshalers.list: Added a signal type VOID:POINTER,BOOLEAN.
47
48         * gtk/gtkfilechooserdefault.c
49         (gtk_file_chooser_default_select_path): If we fail to switch
50         folders, don't try to select the path in the file system model.
51         Also, return the result from _gtk_file_system_model_path_do().
52         (gtk_file_chooser_default_select_path): Turn on show_hidden in the
53         file system model if we are asked to select a hidden file.
54         (path_bar_clicked): Show hidden files based on whether the
55         immediate downwards folder in the path bar is a hidden file
56         itself.
57         (struct _GtkFileChooserDefault): Added fields
58         browse_files_popup_menu and browse_files_popup_menu_hidden_files_item.
59         (create_file_list): Set an object data key of
60         "GtkFileChooserDefault" on the tree view so that we can find the
61         impl from the popup menu callbacks.  Also, hook up to the
62         "button-press-event" and "popup-menu" signals in the file list to
63         bring up a popup menu.
64         (list_popup_menu_cb): New callback.
65         (list_button_press_event_cb): New callback.
66
67         Fix #138763:
68
69         * gtk/gtkfilesystemmodel.c
70         (_gtk_file_system_model_new): Oops, connect_object to
71         "finished-loading".
72
73 2004-03-31  Tor Lillqvist  <tml@iki.fi>
74
75         * configure.in: Move AC_CANONICAL_HOST earlier, before the check
76         for native Win32. (#136559, J. Ali Harlow)
77
78         * gdk/win32/gdkdrawable-win32.c (draw_arc): Use X11 semantics for
79         angles. Thanks to Tim Newsham.
80
81 2004-03-29  Federico Mena Quintero  <federico@ximian.com>
82
83         Fix #137520.
84
85         * gtk/gtkfilesystem.h (struct _GtkFileFolderIface): Added slots
86         for an ::is_finished_loading() method and a ::finished_loading()
87         signal at the end of the struct.
88
89         * gtk/gtkfilesystem.c (gtk_file_folder_base_init): Create the
90         "finished-loading" signal.
91         (gtk_file_folder_is_finished_loading): New function.
92
93         * gtk/gtkfilesystemunix.c
94         (gtk_file_folder_unix_is_finished_loading): Implement.
95
96         * gtk/gtkfilesystemmodel.c (struct _GtkFileSystemModelClass): New
97         slot for a "finished-loading" signal.
98         (gtk_file_system_model_class_init): Create the "finished-loading"
99         signal.
100         (struct _GtkFileSystemModel): New field
101         idle_finished_loading_source.  We emit the "finished-loading"
102         signal in an idle if the root folder was done loading right in
103         _gtk_file_system_model_new(), so that the caller has a chance to
104         connect to the signal.
105         (_gtk_file_system_model_new): Connect to the normal signals of the
106         folder even if the initial _list_children() fails.  Also, see if
107         the folder is finished loading; connect to the "finished-loading"
108         signal otherwise.
109         (gtk_file_system_model_finalize): Remove the idle handler.
110
111         * gtk/gtkfilechooserdefault.c (set_list_model): Set a busy cursor
112         and connect to the model's "finished-loading" signal.
113         (get_toplevel): New helper function.
114         (error_message): Use get_toplevel().
115         (trap_activate_cb): Likewise.
116         (location_popup_handler): Likewise.
117         (set_busy_cursor): New function.
118         (browse_files_model_finished_loading_cb): New callback.
119
120 2004-03-25  Federico Mena Quintero  <federico@ximian.com>
121
122         * gtk/gtkfilechooserdefault.c (check_preview_change): Just use the
123         file under the cursor; we don't need the logic from
124         GtkFileSelection after all.  Fixes #132255.
125
126 2004-03-25  Federico Mena Quintero  <federico@ximian.com>
127
128         * gtk/gtkfilechooserdefault.c (location_entry_create): Fill the
129         location entry with the display name of the file under the cursor
130         for Open mode, or the typed filename in Save mode.
131
132 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
133
134         * gtk/gtkfilesystemwin32.c
135         (filename_is_root): Bare drive designators (eg., "c:") are
136         no longer considered as root filenames.  Fixed #137942
137
138 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
139
140         * gtk/gtkfilesystemwin32.c
141         (gtk_file_system_win32_create_folder): Invert test for error in
142         mkdir.  Fixes #137945
143
144 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
145
146         Fixed #138004 using Federico's code from #132327.
147
148         * gtk/gtkfilesystemwin32.c (struct _GtkFileSystemWin32): Add a
149         folder_hash field to keep a list of live folder objects.
150         (gtk_file_system_win32_init): Create the folder_hash.
151         (gtk_file_system_win32_finalize): Destroy the folder_hash.
152         (gtk_file_system_win32_get_folder): Ref and return an existing
153         folder if we have it around, otherwise return a new folder object.
154         (struct _GtkFileFolderWin32): Add a field for the parent file system.
155         (gtk_file_folder_win32_finalize): Remove the folder from the file
156         system's hash table.
157         (gtk_file_system_win32_create_folder):  Emit "files-added" on the
158         newly-created folder's parent.  Fixes #138004.
159
160 2004-03-24  J. Ali Harlow  <ali@juiblex.co.uk>
161
162         * gtk/gtkfilesystemwin32.c
163         (gtk_file_system_win32_get_folder): Test that path is actually
164         a directory and throw error if not. Fixed bug #137950
165
166 2004-03-22  J. Ali Harlow  <ali@juiblex.co.uk>
167
168         * gtk/gtkfilesystemwin32.c
169         (gtk_file_system_win32_volume_get_display_name): Ignore empty
170         volume labels; assume that GetVolumeInformation would fail if
171         GetVolumeInformationW does; catches a small memory leak;
172         pass the buffer size to GetVolumeInformationW in wide
173         characters instead of bytes. Fixes bug #137543
174         (list_volumes): Cope with the theoretical possibility of
175         more than 26 logical drives. Fixes bug #137940
176         (bookmarks_serialize): Now actually removes bookmarks.
177         Fixes bug #137943
178
179 2004-03-22  Guntupalli Karunakar  <karunakar@freedomink.org>
180
181         * configure.in: Added "pa" (Punjabi) to ALL_LINGUAS.
182
183 2004-03-21  Tor Lillqvist  <tml@iki.fi>
184
185         * gtk/gtkfilesystemwin32.c
186         (gtk_file_system_win32_volume_get_base_path): Include the
187         backslash. Otherwise gtk_file_system_win32_path_to_uri() returns
188         NULL for a volume base path, as g_filename_to_uri() requires an
189         absolute path, and just a drive letter and colon isn't. (#137543)
190
191 2004-03-20  Hans Breuer  <hans@breuer.org>
192
193         * gtk/gtkfilesystemwin32.c : applied the undisputable and
194         required [due to recent gtkfilesystem internal api semantic 
195         changes] part of patches to fix bug #137543 (Tor Lillqvist,
196         J. Ali Harlow)
197
198         * gdk/gdkevents-win32.c (handle_configure_event) :
199              (gdk_event_translate), WM_WINDOWPOSCHANGED : initialize
200         GdkWindowObject::x, y with screen coords to make 
201         gdk_window_get_position () return the right thing and thus fix
202         drag and drop positioning (e.g. Gimp tabs, fixes bug #137192)
203
204 2004-03-19  Federico Mena Quintero  <federico@ximian.com>
205
206         * Revert the patch to #137520, as 2.4.1 is for conservative bug
207         fixes only.  The patch is attached to the bug report, for
208         reference.
209
210 2004-03-19  Morten Welinder  <terra@gnome.org>
211
212         * gtk/gtkfilechooserdefault.c
213         (gtk_file_chooser_default_set_current_folder): Test existance of
214         the path after checking for locality, if needed.
215
216 2004-03-19  Federico Mena Quintero  <federico@ximian.com>
217
218         Fix #137520.
219
220         * gtk/gtkfilesystem.h (struct _GtkFileFolderIface): Added slots
221         for an ::is_finished_loading() method and a ::finished_loading()
222         signal at the end of the struct.
223
224         * gtk/gtkfilesystem.c (gtk_file_folder_base_init): Create the
225         "finished-loading" signal.
226         (gtk_file_folder_is_finished_loading): New function.
227
228         * gtk/gtkfilesystemunix.c
229         (gtk_file_folder_unix_is_finished_loading): Implement.
230
231         * gtk/gtkfilesystemmodel.c (struct _GtkFileSystemModelClass): New
232         slot for a "finished-loading" signal.
233         (gtk_file_system_model_class_init): Create the "finished-loading"
234         signal.
235         (struct _GtkFileSystemModel): New field
236         idle_finished_loading_source.  We emit the "finished-loading"
237         signal in an idle if the root folder was done loading right in
238         _gtk_file_system_model_new(), so that the caller has a chance to
239         connect to the signal.
240         (_gtk_file_system_model_new): Connect to the normal signals of the
241         folder even if the initial _list_children() fails.  Also, see if
242         the folder is finished loading; connect to the "finished-loading"
243         signal otherwise.
244         (gtk_file_system_model_finalize): Remove the idle handler.
245
246         * gtk/gtkfilechooserdefault.c (set_list_model): Set a busy cursor
247         and connect to the model's "finished-loading" signal.
248         (get_toplevel): New helper function.
249         (error_message): Use get_toplevel().
250         (trap_activate_cb): Likewise.
251         (location_popup_handler): Likewise.
252         (set_busy_cursor): New function.
253         (browse_files_model_finished_loading_cb): New callback.
254
255 Thu Mar 18 12:10:45 2004  Owen Taylor  <otaylor@redhat.com>
256
257         * gtk/gtktreeitem.c (gtk_tree_item_forall): Include 
258         eventbox for expander. (#137564, reported by
259         Jacques Garrigue)
260
261 2004-03-18  Guntupalli Karunakar  <karunakar@freedomink.org>
262
263         * mr.po: Added "mr" for Marathi to ALL_LINGUAS.
264
265 2004-03-17  Morten Welinder  <terra@gnome.org>
266
267         * gtk/gtkfilechooserdefault.c (shortcuts_add_volumes): Free
268         volumes not actually put into the shortcut list.
269
270         * tests/prop-editor.c (object_changed): Plug leak.
271
272         * tests/testfilechooser.c (main): Plug some leaks and expose
273         others.
274
275         * tests/prop-editor.c (create_prop_editor): Don't leak the tooltip
276         object.  Fixed #136652.
277
278         * gtk/gtkfilechooserdefault.c (check_icon_theme): Do nothing if we
279         have no screen.  Fixes #137260.
280         (shortcuts_add_bookmark_from_path): Simplify using check_is_folder
281         thereby fixing leak.  Fixes #137259.
282
283         * gtk/gtkpathbar.c (gtk_path_bar_forall): Make this work when the
284         slider buttons have been destroyed.
285         (gtk_path_bar_remove): Make this work for slider buttons too.
286         Fixes #137257
287
288 2004-03-15  Morten Welinder  <terra@gnome.org>
289
290         * gtk/gtkfilechooserdefault.c (shortcuts_add_bookmark_from_path):
291         Sanitize and plug leak.
292         (check_icon_theme): Only do something if the widget has a screen.
293
294 Wed Mar 17 01:20:28 2004  Matthias Clasen  <maclas@gmx.de>
295
296         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
297         Move the repositioning logic from _gtk_entry_completion() popup
298         over here. Fixes #137355, reported by Niklas Knutsson.
299
300 Tue Mar 16 13:29:58 2004  Owen Taylor  <otaylor@redhat.com>
301
302         * === Released 2.4.0 ===
303
304         * configure.in: Version 2.4.0, interface age 0; 
305         require glib-2.4.0, pango-1.4.0.
306
307         * configure.in: Change gtk_binary_version to 2.4.0;
308         there are some compatibility issues with older theme engines.
309         
310         * NEWS: Updates
311
312         * README.in: Updates
313
314 Tue Mar 16 13:54:07 2004  Jonathan Blandford  <jrb@redhat.com>
315
316         * gtk/gtkentry.c (gtk_entry_completion_key_press): Block the
317         ::changed handler during the ::match-selected when done by
318         keyboard.
319
320 Tue Mar 16 00:56:11 2004  Matthias Clasen  <maclas@gmx.de>
321
322         * gtk/gtkentrycompletion.c (gtk_entry_completion_list_button_press): 
323         Block the ::changed handler during the emission of ::match-selected.
324         Partial fix for #137226.
325
326         * gtk/gtkfilechooserentry.c: Remove the no longer needed 
327         no_pop_down flag.
328
329 Tue Mar 16 00:20:51 2004  Matthias Clasen  <maclas@gmx.de>
330
331         * gtk/gtkfilechooserwidget.c (gtk_file_chooser_widget_new_with_backend):
332         Fix a typo in the docs.
333
334 2004-03-15  Tor Lillqvist  <tml@iki.fi>
335
336         * README.win32: Updates.
337
338 2004-03-15  Federico Mena Quintero  <federico@ximian.com>
339
340         * gtk/gtkfilechooserdefault.c (update_appearance): Only hide the
341         "create folder" button in OPEN mode; all the others should show it
342         it.
343         (get_paths_foreach): Handle the editable row.
344
345         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_create_folder):
346         Force a re-get of the folder so that the new directory gets added
347         to its hash table of file info.
348
349 2004-03-15  Federico Mena Quintero  <federico@ximian.com>
350
351         * gtk/gtkfilechooserdefault.c (update_from_entry): In the Save
352         modes, set the Name entry of the file chooser if we get a
353         nonexistent filename from the file entry.  Fixes #135911.
354         (gtk_file_chooser_default_set_current_name): Oops, this should
355         also work if we are in CREATE_FOLDER mode.
356
357         * gtk/gtkfilesystem.c (gtk_file_path_real_copy): Use
358         gtk_file_path_copy().
359
360         * gtk/gtkfilechooserentry.c (check_completion_callback): Free the
361         path that we got from the model.
362         (completion_match_func): Use DISPLAY_NAME_COLUMN rather than a
363         hard-coded constant.
364
365 Mon Mar 15 13:50:14 2004  Owen Taylor  <otaylor@redhat.com>
366
367         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property):
368         Don't leak the temporary font description. (Nils O. SelÃ¥sdal)
369
370 Mon Mar 15 12:51:17 2004  Jonathan Blandford  <jrb@gnome.org>
371
372         * gtk/gtkfilechooserdefault.c (location_popup_handler): Only show
373         the title string in OPEN/SELECT_FOLDER mode as it's open-specific.
374         Put a blank title for SAVE/CREATE_FOLDER; we are in string freeze,
375         so we'll fix it for 2.4.1 as #137272.
376
377         * gtk/gtkpathbar.c (gtk_path_bar_scroll_down): calculate
378         space_available correctly for RTL mode.  w/o this, you can't
379         scroll down again.  Fixes #137021.
380
381 2004-03-15  Federico Mena Quintero  <federico@ximian.com>
382
383         * gtk/gtkpathbar.c (gtk_path_bar_scroll_up): Queue a resize.
384         (gtk_path_bar_scroll_down): Likewise.
385
386 Mon Mar 15 11:40:43 2004  Owen Taylor  <otaylor@redhat.com>
387
388         * gtk/gtkfilechooserentry.c: Store the position of the 
389         file part and use that in check_completion_callback()
390         and match_selected_callback() to figure out where
391         to operate on the text, rather than recomputing the
392         information.
393
394 Mon Mar 15 10:35:19 2004  Jonathan Blandford  <jrb@gnome.org>
395
396         * gtk/gtkfilechooserdefault.c (shortcuts_add_volumes): set
397         changing_folders to be true so we don't trigger a callback when we
398         remove the selection
399         (shortcuts_add_bookmarks): ditto
400
401 Mon Mar 15 10:47:18 2004  Owen Taylor  <otaylor@redhat.com>
402
403         * gtk/gtkfilechooserentry.c: s/seperator/separator/.
404
405 Mon Mar 15 09:54:36 2004  Owen Taylor  <otaylor@redhat.com>
406
407         * gtk/gtklabel.c (gtk_label_focus): Check for 
408         Control-Tab or Control-Shift-Tab, not any Control-key
409         as a current event ... handles the case where a dialog
410         is triggered from a control accelerator better.
411
412 Mon Mar 15 08:48:48 2004  Jonathan Blandford  <jrb@gnome.org>
413
414         * gtk/gtkfilechooserentry.c (match_selected_callback): implement
415         correctly.
416         (completion_match_func): Allow surpressing popdowns.
417         (maybe_append_seperator_to_path): New function to add a separator
418         item to a display_name.  Bad hack.
419         (check_completion_callback): Implement select-ahead as an idle.
420         (add_completion_idle): new function to handle select-ahead
421         (gtk_file_chooser_entry_do_insert_text): starf the select-ahead
422         idle.
423         (gtk_file_chooser_entry_focus): Override tab for completion.
424         (gtk_file_chooser_entry_activate): commit select_ahead when
425         activated.
426
427         * gtk/gtkfilechooserdefault.c (location_popup_handler): grab the
428         appropriate widget for the mode.
429
430 2004-03-15  Tor Lillqvist  <tml@iki.fi>
431
432         * gdk/win32/gdkgc-win32.c (gdk_gc_copy): Don't just copy the whole
433         GdkGCWin32 with a single assignment, that overwrites GObject's
434         private data (for instance ref_count). (#137012, John Ehresman)
435
436 2004-03-15  Mark McLoughlin  <mark@skynet.ie>
437
438         * gtk/gtkfilechooserdefault.c: remove the unused "lowest_folder"
439         GtkFileChooserDefault member. Leftover from my original patch
440         for bug #136987.
441
442 Mon Mar 15 01:50:28 2004  Jonathan Blandford  <jrb@gnome.org>
443
444         * gtkfilechooserentry.c: Rewritten to use the GtkEntryCompletion
445         API more correctly.  Now pops down the dropdown well.
446
447         * gtkfilesystem.c (gtk_file_path_get_type): New boxed type for the
448         FilePath.
449
450         * test/testfilechooser.c: disable preview widget temporarily.
451         It's not representative of a good preview widget.
452
453 2004-03-15  Federico Mena Quintero  <federico@ximian.com>
454
455         * gtk/gtkfilechooserdefault.c (shortcuts_find_current_folder):
456         Renamed from shortcuts_unselect_all(); now selects the row that
457         corresponds to the current folder, if any.  Fixes #135916.
458
459         * gtk/gtkpathbar.h: Added prototypes for _gtk_path_bar_up() and
460         _gtk_path_bar_down().
461
462 2004-03-15  Federico Mena Quintero  <federico@ximian.com>
463
464         * gtk/gtkfilechooserdefault.c: Surround the
465         drag-outside-to-remove-bookmarks code with "#if 0" blocks; it's
466         too unstable right now.
467
468 Sun Mar 14 23:36:15 2004  Owen Taylor  <otaylor@redhat.com>
469
470         * gtk/gtkfilechooserdefault.c: Implement local_only by
471         filtering the shortcuts and bookmarks list by 
472         gtk_file_system_path_to_filename (file_system, path) != NULL.
473         (#132894)
474
475         * gtk/gtkfilesystem.c (gtk_file_system_path_is_local): Add
476         a convenience function, may by interesting to push to the 
477         file system vtable later for performance.
478
479 2004-03-14  Federico Mena Quintero  <federico@ximian.com>
480
481         * gtk/gtkfilesystem.c (gtk_file_folder_get_info): Allow the path
482         to be NULL, so that people can ask for information about a
483         parent-less file system root (e.g. get_info (get_folder ("/"), NULL)).
484
485         * gtk/gtkfilesystemunix.c (gtk_file_folder_unix_get_info): Allow
486         the condition describe above.
487
488         * gtk/gtkfilechooserdefault.c (get_file_info): Allow getting
489         information of root paths.
490
491         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Handle root paths correctly.
492
493 Sun Mar 14 22:32:36 2004  Owen Taylor  <otaylor@redhat.com>
494
495         * gtk/gtktreeview.c (gtk_tree_view_set_search_equal_func): Mention
496         GtkTreeViewSearchEqualFunc return value oddity here as well.
497
498         * gtk/gtktreeview.c (gtk_tree_view_search_equal_func): On failure
499         to get a string to compare to, return TRUE (no match), not 
500         FALSE (match). Handle %NULL string values gracefully.
501         Remove unused variable. (#135962, Mark McLoughlin)
502
503 2004-03-14  Morten Welinder  <terra@gnome.org>
504
505         * gtk/gtkfilesystemunix.c: Kill some debug g_prints.
506
507 Sun Mar 14 21:03:15 2004  Owen Taylor  <otaylor@redhat.com>
508
509         * gtk/gtkpathbar.[ch]: Add _gtk_path_bar_up()/
510         _gtk_path_bar_down().
511
512         * gtk/gtkfilechooserdefault.c: Use _gtk_path_bar_up()/
513         _gtk_path_bar_down() as bindings for Alt-Up
514         and new Alt-Down. (Partly based on a patch by
515         Mark McLoughlin, #136987)
516
517 2004-03-14  Federico Mena Quintero  <federico@ximian.com>
518
519         Fixes #136185, patch by Morten Welinder, with some changes.
520
521         * gtk/gtkfilechooserdefault.c (check_is_folder): New helper function.
522         (shortcuts_insert_path): Check the path first with check_is_folder().
523         (gtk_file_chooser_default_set_current_folder): Likewise.
524         (gtk_file_chooser_default_add_shortcut_folder): Likewise.
525         (browse_widgets_create): Unref the size group.
526
527         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder):
528         Handle the case where the file exists but it is not a directory.
529         (IconType): Add value for ICON_UNDECIDED.
530         (struct stat_info_entry): New structure to hold a file's struct
531         stat, its MIME type and its icon type.
532         (struct _GtkFileFolderUnix): Added a hash of struct
533         stat_info_entry, and flags to remember which info types we've read
534         so far.
535         (get_icon_type): Use a helper function for the icons-from-stat
536         types.
537         (gtk_file_system_unix_render_icon): Use the cached file info.
538         (gtk_file_folder_unix_get_info): Put the info in the cache.
539         (gtk_file_system_unix_get_folder): Create the cache of file info
540         structures.
541
542         * gtk/gtkfilesystem.c (gtk_file_info_set_display_name): Handle the
543         case where display_name is the same as the existing
544         info->display_name.
545
546 Sun Mar 14 19:26:48 2004  Owen Taylor  <otaylor@redhat.com>
547
548         #136672, reported by Christian Persch; fixes based
549         on a patch by Soeren Sandmann.
550
551         * gtk/gtkmenu.c: Change the handling of mixed gridded
552         and non-gridded menu items; the old method was causing
553         major performance problems even with the "avoid relayout
554         on destruction" hack put in recently.
555
556         Now we first lay out the gridded items and then put the 
557         non-gridded items into empty rows / after the gridded items. 
558         Layout is done in a central menu_shell_ensure_layout(). Also
559         avoid emitting property notifications when we initially
560         insert or attach items.
561         
562         * gtk/gtkmenushell.[ch] gtk/gtkmenu.c: Stop setting the
563         unused menu_shell->menu_flag, and document it as unused
564         in the header.
565
566         * tests/testactions.c: Add a test of creating/removing
567         lots of items.
568
569         * test/testgtk.c: Add some more cruft to the menu test.
570
571 Mon Mar 15 02:36:07 2004  Matthias Clasen  <maclas@gmx.de>
572
573         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): Add
574         some signal docs.
575
576 Sun Mar 14 15:38:39 2004  Jonathan Blandford  <jrb@gnome.org>
577
578         * gtk/gtkentrycompletion.c (gtk_entry_completion_visible_func):
579         always use the match_func, even if text_column is set.
580
581 2004-03-14  Morten Welinder  <terra@gnome.org>
582
583         * gtk/gtkfilesystemunix.c (get_parent_dir): Don't turn "/" into
584         "".
585         (gtk_file_system_unix_get_folder): Use the same value for lookup
586         as for insertion.  Make sure we have a directory.
587
588         * gtk/gtkfilechooserdefault.c (error_dialog): Don't crash on NULL
589         path; don't crash on NULL error.
590
591 2004-03-14  Hans Breuer  <hans@breuer.org>
592
593         gtk/gtkcombobox.c : prototype cell_view_sync_cells() before 
594         first usage
595
596         gtk/makefile.msc.in : updated 'gtk_public_h_sources'
597
598         tests/makefile.msc : added testspinbutton
599
600 Sun Mar 14 01:01:18 2004  Matthias Clasen  <maclas@gmx.de>
601
602         * gtk/gtkcellview.c (gtk_cell_view_set_cell_data): Align
603         this function with gtk_tree_view_column_set_cell_data();
604         call the cell data func after setting the attributes.
605
606 Sun Mar 14 01:00:08 2004  Matthias Clasen  <maclas@gmx.de>
607
608         * gtk/gtkcellview.c (gtk_cell_view_expose): One more try;
609         make sure not to call gtk_cell_view_set_cell_data() when
610         displayed_row is NULL.
611
612 Sat Mar 13 18:13:13 2004  Owen Taylor  <otaylor@redhat.com>
613
614         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): When not
615         wrapping, do the offset of the line for justification ourselves.
616         (#120256, Felipe Heidrich)
617
618 Sun Mar 14 00:03:18 2004  Matthias Clasen  <maclas@gmx.de>
619
620         * gtk/gtkcellview.c (gtk_cell_view_expose): Support the
621         model-less use of GtkCellView shown in testcombo.c.
622
623 2004-03-13  Tor Lillqvist  <tml@iki.fi>
624
625         * gdk/win32/gdkdisplay-win32.c: Don't undefine HAVE_MONITOR_INFO
626         when compiling with gcc. Mingw's headers do have the required
627         definitions.
628
629         * gdk/win32/gdkdrawable-win32.c (draw_polygon): When drawing
630         filled polygons, don't draw the outline, similarily as
631         draw_rectangle(). Apparently GTK and GIMP don't use
632         gdk_draw_polygon() much (or always draw the outline, too), as this
633         has gone undetected for so long. Thanks to Bruce Hochstetler.
634
635 Sat Mar 13 15:19:17 2004  Owen Taylor  <otaylor@redhat.com>
636
637         * gtk/gtkwindow.c (gtk_window_destroy): Remove
638         the window from the toplevel_list here rather in destroy.
639         While this is theoretically speaking wrong, it fits
640         in better with the current reality that destroyed
641         widgets are not reusable. (#126808, Michael Natterer)
642
643 Sat Mar 13 21:47:47 2004  Matthias Clasen  <maclas@gmx.de>
644
645         * gtk/gtkcellview.c (gtk_cell_view_expose): Don't do anything
646         beyond clearing to the background if there is no active row.
647         (#137066, reported by Owen Taylor)
648
649 Sat Mar 13 21:37:44 2004  Matthias Clasen  <maclas@gmx.de>
650
651         * gtk/gtkcombobox.c (gtk_combo_box_list_key_press): Pop down the
652         list when an item is selected via the keyboard.
653
654 2004-03-13  Anders Carlsson  <andersca@gnome.org>
655
656         * gtk/gtkfilesystemunix.c: (remove_trailing_slash),
657         (gtk_file_system_unix_get_folder),
658         (gtk_file_system_unix_create_folder), (get_parent_dir),
659         (gtk_file_system_unix_get_parent), (gtk_file_folder_unix_get_info):
660         Remove trailing slashes in path names.
661         
662 Sat Mar 13 12:17:16 2004  Owen Taylor  <otaylor@redhat.com>
663
664         * gdk/x11/gdkwindow-x11.c (gdk_window_reparent): Make
665         this a total no-op when the new or old parent is
666         destroyed. (#134230, patch from Soeren Sandmann)
667
668         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy):
669         For foreign windows in our heirarchy, call
670         _gdk_windowing_window_destroy_foreign (window) and skip
671         all the normal destruction logic.
672
673         * gdk/x11/gdkwindow-x11.c gdk/win32/gdkwindow-win32.c:
674         Move code to request destruction of a foreign window
675         code into a separate _gdk_windowing_window_destroy_foreign().
676
677         * gdk/x11/gdkwindow-x11.c (gdk_window_impl_x11_finalize):
678         Call GDK_WINDOW_DISPLAY() on the wrapper not on the
679         impl. (Also from Soeren's patch)
680
681 Sat Mar 13 10:49:46 2004  Owen Taylor  <otaylor@redhat.com>
682
683         * gtk/gtkdnd.c (_gtk_drag_dest_handle_event): For
684         GTK_IS_PLUG toplevels, call gdk_window_get_origin() 
685         not gtk_window_get_position, as a hackround for not
686         having accurate notification of window position for
687         embedded windows. (#136112, Dan Winship)
688
689 Sat Mar 13 10:34:03 2004  Owen Taylor  <otaylor@redhat.com>
690
691         * gtk/gtktextview.c gtk/gtktextbuffer.c: Revert last change;
692         it causes problems for pastes from other applications; see
693         comments in bugzilla for #81880.
694
695 Sat Mar 13 02:55:51 2004  Matthias Clasen  <maclas@gmx.de>
696
697         Fix middle button pasting in the TextView  (#81880, reported
698         by Evert Verhellen, patch by Paolo Borelli):
699         
700         * gtk/gtktextview.c (gtk_text_view_button_press_event): Retrieve 
701         the insert mark and move the cursor to it making sure of also 
702         scroll the window if needed.
703         
704         * gtk/gtktextbuffer.c (pre_paste_prep): Move the insert mark
705         to the insertion point.
706
707 Sat Mar 13 01:38:55 2004  Matthias Clasen  <maclas@gmx.de>
708
709         * gtk/gtkcombobox.c (gtk_combo_box_remove): Add a remove 
710         implemenatation which restores the cell_view when the custom 
711         child is removed.  (#136555, Owen Taylor)
712
713 Sat Mar 13 00:07:51 2004  Matthias Clasen  <maclas@gmx.de>
714
715         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_layout_clear): 
716         Keep the cell_list in a consistent state while iterating over it, 
717         since clear_attributes() also iterates over it.  (another instance
718         of #136585, Morten Welinder)
719         
720 Fri Mar 12 17:20:15 2004  Owen Taylor  <otaylor@redhat.com>
721
722         * gtk/gtkarrow.c (gtk_arrow_expose): Swap GTK_ARROW_LEFT
723         and GTK_ARROW_RIGHT for GTK_TEXT_DIR_LTR. (#129159,
724         Semion Chichelnitsky)
725
726         * gtk/gtkpathbar.c gtk/gtktoolbar.c: Remove no-longer-needed 
727         gtk_toolbar_direction-changed handlers and explicit
728         flipping of GtkArrow widgets.
729
730 Fri Mar 12 23:37:15 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
731
732         * gtk/gtkfilechooserdialog.c
733         (file_chooser_widget_default_realized_size_changed): Clamp the
734         new size to the screen.
735
736 Fri Mar 12 15:06:44 2004  Owen Taylor  <otaylor@redhat.com>
737
738         * gtk/gtkexpander.c (gtk_expander_realize): Create the
739         event_window at the right size using the same logic as
740         in size_allocate. (#136994, Niklas Knuttson)
741
742 2004-03-12  Federico Mena Quintero  <federico@ximian.com>
743
744         * gtk/gtkwindow.c (gtk_window_activate_focus): Don't ignore the
745         return value of gtk_widget_activate().
746         (gtk_window_activate_default): Likewise.  Fixes #137008.
747
748         * gtk/gtkfilechooserdialog.c (response_cb): Act on positive
749         response IDs we recognize, rather than bailing out on cancellation
750         ones.  Fixes #136237; patch by Olivier Andrieu
751         <oliv__a@users.sourceforge.net>.
752         (file_chooser_widget_file_activated): If the dialog doesn't have a
753         default widget, try to find a suitable response widget on our own.
754         People should *really* be using gtk_dialog_set_default_response(),
755         but this is to help lazy programmers.
756
757         * gtk/gtkdialog.c (_gtk_dialog_get_response_for_widget): New
758         internal function.
759         (get_response_data): Add a "create" argument so that we don't
760         unconditionally create the response data.
761
762 2004-03-12  Morten Welinder  <terra@gnome.org>
763
764         * tests/Makefile.am: Add new testspinbutton.c
765
766 2004-03-11  Federico Mena Quintero  <federico@ximian.com>
767
768         * gtk/gtkfilechooserdefault.c (shortcuts_drag_set_delete_cursor):
769         Put the trash icon on the right for LTR locales, or on the left
770         for RTL.
771         (shortcuts_drag_motion_cb): Cancel the idle handler here as well.
772         (shortcuts_drag_leave_cb): Test whether the idle is present.
773         (shortcuts_drag_data_received_cb): Ahem, don't assert here.
774
775 Thu Mar 11 17:51:10 2004  Owen Taylor  <otaylor@redhat.com>
776
777         * modules/input/gtkimcontextxim.c (preedit_done_callback):
778         Clear preedit string and emit preedit_changed as needed
779         on AIX. (#130617, Philip K Warren)
780
781 2004-03-11  Morten Welinder  <terra@gnome.org>
782
783         * gtk/gtkpathbar.c (_gtk_path_bar_set_file_system): Plug leak.
784
785 Thu Mar 11 16:28:15 2004  Owen Taylor  <otaylor@redhat.com>
786
787         * gtk/gtkmenu.c (gtk_menu_get_toplevel): Fix attach/attach->parent
788         type. (#136919, Tim Mooney)
789
790 Thu Mar 11 16:18:51 2004  Jonathan Blandford  <jrb@redhat.com>
791
792         * gtk/gtkfilechooserdefault.c (shortcuts_insert_path): revert
793         earlier change to insert_path so that we test that the directory
794         exists.
795
796         * gtk/gtkfilechooserdialog.c
797         (gtk_file_chooser_dialog_constructor): move focus.
798
799 Thu Mar 11 22:12:14 2004  Matthias Clasen  <maclas@gmx.de>
800
801         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): Use the same
802         logic as GtkEntry when calculating border width.  (#116368, reported
803         by Morten Welinder)
804
805 Thu Mar 11 15:59:05 2004  Owen Taylor  <otaylor@redhat.com>
806
807         * tests/testgtk.c (create_spins): Use gtk_entry_set_width_chars()
808         rather than gtk_widget_set_size_request().
809
810 2004-03-11  Federico Mena Quintero  <federico@ximian.com>
811
812         * gtk/gtkfilechooserdefault.c (remove_settings_signal): New
813         function, copied from gtkpathbar.c.
814         (gtk_file_chooser_default_dispose): Use remove_settings_signal()
815         rather than our own code.
816         (gtk_file_chooser_default_screen_changed): Use
817         remove_settings_signal(); this should handle per-screen settings
818         correctly.
819
820 Thu Mar 11 14:07:18 2004  Owen Taylor  <otaylor@redhat.com>
821
822         * gtk/gtklabel.c (gtk_label_focus): Fix a missing return
823         value.
824
825 Thu Mar 11 13:58:24 2004  Owen Taylor  <otaylor@redhat.com>
826
827         * gtk/gtkmessagedialog.c gtk/gtklabel.c: Back out the
828         put-labels-into-the-standard-focus-chain patches 
829         from bug #59707.
830
831         * gtk/gtklabel.c (gtk_label_focus): Only put the
832         label in the tab chain when the control key is pressed.
833
834 2004-03-11  Federico Mena Quintero  <federico@ximian.com>
835
836         * gtk/gtkfilechooserdefault.c (error_message_with_parent): Use a
837         single OK button, not a Close button, as per the HIG.
838
839         * gtk/gtkfilesel.c (gtk_file_selection_fileop_error): Likewise.
840
841 2004-03-11  Federico Mena Quintero  <federico@ximian.com>
842
843         * gtk/gtkfilechooserdefault.c (shortcuts_drag_motion_cb): Oops,
844         initialize "action" before jumping.  Fixes #136900.
845
846 2004-03-11  Mark McLoughlin  <mark@skynet.ie>
847
848         * gtk/gtksettings.c: (apply_queued_setting): don't overwrite
849         application properties. Fixes bug #136802.
850
851 2004-03-11  Dov Grobgeld  <dov@imagic.weizmann.ac.il>
852
853         * gtk/gtktextlayer.c: (gtk_text_layout_set_buffer): Added
854         call to gtk_text_layout_update_cursor_line() to solve in 
855         problem of switching keyboard direction at widget creation:
856         bug #136680
857
858 Thu Mar 11 10:28:30 2004  Owen Taylor  <otaylor@redhat.com>
859
860         * gtk/gtkfilechooserembed.c (delegate_initial_focus): Remove
861         stray 'return' statement. (#136855, David L. Cooper II)
862
863 2004-03-11  Mark McLoughlin  <mark@skynet.ie>
864
865         * gtk/gtkstyle.c: (gtk_default_draw_expander): Use the PRELIGHT
866         fg color for drawing the expander when prelit. Fixes problem
867         with the HighContrast theme: bug #136789.
868
869 2004-03-11  Federico Mena Quintero  <federico@ximian.com>
870
871         Fix #135912 and #135913.
872
873         * gtk/gtkfilechooserdefault.c
874         (shortcuts_filter_model_row_draggable): Implement.
875         (shortcuts_model_filter_new): New function, create a
876         ShortcutsModelFilterClass derived from GtkTreeModelFilter, so that
877         we can implement our own DnD interface methods.
878         (shortcuts_model_create): Use shortcuts_model_filter_new().
879         (shortcuts_list_create): Enable the shortcuts list as a drag
880         source.
881         (file_list_source_targets): Renamed from shortcuts_targets.
882         (shortcuts_list_create): Change the options for
883         gtk_drag_dest_set().  Connect to more drag signals so that we can
884         implement drops by hand.
885         (shortcuts_drag_data_delete_cb): New handler; just stop the emission.
886         (shortcuts_drag_motion_cb): New handler; validate the drop.
887         (shortcuts_drag_leave_cb): New handler; unset the drag_dest_row.
888         (shortcuts_drag_drop_cb): New handler; just stop the emission and
889         remove the idle handler for the drag cursor.
890         (shortcuts_add_bookmark_from_path): Add a position argument,
891         return a boolean success code.
892         (shortcuts_drag_data_received_cb): Handle two cases:  1) Insert
893         the bookmarks at the proper position, rather than always appending
894         them to the list; 2) alternatively, reorder the bookmarks.
895         (struct _GtkFileChooserDefault): New field shortcuts_drag_outside.
896         (shortcuts_drag_motion_cb): Turn off impl->shortcuts_drag_outside.
897         (shortcuts_drag_leave_cb): Turn on impl->shortcuts_drag_outside in
898         an idle handler.
899         (shortcuts_drag_end_cb): New handler; remove the selected bookmark.
900
901 Thu Mar 11 01:08:25 2004  Jonathan Blandford  <jrb@gnome.org>
902
903         * gtk/gtkfilechooserdefault.c (location_entry_create): up the
904         width of the entry a tad.
905
906         * gtk/gtkfilechooserentry.c (gtk_file_chooser_entry_init): use
907         gtk_entry_completion_selection_changed.  Also, unref the
908         completion as we were leaking a reference to it.
909
910 2004-03-10  Federico Mena Quintero  <federico@ximian.com>
911
912         * gtk/gtkstyle.c (draw_dot): Remove spurious semicolon.  Thanks to
913         Kjartan Maraas for pointing it out.
914
915 Wed Mar 10 23:40:15 2004  Matthias Clasen  <maclas@gmx.de>
916
917         * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup): Set the
918         background on the action view cell renderer here, not in init, so 
919         that a) we catch style changes, and b) we get the real style, not 
920         the default one. Partial fix for #127648, reported by Dave Bordoley.
921
922 2004-03-10  Tor Lillqvist  <tml@iki.fi>
923
924         * gdk/win32/gdkevents-win32.c (build_key_event_state): Set also
925         the pointer button bits. (#136636, Dave Neary)
926
927         * gdk/win32/gdkwindow-win32.c (show_window_internal): Show
928         transparent (input only) windows using SetWindowPos(). (#132331,
929         John Ehresman)
930
931         (gdk_window_set_type_hint): For splash screens, remove the resize
932         handles, menu, and minimize/maximize/close buttons. (#132896)
933
934 Wed Mar 10 22:30:23 2004  Matthias Clasen  <maclas@gmx.de>
935
936         * gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear): Keep the
937         cell_list in a consistent state while iterating over it, since
938         clear_attributes() also iterates over it.  (#136585, Morten Welinder)
939
940 2004-03-10  Mark McLoughlin  <mark@skynet.ie>
941
942         * gtk/gtkexpander.c: (gtk_expander_expose): don't propagate
943         the expose to the label. The expose handler for GtkContainer
944         already does that. Fixes bug #136719. Reported by Dennis
945         Cranston, exact cause nailed down by Owen.
946
947 2004-03-10  Federico Mena Quintero  <federico@ximian.com>
948
949         * gtk/gtkfilechooserdefault.c (list_mtime_data_func): Use an
950         untranslatable "%x" for dates, rather than a custom format.  Fixes
951         #136357.
952
953 2004-03-10  Morten Welinder  <terra@gnome.org>
954
955         * gtk/gtkfilechooserdefault.c
956         (gtk_file_chooser_default_add_shortcut_folder): Test validity of
957         path here.
958         (shortcuts_insert_path): Don't check here.
959         (get_file_info): Barf if name-only fails.
960
961         * tests/testfilechooser.c (main): Add support for --multiple.
962
963 Wed Mar 10 02:41:05 2004  Jonathan Blandford  <jrb@gnome.org>
964
965         * gtk/gtkpathbar.c: (gtk_path_bar_init), (gtk_path_bar_class_init),
966         (remove_settings_signal), (gtk_path_bar_dispose),
967         (gtk_path_bar_style_set), (gtk_path_bar_screen_changed),
968         (gtk_path_bar_scroll_up), (reload_icons), (change_icon_theme),
969         (settings_notify_cb), (gtk_path_bar_check_icon_theme),
970         (get_button_image), (gtk_path_bar_update_button_appearance),
971         (make_directory_button), (gtk_path_bar_check_parent_path): Support
972         changes in icon themes.
973
974         * gtk/gtkpathbar.h: add two elements
975
976         * tests/testfilechooser.c: (main): use gnome-vfs method again to
977         get more testing.
978
979 Wed Mar 10 01:17:40 2004  Jonathan Blandford  <jrb@gnome.org>
980
981         * gtk/gtkpathbar.c: added 'Desktop' to the list of volumes.  We
982         don't have any more untranlated strings in the dialog.
983
984 Wed Mar 10 00:24:24 2004  Jonathan Blandford  <jrb@gnome.org>
985
986         * gtk/gtkfilechooserdefault.c (error_dialog): use uri instead of
987         the pathname for UTF-8 safety.
988
989 Wed Mar 10 00:10:47 2004  Jonathan Blandford  <jrb@gnome.org>
990
991         * gtk/gtkfilechooserdefault.c (shortcuts_insert_path): Always
992         check to see if the shortcuts exists.  We don't want to put
993         invalid dirs in the shortcuts pane.
994
995 Tue Mar  9 16:40:34 2004  Jonathan Blandford  <jrb@gnome.org>
996
997         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault):
998         remove unneeded shortuts_swin;
999
1000 Wed Mar 10 01:49:27 2004  Matthias Clasen  <maclas@gmx.de>
1001
1002         Fix #136614 in a better way:
1003         
1004         * gtk/gtkoptionmenu.c (gtk_option_menu_init): Undo the last change.
1005         * gtk/gtkbutton.c (struct _GtkButtonPrivate): Add a flag, align_set.
1006         * gtk/gtkbutton.c (gtk_button_init): Initialize align_set to 0.
1007         * gtk/gtkbutton.c (maybe_set_alignment): Rework to only set the
1008         alignment if priv->align_set is set.
1009         * gtk/gtkbutton.c (gtk_button_set_alignment): Set align_set to 1.
1010
1011 Wed Mar 10 01:21:05 2004  Matthias Clasen  <maclas@gmx.de>
1012
1013         * gtk/gtkcombobox.c (gtk_combo_box_menu_position_below): Place
1014         grid mode popups left aligned, not right aligned.
1015
1016 Tue Mar  9 23:09:46 2004  Matthias Clasen  <maclas@gmx.de>
1017
1018         * gtk/gtkoptionmenu.c (gtk_option_menu_init): Avoid centering 
1019         the label that is reparented from the menuitem.  (#136614, Dennis
1020         Cranston)
1021
1022 Tue Mar  9 16:19:09 2004  Jonathan Blandford  <jrb@gnome.org>
1023
1024         * gtk/gtkpathbar.c (struct _ButtonData): Encapsulate all of the
1025         information about a button in a struct instead of ugly
1026         g_object_set_data.
1027         (gtk_path_bar_size_request): Use ButtonData.
1028         (gtk_path_bar_update_slider_buttons): ditto
1029         (gtk_path_bar_size_allocate): ditto
1030         (gtk_path_bar_remove): ditto
1031         (gtk_path_bar_forall): ditto
1032         (gtk_path_bar_scroll_down): ditto
1033         (gtk_path_bar_clear_buttons): ditto
1034         (button_clicked_cb): ditto.  Also, add an ignore_changes variable
1035         (button_data_free): destroy ButtonData
1036         (update_button_appearance): Use ButtonData
1037         (make_directory_button): ditto
1038         (gtk_path_bar_check_parent_path): ditto
1039         (_gtk_path_bar_set_path): ditto
1040
1041 2004-03-09  Federico Mena Quintero  <federico@ximian.com>
1042
1043         Fix #136533.
1044
1045         * gtk/gtkfilechooserdefault.c (shortcuts_reload_icons): New
1046         function.
1047         (check_icon_theme): New helper function, installs a handler for
1048         changes in the icon theme.
1049         (gtk_file_chooser_default_style_set): Use check_icon_theme().
1050         (gtk_file_chooser_default_screen_changed): Use check_icon_theme().
1051         (gtk_file_chooser_default_dispose): Disconnect from GtkSettings.
1052         (change_icon_theme): New function, updates impl->icon_size and
1053         reloads the icons.
1054         (struct _GtkFileChooserDefault): New field settings_signal_id.
1055         (struct _GtkFileChooserDefault): New field icon_size.
1056         (shortcuts_insert_path): Use impl->icon_size.
1057         (list_icon_data_func): Likewise.
1058
1059 2004-03-09  Federico Mena Quintero  <federico@ximian.com>
1060
1061         * gtk/gtkfilechooserdefault.c (get_file_info): Handle the returned
1062         parent_path being NULL.  Fixes #136662.
1063
1064 2004-03-09  Federico Mena Quintero  <federico@ximian.com>
1065
1066         * gtk/gtkfilechooserdefault.c (shortcuts_drag_data_received_cb):
1067         Stop the emission so that GtkTreeView's handler won't try to poke
1068         the filter model.  Fixes #136127.
1069
1070 Tue Mar  9 13:49:14 2004  Owen Taylor  <otaylor@redhat.com>
1071
1072         * gtk/gtkstyle.c (gtk_paint_polygon): Fix 
1073         g_return_if_fail() that was checking draw_shadow.
1074         (#136669, Morten Welinder)
1075
1076 Tue Mar  9 09:57:25 2004  Owen Taylor  <otaylor@redhat.com>
1077
1078         * === Released 2.3.6 ===
1079
1080         * configure.in: Version 2.3.6, interface age 0.
1081
1082         * NEWS: Updates
1083
1084 Tue Mar  9 11:01:45 2004  Jonathan Blandford  <jrb@gnome.org>
1085
1086         * gtk/gtkpathbar.c (gtk_path_bar_finalize): unref the correct
1087         icon.  Reported by Michael Natterer <mitch@gimp.org>.
1088
1089 2004-03-09  Morten Welinder  <terra@gnome.org>
1090
1091         * tests/testfilechooser.c (main): Destroy widgets to reveal leaks.
1092
1093 Tue Mar  9 02:11:50 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1094
1095         * gtk/gtkmenu.c Fix bug 136446. [Marco Pesenti Gritti]
1096         (struct _GtkMenuPrivate): Add boolean destroying
1097         (gtk_menu_destroy): Set priv->destroying
1098         (gtk_menu_remove): don't update the table information when the
1099         menu is being destroyed.
1100
1101         * gtk/gtkmenu.c (gtk_menu_set_monitor): Formatting fix
1102
1103         * gtk/gtktoolbar.[ch]: Some formatting fixes
1104
1105 Tue Mar  9 01:25:10 2004  Matthias Clasen  <maclas@gmx.de>
1106
1107         * gtk/gtkframe.c (gtk_frame_paint): Fix a typo.
1108
1109 2004-03-08  Federico Mena Quintero  <federico@ximian.com>
1110
1111         Fixes #136080.
1112
1113         * gtk/gtkfilesystemunix.c: Only lstat() if stat() failed due to
1114         ENOENT.
1115         (filename_get_info): Likewise.
1116
1117 2004-03-08  Federico Mena Quintero  <federico@ximian.com>
1118
1119         * gtk/gtkfilechooserdefault.c
1120         (gtk_file_chooser_default_initial_focus): Use
1121         gtk_tree_view_set_cursor().
1122
1123 2004-03-08  Federico Mena Quintero  <federico@ximian.com>
1124
1125         Patch "1a" from #136185, by Morten Welinder.
1126
1127         * gtk/gtkfilechooserdefault.c (get_file_info): Take in an argument
1128         that says whether the caller just wants the display name.
1129         (shortcuts_insert_path): We only want the name in the call to
1130         get_file_info().
1131
1132         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Don't request more
1133         info than needed from the file_folder.
1134
1135 2004-03-08  Federico Mena Quintero  <federico@ximian.com>
1136
1137         Fixes #136105.
1138
1139         * gtk/gtkfilechooserembed.h (struct _GtkFileChooserEmbedIface):
1140         Added an ::initial_focus() method.
1141
1142         * gtk/gtkfilechooserembed.c
1143         (_gtk_file_chooser_embed_delegate_iface_init): Set the
1144         initial_focus method.
1145         (delegate_initial_focus): Implement.
1146         (_gtk_file_chooser_embed_initial_focus): New function.
1147
1148         * gtk/gtkfilechooserdialog.c
1149         (gtk_file_chooser_dialog_constructor): Call
1150         _gtk_file_chooser_embed_initial_focus().
1151
1152         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init):
1153         Install the ::initial_focus() handler.
1154         (gtk_file_chooser_default_initial_focus): Implement.
1155
1156 2004-03-08  Federico Mena Quintero  <federico@ximian.com>
1157
1158         * gtk/gtkfilechooserdefault.c (update_from_entry): Return a
1159         boolean success code.
1160         (location_popup_handler): Refocus the file chooser if appropriate.
1161         Fixes #135905.
1162         (save_widgets_create): Don't set the text of the save_folder_label
1163         here.
1164         (update_appearance): Set the text here as appropriate for the save
1165         mode.  Also fixes #136387.
1166         (update_appearance): Don't show the Create Folder button in
1167         SELECT_FOLDER mode.
1168         (update_appearance): Show the extra widget in all Save modes
1169         correctly.
1170
1171 Mon Mar  8 11:57:27 2004  Owen Taylor  <otaylor@redhat.com>
1172
1173         * gtk/gtkcombobox.c (gtk_combo_box_unset_model): Don't
1174         call g_signal_handler_disonnect() if priv->model is
1175         NULL. (#136551, Damon Chaplin)
1176
1177         * gtk/gtkcombobox.c (gtk_combo_box_model_row_inserted):
1178         Back out code to set the active item when the first
1179         item is added to the model; this causes problems for
1180         GtkComboBoxText. (#136535)
1181
1182         * gtk/gtkcombobox.c (gtk_combo_box_menu_destroy)
1183         * gtk/gtkcombobox.c (gtk_combo_box_list_destroy):
1184         * gtk/gtkcombobox.c (gtk_combo_box_list_setup): 
1185         * gtk/gtkcombobox.c (gtk_combo_box_menu_setup): 
1186         Remove calls to gtk_combo_box_unset_model.
1187
1188         * gtk/gtkcombobox.c (gtk_combo_box_check_appearance): 
1189         Clean up handling of wrap->width > 0.
1190
1191         * gtk/gtkcombobox.c (gtk_combo_box_relayout): Don't
1192         switch list/menu mode here.
1193
1194         * gtk/gtkcombobox.c (gtk_combo_box_set_model): Protect
1195         against the same model being set back.
1196
1197         * gtk/gtkcombobox.c (gtk_combo_box_relayout): Call
1198         gtk_combo_box_menu_fill() rather than duplicating
1199         a large chunk of code.
1200
1201 2004-03-08  Anders Carlsson  <andersca@gnome.org>
1202
1203         * gtk/gtkfilesystemmodel.c (gtk_file_system_model_get_flags): 
1204         If max_depth is 0 then we have a list.
1205
1206 2004-03-08  Morten Welinder  <terra@gnome.org>
1207
1208         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): If we fail, leave
1209         widget unchanged.  Explicitly verify final directory.
1210
1211         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_create_folder,
1212         get_icon_type, filename_get_info): Protect errno.
1213
1214 2004-03-08  Marco Pesenti Gritti  <marco@gnome.org>
1215
1216         * gtk/gtkentry.c: (gtk_entry_completion_key_press):
1217
1218         When an action is selected stop the event to be propagated
1219         otherwise the activate signal is emitted too. (Bug #133394)
1220
1221 Mon Mar  8 04:50:12 2004  Jonathan Blandford  <jrb@gnome.org>
1222
1223         * gtk/gtkfilechooserdefault.c (create_path_bar): new function to
1224         consolidate creating the path_bar.
1225         (gtk_file_chooser_default_set_current_folder): no longer need to
1226         pass in the filesystem.
1227
1228         * gtk/gtkpathbar.h: Removed unused set_pixbuf functions in favor
1229         of just setting the filesystem.
1230
1231         * gtk/gtkpathbar.c (gtk_path_bar_finalize): Free root path and
1232         home_dir.
1233         (get_button_image): Add images to path_bar.
1234         (update_button_appearance): use images
1235         (make_directory_button): Clasify buttons based upon location.
1236         (_gtk_path_bar_set_path): no longer need a file-system.  Also, add
1237         rerooting, #135845, #135914
1238
1239         * tests/testfilechooser.c: Fix reused error handling.
1240
1241 2004-03-08  Anders Carlsson  <andersca@gnome.org>
1242
1243         * gtk/gtkfilesystemunix.c: (get_icon_for_directory),
1244         (gtk_file_system_unix_render_icon):
1245         Use better icons for home and desktop.
1246
1247 2004-03-08  Anders Carlsson  <andersca@gnome.org>
1248
1249         * gtk/gtkfilechooserentry.c:
1250         (_gtk_file_chooser_entry_set_base_folder):
1251         Set the base folder path in the entry.
1252         
1253 2004-03-08  Christian Neumair  <chris@gnome-de.org>
1254
1255         * tests/testentrycompletion.c: Fix typo.
1256
1257 2004-03-08  Tor Lillqvist  <tml@iki.fi>
1258
1259         * README.win32: Update.
1260
1261         * gtk/gtk.def: Small update. Thanks to J. Ali Harlow. Re-sorted.
1262
1263         * tests/testfilechooser.c: Correct localtime_r() emulation on
1264         Win32. Remove a couple of unnecessary Win32-only includes.
1265
1266 Mon Mar  8 01:06:17 2004  Matthias Clasen  <maclas@gmx.de>
1267
1268         * tests/testentrycompletion.c: Test dynamic addition/removal. 
1269
1270 Sun Mar  7 22:38:49 2004  Matthias Clasen  <maclas@gmx.de>
1271
1272         * gtk/gtkframe.c (gtk_frame_paint): Use ythickness, not 
1273         xthickness in the calculation of vertical dimensions.
1274
1275 Sun Mar  7 17:38:03 2004  Jonathan Blandford  <jrb@gnome.org>
1276
1277         * gtk/gtkbutton.c (gtk_button_class_init): actually use
1278         gtk_button_add.
1279
1280         * gtk/gtkfilechooserdefault.c (error_building_filename_dialog):
1281         use the uri, not the path, #136317
1282         (renderer_edited_cb): ditto
1283         (shortcuts_add_bookmark_from_path): ditto
1284         (remove_bookmark_button_clicked_cb): ditto
1285         (gtk_file_chooser_default_remove_shortcut): ditto
1286         (update_from_entry): ditto
1287         (up_folder_handler): ditto
1288
1289 Sun Mar  7 16:07:08 2004  Jonathan Blandford  <jrb@gnome.org>
1290
1291         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): set
1292         redraw_on_allocate, #135902.
1293
1294         * gtk/gtkfilesystemmodel.c (model_refilter_recurse): Patch from
1295         Damon Chaplin to set a node to be visible before emitting the
1296         inserted signal, #135555.
1297
1298 Sun Mar  7 22:24:28 2004  Matthias Clasen  <maclas@gmx.de>
1299
1300         * gtk/gtkbutton.c (_gtk_button_paint): Don't use xthickness in the
1301         height calculation.
1302
1303 Sun Mar  7 14:34:04 2004  Jonathan Blandford  <jrb@gnome.org>
1304
1305         Fixes #121500.
1306
1307         * gtk/gtkfilechooserdefault.c (trap_activate_cb): stop activate
1308         from unselecting rows when pressed in multiple-selection mode.
1309
1310 2004-03-07  Hans Breuer  <hans@breuer.org>
1311
1312         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting) :
1313         some more settings from system, also reflect some name changes
1314         done a while ago in the x11 backend
1315
1316         * gdk/win32/makefile.msc : build gdkspawn-win32.c
1317
1318         * gtk/gtkdnd.c : gtk_drag_source_[gs]et_target_list, added "Since: 2.4"
1319
1320         * gtk/makefile.msc.in : build gtkpathbar, link shell32.lib
1321
1322         * tests/makefile.msc : some more tests get build
1323
1324 Sun Mar  7 03:03:57 2004  Jonathan Blandford  <jrb@gnome.org>
1325
1326         * gtk/gtkfilechooserdefault.c
1327         (gtk_file_chooser_default_get_paths): if action is
1328         SELECT_FOLDER, then return the currentd folder if none is
1329         selected.
1330         (gtk_file_chooser_default_should_respond): Allow 'Ok' to be hit if
1331         no directory is selected in SELECT_FOLDER mode.
1332
1333 Sat Mar  6 23:31:18 2004  Jonathan Blandford  <jrb@gnome.org>
1334
1335         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault):
1336         remove unneeded elements.
1337         (tree_selection_changed): removed
1338         (tree_name_data_func): removed
1339         (gtk_file_chooser_default_finalize): don't unref dir model
1340         (create_folder_tree): removed
1341         (get_selection): no longer need to abstract away the selection
1342         function.
1343         (create_file_list): We now create a tree for all actions.
1344         (file_pane_create): Make one tree.
1345         (update_appearance) We really change the mode only, now.
1346
1347 Sun Mar  7 02:38:00 2004  Matthias Clasen  <maclas@gmx.de>
1348
1349         * gtk/gtkcombobox.c (gtk_combo_box_size_request): Do a 
1350         size_request on the button and cell_view_frame, otherwise
1351         their style will still be the default here in the initial 
1352         size_request. (#136301, Mark McLoughlin)
1353
1354 2004-03-06  Gustavo J. A. M. Carneiro  <gustavo@users.sourceforge.net>
1355
1356         * gtk/gtktoolbar.c (internal_insert_element): Check return value
1357         of gtk_stock_lookup; if stock lookup fails, just use stock_id as
1358         label, instead of crashing. Fixes #136202.
1359
1360 2004-03-05  Federico Mena Quintero  <federico@ximian.com>
1361
1362         * gdk/linux-fb/gdkglobals-fb.c: Make <config.h> the very first
1363         include.
1364         * gdk/linux-fb/gdkwindow-fb.c: Likewise.
1365         * gdk/linux-fb/gdkinput.c: Likewise.
1366
1367 2004-03-05  Federico Mena Quintero  <federico@ximian.com>
1368
1369         Fixes #136082 and #135265, patch by Morten Welinder.
1370
1371         * configure.in: Use AC_SYS_LARGEFILE.
1372
1373         * */*.c: #include <config.h>
1374
1375 2004-03-05  Federico Mena Quintero  <federico@ximian.com>
1376
1377         * gtk/gtkfilechooserdefault.c
1378         (gtk_file_chooser_default_select_path): No need to have a
1379         temporary error variable.
1380
1381 2004-03-05  Tor Lillqvist  <tml@iki.fi>
1382
1383         * configure.in: Move check for native Win32 (mingw) a bit
1384         earlier. If Win32, disable static builds (as in GLib). Remove
1385         unnecessary AC_LIBTOOL_WIN32_DLL.
1386
1387         * gdk/gdk.def: Add missing entries, thanks to J. Ali Harlow.
1388
1389         * gdk/win32/gdkcursor-win32.c (color_is_white): const-correctness.
1390
1391         (gdk_cursor_new_from_pixbuf): Copy of the non-Xcursor X11
1392         implementation.
1393
1394         (gdk_display_supports_cursor_alpha,
1395         gdk_display_supports_cursor_color): Dummy implementations.
1396
1397         (gdk_display_get_default_cursor_size,
1398         gdk_display_get_maximal_cursor_size): Implement.
1399
1400         * gdk/win32/gdkdisplay-win32.c (gdk_display_get_default_group):
1401         Dummy implementation.
1402
1403         * gdk/win32/gdkevents-win32.c (gdk_net_wm_supports): Dummy
1404         implementation.
1405
1406         * gdk/win32/gdkfont-win32.c (gdk_font_get_display): Implement.
1407
1408         * gdk/win32/gdkinput-win32.c (gdk_input_motion_events): Remove,
1409         not in API.
1410
1411         * gdk/win32/gdkwindow-win32.c (gdk_window_get_group): Dummy
1412         implementation.
1413
1414 Fri Mar  5 18:00:36 2004  Jonathan Blandford  <jrb@redhat.com>
1415
1416         * gtk/gtkfilechooserdefault.c (new_folder_button_clicked): scroll
1417         to the new path.
1418
1419         * gtk/gtktreeview.c (gtk_tree_view_adjustment_changed): Update the
1420         allocation when scrolling instead of cancelling editing.
1421
1422 Fri Mar  5 23:52:34 2004  Matthias Clasen  <maclas@gmx.de>
1423
1424         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_set_modify_func): 
1425         Improve the docs.  (#127727, Murray Cumming)
1426
1427 Fri Mar  5 23:37:16 2004  Matthias Clasen  <maclas@gmx.de>
1428
1429         * gtk/gtktreeview.c (gtk_tree_view_set_reorderable): Clarify the
1430         doc comment.  (#118602)
1431
1432 Fri Mar  5 22:37:15 2004  Matthias Clasen  <maclas@gmx.de>
1433
1434         * gtk/gtkbutton.c (gtk_button_construct_child): Don't let
1435         the priv->image pointer dangle.  (#136259, Padraig O'Briain)
1436
1437 2004-03-05  Federico Mena Quintero  <federico@ximian.com>
1438
1439         * gtk/gtkfilechooserprivate.h (struct _GtkFileChooserIface): Add
1440         gboolean return values and GError arguments to
1441         ::set_current_folder() and ::select_path().
1442
1443         * gtk/gtkfilechooser.c (gtk_file_chooser_set_current_folder):
1444         Return a boolean value for success/failure.
1445         (gtk_file_chooser_set_current_folder_uri): Likewise.
1446         (gtk_file_chooser_select_filename): Likewise.
1447         (gtk_file_chooser_select_uri): Likewise.
1448         (gtk_file_chooser_set_filename): Likewise.
1449         (gtk_file_chooser_set_uri): Likewise.
1450         (_gtk_file_chooser_set_current_folder_path): Likewise, plus take
1451         in a GError.
1452         (_gtk_file_chooser_select_path): Likewise.
1453
1454         * gtk/gtkfilechooserutils.c (delegate_set_current_folder):
1455         Likewise.
1456         (delegate_select_path): Likewise.
1457
1458         * gtk/gtkfilechooserdefault.c
1459         (gtk_file_chooser_default_select_path): Likewise.
1460         (gtk_file_chooser_default_set_current_folder): Likewise; this also
1461         fixes #136024.
1462         (error_changing_folder_dialog): New helper function.
1463         (change_folder_and_display_error): New helper function.
1464         (switch_to_selected_folder): Use change_folder_and_display_error().
1465         (tree_selection_changed): Likewise.
1466         (shortcuts_activate_volume): Likewise.
1467         (shortcuts_activate_item): Likewise.
1468         (list_row_activated): Likewise.
1469         (path_bar_clicked): Likewise.
1470         (update_from_entry): Likewise.
1471         (up_folder_handler): Likewise.
1472         (home_folder_handler): Get the home path from the shortcuts model,
1473         and use change_folder_and_display_error().
1474
1475         * tests/testfilechooser.c (set_current_folder): New helper
1476         function; pops up a simple error dialog if necessary.
1477         (set_filename): Likewise.
1478         (set_folder_nonexistent_cb): Use set_current_folder().
1479         (set_folder_existing_nonexistent_cb): Likewise.
1480         (set_filename_nonexistent_cb): Use set_filename().
1481         (set_filename_existing_nonexistent_cb): Likewise.
1482
1483 Fri Mar  5 11:17:35 2004  Owen Taylor  <otaylor@redhat.com>
1484
1485         * gtk/gtktreemodel.c (gtk_tree_row_reference_new_proxy): 
1486         Improve the docs (reported by Vitaly Tishkov, 
1487         #74362) Add some comments to the code about the 
1488         row reference handling that are hopefully not entirely
1489         wrong.
1490
1491 2004-03-05  Michael Natterer  <mitch@gimp.org>
1492
1493         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_show_all):
1494         s/object/widget/. Makes it compile again.
1495
1496 Fri Mar  5 03:37:14 2004  Jonathan Blandford  <jrb@gnome.org>
1497
1498         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_show_all):
1499         chain to the extra_widget.
1500
1501 Fri Mar  5 02:53:41 2004  Jonathan Blandford  <jrb@gnome.org>
1502
1503         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_finalize):
1504         Patch from Damon Chaplin to free models when we're finalized,
1505         #134053
1506
1507 2004-03-05  Alexander Larsson  <alexl@redhat.com>
1508
1509         * gtk/gtkfilesystem.c (gtk_file_system_get_volume_for_path):
1510         Document the fact that there might not be a volume for all
1511         paths.
1512
1513         * gtk/gtkfilechooserdefault.c (shortcuts_add_current_folder):
1514         Don't assume there is a volume for all paths.
1515
1516 Fri Mar  5 01:45:04 2004  Jonathan Blandford  <jrb@gnome.org>
1517
1518         * gtk/gtkfilechooserdefault.c (shortcuts_append_paths): insert in
1519         the correct place instead of naïvely appending.
1520         (shortcuts_add_volumes): refilter the model
1521         (shortcuts_add_bookmarks): refilter the model
1522         (gtk_file_chooser_default_add_shortcut_folder): refilter the model
1523
1524 2004-03-04  Federico Mena Quintero  <federico@ximian.com>
1525
1526         * gtk/gtkfilechooserdialog.c (response_cb):  New handler.  Ask the
1527         GtkFileChooser widget if it wants to do something special rather
1528         than letting us terminate the dialog.
1529         (gtk_file_chooser_dialog_init): Connect to "response"; see the
1530         comment in the sources to see why we don't override the method in
1531         class_init.
1532
1533         * gtk/gtkfilechooserembed.h (struct _GtkFileChooserEmbedIface):
1534         Added a ::should_respond() method.
1535
1536         * gtk/gtkfilechooserembed.c
1537         (_gtk_file_chooser_embed_delegate_iface_init): Add a delegate for ::should_respond().
1538         (delegate_should_respond): New delegate.
1539         (_gtk_file_chooser_embed_should_respond): New function.
1540
1541         * gtk/gtkfilechooserdefault.c (set_list_model, create_file_list):
1542         Use dashes in signal names rather than underscores.
1543         (gtk_file_chooser_default_init): Hook up our ::should_respond() implementation.
1544         (gtk_file_chooser_default_should_respond): Implement.  go into a
1545         folder rather than responding if we are in File mode and the
1546         selected file is a folder.
1547         (get_selection): New helper function.
1548         (add_bookmark_button_clicked_cb): Use get_selection().
1549         (bookmarks_check_add_sensitivity): Likewise.
1550         (gtk_file_chooser_default_get_paths): Likewise.
1551         (check_save_entry): New helper function.
1552         (gtk_file_chooser_default_get_paths): Use check_save_entry().
1553         (selection_check): Renamed from selection_is_folders().  Now
1554         checks whether the selection is empty, all files, all folders.
1555         (bookmarks_check_add_sensitivity): Use selection_check().
1556
1557 Fri Mar  5 00:05:59 2004  Matthias Clasen  <maclas@gmx.de>
1558
1559         * gtk/gtkcombobox.c (gtk_combo_box_list_setup): 
1560         * gtk/gtkcombobox.c (gtk_combo_box_menu_setup): Connect to 
1561         key_press_event and handle Alt-Down/Alt-Up to show or hide the
1562         list popup. Also handle Down/Up/PageDown/PageUp/Home/End and 
1563         make them change the active item without popping up the list.
1564         These keybindings are inherited from GtkCombo. 
1565
1566 Thu Mar  4 23:15:58 2004  Matthias Clasen  <maclas@gmx.de>
1567
1568         * gtk/gtkcombobox.c (gtk_combo_box_menu_position): Initially 
1569         select the active item when using optionmenu-like positioning. 
1570
1571 Thu Mar  4 16:54:30 2004  Owen Taylor  <otaylor@redhat.com>
1572
1573         * gtk/gtkrc.c (gtk_rc_check_pixmap_dir): Don't
1574         open/close the file, just check for existence
1575         with g_file_test(). This is considerably cheaper,
1576         and lack-of-permissions for pixmap dirs is 
1577         pathological.
1578
1579 Wed Mar  3 17:53:21 2004  Owen Taylor  <otaylor@redhat.com>
1580
1581         * gtk/gtksocket.c (gtk_socket_class_init): Overide
1582         show_all/hide_all to be gtk_widget_show/gtk_widget_hide,
1583         since we don't want to propagate to the in-process
1584         plug, if any. (#122949, Michael Meeks)
1585
1586 Thu Mar  4 15:20:55 2004  Jonathan Blandford  <jrb@gnome.org>
1587
1588         * gtk/gtkfilechooserdefault.c (update_appearance): show the 'New
1589         Folder' button in SAVE mode again.
1590
1591 Thu Mar  4 21:53:46 2004  Matthias Clasen  <maclas@gmx.de>
1592
1593         * gtk/gtkiconfactory.c (copy_cache): Increment the reference
1594         count of the style when copying the cached icon.  (#135890, Crispin
1595         Flowerday)
1596
1597 Thu Mar  4 21:45:43 2004  Matthias Clasen  <maclas@gmx.de>
1598
1599         * gtk/gtkcombobox.c: In list mode, set the background color 
1600         of the cell view to the base color of the style, instead of
1601         hardwiring white. (#136158)
1602
1603 Thu Mar  4 01:32:19 2004  Jonathan Blandford  <jrb@gnome.org>
1604
1605         * gtk/gtkpathbar.c (gtk_path_bar_set_path): Modified patch from
1606         muppet <scott@asofyet.org> to keep child directories around if we
1607         change to a child.
1608
1609         * gtk/gtkpathbar.c (_gtk_path_bar_set_home_icon): Start of
1610         icon-setting functions.  Not used yet.
1611         (_gtk_path_bar_set_root_icon): Ditto.
1612         
1613 Thu Mar  4 00:31:54 2004  Matthias Clasen  <maclas@gmx.de>
1614
1615         * gtk/gtktextview.c (extend_selection): 
1616         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): Allow
1617         to select the last word in the buffer.  (#135487, Paolo Borelli)
1618
1619 Wed Mar  3 23:54:31 2004  Matthias Clasen  <maclas@gmx.de>
1620
1621         * gtk/gtkentrycompletion.c: Doc update.
1622
1623 Wed Mar  3 17:30:18 2004  Owen Taylor  <otaylor@redhat.com>
1624
1625         * gtk/gtkwindow.c (gtk_window_mnemonic_activate): Check
1626         whether widgets are viewable, not just if they are
1627         mapped. (#122912, reported by Tim Evans)
1628
1629 Wed Mar  3 23:28:48 2004  Matthias Clasen  <maclas@gmx.de>
1630
1631         * gtk/gtkcombobox.c (gtk_combo_box_set_active): Move the actual
1632         implementation into a new gtk_combo_box_set_active_internal() 
1633         function, which doesn't do the short-circuiting. 
1634         * gtk/gtkcombobox.c (gtk_combo_box_model_row_deleted): Use
1635         set_active_internal() here, since the active item may change here,
1636         although the index is unchanged.
1637
1638 Wed Mar  3 23:26:49 2004  Matthias Clasen  <maclas@gmx.de>
1639
1640         * gtk/gtkcombobox.c (gtk_combo_box_menu_position): Reintroduce the
1641         traditional option menu placement of the popup for regular combo
1642         boxes. Grids and editable combo boxes use the combo-like placement 
1643         below the entry.  (#136021)
1644         * gtk/gtkcombobox.c (gtk_combo_box_menu_button_press): 
1645         * gtk/gtkcombobox.c (gtk_combo_box_popup): Call gtk_menu_set_active()
1646         before popping up the menu, to make the placement work.
1647         
1648 Wed Mar  3 17:20:15 2004  Owen Taylor  <otaylor@redhat.com>
1649
1650         * gtk/gtkmain.c (gtk_propagate_event): Special case
1651         scroll events so that they propagate up the widget
1652         heirarchy when received on insensitive widgets.
1653         (#101102, reported by Geoff Reedy)
1654
1655 Wed Mar  3 16:47:10 2004  Owen Taylor  <otaylor@redhat.com>
1656
1657          #109594, reported by Olivier Ripoll
1658
1659         * gtk/gtkentry.c (gtk_entry_size_request): Use max of 
1660         width and digit width for gtk_entry_set_width_chars,
1661         and round up.
1662
1663         * gtk/gtkcolorsel.c (gtk_color_selection_init): Set the
1664         width of the entry to 7 chars.
1665
1666 Wed Mar  3 16:00:10 2004  Owen Taylor  <otaylor@redhat.com>
1667
1668         * configure.in: Strip out the "export-dynamic" libtool
1669         option from library link lines. (#124687, James Henstridge)
1670
1671 Wed Mar  3 16:06:03 2004  Jonathan Blandford  <jrb@gnome.org>
1672
1673         * gtk/gtkfilechooserdefault.c (save_folder_combo_changed_cb):
1674         Don't activate the combo if we're in the midst of changing
1675         folders.
1676
1677 2004-03-03  Mark McLoughlin  <mark@skynet.ie>
1678
1679         * tests/testsocket_common.c: (print_hello): don't try and store
1680         pointers in ints. Fixes 64-bit build.
1681
1682 2004-03-03  Federico Mena Quintero  <federico@ximian.com>
1683
1684         * gtk/gtkfilesystem.c (gtk_file_system_get_parent): Simplify by
1685         not using a temporary variable, and clarify the documentation.
1686         Fixes #136008.
1687
1688 2004-03-03  Mark McLoughlin  <mark@skynet.ie>
1689
1690         * gtk/gtkexpander.c:
1691         (gtk_expander_enter_notify), (gtk_expander_leave_notify),
1692         (gtk_expander_set_label_widget): Set the label widget's
1693         state to prelight if we're prelit. Fixes bug #136078.
1694
1695 2004-03-03  Murray Cumming  <murrayc@murrayc.com>
1696
1697         * gtk/gtkradiobutton.h, radiomenuitem.h: Corrected the group_changed
1698         signal vfunc declaration, adding the first parameter, which is the
1699         widget emitting the signal.
1700
1701 2004-03-03  Morten Welinder  <terra@gnome.org>
1702
1703         * tests/testfilechooser.c (update_preview_cb): Plug leak.
1704
1705 Tue Mar  2 23:39:55 2004  Jonathan Blandford  <jrb@gnome.org>
1706
1707         * gtk/gtkfilechooserdialog.c
1708         (file_chooser_widget_default_realized_size_changed): Split
1709         function into realized and unrealized variants, and consolidate
1710         the handling fo size-changing and default changing.
1711
1712         * gtk/gtkfilechooserembed.[ch] (gtk_file_chooser_embed_class_init):
1713         remove resizable-hints-changed, as it just complicated things.
1714
1715         * gtk/gtkfilechooserdefault.c (update_appearance): Don't emit
1716         resizable-hints-changed.
1717         
1718 2004-03-03  Tor Lillqvist  <tml@iki.fi>
1719
1720         * gtk/gtk.def: Add a missing entry. (#135982, J. Ali Harlow)
1721
1722         * NEWS: Correct spelling of my name in one place.
1723
1724 2004-03-02  Federico Mena Quintero  <federico@ximian.com>
1725
1726         * gtk/gtkfilechooserdefault.c
1727         (gtk_file_chooser_default_set_current_folder): Handle errors in
1728         setting the path bar's path.  Fixes #136000, based on a patch by
1729         Morten Welinder.
1730
1731         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_insert_bookmark):
1732         Don't free our own propagated error.
1733
1734         * gtk/gtkpathbar.c (gtk_path_bar_set_path): Likewise, and free the
1735         parent_path upon error.  Fixes #136006, patch by Morten Welinder.
1736         (gtk_path_bar_set_path): Unref the file_folder upon error.
1737         (gtk_path_bar_set_path): Return a boolean success code.
1738
1739 Wed Mar  3 00:28:59 2004  Matthias Clasen  <maclas@gmx.de>
1740
1741         * tests/testcombochange.c: Add an animation mode, to test 
1742         how the combobox behaves if the model changes while it is popped
1743         up.
1744
1745 Tue Mar  2 17:06:05 2004  Owen Taylor  <otaylor@redhat.com>
1746
1747         * === Released 2.3.5 ===
1748
1749         * NEWS: Updates
1750
1751         * configure.in: Version 2.3.5, interface age 0.
1752         Require glib-2.3.5, pango-1.3.5.
1753
1754 Tue Mar  2 23:08:12 2004  Matthias Clasen  <maclas@gmx.de>
1755
1756         * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup): Avoid
1757         popping up the completions across the edge of the monitor.
1758         Part of #135561.
1759
1760 Tue Mar  2 16:47:40 2004  Owen Taylor  <otaylor@redhat.com>
1761
1762         * tests/testfilechooser.c (set_filename_existing_nonexistent_cb): 
1763         Move the /nonexistant stuff out of the main window,
1764         keep the main window somewhat normal looking.
1765
1766 Tue Mar  2 16:18:43 2004  Owen Taylor  <otaylor@redhat.com>
1767
1768         * gtk/gtktreestore.c (gtk_tree_store_reorder)
1769         * gtk/gtkliststore.c (gtk_list_store_reorder): Fix
1770         up the interpretation of new_order to match what
1771         it means elsewhere, document the meaning of new_order.
1772
1773         * gtk/gtkcombobox.c (gtk_combo_box_model_rows_reordered):
1774         Fix interpretation of new_order.
1775
1776         * tests/testcombochange.c (on_reorder): Fix interpretation
1777         of new_order.
1778
1779         * tests/testcombochange.c (on_reorder): Fix hitting
1780         "reorder" with an empty list.
1781
1782 Tue Mar  2 21:23:30 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
1783
1784         Patch from Frederic Crozat, test code from Jean-Philippe
1785         Chancelier. Fixes bug #120479.
1786         
1787         * gtk/gtkcombo.c (gtk_combo_popup_list): Make sure popup belongs
1788         to the right window group.
1789
1790         * gtk/gtkmenu.c (gtk_menu_popup): Same
1791
1792         * tests/testsocket.c (main): Pack the plugs into an hbox instead
1793         of a vbox.
1794
1795         * tests/testsocket_common.c: Add a GtkMenuBar, a GtkCombo and a
1796         GtkComboBox to the children.
1797
1798 Tue Mar  2 14:38:23 2004  Owen Taylor  <otaylor@redhat.com>
1799
1800         * gtk/gtkcombobox.c (gtk_combo_box_model_row_inserted):
1801         If the model was empty before, select the first inserted
1802         item.
1803
1804         * gtk/gtkcombobox.c (gtk_combo_box_model_row_deleted):
1805         Fix up the logic for the new row to select.
1806
1807         * gtk/gtkcombobox.c (gtk_combo_box_class_init):
1808         Rename "appearance" property to "appears-as-list".
1809
1810         * tests/testcombochange.c tests/Makefile.am: Test case
1811         for combos and dynamically changing models.
1812
1813 Tue Mar  2 15:19:52 2004  Jonathan Blandford  <jrb@redhat.com>
1814
1815         * gtk/gtkfilechooserdefault.c
1816         (gtk_file_chooser_default_get_resizable_hints): set the default
1817         value, spotted by Morten Welinder.
1818
1819 Tue Mar  2 15:03:15 2004  Jonathan Blandford  <jrb@redhat.com>
1820
1821         * gtk/gtkfilechooserdefault.c
1822         (gtk_file_chooser_default_get_resizable_hints): get the logic
1823         correct.  This will fix sizing on save dialogs.
1824
1825         (save_widgets_create): set_mnemonic_widget.
1826
1827 2004-03-02  Federico Mena Quintero  <federico@ximian.com>
1828
1829         * gtk/gtkfilechooserdefault.c
1830         (gtk_file_chooser_default_set_current_folder): Don't update the
1831         save folder combo if we are already switching folders; based on a
1832         patch by Jonathan Blandford.
1833
1834         * gtk/gtkfilechooserdefault.c (shortcuts_add_current_folder):
1835         Handle failure to insert the path.  Based on a patch by Morten
1836         Welinder attached to bug #135380.
1837
1838         * tests/testfilechooser.c (extra_widget_create): Add a bunch of
1839         buttons to test various things.
1840
1841 Tue Mar  2 20:59:23 2004  Matthias Clasen  <maclas@gmx.de>
1842
1843         * tests/Makefile.am: Add testentrycompletion.
1844
1845         * tests/testentrycompletion.c: New file to test some of the
1846         more exotic GtkEntryCompletion features.
1847
1848 Tue Mar  2 14:38:10 2004  Jonathan Blandford  <jrb@redhat.com>
1849
1850         * tests/testfilechooser.c (main): improve tests a little.
1851
1852 Tue Mar  2 11:45:50 2004  Owen Taylor  <otaylor@redhat.com>
1853
1854         * gtk/gtkcombobox.c: Always connect to the changed
1855         signals on the model, update the active item as
1856         appropriate when rows are inserted/deleted/reordered,
1857         re-layout the menu on ::rows-reordered.
1858
1859         * gtk/gtkcellview.c (gtk_cell_view_set_displayed_row):
1860         Allow %NULL for path to unset and leave no current
1861         path.
1862
1863 Tue Mar  2 19:54:53 2004  Matthias Clasen  <maclas@gmx.de>
1864
1865         * gtk/gtkcombobox.c (gtk_combo_box_list_position): Position
1866         the popup above the sample if there is not enough room below.
1867         Part of #135543.
1868
1869 Tue Mar  2 19:53:36 2004  Matthias Clasen  <maclas@gmx.de>
1870
1871         * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Make the 
1872         frame for the list mode etched in, to give the popup a slightly
1873         less flat appearance. 
1874
1875 Tue Mar  2 17:55:31 2004  Matthias Clasen  <maclas@gmx.de>
1876
1877         * gtk/gtk.def: Add gtk_combo_box_entry_new_text().  
1878
1879 2004-03-02  Morten Welinder  <terra@gnome.org>
1880
1881         * tests/testfilechooser.c (size_prepared_cb): Don't scale images
1882         that are small enough to fit.  Avoid using incompatibly typed data
1883         pointer.
1884
1885         * gtk/gtkfilechooserdefault.c
1886         (gtk_file_chooser_default_get_resizable_hints): Test the
1887         resize_horizontally pointer, not the deferenced pointer.
1888
1889 2004-03-01  Federico Mena Quintero  <federico@ximian.com>
1890
1891         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault): New
1892         flag shortcuts_current_folder_is_volume.
1893         (shortcuts_add_current_folder): Set
1894         impl->shortcuts_current_folder_is_volume as appropriate.
1895         (remove_current_folder_cb): Handle the flag.
1896         (shortcuts_activate_item): Likewise.
1897         (shortcuts_update_current_folder): Handle the
1898         impl->shortcuts_current_folder_active flag; only add the folder if
1899         it doesn't already exist in the list.
1900         (shortcuts_model_create): Don't insert the current folder
1901         separator here.
1902         (shortcuts_add_current_folder): Insert the separator here.
1903         (shortcut_find_position): Renamed from shortcut_exists(); now
1904         returns an index.
1905         (shortcuts_add_current_folder): Set the active item in the combo.
1906
1907 2004-03-01  Federico Mena Quintero  <federico@ximian.com>
1908
1909         * gtk/gtkfilechooserdefault.c (shortcuts_row_activated_cb): Eep,
1910         use gtk_tree_model_filter_convert_iter_to_child_iter(), not the reverse.
1911
1912 2004-03-01  Federico Mena Quintero  <federico@ximian.com>
1913
1914         * gtk/gtkfilechooserdefault.c (shortcuts_model_create): Don't
1915         unref an old model; there isn't one.  This was a leftover from
1916         when we recreated the model on every change.
1917         (save_widgets_create): Create the save folder combo.
1918         (shortcuts_model_create): Don't set the model on the tree view
1919         here.
1920         (gtk_file_chooser_default_constructor): Create the shortcuts model
1921         here, before the rest of the widgets.
1922         (shortcuts_list_create): Don't call shortcuts_model_create() here;
1923         just set the model on the tree.
1924         (save_folder_combo_create): New function, provided by Jonathan
1925         Blandford.
1926         (update_appearance): Set the sensitivity of the folder combo.
1927         (shortcuts_activate_iter): New helper function; code moved from
1928         shortcuts_row_activated_cb().
1929         (shortcuts_activate_item): New helper function.
1930         (shortcuts_row_activated_cb): Use shortcuts_activate_iter().
1931         (ShortcutsIndex): Renamed SHORTCUTS_SEPARATOR to
1932         SHORTCUTS_BOOKMARKS_SEPARATOR.
1933         (struct _GtkFileChooserDefault): New field shortcuts_current_folder_active.
1934         (shortcuts_insert_separator): Add a position argument.
1935         (shortcuts_get_index): Handle the SHORTCUTS_CURRENT_FOLDER_SEPARATOR 
1936         and SHORTCUTS_CURRENT_FOLDER positions.
1937         (shortcut_exists): Ignore the current folder row.
1938         (struct _GtkFileChooserDefault): New field shortcuts_filter_model.
1939         (shortcuts_model_create): Create a filter model for the shortcuts list.
1940         (shortcuts_list_create): Set the model to the shortcuts_filter_model.
1941         (remove_bookmark_button_clicked_cb): Use the shortcuts_filter_model.
1942         (bookmarks_check_remove_sensitivity): Likewise.
1943         (shortcuts_row_activated_cb): Likewise.
1944         (gtk_file_chooser_default_set_current_folder): New function.
1945         (gtk_file_chooser_default_set_current_folder): Update the current
1946         folder row in the shortcuts list.
1947
1948         * gtk/gtkfilechooserwidget.c
1949         (gtk_file_chooser_widget_constructor): Cast correctly for
1950         _gtk_file_chooser_embed_set_delegate().
1951
1952 Mon Mar  1 19:30:25 2004  Owen Taylor  <otaylor@redhat.com>
1953
1954         * gtk/gtkdnd.[ch]: Add gtk_drag_source_set/get_target_list().
1955         (#127499, based on patch from Michael Natterer)
1956
1957         * tests/testgtk.c: Fix bidi strings to display correctly
1958         with new auto-bidi.
1959
1960 Tue Mar  2 01:34:40 2004  Matthias Clasen  <maclas@gmx.de>
1961
1962         * gtk/gtksettings.c: Remove the include of Xft.h, which is already
1963         dragged in via pangoxft.h.  (#135496, David Hawthorne)
1964
1965 Mon Mar  1 23:52:15 2004  Tim Janik  <timj@gtk.org>
1966
1967         * gtk/gtkbindings.[hc]: expose gtk_bindings_activate_event(), changed
1968         callers.
1969
1970         * gtk/gtkwindow.[hc]: added gtk_window_propagate_key_event() to expose
1971         the key event propagation mechanism used for focus widgets.
1972         (gtk_window_key_release_event): use the same key event propagation logic
1973         as gtk_window_key_press_event().
1974
1975 2004-03-01  Simon Budig  <simon@gimp.org>
1976
1977         * gdk/x11/gdkinput-x11.c: X11 R6.4 specifies 15 events
1978         for the XInput extension. We want to see them all.
1979         We now get Proximity Out events again. Fixes bug #135320.
1980
1981 Tue Mar  2 00:47:21 2004  Matthias Clasen  <maclas@gmx.de>
1982
1983         * gtk/gtkimmodule.c (match_locale): Use case-insensitive
1984         comparison. Fixes XIM module loading on AIX.  (#131277)
1985
1986 Mon Mar  1 23:59:18 2004  Matthias Clasen  <maclas@gmx.de>
1987
1988         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_deleted): 
1989         Make it work correctly when the child model is cleared 
1990         completely. (#121633)
1991
1992 2004-03-01  Michael Natterer  <mitch@gimp.org>
1993
1994         * gtk/gtkfilechooserwidget.h: removed accidentially committed char
1995         which broke the build.
1996
1997 Mon Mar  1 16:51:21 2004  Jonathan Blandford  <jrb@redhat.com>
1998
1999         * gtk/gtkfilechooserdialog.c
2000         (file_chooser_widget_default_size_changed): only store the size if
2001         we can resize in that direction.
2002
2003 Mon Mar  1 16:32:52 2004  Jonathan Blandford  <jrb@redhat.com>
2004
2005         * gtk/gtkfilechooserwidget.c
2006         (gtk_file_chooser_widget_new_with_backend): new function.  Long
2007         name.
2008
2009 2004-03-01  Morten Welinder  <terra@gnome.org>
2010
2011         * gtk/gtkfilesystemunix.c (filename_get_info): Only stat when
2012         needed.
2013
2014         * gtk/gtkfilesystemmodel.c (file_model_node_is_visible): Simplify
2015         semantics and check for errors.
2016
2017         * gtk/gtkpathbar.c (gtk_path_bar_set_path): Propagate errors.
2018
2019         * gtk/gtkfilefilter.c (gtk_file_filter_filter): Don't crash if
2020         display_name is NULL.
2021
2022 Mon Mar  1 14:16:52 2004  Owen Taylor  <otaylor@redhat.com>
2023
2024         Based on patch by Alex Larsson
2025
2026         * gtk/gtkfilechooserdefault.c: Use gtk-file-chooser-backend
2027         GtkSetting to set the backend if the app doesn't specify one.
2028
2029         * gdk/x11/gdkevents-x11.c gtk/gtksettings.c:
2030         Add Gtk/FileChooserBackend.
2031
2032 Mon Mar  1 20:32:06 2004  Tim Janik  <timj@gtk.org>
2033
2034         * autogen.sh:
2035         - exit with $? instead of 1 in case of failure
2036         - exit with $? if ./configure failed
2037           (that's so autogen.sh && make lines work)
2038         - removed --enable-gtk-doc option
2039         - added $AUTOGEN_CONFIGURE_ARGS
2040
2041 2004-03-01  Federico Mena Quintero  <federico@ximian.com>
2042
2043         * gtk/gtkfilechooserdefault.c (list_model_filter_func): Test for
2044         filter_info.uri correctly.  Fixes #135379, pointed out by Damon
2045         Chaplin.
2046         (shortcuts_get_index): Compute the bookmarks index correctly.
2047         Fixes #135714, pointed out by Damon Chaplin.
2048         (gtk_file_chooser_default_list_shortcut_folders): Handle the case
2049         with no shortcuts, and don't run off the end of the list if there
2050         are no bookmarks and their separator.  Fixes #135572, patch by
2051         Damon Chaplin.
2052
2053 Mon Mar  1 12:23:06 2004  Owen Taylor  <otaylor@redhat.com>
2054
2055         * gtk/gtklabel.c: Handle dynamically resolved bidi direction
2056         when drawing the cursor. (#118541)
2057
2058         * gtk/gtkentry.c (get_better_cursor_x): Use entry->resolved_dir;
2059
2060         * gtk/gtkentry.c (draw_insertion_cursor): Fix up
2061         some confusion in parameter ordering.
2062
2063 Mon Mar  1 12:05:54 2004  Jonathan Blandford  <jrb@redhat.com>
2064
2065         * gtk/gtkfilechooserdialog.c
2066         (file_chooser_widget_resizable_hints_changed): Handle
2067         shrinking/growing.
2068
2069 2004-03-01  Michael Natterer  <mitch@gimp.org>
2070
2071         * gtk/gtktextbtree.c: removed underscores from calls to
2072         gtk_text_btree_resolve_bidi().
2073
2074 Mon Mar  1 10:41:27 2004  Owen Taylor  <otaylor@redhat.com>
2075
2076         Patch from Dov Grobgeld to implement auto-bidi-direction
2077         for GtkTextView (#118543)
2078
2079         * gtk/gtktextbtree.[ch]: Resolve bidi base direction
2080         for each line by propagating backwards/forwards as
2081         necessary.
2082
2083         * gtk/gtktextlayout.[ch] gtk/gtktextview.c: Set the 
2084         bidi base direction for the ;ine with the cursor from 
2085         the keyboard direction. Add gtk_text_layout_set_keyboard_direction().
2086         
2087 Mon Mar  1 10:31:11 2004  Owen Taylor  <otaylor@redhat.com>
2088
2089         * gtk/gtkentry.[ch]: Implement auto-bidi-direction,
2090         based on a patch from Dov Grobgeld. (#118540)
2091
2092 Sun Feb 29 22:01:49 2004  Owen Taylor  <otaylor@redhat.com>
2093
2094         * gtk/gtkentry.[ch]: Add gtk_entry_set_alignment() 
2095         to allow right-aligned entries and a "xalign" 
2096         property. (#59799, patch from Egon Andersen and 
2097         Steffen Gutmann)
2098
2099         * gtk/gtkmisc.c (gtk_misc_class_init): Use improved
2100         xalign property description here too.
2101
2102         * tests/testtext.c: UNDERLINE_ERROR test addition
2103         from Nicolas Settons' patch.
2104
2105 Sun Feb 29 20:34:06 2004  Owen Taylor  <otaylor@redhat.com>
2106
2107         * gtk/gtkwindow.[ch] gtk/gtkmenushell.c: export
2108         gtk_window_activate_key() (Request from Tim Janik)
2109
2110 Mon Mar  1 01:00:11 2004  Matthias Clasen  <maclas@gmx.de>
2111
2112         * gtk/gtktextview.c (gtk_text_view_drag_data_received): 
2113         Make DND operations within a buffer move the dragged 
2114         text instead of copying it; also make DND operations 
2115         a single user action for undo purposes.  (#135191, 
2116         #93139, reported by Tommi Komulainen, patch by Paolo Borelli
2117         and Paolo Maggi)
2118
2119 Mon Mar  1 00:51:11 2004  Matthias Clasen  <maclas@gmx.de>
2120
2121         * NEWS: News for 2.3.5.
2122
2123 Sun Feb 29 23:25:35 2004  Matthias Clasen  <maclas@gmx.de>
2124
2125         * gtk/gtkentry.c (gtk_entry_completion_key_press): 
2126         Fix the Shift-Tab support to go backwards.
2127
2128 Sun Feb 29 16:40:40 2004  Owen Taylor  <otaylor@redhat.com>
2129
2130         * gtk/gtktextview.c (gtk_text_view_class_init): Fix 
2131         capitalization to match other style properties.
2132
2133 Sun Feb 29 16:38:53 2004  Owen Taylor  <otaylor@redhat.com>
2134
2135         * gtk/gtktextview.c (gtk_text_view_class_init): Fix a
2136         typo in property string.
2137
2138 Sun Feb 29 16:35:23 2004  Owen Taylor  <otaylor@redhat.com>
2139
2140         * gdk/gdkpango.c gtk/gtktextdisplay.c: Implement
2141         PANGO_UNDERLINE_ERROR (Based on a patch by
2142         Nicolas Setton, #114237)
2143
2144         * gtk/gtktextview.c: Add a error-underline-color style
2145         property.
2146
2147 Sun Feb 29 19:04:33 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2148
2149         * gtk/gtkrange.c (_gtk_range_get_wheel_delta): New internal
2150         function returning a good step value for the mouse wheel. For
2151         scrollbars, base the step on page_size^(2/3), for other ranges,
2152         use 2 * step_increment.
2153
2154         * gtk/gtkrange.c (gtk_range_scroll_event): Use it here ...
2155
2156         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_scroll_event): 
2157         ... and here.
2158
2159         * gtk/gtkmenu.c (gtk_menu_leave_notify): Fix a warning.
2160
2161 Sun Feb 29 01:51:27 2004  Jonathan Blandford  <jrb@gnome.org>
2162
2163         * gtk/gtkfilechooserembed.c
2164         (_gtk_file_chooser_embed_get_default_size):  Add g_return_if_fail()
2165         (_gtk_file_chooser_embed_get_resizable_hints): Add g_return_if_fail()
2166
2167         * gtk/gtkfilechooserdialog.c
2168         (file_chooser_widget_default_size_changed): Get the correct
2169         initial size for the dialog.  Also, don't bother with
2170         gtk_window_set_default_size().  It's not really meaningful.
2171
2172         * gtk/gtkfilechooserdefault.c
2173         (gtk_file_chooser_default_get_default_size): Get the correct
2174         spacing for the preview_widget
2175         (update_preview_widget_visibility): Clear widget field after we
2176         destroy it.
2177
2178 2004-02-29  Federico Mena Quintero  <federico@ximian.com>
2179
2180         * gtk/gtkfilechooserdefault.c
2181         (gtk_file_chooser_default_set_property): Handle
2182         GTK_FILE_CHOOSER_PROP_USE_PREVIEW_LABEL.
2183         (gtk_file_chooser_default_get_property): Likewise.
2184         (struct _GtkFileChooserDefault): Added fields for preview_label,
2185         use_preview_label, preview_display_name, preview_box.  Removed
2186         preview_frame.
2187         (set_preview_widget): Reorder the widget in relation to the label.
2188         (update_preview_widget_visibility): Create or destroy the preview
2189         label.
2190         (check_preview_change): Update impl->preview_display_name and the
2191         label.
2192         (find_good_size_from_style): Use the preview_box.
2193         (gtk_file_chooser_default_finalize): Free
2194         impl->preview_display_name.
2195         (gtk_file_chooser_default_init): Initialize
2196         impl->use_preview_label.
2197
2198         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Add a
2199         "use-preview-label" property.
2200         (gtk_file_chooser_set_use_preview_label): New function.  This sets
2201         whether one wants the file chooser to display a stock label with
2202         the previewed filename.  Apps that do really fancy previews can
2203         turn this off and draw the name themselves.
2204         (gtk_file_chooser_get_use_preview_label): New function.
2205         (gtk_file_chooser_get_preview_widget_active): Documentation fix.
2206
2207         * gtk/gtkfilechooserutils.h (GtkFileChooserProp): Add a
2208         GTK_FILE_CHOOSER_PROP_USE_PREVIEW_LABEL value.
2209
2210         * gtk/gtkfilechooserutils.c
2211         (_gtk_file_chooser_install_properties): Override the
2212         "use-preview-label" property.
2213
2214 Sun Feb 29 04:43:29 2004  Matthias Clasen  <maclas@gmx.de>
2215
2216         * gtk/gtkentry.c (gtk_entry_completion_key_press): Make Tab and
2217         Shift-Tab work when the completion popup is shown.
2218
2219 2004-02-28  Federico Mena Quintero  <federico@ximian.com>
2220
2221         * gtk/gtkfilechooserdefault.c (create_folder_tree): Use "Name" for
2222         the title of the filename column.
2223         (create_file_list): Likewise.
2224
2225 Sun Feb 29 03:31:42 2004  Matthias Clasen  <maclas@gmx.de>
2226
2227         * gtk/gtkentry.c (gtk_entry_completion_key_press): Fix Page_Up 
2228         and Page_Down in the completion popup to move page-wise if we're
2229         scrolling.
2230
2231 2004-02-28  Federico Mena Quintero  <federico@ximian.com>
2232
2233         * gtk/gtkfilechooserdefault.c (set_cell_text_bold_if_folder):
2234         Removed.
2235         (list_name_data_func): Don't call the function above.
2236         (list_mtime_data_func): Likewise.
2237
2238 Sun Feb 29 02:34:35 2004  Matthias Clasen  <maclas@gmx.de>
2239
2240         * gtk/gtkcombobox.c (gtk_combo_box_list_position): New 
2241         function which calculates position and size for the popup in
2242         list mode. Currently it only pushes the popup horizontally 
2243         into the screen.
2244
2245 Sun Feb 29 01:10:09 2004  Matthias Clasen  <maclas@gmx.de>
2246
2247         * gtk/gtkcombobox.c: Implement the previous fix in a better way,
2248         small cleanups.
2249
2250 2004-02-28  Hans Breuer  <hans@breuer.org>
2251
2252         * gtk/gtkfilesystemwin32.c : applied patch from
2253         J. Ali Harlow <ali@juiblex.co.uk>, fixes bug #135641
2254
2255 Sat Feb 28 23:30:36 2004  Matthias Clasen  <maclas@gmx.de>
2256
2257         * gtk/gtkcombobox.c (gtk_combo_box_popup): Actually resize the
2258         popup window before popping up.  (#135651)
2259
2260 Sat Feb 28 23:29:35 2004  Matthias Clasen  <maclas@gmx.de>
2261
2262         * gtk/gtkcombobox.c (gtk_combo_box_class_init): 
2263         * gtk/gtkcombobox.c (gtk_combo_box_init): Override the default
2264         handler for style_set in class_init instead of connecting to
2265         the signal in init. (noticed by Yosh).
2266
2267 Sat Feb 28 14:48:35 2004  Owen Taylor  <otaylor@redhat.com>
2268
2269         * demos/gtk-demo/main.c (read_line): #ifdef HAVE_FLOCKFILE, 
2270         not #ifndef HAVE_FLOCKFILE. (#135642, J. Ali Harlow)
2271
2272 2004-02-28  Hans Breuer  <hans@breuer.org>
2273
2274         * gtk/gtkfilesystemwin32.c : adapt to add -> insert_bookmark
2275         change. Also merged some crossplatform code from 
2276         gtkfilesystemunix.c
2277         * gtk/gtk.def : updated externals
2278
2279         * gtk/makefile.msc.in : added gtkfilechooserembed.obj
2280
2281 2004-02-28  Hans Breuer  <hans@breuer.org>
2282
2283         * gdk/win32/gdkdnd-win32.c : set current_dest_drag to NULL
2284         when destroying, fixes bug #120007. Also removed the mirrored
2285         ref counting for deprecated gdk_drag_context_<ref|unref>()
2286         cause it wasn't reliable anymore anyway.
2287
2288         * gdk/win32/gdkdisplay-win32.c : fix typo, which should
2289         have broken the win32 build for everyone not using msvc
2290
2291         * gdk/win32/gdkevents-win32.c : WM_GETMINAMXINFO ensure not to
2292         return negative values for ptMaxTrackSize, it caused snapping
2293         windows to their minimum size
2294
2295 Sat Feb 28 01:39:01 2004  Matthias Clasen  <maclas@gmx.de>
2296
2297         * gtk/gtkcombobox.c (gtk_combo_box_set_wrap_width): Support
2298         switching back to non-gridded mode.  (#135169)
2299
2300 Fri Feb 27 22:29:46 2004  Matthias Clasen  <maclas@gmx.de>
2301
2302         * gtk/gtkwidget.c (gtk_widget_can_activate_accel): Add "Since: 2.4".
2303
2304 Fri Feb 27 18:52:19 2004  Jonathan Blandford  <jrb@redhat.com>
2305
2306         * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_style_set):
2307         Whoops.  Didn't mean to commit the size change.
2308
2309 Fri Feb 27 18:46:27 2004  Jonathan Blandford  <jrb@redhat.com>
2310
2311         * gtk/gtkfilechooserembed.h: New private interface to help
2312         negotiate the default size of the widget.  Still a bit buggy, but
2313         better than the old behavior.
2314
2315         * gtk/gtkfilechooserdefault.c: Implement the embed interface.
2316
2317         * gtk/gtkfilechooserwidget.c: Proxy the embed interface.
2318
2319         * gtk/gtkfilechooserdialog.c: Use the embed interface.
2320
2321 2004-02-27  Federico Mena Quintero  <federico@ximian.com>
2322
2323         * gtk/gtkfilesystem.c (gtk_file_system_insert_bookmark): Added a
2324         "position" argument.
2325
2326         * gtk/gtkfilesystem.h (GtkFileSystemError): Added value for 
2327         GTK_FILE_SYSTEM_ERROR_ALREADY_EXISTS.
2328         (struct _GtkFileSystemIface): Added a "position" argument to the
2329         ::insert_bookmark() method.
2330
2331         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_insert_bookmark):
2332         Updated; renamed from gtk_file_system_unix_add_bookmark().  Return
2333         an error if the path already exists in the bookmarks list.
2334         (gtk_file_system_unix_remove_bookmark): Return an error if the
2335         path does not exist in the bookmarks list.
2336
2337         * gtk/gtkfilechooserdefault.c (shortcuts_add_bookmark_from_path):
2338         For now, use gtk_file_system_insert_bookmark() with -1 for the
2339         position.  DnD will come next.
2340
2341 Fri Feb 27 21:42:28 2004  Matthias Clasen  <maclas@gmx.de>
2342
2343         * gtk/gtkcombobox.c (gtk_combo_box_relayout): 
2344         * gtk/gtkcombobox.c (gtk_combo_box_style_set): Simplify, only 
2345         create a new setup if appearance actually changed.
2346         * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_clear): 
2347         * gtk/gtkcombobox.c (gtk_combo_box_get_cell_info): Make 
2348         these more robust.  (#127623, Damon Chaplin)
2349
2350 Fri Feb 27 15:06:00 2004  Jonathan Blandford  <jrb@redhat.com>
2351
2352         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): remove
2353         folder-mode property.
2354
2355         * gtk/gtkfilechooserutils.c
2356         (_gtk_file_chooser_install_properties): remove FOLDER_MODE property.
2357
2358 Thu Feb 26 17:38:40 2004  Manish Singh  <yosh@gimp.org>
2359
2360         * gtk/gtkcombobox.c: Add function declaration for
2361         gtk_combo_box_list_remove_grabs().
2362
2363 Fri Feb 27 02:33:21 2004  Matthias Clasen  <maclas@gmx.de>
2364
2365         * gtk/gtkentry.c (keyval_is_cursor_move): Classifiy Page Up/Down as
2366         cursor move, but not Home and End.
2367
2368         * gtk/gtkentry.c (gtk_entry_completion_key_press): Lets Page Up/Down
2369         jump to the ends of the list, not Home and End - since we're not 
2370         scrolling yet, a "page" is always the complete list.  (#127430, Marco
2371         Pesenti Gritti)
2372
2373 Fri Feb 27 00:39:11 2004  Matthias Clasen  <maclas@gmx.de>
2374
2375         * gtk/gtkcombobox.c (gtk_combo_box_list_destroy): 
2376         * gtk/gtkcombobox.c (gtk_combo_box_menu_destroy): Don't let
2377         the priv pointers dangle.  (#127623, Damon Chaplin)
2378
2379 Thu Feb 26 17:31:34 2004  Manish Singh  <yosh@gimp.org>
2380
2381         * gdk/x11/xsettings-client.c (read_settings): fix ytpo: s/eles/else/
2382
2383 Thu Feb 26 19:53:32 2004  Owen Taylor  <otaylor@redhat.com>
2384
2385         * gdk/x11/xsettings-common.h (xsettings_client_process_event): 
2386         Add xsettings_client_set_grab_func,
2387         Add xsettings_client_set_ungrab_func to the list of renames.
2388
2389 Thu Feb 26 19:48:39 2004  Owen Taylor  <otaylor@redhat.com>
2390
2391         * gdk/x11/xsettings-client.c (read_settings): Fix memory leak
2392         in case of mismatched property type.
2393
2394 Thu Feb 26 18:25:57 2004  Jonathan Blandford  <jrb@gnome.org>
2395
2396         * gtk/gtkfilechooser.h (GtkFileChooserAction): Add two more folder
2397         modes to the enum.
2398
2399         * gtk/gtkfilechooser.c (gtk_file_chooser_set_folder_mode): Remove.
2400         (gtk_file_chooser_get_folder_mode): Remove
2401
2402 Thu Feb 26 17:29:04 2004  Owen Taylor  <otaylor@redhat.com>
2403
2404         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter): Return
2405         GDK_FILTER_CONTINUE for unhandled message types.
2406
2407         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Allow
2408         multiple filters for the same event type with the standard
2409         "GDK_FILTER_CONTINUE == pretend I wasn't here" semantics.
2410
2411         * gdk/x11/gdkevents-x11.c (gdk_display_add_client_message_filter):
2412         Append to the filter list not prepend, since order now matters.
2413
2414         * gdk/win32/gdkevents-win32.c (gdk_add_client_message_filter): 
2415         Append to the filter list not prepend, since order now matters.
2416         
2417 Thu Feb 26 23:39:07 2004  Matthias Clasen  <maclas@gmx.de>
2418
2419         Fixes for #135333, analysed by Damon Chaplin:
2420         
2421         * gtk/gtkcombobox.c (gtk_combo_box_list_button_pressed): Don't
2422         grab here.
2423         * gtk/gtkcombobox.c (gtk_combo_box_popup): Do the grabs here, 
2424         so that we don't forget to grab when the menu is popped via
2425         keynav.
2426         * gtk/gtkcombobox.c (gtk_combo_box_list_button_released): Don't
2427         ungrab here.
2428         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Do the ungrabs here.
2429
2430 Thu Feb 26 23:26:00 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2431
2432         * gtk/gtkstatusbar.c (set_grip_cursor): New function. Use resize
2433         cursors for resize grips. (Bug #129621)
2434
2435         * gtk/gtktoolbar.c (gtk_toolbar_get_relief_style): Documentation
2436         fix - patch by Torsten Schoenfeld.
2437
2438         * gtk/gtkmenubar.c (gtk_menu_bar_size_request): don't request
2439         space between the items. (Bug #110775)
2440
2441         * gtk/gtkrc.c (_gtk_rc_init): Provide extra horizontal padding
2442         inside menu items that are inside a menu bar. (Bug #110775)
2443         
2444         * configure.in (HAVE_XCURSOR): Make XCurosr part of GDK_EXTRA_,
2445         not GDK_PACKAGES, to prevent applications from getting linked to
2446         it (Bug #119804)
2447
2448         * gtk/gtkmenubar.c (gtk_menu_bar_size_allocate): Put the vertical
2449         ipadding inside the item. (Bug #61843)
2450
2451 Thu Feb 26 22:56:40 2004  Matthias Clasen  <maclas@gmx.de>
2452
2453         * gtk/gtkwidget.c: Replace gtk_widget_get_mnemonic_widgets() 
2454         by list_mnemonic_widgets() in doc comments as well.
2455
2456 Thu Feb 26 16:36:38 2004  Owen Taylor  <otaylor@redhat.com>
2457
2458         Fixes from Torsten Schoenfeld.
2459
2460         * gtk/gtkwidget.c (gtk_widget_add_mnemonic_label): 
2461         Fix name in doc comment.
2462
2463         * gtk/gtkwidget.h: gtk_widget_list_mnemonic_labels(),
2464         not get_mnemonic_labels.
2465
2466 Thu Feb 26 22:20:44 2004  Matthias Clasen  <maclas@gmx.de>
2467
2468         * gtk/gtkcomboboxentry.h:
2469         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_new_text): New
2470         convenience API to construct simple text combos, implemented by
2471         Damon Chaplin.
2472
2473         * tests/testcombo.c: Use gtk_combo_box_entry_new_text.
2474
2475 Thu Feb 26 22:19:29 2004  Matthias Clasen  <maclas@gmx.de>
2476
2477         * gtk/gtkcombobox.c (gtk_combo_box_new_text): Improve the docs.
2478
2479 Thu Feb 26 15:43:43 2004  Owen Taylor  <otaylor@redhat.com>
2480
2481         * gtk/gtkstyle.[ch]: Export insertion cursor drawing functionality
2482         in a simplified form as gtk_draw_insertion_cursor().
2483         (#99031, request from Alex Larsson)
2484
2485         * gtk/gtktextdisplay.c gtk/gtkentry.c gtk/gtklabel.c:
2486         Adapt to new gtk_draw_insertion_cursor().
2487
2488         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_class_init)
2489         gtk/gtkstyle.c (gtk_style_class_init): Add some missed
2490         Since: 2.4.
2491
2492         * gtk/gtkiconfactory.c (icon_size_settings_changed)
2493           gtk/gtkicontheme.c (do_theme_change)
2494           gtk/gtkrc.c (_gtk_rc_context_get_default_font_name)
2495         * gtk/gtksettings.c (gtk_settings_notify):
2496         _gtk_rc_reset_styles => gtk_rc_reset_styles.
2497
2498 Thu Feb 26 21:52:58 2004  Matthias Clasen  <maclas@gmx.de>
2499
2500         Fixes for #127804 and #134722, Damon Chaplin:
2501         
2502         * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_end): 
2503         * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_start): 
2504         Ref and sink the cell renderers here.
2505         
2506         * gtk/gtkcombobox.c (gtk_combo_box_finalize): Unref the cell
2507         renderers here, and free attributes and func_data. 
2508
2509 Thu Feb 26 21:41:38 2004  Matthias Clasen  <maclas@gmx.de>
2510
2511         * gtk/gtkrc.c (gtk_rc_reset_styles): Mark as 2.4 API addition.
2512
2513 Thu Feb 26 14:47:22 2004  Dom Lachowicz <cinamod@hotmail.com>
2514
2515         * gtk/gtk.def: Export gtk_rc_reset_styles()
2516
2517 Thu Feb 26 14:47:22 2004  Owen Taylor  <otaylor@redhat.com>
2518
2519         * gtk/gtkrc.[ch]: Export gtk_rc_reset_styles(). 
2520         (Request from Dom Lachowicz, #123769)
2521
2522 Wed Feb 25 19:11:31 2004  Owen Taylor  <otaylor@redhat.com>
2523
2524         * gtk/gtkradiobutton.[ch] gtk/gtkradiomenuitem.[ch]: Add a
2525         ::group-changed signal emitted when the radio button/menu item 
2526         is moved from one group of radio buttons to another. 
2527         (#79563, based partially on a patch from Padraig O'Briain)
2528
2529 Thu Feb 26 13:23:47 2004  Owen Taylor  <otaylor@redhat.com>
2530
2531         * gdk/x11/gdkwindow-x11.c (set_text_property): Use the right
2532         free() function. (#135511, George Bronnikov)
2533
2534 2004-02-26  Federico Mena Quintero  <federico@ximian.com>
2535
2536         * configure.in: Added a comment to inform translators that they
2537         must add .po files to both po/ and po-properties/ when they add
2538         new languages to ALL_LINGUAS.
2539
2540 Wed Feb 25 15:36:50 2004  Owen Taylor  <otaylor@redhat.com>
2541
2542         * gdk/x11/gdkselection-x11.c (gdk_utf8_to_compound_text_for_display):
2543         Call g_convert(), not g_convert() with fallback, since Emacs is
2544         happier if we reject the COMPOUND_TEXT request and it can
2545         then ask for UTF-8. (#114527)
2546
2547         * gtk/gtkselection.c (gtk_selection_data_set_text): When
2548         TEXT is requested, if COMPOUND_TEXT fails, fall back to STRING.
2549
2550 Wed Feb 25 22:35:00 2004  Tomasz KÅ‚oczko <kloczek@pld.org.pl>
2551
2552         * cinfigure.in: After changes in G_DEFINE_TYPE minimal required glib
2553         vesion for build gtk+ is now 2.3.3.
2554
2555 Wed Feb 25 16:00:40 2004  Jonathan Blandford  <jrb@gnome.org>
2556
2557         * gtk/gtkfilechooserdefault.c (update_appearance): move the
2558         expander code.
2559
2560 2004-02-25  Danilo Å egan  <dsegan@gmx.net>
2561
2562         * configure.in (ALL_LINGUAS): po-properties/sr@ije.po added, so
2563         adding back sr@ije.
2564
2565 2004-02-25  Federico Mena Quintero  <federico@ximian.com>
2566
2567         * configure.in (ALL_LINGUAS): Remove sr@ije until po-properties/
2568         is fixed for it.
2569
2570 Wed Feb 25 12:44:49 2004  Owen Taylor  <otaylor@redhat.com>
2571
2572         * gtk/gtkstyle.[ch]: Make realize and unrealize signals. (#73310)
2573
2574 Wed Feb 25 12:21:32 2004  Owen Taylor  <otaylor@redhat.com>
2575
2576         * gtk/gtkwidget.[ch] gtk/gtklabel.c: Patch from
2577         Padraig O'Briain to add gtk_widget_add/remove_mnemonic_label,
2578         gtk_widget_get_mnemonic_labels(). (#103456)
2579
2580 2004-02-25  Danilo Å egan  <dsegan@gmx.net>
2581
2582         * configure.in: Added sr@ije to ALL_LINGUAS.
2583
2584 Wed Feb 25 09:46:34 2004  Owen Taylor  <otaylor@redhat.com>
2585
2586         * gtk/gtkstyle.c (gtk_style_finalize): Free 
2587         style->icon_factories (#130128)
2588
2589 Wed Feb 25 03:52:58 2004  Jonathan Blandford  <jrb@gnome.org>
2590
2591         * gtk/gtkpathbar.c: use gtk_widget_push/pop_composite_child around
2592         internal buttons.
2593
2594         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault):
2595         rename some widgets to make it clear where they are packed.
2596         (update_appearance): New function to handle all the 'logic' of
2597         layout in one place.  We aren't trying to keep all our properties
2598         in sync.
2599         (gtk_file_chooser_default_set_property): use update_appearance()
2600
2601 2004-02-24  Federico Mena Quintero  <federico@ximian.com>
2602
2603         * gtk/gtkfilechooserdefault.c (shortcuts_model_create): Renamed
2604         from create_shortcuts_model().
2605         (struct _GtkFileChooserDefault): Renamed the shortcuts_tree field
2606         to shortcuts_list.
2607         (shortcuts_list_create): Renamed from shortcuts_tree_create().
2608         (create_file_list): Enable the tree view as a model drag source.
2609         (create_folder_tree): Likewise.
2610
2611         * gtk/gtkfilesystemmodel.c (_gtk_file_system_model_get_type):
2612         Register the drag source interface.
2613         (drag_source_iface_init): New function.
2614         (drag_source_row_draggable): New function.
2615         (drag_source_drag_data_get): New function.
2616
2617 Tue Feb 24 19:12:07 2004  Owen Taylor  <otaylor@redhat.com>
2618
2619         * === Released 2.3.4 ===
2620
2621         * configure.in: Bump version to 2.3.4, fix broken
2622         gtk_binary_age value by copying the GLib logic
2623         to automatically set it to the right values.
2624
2625 Wed Feb 25 00:13:24 2004  Matthias Clasen  <maclas@gmx.de>
2626
2627         * gtk/gtkcombobox.c (gtk_combo_box_menu_row_changed): 
2628         * gtk/gtkcombobox.c (gtk_combo_box_list_row_changed): 
2629         Don't resize priv->cell_view if it is NULL.  (#127804, 
2630         Damon Chaplin)
2631         
2632 Wed Feb 25 00:06:50 2004  Matthias Clasen  <maclas@gmx.de>
2633
2634         * gtk/gtkcombobox.c: Add a comment about the different 
2635         modi of this widget. Get rid of priv->hbox, and some other
2636         cleanups. Make sure that gtk_combo_box_unset_model() is 
2637         always called before setting up a different mode. 
2638
2639 Tue Feb 24 17:51:49 2004  Owen Taylor  <otaylor@redhat.com>
2640
2641         * gtk/gtkaccellabel.c (gtk_accel_label_refetch): Convert
2642         underscores in keyval names to spaces. (#131480)
2643
2644 Tue Feb 24 17:35:59 2004  Owen Taylor  <otaylor@redhat.com>
2645
2646         * m4macros/gtk-2.0.m4: Add some quotes around ***. (#130073,
2647         Uwe Zeisberger)
2648
2649 Tue Feb 24 14:45:03 2004  Owen Taylor  <otaylor@redhat.com>
2650
2651         * === Released 2.3.3 ===
2652
2653         * configure.in: Version 2.3.3, interface age 0.
2654
2655         * NEWS: Finish updates for 2.3.3.
2656
2657 2004-02-24  Federico Mena Quintero  <federico@ximian.com>
2658
2659         * gtk/gtkfilechooserdefault.c (save_widgets_create): Use a plain
2660         GtkEntry for the filename, not a GtkFileChooserEntry.
2661         (update_chooser_entry): Use gtk_entry_set_text() rather than
2662         _gtk_file_chooser_entry_set_file_part().
2663         (gtk_file_chooser_default_set_current_name): Likewise.
2664         (gtk_file_chooser_default_set_current_folder): Don't set the base
2665         folder of the entry, and don't call update_chooser_entry().
2666         (gtk_file_chooser_default_get_paths): Use the plain entry.
2667         (save_widgets_create): Store the "Save in Folder" label in the
2668         impl structure.
2669         (expander_activate_cb): Set the sensitivity of the label and
2670         combo.
2671         (save_widgets_create): Connect to "notify::expanded" rather than
2672         "activate" on the expander.
2673         (expander_changed_cb): Renamed from expander_activate_cb().  Flip
2674         the conditions again...
2675
2676 Tue Feb 24 14:43:07 2004  Jonathan Blandford  <jrb@gnome.org>
2677
2678         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): only draw the sort
2679         column as different if there are 3 or more visible columns.
2680
2681 2004-02-24  Anders Carlsson  <andersca@gnome.org>
2682
2683         * gtk/gtkfilechooserdefault.c: (shortcuts_insert_separator):
2684         Fix compilation (#135278, Padraig O'Briain).
2685         
2686 2004-02-24  Anders Carlsson  <andersca@gnome.org>
2687
2688         * gtk/gtkfilechooserdefault.c: (shortcuts_append_desktop):
2689         Translate the desktop label.
2690         
2691         (shortcuts_get_index), (shortcuts_add_bookmarks),
2692         (shortcuts_insert_separator), (create_shortcuts_model):
2693         Don't show the bookmark separator if there are no bookmarks.
2694         
2695 Tue Feb 24 01:41:30 2004  Jonathan Blandford  <jrb@gnome.org>
2696
2697         * gtk/gtkfilechooserdefault.c (location_popup_handler): Make the
2698         dialog look like the nautilus dialog.
2699         (expander_activate_cb): get the order correct.
2700
2701 2004-02-23  Federico Mena Quintero  <federico@ximian.com>
2702
2703         * gtk/gtkfilechooserdefault.c (list_selection_changed): Call
2704         bookmarks_check_add_sensitivity().
2705         (shortcut_exists): New helper function; moved the testing code
2706         over from bookmarks_check_add_sensitivity().
2707         (bookmarks_check_add_sensitivity): Check the contents of the
2708         selection in the file/folder list.  Use shortcut_exists().
2709         (shortcuts_add_bookmark_from_path): Don't insert the bookmark if
2710         the path is already in the shortcuts list.
2711         (add_bookmark_button_clicked_cb): Add the bookmarks from the list
2712         selection or from the current folder, as appropriate.
2713
2714 Mon Feb 23 21:09:06 2004  Jonathan Blandford  <jrb@gnome.org>
2715
2716         * gtk/gtkfilechooserdefault.c (shortcuts_pane_create): Add
2717         mnemonics.  Sorry translators.
2718
2719 Tue Feb 24 02:24:58 2004  Matthias Clasen  <maclas@gmx.de>
2720
2721         * NEWS: Additions. This should be complete for the main ChangeLog
2722         now, still need to sift through gdk-pixbuf, docs, and translations.
2723
2724 Mon Feb 23 19:57:45 2004  Jonathan Blandford  <jrb@gnome.org>
2725
2726         * gtk/gtkcellrendererseptext.c (gtk_cell_renderer_sep_get_size):
2727         Add a get_size implementation so that we are no longer the same
2728         height as text.
2729
2730 2004-02-24  Anders Carlsson  <andersca@gnome.org>
2731
2732         * gtk/gtkfilechooserdefault.c: (shortcuts_insert_path),
2733         (shortcuts_remove_rows), (shortcuts_append_bookmarks),
2734         (create_shortcuts_model), (shortcuts_tree_create),
2735         (gtk_file_chooser_default_remove_shortcut_folder):
2736         Improve bookmark list rendering by controlling the visibility
2737         of the pixbuf cell so that it will be invisible for the separator
2738         row, also use a list store instead of a tree store for the model
2739         so we won't get unnecessary space for an expander.
2740         
2741 Tue Feb 24 01:08:27 2004  Matthias Clasen  <maclas@gmx.de>
2742
2743         * gtk/gtkcombobox.c: Add a destroy implementation in order to
2744         set priv->cell_view to NULL before finalize stumbles over the 
2745         dangling pointer. This big array of pointers into the widget 
2746         tree in GtkComboBoxPrivate is really fragile and should be
2747         cleaned up.
2748
2749 Mon Feb 23 17:52:43 2004  Jonathan Blandford  <jrb@gnome.org>
2750
2751         * gtk/gtkfilechooserdefault.c (main_paned_create): use a size
2752         group when allocating space for the buttons at the bottom just in
2753         case.  Also, move the filter to below the file list.
2754
2755 Mon Feb 23 16:52:12 2004  Jonathan Blandford  <jrb@gnome.org>
2756
2757         * gtk/gtkfilechooserdefault.c
2758         (gtk_file_chooser_default_class_init): Seth was confused by
2759         keybindings.  They should be Alt, not Ctl.  Also, A-Home should go
2760         home, not up.
2761
2762 Mon Feb 23 15:23:23 2004  Jonathan Blandford  <jrb@gnome.org>
2763
2764         * gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit
2765         more cleanly.
2766
2767         * gtk/gtkpathbar.h (struct _GtkPathBarClass): fix the signal.
2768
2769 2004-02-23  Federico Mena Quintero  <federico@ximian.com>
2770
2771         Rework the user interface of the file chooser, as per 
2772         Seth Nickell's design.
2773
2774         * gtk/gtkfilechooserdefault.c
2775         (gtk_file_chooser_default_class_init): Add binding signals and bindings:
2776                 "location-popup" - C-l
2777                 "up-folder"      - C-Up
2778                 "home-folder"    - C-Home
2779         (up_folder_handler): New function; moved the code from up_button_clicked().
2780         (up_button_clicked_cb): Call up_folder_handler().
2781         (home_folder_handler): New function.
2782         (location_popup_handler): New function.
2783         (struct _GtkFileChooserDefault): Add an hpaned field.
2784         (gtk_file_chooser_default_set_current_name): Check that we are in
2785         Save mode.
2786         (save_widgets_create): New function, create the widgets specific
2787         to Save mode.
2788         (main_paned_create): New function, create the hpaned's widgets here.
2789         (gtk_file_chooser_default_constructor): Create the open and save
2790         widgets, and show only one set.
2791         (gtk_file_chooser_default_set_property): Show/hide the save widgets.
2792         (gtk_file_chooser_default_get_paths): Only pay attention to the
2793         entry in Save mode.
2794         (update_chooser_entry): Update the entry only in Save mode.
2795         (entry_activate): Removed.
2796
2797 Mon Feb 23 11:20:34 2004  Owen Taylor  <otaylor@redhat.com>
2798
2799         * configure.in: Remove the configure.in check for fontconfig 
2800         entirely; it's not needed, since PangoXft implies that sufficiently
2801         new fontconfig is present.
2802
2803 Mon Feb 23 02:26:53 2004  Jonathan Blandford  <jrb@gnome.org>
2804
2805         * gtk/gtkpathbar.c (gtk_path_bar_finalize):
2806         for (i = 0; i < 10; i++)
2807           g_print ("I will compile before committing.\n");
2808
2809 Mon Feb 23 02:08:42 2004  Jonathan Blandford  <jrb@gnome.org>
2810
2811         * gtk/gtkfilechooserdefault.c (file_pane_create): Use the
2812         GtkPathBar by default now.
2813
2814         * gtk/gtkpathbar.c (gtk_path_bar_set_path): Correctly set the
2815         current path from the path.
2816         (gtk_path_bar_class_init): new signal
2817         (button_clicked_cb): emit the signal when we're selected.
2818         (gtk_path_bar_clear_buttons): Fix a crasher when we weren't
2819         clearing thr first_scrolled_button.
2820
2821 Mon Feb 23 02:26:15 2004  Matthias Clasen  <maclas@gmx.de>
2822
2823         * gtk/gtkcombobox.c (gtk_combo_box_size_allocate): Fix the 
2824         allocation for the toggle button so that it actually shows up 
2825         in LTR list mode.
2826
2827         * gtk/gtkcombobox.c (gtk_combo_box_set_column_span_column): 
2828         * gtk/gtkcombobox.c (gtk_combo_box_set_row_span_column): 
2829         * gtk/gtkcombobox.c (gtk_combo_box_set_wrap_width): Add
2830         notification, and avoid excessive relayouting. 
2831
2832 Mon Feb 23 00:38:21 2004  Matthias Clasen  <maclas@gmx.de>
2833
2834         Fix bug 134982, reported by Morten Welinder:
2835         
2836         * gtk/gtkpathbar.c (gtk_path_bar_destroy): 
2837         * gtk/gtktooltips.c (gtk_tooltips_destroy): 
2838         * gtk/gtkinvisible.c (gtk_invisible_destroy): Chain up to the 
2839         parent's ::destroy handler.
2840         
2841         * gdk/gdkdisplay.c (gdk_display_dispose): Chain up to the 
2842         parent's ::dispose handler.
2843
2844 Sat Feb 21 19:09:55 2004  Manish Singh  <yosh@gimp.org>
2845
2846         * gtk/gtksettings.c (gtk_default_substitute): Guard the FC_HINT_STYLE
2847         stuff with an #ifdef, so we still build with most fontconfig versions.
2848
2849 Sun Feb 22 03:03:29 2004  Matthias Clasen  <maclas@gmx.de>
2850
2851         * gtk/gtkaction.c: (gtk_action_finalize):
2852         * gtk/gtkclipboard.c: (gtk_clipboard_finalize):
2853         * gtk/gtkentrycompletion.c: (gtk_entry_completion_class_init),
2854         (gtk_entry_completion_finalize):
2855         * gtk/gtkfilechooserwidget.c: (gtk_file_chooser_widget_finalize):
2856         * gtk/gtkfilesystemmodel.c: (gtk_file_system_model_class_init),
2857         (gtk_file_system_model_finalize):
2858         * gtk/gtkicontheme.c: (gtk_icon_theme_class_init),
2859         (gtk_icon_theme_finalize):
2860         * gtk/gtktextchild.c: (gtk_text_child_anchor_finalize):
2861         * gtk/gtkuimanager.c: (gtk_ui_manager_class_init),
2862         (gtk_ui_manager_finalize):
2863         * modules/input/gtkimcontextxim.c: (gtk_im_context_xim_finalize):
2864         Add chains to the parent's ::finalize() handler  (#134901, Morten Welinder,
2865         patch by Jan Arne Petersen)
2866
2867 Sun Feb 22 02:10:34 2004  Matthias Clasen  <maclas@gmx.de>
2868
2869         * gtk/gtkentrycompletion.c (gtk_entry_completion_default_completion_func): 
2870         Don't crash if item is NULL.  (#131542, Dan Damian)
2871
2872 Sun Feb 22 02:04:03 2004  Matthias Clasen  <maclas@gmx.de>
2873
2874         * configure.in: Add a check for a new enough fontconfig, since
2875         we picked up a direct dependency on it with the Xft settings.
2876
2877 Sun Feb 22 00:23:40 2004  Matthias Clasen  <maclas@gmx.de>
2878
2879         Bug 112647 (Bill Haneman, patch by Narayana Pattipati):
2880         
2881         * gtk/gtkcheckmenuitem.c: Introduce a new style property 
2882         indicator_size and use it instead of the hardcoded value.
2883         
2884         * gtk/gtkmenu.c (gtk_menu_size_request): Make sure each menu 
2885         item gets enough vertical space for the label and the indicator.
2886
2887 Sat Feb 21 20:20:11 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2888
2889         * gtk/gtksettings.c (gtk_settings_class_init): Use P_ instead of
2890         _ for the new Xft settings.
2891
2892 Sat Feb 21 20:09:53 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2893
2894         Bug 130790 (Federico Mena Quintero, Owen Taylor)
2895         
2896         * gdk/x11/gdkevents-x11.c: Add Xft XSETTINGS
2897
2898         * gtk/gtksettings.c: Add new GtkSettings corresponding to the Xft
2899         XSETTINGS
2900         
2901 Sat Feb 21 19:18:26 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2902
2903         Bug 132502
2904         
2905         * gtk/gtkmenu.c (gtk_menu_motion_notify): Make sure we pop down
2906         if we enter a non-selectable menu item.
2907
2908         * gtk/gtkmenu.c (gtk_menu_leave_notify): Don't pop a submenu
2909         when the user has left the item.
2910
2911 Sat Feb 21 17:57:35 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
2912
2913         * gtk/docs: Commit auto-generated changes
2914
2915 Fri Feb 20 18:20:22 2004  Jonathan Blandford  <jrb@gnome.org>
2916
2917         * gtk/gtkfilechooserdefault.c: conditional compile for GtkPathBar
2918
2919         * gtk/gtkpathbar.c (gtk_path_bar_size_allocate): Clean up
2920         allocation code.  Works fully in RTL languages, I think.
2921         (gtk_path_bar_scroll_up): Scroll up.
2922         (gtk_path_bar_scroll_down): Scroll down.
2923
2924 2004-02-20  Christian Rose  <menthos@menthos.com>
2925
2926         * configure.in: Added "en_CA" to ALL_LINGUAS.
2927
2928 2004-02-20  Michael Meeks  <michael@ximian.com>
2929
2930         * gtk/gtktoolitem.c (gtk_tool_item_property_notify): impl.
2931         (gtk_tool_item_class_init): hook it up.
2932         (gtk_tool_item_set_proxy_menu_item): synchronize sensitivity.
2933
2934         * gtk/gtktoolbutton.c (gtk_tool_button_property_notify):
2935         chain to parent, fix strcmp bug.
2936
2937         * tests/testtoolbar.c (main): re-arrange widgets to allow
2938         more overflowing toolbar goodness.
2939
2940 2004-02-20  Alexander Larsson  <alexl@redhat.com>
2941
2942         * gtk/gtkfilechooserdefault.c: (shortcuts_append_desktop):
2943         Desktop directory is not translated.
2944         (set_tree_model):
2945         There might not be volumes for all paths.
2946         * gtk/gtkfilechooserwidget.c:
2947         (gtk_file_chooser_widget_constructor):
2948         Use gtk_file_chooser_set_current_folder to set cwd.
2949
2950 Thu Feb 19 19:58:53 2004  Jonathan Blandford  <jrb@gnome.org>
2951
2952         * gtk/gtkpathbar.[ch]: New widget to handle the path in the
2953         fileselector implementation.  Not hooked up to anything yet.
2954
2955         * gtk/Makefile.am: support the path bar.
2956
2957 Fri Feb 20 00:21:38 2004  Matthias Clasen  <maclas@gmx.de>
2958
2959         * gtk/gtkstyle.c (gtk_default_draw_handle): 
2960         (gtk_default_draw_box): Make the paned handles gray when the the 
2961         widget is_focus() but not HAS_FOCUS().  (#122751, Soeren Sandmann)
2962
2963 Thu Feb 19 23:41:06 2004  Matthias Clasen  <maclas@gmx.de>
2964
2965         Fixes for #82099:
2966         
2967         * gdk/x11/gdkevents-x11.c: Introduce new XSettings "Gtk/ButtonImages"
2968         and "Gtk/MenuImages" and map them to "gtk-button-images" and 
2969         "gtk-menu-images".
2970
2971         * gtk/gtkimagemenuitem.c: Add a boolean setting "gtk-menu-images" and 
2972         use it to set the visibility of the embedded image.
2973
2974         * gtk/gtkbutton.c: Add a boolean setting "gtk-button-images" and use
2975         it to set the visibility of an embedded image.
2976
2977 Thu Feb 19 21:26:10 2004  Matthias Clasen  <maclas@gmx.de>
2978
2979         * gtk/gtkactiongroup.c (gtk_action_group_add_radio_actions_full): 
2980         Give each radio action its own value.  (#134889, Paolo Borelli)
2981
2982 2004-02-19  Federico Mena Quintero  <federico@ximian.com>
2983
2984         * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_finalize):
2985         Chain to the parent's ::finalize() handler.  Fixes #134885; caught
2986         by Jan Arne Petersen.
2987
2988 2004-02-19  Mark McLoughlin  <mark@skynet.ie>
2989
2990         Make the entire expander widget width prelight as suggested
2991         by Seth in bug #134263.
2992
2993         * gtk/gtkexpander.c:
2994         (gtk_expander_paint_prelight): impl.
2995         (gtk_expander_paint): use it.
2996         (gtk_expander_redraw_expander): don't only redraw the
2997         arrow when prelit.
2998
2999 2004-02-19  Alexander Larsson  <alexl@redhat.com>
3000
3001         * gtk/gtkfilechooser.c: (gtk_file_chooser_class_init):
3002         * gtk/gtkfilechooserutils.c:
3003         * gtk/gtkfilechooserutils.h:
3004         * gtk/gtkfilechooserwidget.c:
3005         Remove old file-system property.
3006         Add new file-system-backend string property
3007         
3008         * gtk/gtkfilechooserdefault.[ch]:
3009         Handle the file-system-backend property
3010         
3011         * gtk/gtkfilechooserdialog.[ch]:
3012         (gtk_file_chooser_dialog_new_with_backend):
3013         Remove old file-system property.
3014         Add new file-system-backend string property
3015         Add new function gtk_file_chooser_dialog_new_with_backend
3016         
3017         * gtk/gtkfilesystem.c: 
3018         * gtk/gtkfilesystem.h:
3019         Add filesystem module support.  
3020
3021 2004-02-18  Federico Mena Quintero  <federico@ximian.com>
3022
3023         * gtk/gtkfilechooserdefault.c (shortcuts_tree_create): Renamed
3024         from create_shortcuts_tree().
3025         (shortcuts_pane_create): New function.
3026         (button_new): Renamed from toolbar_button_new().
3027         (shortcuts_pane_create): New function, create the whole shortcuts
3028         pane here.
3029         (current_folder_create): Renamed from toolbar_create().  Don't
3030         create the bookmarks buttons here.
3031         (file_pane_create): New function.
3032         (gtk_file_chooser_default_constructor): Use the new helper
3033         functions, and don't use an extra vbox as GtkFileChooserDefault is
3034         already a vbox.
3035
3036 Thu Feb 19 01:39:30 2004  Matthias Clasen  <maclas@gmx.de>
3037
3038         * gtk/gtkuimanager.h: 
3039         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): Add
3040         default handlers for all signals; for consistency and for the
3041         benefit of language bindings which still rely on header parsing
3042         to find the signals.  (#134269, Jeroen Zwartepoorte)
3043         
3044 Thu Feb 19 00:45:02 2004  Matthias Clasen  <maclas@gmx.de>
3045
3046         * gtk/gtktreeselection.c (gtk_tree_selection_get_selected_rows): 
3047         Improve the efficiency here by prepending on the list and reverting
3048         it after the loop.  (#134435, Christian Biere)
3049
3050 Thu Feb 19 00:32:21 2004  Matthias Clasen  <maclas@gmx.de>
3051
3052         * gtk/gtkplug.c (_gtk_plug_remove_from_socket): Avoid errors when
3053         removing the plug from the socket.  (#128546, Christopher Blizzard)
3054
3055 Thu Feb 19 00:09:35 2004  Matthias Clasen  <maclas@gmx.de>
3056
3057         * gtk/gtkradiomenuitem.h:
3058         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_new_from_widget): 
3059         (gtk_radio_menu_item_new_with_label_from_widget): 
3060         (gtk_radio_menu_item_new_with_mnemonic_from_widget): New
3061         convenience functions analogous to similar API on GtkRadioButton.
3062         (#51700, Vitaly Tishkov, patch by Soeren Sandmann)
3063
3064 Wed Feb 18 17:53:27 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3065
3066         * gdk/gdkwindow.c (gdk_window_get_bg_gc): Use a scratch GC in the
3067         case where the background is a solid color.
3068         (gdk_window_clear_backing_rect): Reset the clip region after use.
3069
3070         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_threshold_alpha): Go
3071         back to using a scratch GC. Pointed out by Owen Taylor
3072         
3073         * gdk/gdkdraw.c (gdk_drawable_real_draw_pixbuf): Only use a
3074         scratch GC if the passed-in one is NULL
3075
3076 Wed Feb 18 14:27:08 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3077
3078         * gdk/gdkwindow.c (gdk_window_get_composite_drawable): Reset clip
3079         region back to NULL on cached GC (rest of #134728)
3080
3081 Wed Feb 18 13:28:57 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3082
3083         Fix bug reported by Nam SungHyun (#134728)
3084         
3085         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_threshold_alpha):
3086         Don't use a cached GC here since the function needs to modify the
3087         foreground color.
3088
3089         * gdk/gdkwindow.c (gdk_window_end_paint): Reset clip region back
3090         to NULL on the cached GC.
3091
3092 2004-02-17  Federico Mena Quintero  <federico@ximian.com>
3093
3094         * gtk/gtkfilechooserdialog.c
3095         (gtk_file_chooser_dialog_style_set): Use HIG-compliant spacings.
3096         This sucks a lot.
3097
3098 Wed Feb 18 02:03:47 2004  Matthias Clasen  <maclas@gmx.de>
3099
3100         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Document some
3101         peculiarities of the ::delete_range signal.  (#132135, Grant Gayed)
3102
3103 Wed Feb 18 01:44:59 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3104
3105         GC caching, bug #125645 (based on patch by Brian Cameron)
3106         
3107         * gdk/gdkscreen.h (struct _GdkScreen): Add GC cache
3108         * gdk/gdkscreen.c (gdk_screen_dispose): New function. Unref the
3109         cached GC's here.
3110         * gdk/gdkdraw.c (_gdk_drawable_get_scratch_gc): New function to
3111         get a scratch gc.
3112         * gdk/gdkinternals.h: Declare the function here
3113
3114         * gdk/gdkdraw.c (gdk_drawable_real_draw_pixbuf): Use
3115         _gdk_drawable_get_scratch_gc() instead of creating a new GC.
3116         * gdk/x11/gdkgeometry-x11.c (gdk_window_copy_area_scroll): same
3117         * gdk/x11/gdkdrawable-x11.c (draw_with_images): same
3118         * gdk/gdkwindow.c (gdk_window_get_composite_drawable): same
3119         * gdk/gdkwindow.c (gdk_window_end_paint): same
3120         * gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf): same
3121         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_threshold_alpha): same
3122         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_pixmap_and_mask_for_colormap): same
3123
3124 Tue Feb 17 23:28:33 2004  Matthias Clasen  <maclas@gmx.de>
3125
3126         * gtk/gtkmenu.c (gtk_menu_init): ...and don't forget to initalize
3127         priv->columns to 1.
3128
3129 Tue Feb 17 23:11:21 2004  Matthias Clasen  <maclas@gmx.de>
3130
3131         * gtk/gtkmenu.c (gtk_menu_do_remove): Make sure that we keep
3132         priv->columns >= 1 even for empty menus, since we divide by it
3133         somewhere else.  (#133428, Vincent Noel)
3134
3135 Tue Feb 17 23:02:58 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3136
3137         Fix for #119722, reported by Olexiy Avramchenko, patch by Owen
3138         Taylor.
3139
3140         * gdk/x11/gdkprivate-x11.h (struct _GdkGCX11): Add a depth field
3141
3142         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_new): Keep track of the GC's
3143         depth.
3144
3145         * gdk/x11/gdkgc-x11.c (_gdk_gc_x11_get_fg_xft_color): First query
3146         the colormap, if no colormap, special case depth 1, 
3147
3148         * gdk/x11/gdkgc-x11.c (_gdk_x11_gc_get_fg_picture): Use
3149         _gdk_gc_x11_get_fg_xft_color() to get the foreground color.
3150
3151         * gdk/x11/gdkdrawable-x11.c (gdk_x11_drawable_get_xft_draw):
3152         Special-case bitmaps without a colormap.
3153
3154         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_pixbuf): Use inherited
3155         draw_pixbuf() implementation in the bitmap case.
3156
3157 2004-02-17  Mark McLoughlin  <mark@skynet.ie>
3158
3159         * modules/input/Makefile.am: only reference input method
3160         modules we've actually built. Fixes re-build failure with
3161         stale hangul module lying aroung. Bug #134518.
3162
3163 Mon Feb 16 19:13:21 2004  Owen Taylor  <otaylor@redhat.com>
3164
3165         * gdk/gdkdraw.c: Revert last commit, please don't commit patches
3166         without approval, this isn't the right way to do it.
3167
3168 2004-02-16  DindinX  <david@dindinx.org>
3169
3170         * gdk/gdkdraw.c (gdk_draw_segments): don't try to draw more than 32767
3171         segments at a time, since XDrawSegments cannot handle more than this.
3172
3173         fixes bug #122026.
3174         
3175 Mon Feb 16 18:26:39 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3176
3177         * gtk/gtktoolbar.c (gtk_toolbar_set_child_property): Call
3178         gtk_tool_item_set_expand(), not gtk_tool_item_set_homogeneous()
3179         in the CHILD_PROP_EXPAND branch. (#134543, Damon Chaplin)
3180
3181 Mon Feb 16 00:04:46 2004  Matthias Clasen  <maclas@gmx.de>
3182
3183         * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_*): 
3184         Split declaration and assignment of combo_box.
3185         
3186         * gtk/gtkcombobox.c (gtk_combo_box_list_setup): Remove a 
3187         pointless cast
3188
3189 Sun Feb 15 22:08:53 2004  Matthias Clasen  <maclas@gmx.de>
3190
3191         * gtk/gtkoptionmenu.c (gtk_option_menu_get_history): Add 
3192         deprecation note pointing people to GtkComboBox.
3193
3194 Sun Feb 15 02:49:45 2004  Matthias Clasen  <maclas@gmx.de>
3195
3196         * gtk/gtktreednd.c: 
3197         * gtk/gtktreeview.c: Document the tree DND API.
3198
3199         * gtk/gtktreeview.c (gtk_tree_view_unset_rows_drag_source): 
3200         Call gtk_drag_source_unset().  
3201         
3202 Sun Feb 15 00:49:59 2004  Matthias Clasen  <maclas@gmx.de>
3203
3204         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init): 
3205         Make stock_size an uint property, to allow custom icon 
3206         sizes. Also clarify the blurb.  (#130047, Erik Grinaker)
3207
3208 Sat Feb 14 11:05:26 2004  Manish Singh  <yosh@gimp.org>
3209
3210         * configure.in: Remove unnecessary STRIP_* definitions, and GNU
3211         make check.
3212
3213 2004-02-13  Federico Mena Quintero  <federico@ximian.com>
3214
3215         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_add_bookmark):
3216         Duh, duh, duh!  Don't bail out if the bookmarks file doesn't exist
3217         the very first time you try to save one.
3218
3219 2004-02-13  Federico Mena Quintero  <federico@ximian.com>
3220
3221         Fix #129020.
3222
3223         * gtk/gtkfilechooserdialog.c
3224         (set_default_size): New function, sets a reasonable default size
3225         for the window.
3226         (gtk_file_chooser_dialog_realize): New function, call
3227         set_default_size().
3228         (gtk_file_chooser_dialog_style_set): Likewise.
3229         (gtk_file_chooser_dialog_screen_changed): Likewise.
3230
3231         * tests/testfilechooser.c (main): Don't set a default size for the
3232         dialog.
3233
3234 Sat Feb 14 00:05:18 2004  Matthias Clasen  <maclas@gmx.de>
3235
3236         * gtk/gtktreemodelfilter.c (bsearch_elt_with_offset): 
3237         Use do instead of while.  (#134031, Morten Welinder);
3238
3239 Sat Feb 14 00:00:52 2004  Matthias Clasen  <maclas@gmx.de>
3240
3241         * configure.in: Suppress xsltproc and xmlcatalog checks
3242         if enable_man=no.  (#134162, Julio M. Merino Vidal)
3243
3244 Fri Feb 13 23:54:48 2004  Matthias Clasen  <maclas@gmx.de>
3245
3246         * configure.in: Remove checks for sgml2html. It was once
3247         used for building the linuxdoc version of the tutorial.
3248         Nowadays, we use db2html.  (#134164, Julio M. Merino Vidal)
3249
3250 Fri Feb 13 08:17:43 2004  Owen Taylor  <otaylor@redhat.com>
3251
3252         Fix various compilation problems (#134312, David
3253         Hawthorne)
3254
3255         * gtk/gtkscale.c (gtk_scale_get_layout_offsets): Use 
3256         g_return_if_fail(), not g_return_val_if_fail().
3257
3258         * gtk/gtkvscale.c (gtk_vscale_get_layout_offsets): 
3259         * gtk/gtkhscale.c (gtk_hscale_get_layout_offsets): Use 
3260         g_return_if_reached(), not g_return_val_if_reached().
3261         
3262         * gtk/gtkvscale.c (gtk_vscale_expose): Fix the types
3263         of some parameters.
3264
3265         * gtk/gtkhscale.c (gtk_hscale_get_layout_offsets): Remove
3266         extra 'scale' parameter.
3267
3268 Thu Feb 12 21:58:20 2004  Owen Taylor  <otaylor@redhat.com>
3269
3270         Various reentrancy fixes for widgets being destroyed
3271         out of focus-out-event. (#128821, Grant Gayed)
3272
3273         * gtk/gtkwindow.c (_gtk_window_unset_focus_and_default): 
3274         Ref window and widget over callbacks.
3275
3276         * gtk/gtkwidget.c (gtk_widget_hide)
3277           gtk/gtkwidget.c (gtk_widget_set_child_visible):
3278         Ref the widget before calling _gtk_window_unset_focus_and_default(),
3279         since that can call user callbacks.
3280
3281         * gtk/gtkwidget.c (gtk_widget_invalidate_widget_windows):
3282         Do nothing if the widget isn't realized.
3283
3284 Fri Feb 13 01:31:44 2004  Matthias Clasen  <maclas@gmx.de>
3285
3286         * gtk/gtkbutton.c (_gtk_button_paint): Don't draw bevels around
3287         active, RELIEF_NONE buttons that aren't depressed. This improves
3288         the appearance of buttons in notebook tabs.  (#109213, reported
3289         by Benjamin Otte, patch by Rodney Dawes)
3290
3291 Fri Feb 13 01:06:08 2004  Matthias Clasen  <maclas@gmx.de>
3292
3293         * demos/gtk-demo/main.c (read_line): Protect getc_unlocked() by 
3294         HAVE_FLOCKFILE in all cases.  (#134205, Julio M. Merino Vidal)
3295
3296 Fri Feb 13 00:54:59 2004  Matthias Clasen  <maclas@gmx.de>
3297
3298         Fix for #104811, Padraig O'Briain:
3299
3300         * gtk/gtkscale.h:
3301         * gtk/gtkscale.c (_gtk_scale_clear_layout): 
3302         * gtk/gtkscale.c (gtk_scale_get_layout_offsets): 
3303         * gtk/gtkscale.c (gtk_scale_get_layout): New functions to determine the
3304         text and its position from a GtkScale, to make it more accessible. 
3305         * gtk/gtkhscale.c (gtk_hscale_get_layout_offsets):
3306         * gtk/gtkvscale.c (gtk_vscale_get_layout_offsets): Implementations of the 
3307         new GtkScale vfunc.
3308
3309 Thu Feb 12 17:59:52 2004  Owen Taylor  <otaylor@redhat.com>
3310
3311         * gtk/gtkicontheme.c (gtk_icon_theme_get_search_path): 
3312         Remove an extraneous + 1 (#134015, Torsten Schoenfeld)
3313
3314 Thu Feb 12 23:55:08 2004  Matthias Clasen  <maclas@gmx.de>
3315
3316         * gtk/gtktooltips.h:
3317         * gtk/gtktooltips.c (gtk_tooltips_get_info_from_tip_window): New 
3318         function to improve the accessibility of tooltips.  (#114851, 
3319         Padraig O'Briain)
3320
3321 Thu Feb 12 23:16:04 2004  Matthias Clasen  <maclas@gmx.de>
3322
3323         * gtk/gtkcombobox.c (gtk_combo_box_popup): 
3324         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Make these public and
3325         add docs.  (#132847)
3326
3327 Thu Feb 12 11:05:16 2004  Manish Singh  <yosh@gimp.org>
3328
3329         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Assign xtype using
3330         gdk_x11_atom_to_xatom_for_display () when type != GDK_NONE.
3331
3332         * gtk/gtkselection.c (_gtk_selection_request): Use GDK_NONE in
3333         gdk_property_get call instead of 0.
3334
3335         * docs/reference/gdk/tmpl/properties.sgml: Document the above
3336         as GDK_NONE instead of simply 0.
3337
3338 Thu Feb 12 15:46:26 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3339
3340         * gtk/gtktoolbar.c (gtk_toolbar_size_allocate): Fix up item_area
3341         correctly in RTL mode. (#133984, patch from Semion Chichelnitsky).
3342
3343 Thu Feb 12 02:22:02 2004  Matthias Clasen  <maclas@gmx.de>
3344
3345         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_set_modify_func): 
3346         Correct the docs.
3347
3348 Thu Feb 12 01:17:01 2004  Matthias Clasen  <maclas@gmx.de>
3349
3350         * gtk/gtktreeview.c (gtk_tree_view_enable_model_drag_source): Call
3351         gtk_drag_source_set(), so that things like gtk_drag_set_icon_*() work
3352         for automatic DND.  (#133485, Tommi Komulainen)
3353
3354 Thu Feb 12 00:37:00 2004  Matthias Clasen  <maclas@gmx.de>
3355
3356         * gdk/x11/gdkproperty-x11.c (gdk_property_change): Fix misleading
3357         debug output.
3358
3359 2004-02-11  Federico Mena Quintero  <federico@ximian.com>
3360
3361         * gtk/gtkmessagedialog.c (gtk_message_dialog_map): New ::map()
3362         handler.  If no widget has the focus, try to give it to the
3363         default widget.  If there is no default widget, give it to the
3364         first button.  Fixes the cause for which #59707 was reopened.
3365
3366 2004-02-11  Federico Mena Quintero  <federico@ximian.com>
3367
3368         Fixes #134051.
3369
3370         * gtk/gtkicontheme.c (struct _GtkIconInfo): Remove the ref_count field.
3371         (icon_info_new): Don't initialize the ref_count field.
3372
3373 2004-02-11  Federico Mena Quintero  <federico@ximian.com>
3374
3375         * gtk/gtkicontheme.c (gtk_icon_theme_prepend_search_path): Shift
3376         the array correctly.  Fixes #134055, patch by Tosten Schoenfeld
3377         <kaffeetisch@gmx.de>.
3378
3379 Wed Feb 11 02:23:39 2004  Matthias Clasen  <maclas@gmx.de>
3380
3381         * gtk/gtkcontainer.c (gtk_container_real_set_focus_child): Handle
3382         focus [hv]adjustment correctly when the focus is located deeper
3383         down in the hierarchy.  (#133489)
3384
3385 Wed Feb 11 02:06:38 2004  Matthias Clasen  <maclas@gmx.de>
3386
3387         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): Remove 
3388         arbitrary low upper limits on the xpad, ypad, width and height
3389         properties.  (#129696, John Ellis)
3390
3391 Wed Feb 11 01:24:20 2004  Matthias Clasen  <maclas@gmx.de>
3392
3393         * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_clear_attributes): 
3394         Ugh. Don't try to free ints, even if they're stored in pointers.
3395         (#133997, Morten Welinder)
3396
3397 2004-02-10  Federico Mena Quintero  <federico@ximian.com>
3398
3399         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_finalize):
3400         Free the filters.  Fixes #133547, patch by Morten Welinder
3401         <mortenw@gnome.org>.
3402
3403 Tue Feb 10 12:02:14 2004  Owen Taylor  <otaylor@redhat.com>
3404
3405         * gdk/x11/xsettings-client.c (read_settings): Avoid
3406         triggering an X error when the client->manager_window
3407         is None...makes logs look cleaner.
3408
3409         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Handle
3410         GDK_NONE to mean AnyPropertyType as documented. (Reported 
3411         by Yu Shao)
3412
3413         * gdk/x11/gdkevents-x11.c (fetch_net_wm_check_window,
3414         gdk_x11_screen_get_window_manager_name): Fix error trap
3415         we've been leaking since 2002... (#129538)
3416
3417 2004-02-10  Federico Mena Quintero  <federico@ximian.com>
3418
3419         Fixes the entry-related part of #133852.
3420
3421         * gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't change
3422         the file part of the entry if the selected item is a folder.
3423
3424 2004-02-10  Federico Mena Quintero  <federico@ximian.com>
3425
3426         Fixes #133995, patch by Morten Welinder <mortenw@gnome.org>.
3427
3428         * tests/prop-editor.c (create_prop_editor): Free the title.
3429         (object_changed): Free the children list.
3430
3431 Tue Feb 10 01:58:55 2004  Matthias Clasen  <maclas@gmx.de>
3432
3433         * gtk/gtkcontainer.c (gtk_container_set_focus_hadjustment): 
3434         * gtk/gtkcontainer.c (gtk_container_set_focus_vadjustment): Document 
3435         these functions.
3436
3437 2004-02-09  Federico Mena Quintero  <federico@ximian.com>
3438
3439         * gtk/gtkfilechooserdefault.c (set_list_model): Request
3440         GTK_FILE_INFO_ALL from the file system model, so that arbitrary
3441         filtering will work.  Perhaps we should have a way of aggregating
3442         info types to the model as filters get installed.
3443
3444 Mon Feb  9 22:22:19 2004  Matthias Clasen  <maclas@gmx.de>
3445
3446         * gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear_attributes): 
3447         Ugh. Don't try to free ints, even if they're stored in pointers.
3448
3449 2004-02-09  Federico Mena Quintero  <federico@ximian.com>
3450
3451         Fix #132256.
3452
3453         * gtk/gtkfilechooserdefault.c
3454         (gtk_file_chooser_default_get_paths): Read the contents of the
3455         filename entry in both OPEN and SAVE mode.  In multiple-selection
3456         mode, add this to the selection from the file/folder list.
3457         (struct get_paths_closure): Add a path_from_entry field.
3458         (get_paths_foreach): Only add the iterated path if it is not the
3459         same as the path from the entry.
3460
3461 2004-02-09  Federico Mena Quintero  <federico@ximian.com>
3462
3463         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder): If
3464         the folder is already open, add the requested info types to it.
3465
3466 Sun Feb  8 01:28:02 2004  Manish Singh  <yosh@gimp.org>
3467
3468         * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add appropriate
3469         type casts for the gtk_window_set_screen() call.
3470
3471 Sun Feb  8 01:44:06 2004  Matthias Clasen  <maclas@gmx.de>
3472
3473         * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Make popups 
3474         come up on the same screen as the combo box.  (#133544, 
3475         Morten Welinder)
3476
3477 Fri Feb  6 23:40:24 2004  Jonathan Blandford  <jrb@gnome.org>
3478
3479         * gtk/gtkfilechooserdefault.c (create_file_list): clean up the
3480         packing of the file selector.
3481
3482 Sat Feb  7 01:21:09 2004  Matthias Clasen  <maclas@gmx.de>
3483
3484         * gtk/gtktreemodel.c (gtk_tree_model_base_init): Don't use function 
3485         calls in array initializers, as some compilers seem to hate this.
3486         (#133216, Jonas Jonsson)
3487
3488 Sat Feb  7 00:06:44 2004  Matthias Clasen  <maclas@gmx.de>
3489
3490         * gtk/gtkaccelmap.[hc]: Add change notification for GtkAccelMap,
3491         by on-demand instantiating a singleton object with a "changed" 
3492         signal. 
3493
3494         * gtk/gtkmarshalers.list (VOID:STRING,UINT,FLAGS): Add marshaller
3495         for GtkAccelMap::changed.
3496
3497 Fri Feb  6 23:08:29 2004  Matthias Clasen  <maclas@gmx.de>
3498
3499         * gtk/gtktextbtree.c (_gtk_text_btree_check): 
3500         * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_clear_attributes): 
3501         * gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear_attributes): 
3502         Actually free the lists. Pointed out by Morten Welinder.
3503         
3504 Fri Feb  6 22:38:54 2004  Matthias Clasen  <maclas@gmx.de>
3505
3506         * gtk/gtkcombo.c (gtk_combo_entry_key_press): Handle character 
3507         positions in UTF-8 strings correctly.  (#133315, Theppitak 
3508         Karoonboonyanan)
3509
3510 2004-02-06  Morten Welinder  <terra@gnome.org>
3511
3512         * gtk/gtktoolbar.c (show_menu): Cleanup using
3513         gtk_menu_attach_to_widget.  Also fixes leak, see #133411.
3514
3515 2004-02-06  Federico Mena Quintero  <federico@ximian.com>
3516
3517         * gtk/gtkfilechooserdefault.c (shortcuts_add_volumes): Free the
3518         list.  Fixes #133546.
3519
3520 2004-02-06  Federico Mena Quintero  <federico@ximian.com>
3521
3522         Fix #132327.
3523
3524         * gtk/gtkfilesystemunix.c (struct _GtkFileSystemUnix): Add a
3525         folder_hash field to keep a list of live folder objects.
3526         (gtk_file_system_unix_init): Create the folder_hash.
3527         (gtk_file_system_unix_finalize): Destroy the folder_hash.
3528         (gtk_file_system_unix_get_folder): Ref and return an existing
3529         folder if we have it around, otherwise return a new folder object.
3530         (struct _GtkFileFolderUnix): Add a field for the parent file system.
3531         (gtk_file_folder_unix_finalize): Remove the folder from the file
3532         system's hash table.
3533         (gtk_file_system_unix_create_folder):  Emit "files-added" on the
3534         newly-created folder's parent.  Fixes #132327.
3535
3536 Fri Feb  6 00:51:57 2004  Matthias Clasen  <maclas@gmx.de>
3537
3538         * gtk/gtkstock.c (builtin_items): Change the labels of the 
3539         ZOOM_100 and ZOOM_FIT stock items to "_Normal Size" and
3540         "Best _Fit", to be HIG compliant.  (#124080, Mariano 
3541         Suárez-Alvarez)
3542
3543 Fri Feb  6 00:45:16 2004  Matthias Clasen  <maclas@gmx.de>
3544
3545         * gtk/gtkcombobox.c (gtk_combo_box_finalize): Add a finalize 
3546         function to plug a few memory leaks.  (#133544, Morten Welinder)
3547
3548 Fri Feb  6 00:15:38 2004  Matthias Clasen  <maclas@gmx.de>
3549
3550         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_mnemonic_activate): 
3551         Support mnemonic_activate here as well.
3552         
3553         * gtk/gtkcombobox.c (gtk_combo_box_mnemonic_activate): Focus
3554         the button, not the tree_view.
3555
3556 Thu Feb  5 23:48:19 2004  Matthias Clasen  <maclas@gmx.de>
3557
3558         * gtk/gtkcombobox.c (gtk_combo_box_mnemonic_activate): Add this
3559         function, to make mnemonic_activate work for combo boxes.
3560         (#133443, Paolo Borelli)
3561
3562 Thu Feb  5 22:05:52 2004  Matthias Clasen  <maclas@gmx.de>
3563
3564         * gtk/gtkfilesystemunix.c (bookmark_list_read): Initialize result
3565         to FALSE.  (#133539, Morten Welinder)
3566
3567 Thu Feb  5 21:36:43 2004  Matthias Clasen  <maclas@gmx.de>
3568
3569         * gtk/gtkcombobox.c (gtk_combo_box_set_active_iter): Fix the logic
3570         of the depth one check.  (#133488, Christian Persch)
3571
3572 Thu Feb  5 01:50:19 2004  Matthias Clasen  <maclas@gmx.de>
3573
3574         * gtk/gtktearoffmenuitem.c (gtk_tearoff_menu_item_paint): Fix
3575         the drawing of tearoff menu items which don't come first in their
3576         menu.  (#33311)
3577
3578 Thu Feb  5 00:59:08 2004  Matthias Clasen  <maclas@gmx.de>
3579
3580         * gtk/gtkcombo.c (gtk_combo_entry_key_press): Use 
3581         g_completion_complete_utf8(). (#133313, Theppitak Karoonboonyanan)
3582
3583 2004-02-04  Federico Mena Quintero  <federico@ximian.com>
3584
3585         Fix #59707.
3586
3587         * gtk/gtklabel.c (gtk_label_focus): Removed, so we don't ignore
3588         the focus chain.
3589         (gtk_label_button_press): Fix prototype.
3590         (gtk_label_button_release): Likewise.
3591         (gtk_label_motion): Likewise.
3592
3593         * tests/testgtk.c (create_message_dialog): For the dialog with
3594         only GTK_BUTTONS_CLOSE, make GTK_RESPONSE_CLOSE the default.
3595
3596 2004-02-04  Morten Welinder  <terra@gnome.org>
3597
3598         * gtk/gtktoolbar.c (show_menu): Show on the right screen.  (Fixes
3599         bug 133411, apart from the leak.)
3600
3601 Tue Feb  3 13:39:27 2004  Manish Singh  <yosh@gimp.org>
3602
3603         * gtk/gtkadjustment.c (gtk_adjustment_new): pass value in last
3604         in g_object_new, since it depends on lower and upper being set.
3605
3606 2004-02-03  Federico Mena Quintero  <federico@ximian.com>
3607
3608         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): Make the
3609         window not resizable.  Fixes #114032.
3610
3611 2004-02-03  Federico Mena Quintero  <federico@ximian.com>
3612
3613         * gtk/gtkmessagedialog.c (gtk_message_dialog_class_init): Add
3614         documentation for the use_separator style property.
3615
3616 2004-02-03  Federico Mena Quintero  <federico@ximian.com>
3617
3618         Fix #68938.
3619
3620         * gtk/gtkdialog.c (GtkDialogPrivate): New private structure for
3621         GtkDialog; right now it only contains an ignore_separator field.
3622         (gtk_dialog_class_init): Register the private structure.
3623         (gtk_dialog_init): Initialize the priv->ignore_separator field.
3624         (_gtk_dialog_set_ignore_separator): New private function.
3625         (gtk_dialog_set_has_separator): Ignore the setting if appropriate.
3626
3627         * gtk/gtkmessagedialog.c (gtk_message_dialog_class_init): Add a
3628         use_separator style property.
3629         (gtk_message_dialog_style_set): Change the dialog's separator
3630         based on the style property.
3631         (gtk_message_dialog_init): Set the dialog box to ignore the
3632         separator setting.
3633
3634 Tue Feb  3 02:35:09 2004  Matthias Clasen  <maclas@gmx.de>
3635
3636         * gtk/Makefile.am: Build filesystemwin32.c if OS_WIN32 and
3637         also dist gtkfilesystemwin32.[hc].
3638
3639 Tue Feb  3 02:04:44 2004  Matthias Clasen  <maclas@gmx.de>
3640
3641         * gtk/gtklabel.c (gtk_label_ensure_layout): Right-justify labels
3642         in rtl mode.  (#129071, chinen@jp.ibm.com)
3643
3644 Tue Feb  3 02:01:25 2004  Matthias Clasen  <maclas@gmx.de>
3645
3646         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current): Exchange the
3647         meaning GTK_MENU_DIR_PARENT/CHILD and GTK_MENU_DIR_PREV/NEXT in rtl
3648         mode.  (#107528)
3649
3650 Tue Feb  3 01:38:06 2004  Matthias Clasen  <maclas@gmx.de>
3651
3652         Clip narrow columns in rtl-oriented tree views (#128089,  
3653         chinen@jp.ibm.com):
3654         
3655         * gtk/gtkstyle.c (gtk_default_draw_option): 
3656         * gtk/gtkstyle.c (gtk_default_draw_check): Clip to the 
3657         given area.
3658
3659         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action): 
3660         Use the right clip area when calling gtk_cell_renderer_render().
3661         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_cell_draw_focus): 
3662         Use the right clip area when calling gtk_paint_focus().
3663         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render): 
3664         Use the right clip area when calling gtk_paint_toggle() or
3665         gtk_paint_check().
3666         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): 
3667         Clip to the expose_area when drawing the background rectangle.
3668         
3669 Tue Feb  3 00:14:36 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3670
3671         * gdk/x11/gdkgeometry-x11.c (queue_item_free, gdk_window_queue):
3672         Use a weak reference instead of ref()/unref(). (#60857, reported
3673         by Joshua N Pritikin)
3674
3675         * gdk/gdkimage.c (scratch_image_info_for_depth): Formatting fix.
3676
3677 Tue Feb  3 00:15:17 2004  Matthias Clasen  <maclas@gmx.de>
3678
3679         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): Add 
3680         init_hadjust_value and prev_width.
3681         * gtk/gtktreeview.c (gtk_tree_view_init): Initialize 
3682         them here.
3683         * gtk/gtktreeview.c (gtk_tree_view_update_size): ...and here.
3684         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): Use them
3685         here to properly handle the initial position of rtl-oriented
3686         tree views.  (#127581, chinen@jp.ibm.com)
3687
3688 2004-01-20  Federico Mena Quintero  <federico@ximian.com>
3689
3690         Fix #130846, reported by R. McFarland <rwmcfa1@neces.com>.
3691
3692         * gtk/gtktreeview.c (gtk_tree_view_button_press): Return TRUE when
3693         we handle an event in the colums, and FALSE at the end if the
3694         event is not handled at all.
3695
3696 Mon Feb  2 23:41:48 2004  Matthias Clasen  <maclas@gmx.de>
3697
3698         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_changed): 
3699         Don't access the level after removing the node, since that may
3700         kill the level.  (#132615, Crispin Flowerday)
3701
3702 2004-02-02  Tor Lillqvist  <tml@iki.fi>
3703
3704         * gdk/win32/gdkevents-win32.c (gdk_pointer_grab): Set the cursor
3705         in all cases. If no grab cursor specified, use the grabbing
3706         window's cursor. If the grabbing window has no cursor, use the
3707         default arrow cursor. (#118025)
3708
3709 Mon Feb  2 22:05:36 2004  Matthias Clasen  <maclas@gmx.de>
3710
3711         * gtk/gtkseparatormenuitem.c (gtk_separator_menu_item_init): The
3712         latest in menu separation technology.
3713
3714 Mon Feb  2 19:04:17 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3715
3716         * gdk/x11/gdkwindow-x11.c: Assume gravity works. (Anything else
3717         we have to take our chances with).
3718         
3719         (Bug 97510)
3720
3721 Mon Feb  2 18:45:28 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3722
3723         Fix bug 110224.
3724
3725         * gdk/x11/gdkfont-x11.c (gdk_font_from_description_for_display):
3726         Remove unused variable 'result'
3727
3728         * gdk/x11/xsettings-client.[ch]: Add new set_grab/ungrab_func() functions.
3729
3730         * gdk/x11/gdkevents-x11.c (_gdk_x11_events_init_screen): Use them
3731         here.
3732
3733 Mon Feb  2 14:32:32 2004  Pablo Saratxaga  <pablo@mandrakesoft.com>
3734
3735         * configure.in po/uz*.po: changed default for Uzbek; now just "uz"
3736         is in cyrillic and "uz@Latn" for latin; "uz@Cyrl" has been removed
3737
3738 Sun Feb  1 16:34:07 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3739
3740         * gtk/gtktoolbar.c (gtk_toolbar_size_allocate): Only start
3741         sliding when using the new API.
3742
3743 Sun Feb  1 16:03:39 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3744
3745         * gtk/gtktoolbar.c (gtk_toolbar_size_allocate): Make sure
3746         item_area is positioned correctly. Fix #133070, reported by Jeroen
3747         Zwartepoorte.
3748
3749 Sat Jan 31 23:13:43 2004  Matthias Clasen  <maclas@gmx.de>
3750
3751         * gtk/gtktextchild.c (gtk_text_child_anchor_finalize): Don't
3752         crash when finalizing an unused GtkTextChildAnchor.  (#132260,
3753         muppet)
3754
3755 Sat Jan 31 22:41:57 2004  Matthias Clasen  <maclas@gmx.de>
3756
3757         * gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Correct
3758         the documentation for new_order.  (#124790, Tim-Philipp Müller)
3759
3760 Sat Jan 31 22:38:07 2004  Matthias Clasen  <maclas@gmx.de>
3761
3762         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width): 
3763         Reset use_resized_width when setting fixed_width.  (#108612, 
3764         Felipe Heidrich) 
3765
3766 Sat Jan 31 16:27:44 2004  Matthias Clasen  <maclas@gmx.de>
3767
3768         * gtk/gtkmain.c (gtk_key_snooper_remove): Don't leak the
3769         GtkKeySnooperData.  (#132038, R. McFarland)
3770
3771 2004-01-30  Federico Mena Quintero  <federico@ximian.com>
3772
3773         Fixes #132975.
3774
3775         * gtk/gtkfilesystem.c (gtk_file_system_make_path): Return NULL,
3776         not FALSE.
3777         (gtk_file_system_volume_render_icon): Likewise.
3778
3779         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_make_path):
3780         Likewise.
3781
3782         * gtk/gtktreestore.c (gtk_tree_store_iter_n_children): Return 0,
3783         not FALSE.
3784
3785         * gtk/gtktoolbar.c (gtk_toolbar_get_drop_index): Return -1, not
3786         FALSE.
3787
3788         * gtk/gtktextiter.c (gtk_text_iter_get_chars_in_line): Return 0,
3789         not FALSE.
3790         (gtk_text_iter_get_bytes_in_line): Likewise.
3791
3792         * gdk/x11/gdkcursor-x11.c (gdk_display_get_default_cursor_size):
3793         Likewise.
3794
3795         * gdk/linux-fb/gdkcolor-fb.c (gdk_colors_alloc): Return FALSE, not
3796         0.
3797
3798 2004-01-30  Not Zed  <NotZed@Ximian.com>
3799
3800         Fixes #132929.
3801
3802         * gtk/gtktreeview.c (cancel_arrow_animation): remove the timeout
3803         handler when we clear the timeout id.
3804
3805 2004-01-30  Federico Mena Quintero  <federico@ximian.com>
3806
3807         Fix #129872, based on a patch by Jan Arne Petersen
3808         <jpetersen@uni-bonn.de>
3809
3810         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_list_bookmarks):
3811         Implement.
3812         (gtk_file_system_unix_add_bookmark): Implement.
3813         (gtk_file_system_unix_remove_bookmark): Implement.
3814
3815 2004-01-29  Federico Mena Quintero  <federico@ximian.com>
3816
3817         Fixes #132693.
3818
3819         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_parent): Don't
3820         use filename_from_path().  Also, check that the filename is
3821         absolute.
3822         (gtk_file_system_unix_get_folder): Likewise.
3823         (gtk_file_system_unix_create_folder): Likewise.
3824         (gtk_file_system_unix_make_path): Likewise.
3825         (gtk_file_system_unix_parse): Likewise.
3826         (gtk_file_folder_unix_get_info): Likewise.
3827         (filename_from_path): Removed.
3828
3829 2004-01-30  Federico Mena Quintero  <federico@ximian.com>
3830
3831         * gtk/gtkcalendar.c (arrow_action): Remove C++ comment; reported
3832         by Damien Carbery <damien.carbery@sun.com>.  Fixes #132956.
3833
3834 Fri Jan 30 11:37:37 2004  Owen Taylor  <otaylor@redhat.com>
3835
3836         * gdk/x11/gdkdrawable-x11.c: Revert changes from
3837         #113476 and go back to using XftDrawSetClip, because
3838         XftDrawSetClipRectangles is buggy in XFree86-4.3.
3839
3840 Thu Jan 29 18:08:06 2004  Owen Taylor  <otaylor@redhat.com>
3841
3842         * gtk/gtktextlayout.c (line_display_iter_to_index)
3843         * gtk/gtktextlayout.c (line_display_index_to_iter): Only
3844         adjust the preedit position for lines that include the
3845         preedit string. (#132353, Yao Zhang). How the heck
3846         did this work as well as it did?!?!
3847
3848         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_get_ic): 
3849         Reverse change to change of XNFilterEvents event mask from
3850         #110493 -- it's documented and in the Xlib code an
3851         unsigned long. 
3852         
3853         * modules/input/gtkimcontextxim.c (preedit_start_callback): 
3854         Return -1 rather than void to indicate no length limit.
3855         (#129548)
3856
3857 Fri Jan 30 00:45:46 2004  Matthias Clasen  <maclas@gmx.de>
3858
3859         * gtk/gtkadjustment.c: Add properties to GtkAdjustment.
3860         (#64601, Murray Cumming)
3861
3862 Fri Jan 30 00:13:46 2004  Matthias Clasen  <maclas@gmx.de>
3863
3864         * gtk/gtkcombo.c (gtk_combo_set_popdown_strings): Allow NULL
3865         for strings to clear the list.  (#105386, Marco Pesenti Gritti)
3866         
3867 2004-01-28  Richard Hult  <richard@imendio.com>
3868
3869         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_size):
3870         Free font_desc.  Fixes #132805.
3871
3872 2004-01-29  Federico Mena Quintero  <federico@ximian.com>
3873
3874         * gtk/gtkiconfactory.c (render_icon_name_pixbuf): Free the GError.
3875         Patch provided by Christian Persch <chpe@stud.uni-saarland.de>
3876         Fixes #132574.
3877
3878 Thu Jan 29 11:00:18 2004  Owen Taylor  <otaylor@redhat.com>
3879
3880         * gtk/gtkselection.c (gtk_selection_default_handler): 
3881         nul-terminate the target atoms. (#132656, Christian Persch)
3882
3883 Thu Jan 29 00:59:03 2004  Matthias Clasen  <maclas@gmx.de>
3884
3885         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered):
3886         Don't leak path if we bail out early.  (#132505, Christian Persch)
3887
3888 Thu Jan 29 00:48:47 2004  Matthias Clasen  <maclas@gmx.de>
3889
3890         * gtk/gtkactiongroup.c (gtk_action_group_add_toggle_actions_full):
3891         * gtk/gtkactiongroup.c (gtk_action_group_add_actions_full): Do
3892         reference counting on the user_data that is shared between
3893         multiple signal handlers, to avoid calling the destroy notify
3894         multiple times.  (#132447, Adam Hooper)
3895
3896 2004-01-28  Hans Breuer  <hans@breuer.org>
3897
3898         * gtk/stock-icons/stock_network_(16|24).png : new GTK_STOCK_NETWORK ...
3899           gtk/gtkstock.[hc] : ... define ...
3900           gtk/gtkiconfactory.c : ... register ...
3901           gtk/stock-icons/Makefile.am gtk/stock-icons/makefile.msc : ... compile ...
3902         * gtk/gtkfilesystemwin32.c : ... and use. Also adapt to recent 
3903         IFace changes.
3904
3905         * gtk/gtk.def : added a bunch of new exported symbols
3906
3907         * tests/testfilechooser.c (no_backup_files_filter) : don't crash
3908         on filter_info->display_name being NULL
3909
3910         * tests/testgtk.c : make testgtk --bench=all work again
3911
3912 Wed Jan 28 21:40:47 2004  Matthias Clasen  <maclas@gmx.de>
3913
3914         * gtk/gtkentrycompletion.c (gtk_entry_completion_action_data_func):
3915         Don't leak string.  (#132482, Christian Persch)
3916
3917 Tue Jan 27 18:45:47 2004  Manish Singh  <yosh@gimp.org>
3918
3919         * m4macros/gtk-2.0.m4: quote AC_DEFUN macro names so automake
3920         1.8 won't whine at us.
3921
3922 2004-01-28  Tor Lillqvist  <tml@iki.fi>
3923
3924         * gdk/win32/gdkevents-win32.c (synthesize_leave_event,
3925         synthesize_enter_event): Don' generate enter or leave events if
3926         the pointer is grabbed with owner_events off, and the grab event
3927         mask doesn't ask for them. (#129242)
3928
3929         (gdk_event_translate): Ditto for focus change events.
3930
3931 2004-01-27  Federico Mena Quintero  <federico@ximian.com>
3932
3933         Fix #132314.
3934
3935         * gtk/gtkfilesystem.h: Removed the #ifdef-ed out, old icon API.
3936
3937         * gtk/gtkfilesystem.c: Likewise.
3938
3939         * gtk/gtkfilesystemunix.c (filename_get_info): Removed the old
3940         icon-type code.
3941         (gtk_file_system_unix_render_icon): Moved the icon-rendering code
3942         from GtkFileInfo to here.
3943         (gtk_file_system_unix_volume_render_icon): Implement.
3944
3945 2004-01-28  Changwoo Ryu  <cwryu@debian.org>
3946
3947         * modules/input/imhangul-defs.h: 
3948         * modules/input/imhangul.c:
3949         * modules/input/Makefile.am: Remove broken hangul input module.
3950         
3951 Tue Jan 27 01:56:46 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
3952
3953         * gtk/gtktoolbar.c: Remove obsolete comment.
3954
3955         * gtk/gtktoolbar.c (DEFAULT_SPACE_SIZE, SPACE_LINE_START, 
3956         SPACE_LINE_END): Make separators wider and taller, so they are
3957         easier to pick up when editing the toolbar.
3958
3959         * gtk/gtktoolbar.c (slide_idle_handler): Add a comment, simplify
3960         a bit, 
3961
3962         * gtk/gtktoolbar.c (rect_within): Formatting fix
3963
3964         * gtk/gtktoolbar.c (gtk_toolbar_set_drop_highlight_item): Make
3965         sliding feel more responsive by only restarting sliding when the
3966         placeholder actually changes its goal allocation.
3967
3968 Tue Jan 27 02:00:37 2004  Matthias Clasen  <maclas@gmx.de>
3969
3970         * gtk/gtktreeitem.c (gtk_tree_item_add_pixmaps): Avoid a 
3971         compiler warning.  (#122725, Kjartan Maraas)
3972         
3973 Tue Jan 27 01:46:54 2004  Matthias Clasen  <maclas@gmx.de>
3974
3975         Make menus work better on Xinerama (#126150):
3976         
3977         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Calculate the 
3978         monitor_num on the screen of the menu, not of the attach widget.
3979
3980         * gtk/gtkmenu.c (menu_change_screen): Forget the stored monitor_num. 
3981         (gtk_menu_window_size_request): Remember the monitor_num.
3982
3983 2004-01-26  Federico Mena Quintero  <federico@ximian.com>
3984
3985         Fix #105497; constify uses of GdkColor.
3986
3987         * gdk/gdkgc.c (gdk_gc_set_rgb_fg_color): Constify.
3988         (gdk_gc_set_rgb_bg_color): Constify.
3989         (gdk_gc_set_foreground): Constify.
3990
3991         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): Constify.
3992         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap): Constify.
3993         * gdk/linux-fb/gdkcursor-fb.c (gdk_cursor_new_from_pixmap): Constify.
3994
3995         * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_create_from_data): Constify.
3996         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_create_from_data): Constify.
3997         * gdk/linux-fb/gdkpixmap-fb.c (gdk_pixmap_create_from_data): Constify.
3998
3999         * gdk/x11/gdkwindow-x11.c (gdk_window_set_background): Constify.
4000         * gdk/win32/gdkwindow-win32.c (gdk_window_set_background): Constify.
4001         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_background): Constify.
4002
4003         * gdk/gdkpango.c (gdk_draw_layout_line_with_colors): Constify.
4004         (gdk_draw_layout_with_colors): Constify.
4005
4006         * gdk/gdkpixmap.c (gdk_pixmap_colormap_new_from_pixbuf): Constify.
4007         (gdk_pixmap_colormap_create_from_xpm): Constify.
4008         (gdk_pixmap_create_from_xpm): Constify.
4009         (gdk_pixmap_colormap_create_from_xpm_d): Constify.
4010         (gdk_pixmap_create_from_xpm_d): Constify.
4011
4012         * gtk/gtkcellview.c (gtk_cell_view_set_background_color): Constify.
4013
4014         * gtk/gtkclist.c (gtk_clist_set_foreground): Constify.
4015         (gtk_clist_set_background): Constify.
4016
4017         * gtk/gtkcolorbutton.c (gtk_color_button_new_with_color): Constify.
4018         (gtk_color_button_set_color): Constify.
4019
4020         * gtk/gtkcolorsel.c (gtk_color_selection_set_current_color):
4021         Constify and add a check for color != NULL.
4022         (gtk_color_selection_get_current_color): Add a check for color != NULL.
4023         (gtk_color_selection_set_previous_color): Constify and add a check
4024         for color != NULL.
4025         (gtk_color_selection_get_previous_color): Add a check for color != NULL.
4026
4027         * gtk/gtkctree.c (gtk_ctree_node_set_foreground): Constify.
4028         (gtk_ctree_node_set_background): Constify.
4029
4030         * gtk/gtktext.c (gtk_text_insert): Constify.
4031         (insert_text_property): Constify.
4032         (text_properties_equal): Constify.
4033         (new_text_property): Constify.
4034
4035         * gtk/gtkwidget.c (gtk_widget_modify_color_component): Constify.
4036         (gtk_widget_modify_fg): Constify.
4037         (gtk_widget_modify_bg): Constify.
4038         (gtk_widget_modify_text): Constify.
4039         (gtk_widget_modify_base): Constify.
4040
4041 2004-01-26  Christian Rose  <menthos@menthos.com>
4042
4043         * configure.in: Added "mi" to ALL_LINGUAS.
4044
4045 2004-01-25  Tor Lillqvist  <tml@iki.fi>
4046
4047         * gdk/win32/gdkproperty-win32.c (gdk_property_delete): If the
4048         WM_TRANSIENT_FOR property is being deleted, set the owner of the
4049         window to the root window (i.e., effectively unset it). (#132411)
4050
4051         * gdk/win32/gdkprivate-win32.h
4052         * gdk/win32/gdkglobals-win32.c
4053         * gdk/win32/gdkmain-win32.c: Declare, define and initialize
4054         _wm_transient_for, a GdkAtom for WM_TRANSIENT_FOR.
4055
4056         * acconfig.h: Remove HAVE_WINSOCK_H, not used any longer.
4057
4058 Sun Jan 25 15:14:46 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4059
4060         * gtk/gtktoolbar.c (gtk_toolbar_size_allocate): Base the decision
4061         to map/unmap items on whether they are actually allocated outside
4062         the toolbar, not on whether that will eventually happen. Improves
4063         animation in the presence of overflown items.
4064
4065         * gtk/gtktoolbar.c (gtk_toolbar_begin_sliding): Add a
4066         queue_resize() to so that the items will get their new goal
4067         values and the idle handler will not immediately return FALSE.
4068
4069         * gtk/gtktoolbar.c (slide_idle_handler): simplify the logic and
4070         make sure that a placeholder becoming invisible doesn't cause a
4071         return TRUE.
4072
4073         * gtk/gtktoolbar.c (get_item_size): Don't special case
4074         placeholders here.
4075
4076 Sat Jan 24 23:17:27 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4077
4078         * gtk/gtktoolbutton.c (gtk_tool_button_construct_contents): Only
4079         try to pack icon if there actually is one.
4080
4081         * gtk/gtktoolbar.c (gtk_toolbar_size_allocate): Make sure
4082         OVERFLOWN items get an allocation even when they are
4083         unmapped. This ensures they will slide in properly.
4084
4085         * gtk/gtktoolbar.c (slide_idle_handler): Make sure we return TRUE
4086         when there are overflown items that need to slide in. Also add
4087         comments and make formatting more readable.
4088
4089 Sat Jan 24 17:38:48 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4090
4091         * gtk/gtkradiotoolbutton.c (gtk_radio_tool_button_class_init):
4092         Add a write-only property ::group to be consistent with
4093         GtkRadioAction and GtkRadioButton. (#132159, Patch from Olivier
4094         Andrieu)
4095
4096 Fri Jan 23 23:46:12 2004  Matthias Clasen  <maclas@gmx.de>
4097
4098         * gtk/gtkfontbutton.c (gtk_font_button_label_use_font): Don't leak the 
4099         font description.  (#132168)
4100
4101 2004-01-23  Federico Mena Quintero  <federico@ximian.com>
4102
4103         Fix #132247.
4104
4105         * gtk/gtkfilechooserdefault.c (set_select_multiple): Handle folder
4106         mode.
4107         (set_select_multiple): Optionally notify about changes to the
4108         select-multiple property.
4109         (list_selection_changed): Change the condition for the editable row to
4110         test for save mode; this is more clear than testing for not being
4111         in multiple selection mode.
4112         (gtk_file_chooser_default_get_paths): Get impl->action directly
4113         rather than calling gtk_file_chooser_get_action().
4114         (entry_activate): Likewise.
4115         (set_select_multiple): Annotate about #133255.
4116         (update_chooser_entry): Likewise.
4117         (check_preview_change): Likewise.
4118         (tree_selection_changed): Likewise.
4119
4120 Fri Jan 23 14:56:18 2004  Jonathan Blandford  <jrb@gnome.org>
4121
4122         * gtk/gtktreeview.c (gtk_tree_view_get_path_at_pos): Don't crash
4123         when there are no columns, or all columns are hidden, #131402
4124
4125 Fri Jan 23 16:58:28 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4126
4127         * gtk/gtkmenu.c (DEFAULT_POPUP_DELAY): Changing to 200 was a
4128         mistake. Change back to 225.
4129
4130 Thu Jan 22 18:46:05 2004  Owen Taylor  <otaylor@redhat.com>
4131
4132         * === Released 2.3.2 ===
4133
4134 Thu Jan 22 18:45:26 2004  Owen Taylor  <otaylor@redhat.com>
4135
4136         * gtk/gtkicontheme.c: Patch from Christian Neumair
4137         to make warning string more translator friendly.
4138
4139         * gtk/gtktreemodelfilter.h gtkseparatortoolitem.[ch]
4140         gtk/gtktoolbar.c: Parameter name fixes to keep gtk-doc
4141         happy.
4142
4143         * configure.in: Require GLib-2.3.2, version 2.3.2,
4144         interface age 0, binary age 302.
4145
4146         * NEWS: Organized, added some names.
4147
4148 Thu Jan 22 16:59:36 2004  Jonathan Blandford  <jrb@gnome.org>
4149
4150         * gtk/gtkliststore.c (gtk_list_store_reorder): Doc fix.
4151
4152 2004-01-22  Federico Mena Quintero  <federico@ximian.com>
4153
4154         * gtk/gtkwidget.c (gtk_widget_class_init): Added documentation for
4155         GtkWidget::popup_menu.
4156
4157 Thu Jan 22 21:45:24 2004  Matthias Clasen  <maclas@gmx.de>
4158
4159         * gtk/gtkmenu.c (gtk_menu_remove): Remove the attach 
4160         info after calling gtk_menu_do_remove(), since that function
4161         uses the attach info. Doh!
4162
4163         * gtk/gtkmenu.c (gtk_menu_do_remove): Don't check priv->columns 
4164         for being 1 directly after setting it to 0.
4165
4166 Thu Jan 22 21:38:52 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4167
4168         * NEWS: Updates
4169
4170 2004-01-22  Alexander Larsson  <alexl@redhat.com>
4171
4172         * gdk/x11/gdkwindow-x11.c (WINDOW_IS_TOPLEVEL):
4173         Fix typo
4174
4175 2004-01-21  Federico Mena Quintero  <federico@ximian.com>
4176
4177         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_finalize):
4178         Free the path fields.
4179
4180         * gtk/gtkfilesystemmodel.c (gtk_file_system_model_finalize): Free
4181         the root_path, reported by <scott@asofyet.org>
4182         (gtk_file_system_model_finalize): Unref the file system.
4183
4184         * gtk/gtkfilefilter.c (filter_rule_free): default:
4185         g_assert_not_reached().
4186         (gtk_file_filter_finalize): Free the filter->name, reported by
4187         <scott@asofyet.org>
4188         (gtk_file_filter_finalize): Free the rules list.
4189
4190 Wed Jan 21 18:10:40 2004  Jonathan Blandford  <jrb@gnome.org>
4191
4192         * gtk/gtkcolorbutton.c (gtk_color_button_set_color):redraw the
4193         color button when an alpha is set.
4194         (gtk_color_button_set_alpha): redraw the color button when an
4195         alpha is set.
4196
4197 Wed Jan 21 23:27:14 2004  Matthias Clasen  <maclas@gmx.de>
4198
4199         Fix #131869: 
4200         
4201         * gtk/gtkaction.c (_gtk_action_emit_activate): Hold
4202         a reference to the group while emitting the signals.
4203
4204         * gtk/gtkactiongroup.c (gtk_action_group_init): Use a 
4205         destroy notify which does not only unref, but also resets
4206         the action_group property of the action.
4207
4208 2004-01-20  Federico Mena Quintero  <federico@ximian.com>
4209
4210         * NEWS: Added details about GtkFileChooser changes.
4211
4212 2004-01-20  Federico Mena Quintero  <federico@ximian.com>
4213
4214         Fix #99425, add accessor functions for GtkPaned's children.
4215
4216         * gtk/gtkpaned.c (gtk_paned_get_child1): New function.
4217         (gtk_paned_get_child2): New function.
4218
4219 Tue Jan 20 23:49:52 2004  Matthias Clasen  <maclas@gmx.de>
4220
4221         * NEWS: Start of 2.3.2 section.
4222
4223 Tue Jan 20 22:11:31 2004  Matthias Clasen  <maclas@gmx.de>
4224
4225         Fixes for #130370, based on a patch by Michael Meeks:
4226         
4227         * gtk/gtkmenu.c (gtk_menu_do_remove): New auxiliary function to
4228         adjust cell positions and recalculate row and column counts after
4229         removing an item.
4230
4231         * gtk/gtkmenu.c (gtk_menu_remove): Call gtk_menu_do_remove.
4232
4233         * gtk/gtkmenu.c (gtk_menu_do_insert): Don't leave empty rows when
4234         appending items.
4235
4236         * gtk/gtkmenu.c (gtk_menu_attach): Don't call gtk_menu_shell_append,
4237         to avoid an unintended recursion.
4238
4239 2004-01-19  Federico Mena Quintero  <federico@ximian.com>
4240
4241         Fix #131418.
4242
4243         * gtk/gtkfilechooserdefault.c (set_select_multiple): New helper
4244         function.
4245         (gtk_file_chooser_default_set_property): Use
4246         set_select_multiple().  Also, re-set this mode to single if the
4247         file chooser is set to Save mode.
4248         (entry_activate): Handle the case where the entry is completely
4249         empty *and* its current folder does exist.  Also, there is need to
4250         test for select_multiple here now that we ensure that it won't
4251         happen during Save mode.
4252
4253 Sun Jan 18 15:25:39 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4254
4255         * gtk/gtktoolbar.[ch]: Add _gtk_toolbar_paint_space_line(),
4256         _gtk_toolbar_get_default_space_size ();
4257
4258         * gtk/gtkseparatortoolitem.c (gtk_separator_tool_item_expose,
4259         get_space_size): Use them here.
4260
4261 Sun Jan 18 13:16:34 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4262
4263         * tests/testgtk.c (create_toolbar): Set a small size request and
4264         make the window resizable, to test mapping/unmapping of buttons.
4265
4266         * gtk/gtktoolbar.c (gtk_toolbar_remove_content,
4267         gtk_toolbar_insert_tool_item): remove these functions.
4268
4269         * gtk/gtktoolbar.c (gtk_toolbar_show_all,
4270         toolbar_content_show_all, gtk_toolbar_hide_all,
4271         toolbar_content_hide_all): New functions. 
4272
4273         Ignore show_all/hide_all for buttons created in compatibility mode.
4274
4275         * gtk/gtktoolbar.c (internal_insert_element, gtk_toolbar_show_all,
4276         gtk_toolbar_hide_all): Make sure buttons are ignored by
4277         gtk_toolbar_show_all() and gtk_toolbar_hide_all().
4278         
4279         * gtk/gtktoolbar.c: s/regular_widget/compatibility/g
4280
4281         * gtk/gtktoolbar.c (struct _ToolbarContent): Allocate
4282         GtkToolbarChild inline. Get rid of GtkToolbarChildSpace.
4283
4284         * gtk/gtktoolbar.c (toolbar_content_expose): Fix bug where widget
4285         could become NULL.
4286
4287         * gtk/gtktoolbar.c (gtk_toolbar_add): Append new tool items
4288         instead of prepending them.
4289
4290         * gtk/gtktoolbar.c (gtk_toolbar_size_allocate): Use the same
4291         'elapsed' for all items.
4292
4293         * gtk/gtktoolbar.c (struct _GtkToolbarPrivate): Turn booleans
4294         into bitfields.
4295
4296         * gtk/gtktoolbar.c: Many formatting fixes
4297         
4298 Sun Jan 18 01:51:12 2004  Matthias Clasen  <maclas@gmx.de>
4299
4300         * configure.in: Add the necessary magic to create
4301         po-properties/Makefile.
4302
4303 Sat Jan 17 23:05:52 2004  Matthias Clasen  <maclas@gmx.de>
4304
4305         The second part of the fix for #114351 (see also 
4306         gdk-pixbuf/ChangeLog and po/ChangeLog):
4307
4308         * Makefile.am (SUBDIRS): Add po-properties.
4309
4310         * configure.in (AC_CONFIG_FILES): Add po-properties/Makefile.in 
4311
4312         * gdk/gdkintl.h (P_): 
4313         * gtk/gtkintl.h (P_): Use translation domain gtk20-properties. 
4314
4315         * gtk/gtkmain.c (gtk_parse_args): Call bindtextdomain and
4316         bind_textdomain_codeset for gtk20-properties as well.
4317
4318 Sat Jan 17 22:00:07 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4319
4320         * gtk/gtktoolbar.c: 
4321
4322         Fix rest of #128678: Implement all the toolbar_content()
4323         methods for the old API case.
4324
4325 Sat Jan 17 16:53:08 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4326
4327         * gtk/gtktoolbar.c: 
4328
4329         Phase 1 of fixing #128678: Only access ToolbarContent through a
4330         set of new functions:
4331
4332         toolbar_content_expose, toolbar_content_visible,
4333         toolbar_content_size_request, toolbar_content_is_homogeneous,
4334         toolbar_content_get_child_requisition,
4335         toolbar_content_is_placeholder, toolbar_content_disappearing,
4336         toolbar_content_get_state, toolbar_content_child_visible,
4337         toolbar_content_get_goal_allocation,
4338         toolbar_content_get_allocation,
4339         toolbar_content_set_start_allocation,
4340         toolbar_content_get_start_allocation, toolbar_content_get_expand,
4341         toolbar_content_set_goal_allocation,
4342         toolbar_content_set_child_visible, toolbar_content_size_allocate,
4343         toolbar_content_set_state, toolbar_content_get_widget,
4344         toolbar_content_set_disappearing,
4345         toolbar_content_set_size_request,
4346         toolbar_content_toolbar_reconfigured,
4347         toolbar_content_retrieve_menu_item, 
4348         toolbar_content_new_tool_item, toolbar_content_destroy,
4349         toolbar_content_is_separator
4350
4351         Also fix #127092.
4352         
4353 Sat Jan 17 12:55:13 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4354
4355         * gtk/gtktoolitem.c (gtk_tool_item_finalize): don't leak the menu
4356         item ID.
4357
4358 Sat Jan 17 12:37:46 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4359
4360         * gtk/gtktoolbar.c (gtk_toolbar_finalize): Don't leak the
4361         overflow menu.
4362         
4363         * gtk/gtktoolbar.h (struct _GtkToolbar): Make some fields public. 
4364         [#127726]
4365
4366 2004-01-16  Federico Mena Quintero  <federico@ximian.com>
4367
4368         * gtk/gtkfilesystemmodel.c (struct _GtkFileSystemModel): Added a
4369         has_editable field.
4370         (_gtk_file_system_model_add_editable): New function.
4371         (_gtk_file_system_model_remove_editable): New function.
4372         (gtk_file_system_model_get_value): Return appropriate values for
4373         the temporary editable row.
4374         (_gtk_file_system_model_get_info): Handle the editable row.
4375         (_gtk_file_system_model_get_path): Likewise.
4376
4377         * gtk/gtkfilechooserdefault.c (shortcuts_append_bookmarks):
4378         Removed an unused variable.
4379         (toolbar_button_new): Optionally show the button.
4380         (up_button_clicked_cb): Renamed from up_button_cb(), fixed prototype.
4381         (toolbar_create): Add a "New Folder" button for Save mode.
4382         (error_building_filename_dialog): New helper function.
4383         (gtk_file_chooser_default_get_paths): Use error_building_filename_dialog().
4384         (create_file_list): Connect to the "edited" signal of the text
4385         cell renderer.  Store the name column and text renderer in the
4386         impl structure.
4387         (renderer_edited_cb): New callback.
4388         (gtk_file_chooser_default_set_property): Show/hide the "New
4389         folder" button when the save action changes.
4390         (COMPARE_DIRECTORIES): Allow the info values to be NULL.
4391         (COMPARE_DIRECTORIES): Duh, use the list_model, not the
4392         tree_model.
4393         (get_list_file_info): Likewise!
4394         (list_icon_data_func): Handle the path being NULL.
4395         (new_folder_button_clicked): New callback.
4396         (list_name_data_func): If we are on the editable row, set the text
4397         to "Type name of new folder".
4398         (list_selection_changed): Handle the editable row.
4399         (list_mtime_data_func): Likewise.
4400
4401         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_make_path): Return
4402         NULL, not FALSE.
4403         (gtk_file_system_unix_create_folder): Test the result of mkdir() correctly.
4404
4405 Fri Jan 16 23:59:01 2004  Matthias Clasen  <maclas@gmx.de>
4406
4407         The first part of the fix for #114351 (see also 
4408         gdk-pixbuf/ChangeLog and po/ChangeLog):
4409         
4410         * gtk/gtkintl.h: 
4411         * gdk/gdkintl.h: Define P_() for property blurbs and nicks.
4412
4413         * gdk/gdkdisplaymanager.c:
4414         * modules/input/gtkimcontextxim.c:
4415         * gtk/*.c:  Mark property blurbs and nicks with P_().
4416         
4417 2004-01-16  Federico Mena Quintero  <federico@ximian.com>
4418
4419         Fix #130969.
4420
4421         * gtk/gtkcellrenderer.h (struct _GtkCellRendererClass): Added an
4422         editing_canceled signal.
4423
4424         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): Create the
4425         "editing-canceled" signal.
4426         (gtk_cell_renderer_editing_canceled): New function.
4427
4428         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_editing_done):
4429         Call gtk_cell_renderer_editing_canceled().
4430
4431 2004-01-16  Federico Mena Quintero  <federico@ximian.com>
4432
4433         * gtk/gtkfilechooserdefault.c
4434         (gtk_file_chooser_default_set_property): Do not allow setting
4435         select_multiple when in Save mode.
4436         (set_list_model): No need to nullify the list_model and
4437         sort_model.
4438         (gtk_file_chooser_default_get_paths): Handle folder mode as well.
4439         (get_paths_foreach): Likewise.
4440
4441         * gtk/gtkfilechooser.c (gtk_file_chooser_get_filename): Clarify
4442         documentation about folder mode.
4443         (gtk_file_chooser_get_uri): Likewise.
4444
4445 2004-01-16  Federico Mena Quintero  <federico@ximian.com>
4446
4447         * gtk/gtkfilesystem.h (struct _GtkFileSystemIface): New
4448         get_volume_for_path() method.
4449         (struct _GtkFileSystemIface): Finally removed the list_roots() and
4450         get_root_info() methods, and the "roots-changed" signal.
4451
4452         * gtk/gtkfilesystem.c (gtk_file_system_get_volume_for_path): New
4453         function.
4454         (gtk_file_system_list_roots): Removed.
4455         (gtk_file_system_get_root_info): Removed.
4456
4457         * gtk/gtkfilesystemunix.c
4458         (gtk_file_system_unix_get_volume_for_path): Implement.
4459         (get_root_volume): New helper function.
4460         (gtk_file_system_unix_list_volumes): Use get_root_volume().
4461         (gtk_file_system_unix_list_roots): Removed.
4462         (gtk_file_system_unix_get_root_info): Removed.
4463
4464         * gtk/gtkfilesystemmodel.c (_gtk_file_system_model_new): Don't
4465         accept a NULL root_path.
4466         (struct _GtkFileSystemModel): Add a field to remember the
4467         root_path.
4468         (_gtk_file_system_model_new): Store the root_path in the model
4469         structure.
4470         (find_and_ref_path): Stop going up the hierarchy at the root_path
4471         of the model.  Also, don't return prematurely when walking up the
4472         hierarchy.
4473
4474         * gtk/gtkfilechooserdefault.c (create_file_list): Sigh, restore
4475         the rules_hint.
4476         (struct _GtkFileChooserDefault): Added a current_volume_path field.
4477         (set_tree_model): New function; create the folder tree model here.
4478         (create_folder_tree): Don't create the model here.
4479         (set_list_model): Set the show_hidden flag on the list model.
4480
4481 Fri Jan 16 00:04:43 2004  Matthias Clasen  <maclas@gmx.de>
4482
4483         * gtk/gtknotebook.h:
4484         * gtk/gtknotebook.c (gtk_notebook_append_page): 
4485         * gtk/gtknotebook.c (gtk_notebook_append_page_menu): 
4486         * gtk/gtknotebook.c (gtk_notebook_prepend_page): 
4487         * gtk/gtknotebook.c (gtk_notebook_prepend_page_menu): 
4488         * gtk/gtknotebook.c (gtk_notebook_insert_page): 
4489         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): Return the
4490         index of the newly inserted page.  (#130986, Olexiy Avramchenko) 
4491
4492 Thu Jan 15 23:17:14 2004  Matthias Clasen  <maclas@gmx.de>
4493
4494         * gtk/gtkuimanager.c (gtk_ui_manager_get_toplevels): Inserting
4495         a 'newly-allocated' to hint that the list should be freed after
4496         use.
4497
4498 Wed Jan 14 18:01:52 2004  Jonathan Blandford  <jrb@gnome.org>
4499
4500         * gtk/gtktreeview.c (gtk_tree_view_button_press): move grab_focus
4501         to after handling the button presses in the TreeView to avoid
4502         getting multiple selection_changes()
4503
4504 Wed Jan 14 21:16:20 2004  Matthias Clasen  <maclas@gmx.de>
4505
4506         * gtk/gtkimcontext.c: Documentation fix.  (#131335, Theppitak 
4507         Karoonboonyanan)
4508
4509 Wed Jan 14 21:00:49 2004  Matthias Clasen  <maclas@gmx.de>
4510
4511         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
4512         Don't leak name and stock_id.  (#131358, Morten Welinder)
4513
4514 Wed Jan 14 13:07:30 GMT 2004  Tony Gale <gale@gtk.org>
4515
4516         * docs/faq/gtk-faq.sgml: Updates to Section 5
4517
4518 Wed Jan 14 02:34:57 2004  Matthias Clasen  <maclas@gmx.de>
4519
4520         * gtk/gtkradioaction.c: Add a writable group property to align
4521         with the GtkRadioButton API.  (#129166, Olivier Andrieu) 
4522
4523 Tue Jan 13 14:48:27 GMT 2004  Tony Gale <gale@gtk.org>
4524
4525         * docs/faq/gtk-faq.sgml: Update info on using autoconf
4526
4527 Mon Jan 12 23:40:34 2004  Matthias Clasen  <maclas@gmx.de>
4528
4529         * tests/testmerge.c: Adjust to the new connect_proxy signals.
4530
4531         * gtk/gtkuimanager.c
4532         * gtk/gtkactiongroup.c
4533         * gtk/gtkaction.c: Move the connect_proxy and disconnect_proxy signals
4534         from GtkAction to GtkActionGroup and proxy it on GtkUIManager. This
4535         removes the confusion between the disconnect_/connect_proxy signals 
4536         and the (unrelated) virtual functions of the same name and aligns
4537         the setup with the pre_/post_activate signals.
4538
4539 2004-01-12  Jody Goldberg <jody@gnome.org>
4540
4541         * gtk/gtkaction.c (connect_proxy) : only connect activate for menus
4542           with no submenus otherwise it looks like we activate every time a
4543           submenu opens.
4544
4545 2004-01-12  Jody Goldberg <jody@gnome.org>
4546
4547         * gtk/gtkuimanager.c: Remove accidentially committed debug spew.
4548
4549 Sun Jan 11 01:55:07 2004  Matthias Clasen  <maclas@gmx.de>
4550
4551         * gtk/gtkaccelmap.c: Remove accidentally committed notification stuff. 
4552         (gtk_accel_map_lock_path): 
4553         (gtk_accel_map_unlock_path): Path locking can now be nested, a missing
4554         entry is silently created during lock_path(), and treated as an error 
4555         during unlock_path(). These changes have been requested by Tim Janik.
4556
4557 2004-01-10  Jody Goldberg <jody@gnome.org>
4558
4559         * gtk/gtkuimanager.c (d) : Add a debug macro to quiet the spew.
4560         s/merge_signals/ui_manager_signals/ for readability.
4561         (gtk_ui_manager_class_init) : add pre_activate and post_activate
4562           signals.
4563         (cb_proxy_pre_activate) : new.
4564         (cb_proxy_post_activate) : new.
4565         (gtk_ui_manager_insert_action_group) : connect the proxies for
4566           GtkActionGroup::pre/post_activate
4567         (gtk_ui_manager_remove_action_group) : disconnect them.
4568
4569         * gtk/gtkactiongroup.c (gtk_action_group_class_init) : add
4570           'sensitive', and 'visible' properties.  Also add pre_activate and
4571           post_activate signals to help deal with activations at a higher
4572           level (eg GtkUIManager)
4573         (gtk_action_group_init) : init sensitive and visible
4574         (gtk_action_group_set_property) : add sensitive and visible
4575         (gtk_action_group_get_property) : add sensitive and visible
4576         (gtk_action_group_get_sensitive) : new.
4577         (gtk_action_group_get_visible) : new.
4578         (cb_set_action_sensitivity) : new with minor optimization that only
4579           signals sensitivity changes if the action could possibly change.
4580         (cb_set_action_visiblility) : ditto.
4581         (gtk_action_group_set_sensitive) : new.  walk the actions directly
4582           rather than using notify::sensitive because that is simpler, easier
4583           to read, and more efficient.
4584         (gtk_action_group_set_visible) : ditto.
4585         (gtk_action_group_add_action) : Each action can only be in 1 group,
4586           set GtkAction::action_group.
4587         (gtk_action_group_remove_action) : clear it.
4588         (gtk_action_group_add_toggle_actions_full) : warning suppression.
4589         (gtk_action_group_add_radio_actions_full) : warning suppression.
4590         (_gtk_action_group_emit_pre_activate) : new protected routine for use
4591           by GtkAction.
4592         (_gtk_action_group_emit_post_activate) : ditto.
4593
4594         * gtk/gtkaction.c (gtk_action_class_init) : add 'action_group' property.
4595         (gtk_action_init) : initialize it.
4596         (gtk_action_get_property) : get.
4597         (gtk_action_set_property) : set it via
4598         (gtk_action_set_action_group) : new function.
4599         (gtk_action_sync_sensitivity) : new routine to sync proxy sensitivity
4600           with the logical sensitivity (action & group) rather than the simple
4601           action::sensitivity.
4602         (gtk_action_sync_visible) : use gtk_action_is_visible to handle
4603           logical visibility (action & group) rather than the simple
4604           action::visible.  Use widget show/hide directly.
4605         (connect_proxy) : handle the custom sensitivity handler.
4606           Make the TOOL_BUTTON signals more general and support TOOL_ITEM
4607           directly, with special cases for TOOL_BUTTON.  Still not especially
4608           good it might be useful to handle label/use_underline by parmspec
4609           lookup.  Those are likely to be implemented by custom types, and are
4610           assumed to exist in GtkToolItem.
4611         (disconnect_proxy) : disconnect the new sensitivity handler.
4612         (_gtk_action_emit_activate) : add pre/post signals.
4613         (gtk_action_activate) : use logical sensitivity.
4614         (gtk_action_is_sensitive) : logical sensitivity.
4615         (gtk_action_get_sensitive) : actual sensitivity.
4616         (closure_accel_activate) : use logical sensitivity.
4617
4618 Fri Jan  9 22:23:45 2004  Matthias Clasen  <maclas@gmx.de>
4619
4620         * gtk/gtkuimanager.c: Introduce a new parser state for 
4621         accelerator elements to avoid misparsing files containing 
4622         such elements.  (#131035, Morten Welinder)
4623
4624 Fri Jan  9 11:58:47 2004  Manish Singh  <yosh@gimp.org>
4625
4626         * gdk-pixbuf/gdk-pixbuf-io.c: #include <unistd.h> for unlink()
4627
4628 Fri Jan  9 15:28:21 GMT 2004  Tony Gale <gale@gtk.org>
4629
4630         * docs/faq/gtk-faq.sgml: update GtkEntry filter code example
4631
4632 Fri Jan  9 00:34:57 2004  Matthias Clasen  <maclas@gmx.de>
4633
4634         * gtk/gtkuimanager.h:
4635         * gtk/gtkuimanager.c (gtk_ui_manager_get_toplevels): New function to
4636         obtain a list of toplevel widgets constructed by the ui manager.
4637
4638         * gtk/gtkuimanager.h (GtkUIManagerItemType): Change to flags, so that 
4639         the values can be combined for gtk_ui_manager_get_toplevels().
4640
4641         * tests/testmerge.c: Add a "Dump toplevels" button to test 
4642         gtk_ui_manager_get_toplevels().
4643
4644 Wed Jan  7 23:20:06 2004  Matthias Clasen  <maclas@gmx.de>
4645
4646         * demos/gtk-demo/Makefile.am (demos): Add entry_completion.c
4647         
4648         * demos/gtk-demo/entry_completion.c: New demo for GtkEntryCompletion 
4649         by Anders Carlsson  (#130464).
4650
4651 Wed Jan  7 23:07:28 2004  Matthias Clasen  <maclas@gmx.de>
4652
4653         * gtk/gtkmain.h: 
4654         * gtk/gtkmain.c (gtk_events_pending): Change the return value from 
4655         gint to gboolean.  (#130718, reported by Johannes Weißl)
4656
4657 Wed Jan  7 23:03:32 2004  Matthias Clasen  <maclas@gmx.de>
4658
4659         * gtk/gtkactiongroup.h: 
4660         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
4661         Remove the redundant name and stock_id parameters, adjust all callers.
4662
4663 Wed Jan  7 22:20:20 2004  Matthias Clasen  <maclas@gmx.de>
4664
4665         * gtk/gtkaction.h: 
4666         * gtk/gtkaction.c (gtk_action_new):  
4667         * gtk/gtktoggleaction.h: 
4668         * gtk/gtktoggleaction.c (gtk_toggle_action_new): 
4669         * gtk/gtkradioaction.h: 
4670         * gtk/gtkradioaction.c (gtk_radio_action_new): Add creation 
4671         functions for actions.
4672
4673         * gtk/gtkactiongroup.c (gtk_action_group_add_actions_full): 
4674         (gtk_action_group_add_toggle_actions_full): 
4675         (gtk_action_group_add_radio_actions_full): and use the
4676         new functions here.  (#125322, Patch by Jeff Frank)
4677
4678 Wed Jan  7 21:42:49 2004  Matthias Clasen  <maclas@gmx.de>
4679
4680         * gtk/gtkaccelmap.c (gtk_accel_map_lock_path): Fix grammar of 
4681         docs.
4682
4683 2004-01-07  Jan Arne Petersen  <jpetersen@uni-bonn.de>
4684
4685         * gtk/gtkfilechooserdefault.c: (shortcuts_insert_path),
4686         (shortcuts_append_home), (shortcuts_append_desktop),
4687         (shortcuts_append_paths), (shortcuts_add_volumes),
4688         (shortcuts_append_bookmarks), (create_shortcuts_model),
4689         (gtk_file_chooser_default_add_shortcut_folder): add REMOVABLE column
4690         to the shortcuts_model.
4691
4692         (remove_bookmark_button_clicked_cb),
4693         (bookmarks_check_remove_sensitivity): use REMOVABLE column to check if
4694         bookmarks can be removed. Fixes #129873
4695
4696 Wed Jan  7 02:50:55 2004  Matthias Clasen  <maclas@gmx.de>
4697
4698         * demos/testpixbuf-save.c: Make s, S, Control-S, p, P, Control-P,
4699         i, I, Control-I test gdk_pixbuf_save(), gdk_pixbuf_save_to_buffer()
4700         and gdk_pixbuf_save_to_callback() with jpeg, png and ico formats, 
4701         respectively. Tests #82203.
4702
4703 2004-01-06  Federico Mena Quintero  <federico@ximian.com>
4704
4705         * gtk/gtkfilesel.c (gtk_file_selection_create_dir_confirmed): Use
4706         0777 as the mode for mkdir() and let the umask do the right
4707         thing.  Fixes #121819.
4708
4709         * gtk/gtkfilesystemunix.c (filename_is_root): g_path_skip_root()
4710         can return NULL; handle this.  Fixes #129565.
4711
4712 2004-01-06  Alexander Winston  <alexander.winston@comcast.net>
4713
4714         * gtk/gtkfilesel.c: (gtk_file_selection_delete_file): Removed space
4715         that proceeded the end-of-sentence punctuation. Fixes: #130353.
4716
4717 2004-01-06  Jody Goldberg <jody@gnome.org>
4718
4719         * gtk/gtktoolitem.c (gtk_tool_item_set_property) : Call 
4720           gtk_tool_item_set_visible_vertical for PROP_VISIBLE_VERTICAL.
4721
4722 2004-01-05  Federico Mena Quintero  <federico@ximian.com>
4723
4724         * gtk/gtkfilechooserdefault.c (shortcuts_append_bookmarks): Oops,
4725         call shortcuts_add_bookmarks() here.
4726         (remove_bookmark_button_clicked_cb): Ahem, fetch the selected
4727         iter.
4728         (shortcuts_append_paths): Don't display error dialogs here.
4729         (create_file_list): Remove the @#$% rules hint.
4730
4731 2004-01-05  Federico Mena Quintero  <federico@ximian.com>
4732
4733         * gtk/gtkfilechooserdefault.c (toolbar_button_new): New helper
4734         function.
4735         (toolbar_create): Do not use a toolbar widget, just an hbox
4736         instead.  Add the bookmarks buttons and the current folder label
4737         here.
4738         (create_filename_entry_and_filter_combo): Create the filter combo
4739         here.
4740         (filter_create): Don't show the filter combo initially.
4741         (up_button_cb): Renamed from toolbar_up_cb().
4742         (create_shortcuts_buttons): Removed.
4743
4744 2004-01-05  Murray Cumming  <murrayc@usa.net>
4745
4746         * gdk/gdkimage.h: Added <public> documentation to the struct, as
4747         suggested by Owen Taylor.
4748
4749 2004-01-05  Jody Goldberg <jody@gnome.org>
4750
4751         * gtk/gtkiconfactory.c (get_default_icons) : add stock indent, unindent
4752           I would have prefered outdent, but compatibility seems more
4753           important.
4754         * gtk/gtkstock.c (builtin_items) : ditto.
4755         * gtk/gtkstock.h : ditto.
4756         * gtk/stock-icons/Makefile.am : ditto.
4757         * gtk/stock-icons/stock_text_indent_16.png :
4758         * gtk/stock-icons/stock_text_indent_24.png :
4759         * gtk/stock-icons/stock_text_unindent_16.png :
4760         * gtk/stock-icons/stock_text_unindent_24.png : from gnome-icon-theme
4761
4762 Sun Jan  4 15:29:04 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
4763
4764         * gtk/gtkradiotoolbutton.[ch]
4765         (gtk_radio_tool_button_new_with_stock_from_widget): Change API so
4766         group is a GtkRadioButton, not a GtkWidget.
4767
4768 2004-01-04  Hans Breuer  <hans@breuer.org>
4769
4770         * gdk/win32/gdkwindow-win32.c : use SWP_NOACTIVATE in 
4771         gdk_window_set_keep_(above|below) to make DND work again.
4772         Thanks to Alif Wahid for noticing.
4773
4774         * gdk/gdk.def : update externals
4775
4776         * gtk/gtkfilesystemwin32.c : adapt to GtkFileSystemIFace changes
4777
4778         * gtk/gtk-stock.[hc] gtk/gtkiconfactory.c 
4779           gtk/stock-icons/Makefile.am gtk/stock-icons/makefile.msc :
4780           gtk/stock-icons/stock_harddisk_16.png 
4781           gtk/stock-icons/stock_harddisk_24.png 
4782         Harddisk stock icons for file system implementations. Beside
4783         FLOPPY and CDROM there is now HARDDISK, probably some 
4784         GTK_STOCK_NETWORK would be useful, but I could not find one.
4785
4786 Sat Jan  3 11:39:42 2004  Manish Singh  <yosh@gimp.org>
4787
4788         * gtk/gtkclipboard.c: Update freedesktop.org clipboard doc link.
4789         Patch from Andrew Moise (#130462).
4790
4791 2004-01-01  Jody Goldberg <jody@gnome.org>
4792
4793         * gtk/gtkaction.c (_GtkActionPrivate) : add visible_horizontal,
4794           visible_vertical.
4795         (gtk_action_class_init) : here.
4796         (gtk_action_init) : here.
4797         (gtk_action_set_property) : here.
4798         (gtk_action_get_property) : here.
4799         (connect_proxy) : and here.
4800
4801 2003-12-30  Jody Goldberg <jody@gnome.org>
4802
4803         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel) :  new
4804           utility routine for use in derived GtkActions with the replicated code
4805           from.
4806         (gtk_action_group_add_actions_full) : here.
4807         (gtk_action_group_add_toggle_actions_full) : here.
4808         (gtk_action_group_add_radio_actions_full) : and here.
4809
4810 2004-01-01  Taneem Ahmed  <taneem@bengalinux.org>
4811
4812         * configure.in: Added "bn" to ALL_LINGUAS.
4813
4814 2004-01-01  Taneem Ahmed  <taneem@bengalinux.org>
4815
4816         * bn.po: Added Bangla translation by 
4817         of Ankur group <gnome-translation@bengalinux.org>.
4818
4819 Fri Jan  2 02:50:11 2004  Matthias Clasen  <maclas@gmx.de>
4820
4821         * gtk/gtkcalendar.c (gtk_calendar_compute_days): 
4822         * gtk/gtkcalendar.c (gtk_calendar_paint_day_names): 
4823         * gtk/gtkcalendar.c (gtk_calendar_init): Changes to support 
4824         week_start values other than 0 and 1, e.g. 6 will let weeks start
4825         on Saturday.  (#130349, Roozbeh Pournader) 
4826
4827 2003-12-31 13:49 Daniel Rogers <dsrogers@phasevelocity.org>
4828
4829         * gdk/x11/gdkinput-x11.c: (gdk_input_translate_coordinates)
4830         
4831         Fix to allow reasonable pointer behavior in window mode when an
4832         extended input device reports an incorrect resolution of 0.  Fixes
4833         bug #123546
4834         
4835 2003-12-31  Christian Neumair  <chris@gnome-de.org>
4836
4837         * gdk-pixbuf/gdk-pixdata.c: (gdk_pixbuf_from_pixdata):
4838         * gtk/gtkfilechooserdefault.c: (list_size_data_func): Use ngettext for
4839         plurals (#123847).
4840
4841 Wed Dec 31 02:05:39 2003  Matthias Clasen  <maclas@gmx.de>
4842
4843         * gtk/gtkactiongroup.c (gtk_action_group_add_actions_full): 
4844         (gtk_action_group_add_toggle_actions_full):
4845         (gtk_action_group_add_radio_actions_full): Pull accelerator key
4846         from the stock item if stock_id is given, but accelerator 
4847         not.  (Noticed by Jeff Franks and Jody Goldberg)
4848
4849         * tests/testmerge.c: Remove the accelerator from the "Open" entry
4850         to test the above change.
4851         
4852 2003-12-29  Federico Mena Quintero  <federico@ximian.com>
4853
4854         Make show_all() work for the extra and preview widgets; reported
4855         by Paolo Maggi.
4856
4857         * gtk/gtkfilechooserdefault.c (set_preview_widget): show_all() the
4858         preview widget.
4859         (set_extra_widget): show_all() the extra widget.
4860
4861 Mon Dec 29 12:22:22 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
4862
4863         * gtk/gtkuimanager.c (do_updates): 
4864         * gtk/gtktoolbar.c (slide_idle_handler): 
4865         * gtk/gtkdnd.c (gtk_drag_update_idle): 
4866
4867         Add GDK_THREADS_ENTER()/GDK_THREADS_LEAVE() pairs around idle
4868         functions. (#130157, patch from Olexiy Avramchenko).
4869         
4870 2003-12-29  Anders Carlsson  <andersca@gnome.org>
4871
4872         * gtk/gtkradiotoolbutton.c:
4873         * gtk/gtkradiotoolbutton.h:
4874         * gtk/gtkseparatortoolitem.c:
4875         * gtk/gtkseparatortoolitem.h:
4876         * gtk/gtktoggletoolbutton.c:
4877         * gtk/gtktoggletoolbutton.h:
4878         * gtk/gtktoolbar.c:
4879         * gtk/gtktoolbar.h:
4880         * gtk/gtktoolbutton.c:
4881         * gtk/gtktoolbutton.h:
4882         * gtk/gtktoolitem.c:
4883         * gtk/gtktoolitem.h:
4884         Update my e-mail address.
4885         
4886 Mon Dec 29 01:36:22 2003  Matthias Clasen  <maclas@gmx.de>
4887
4888         * gtk/gtkaccelmap.[hc]: (gtk_accel_map_lock_path, 
4889         gtk_accel_map_unlock_path): Add a way to lock individual accelerator
4890         paths.  (#73207, reported by Havoc Pennington)
4891
4892 Sat Dec 27 23:17:56 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
4893
4894         * gtk/gtktoolbar.c (slide_idle_handler): use CHILD_VISIBLE
4895         instead of VISIBLE to determine whether we should stop
4896         sliding. (#130018, reported by Christian Persch).
4897
4898 Fri Dec 26 23:24:35 2003  Matthias Clasen  <maclas@gmx.de>
4899
4900         * gtk/gtkactiongroup.c (gtk_action_group_add_radio_actions_full): 
4901         Don't use first_action without initializing it if n_entries is 0.
4902
4903 Thu Dec 25 00:26:34 2003  Matthias Clasen  <maclas@gmx.de>
4904
4905         * gdk/x11/gdkcursor-x11.c (gdk_display_get_default_cursor_size):
4906         Add the missing _get_ to the name of the non-Xcursor version of
4907         this function.  (noticed by Torsten Schoenfeld)
4908
4909 Tue Dec 23 22:34:50 2003  Manish Singh  <yosh@gimp.org>
4910
4911         * gtk/gtkicontheme.h: fix GTK_TYPE_ICON_INFO macro, reported by
4912         muppet.
4913
4914 2003-12-24  Jody Goldberg <jody@gnome.org>
4915
4916         * gtk/gtkactiongroup.h : Add some const to the char * in
4917           GtkActionEntry*.  We're reccomending people pass static strings to
4918           them, and not freeing them.  This stems to flood of warnings that
4919           result.
4920         * gtk/gtkactiongroup.c (gtk_action_group_add_actions_full) : change
4921           temp vars to const to match above.
4922         (gtk_action_group_add_toggle_actions_full) : ditto.
4923         (gtk_action_group_add_radio_actions_full) : ditto.
4924
4925 Wed Dec 24 01:12:53 2003  Matthias Clasen  <maclas@gmx.de>
4926
4927         * gtk/gtkclipboard.[hc]: Add GtkClipboardTargetReceivedFunc,
4928         gtk_clipboard_request_targets() and 
4929         gtk_clipboard_wait_for_targets().  (#101774, Dom Lachowicz)
4930
4931 Mon Dec 22 00:40:39 2003  Matthias Clasen  <maclas@gmx.de>
4932
4933         * gtk/gtkcalendar.c (gtk_calendar_paint_arrow): Use 
4934         gtk_paint_arrow instead of draw_arrow_left/draw_arrow_right.
4935         * gtk/gtkcalendar.c (draw_arrow_left):
4936         (draw_arrow_right): Removed. 
4937         * gtk/gtkcalendar.c (gtk_calendar_realize_arrows): 
4938         * gtk/gtkcalendar.c (gtk_calendar_state_changed): Set the
4939         arrow_state to GTK_STATE_INSENSITIVE if the calendar is 
4940         insensitive.  (#97376)
4941
4942 Sun Dec 21 23:17:01 2003  Matthias Clasen  <maclas@gmx.de>
4943
4944         * gtk/gtkuimanager.c (update_node): 
4945         (update_smart_separators): 
4946         (_gtk_menu_is_empty): 
4947         (find_menu_position): 
4948         * gtk/gtktreeview.c (gtk_tree_view_search_dialog_destroy): 
4949         * gtk/gtkcombobox.c (gtk_combo_box_relayout_item): 
4950         (gtk_combo_box_relayout): Fix memory leaks caused by the
4951         failure to free the result of gtk_container_get_children().
4952
4953 Sun Dec 21 17:34:22 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
4954
4955         * gdk/x11/gdkwindow-x11.c (gdk_window_reparent): Set the right
4956         properties when the window becomes a toplevel. When a window that
4957         was previously a toplevel becomes a toplevel again, restore its
4958         window type. Also make sure the focus window is removed from the
4959         XID hash when it is destroyed. (#117579, reported by Morten
4960         Welinder, patch reviewed by Owen Taylor).
4961
4962 Sun Dec 21 01:54:40 2003  Matthias Clasen  <maclas@gmx.de>
4963
4964         * gtk/gtkmenushell.h: 
4965         * gtk/gtkmenushell.c (gtk_menu_shell_cancel): New function 
4966         to emit the "cancel" signal on a menu shell.
4967
4968         * gtk/gtkmenu.c (gtk_menu_key_press): 
4969         * gtk/gtkoptionmenu.c (gtk_option_menu_remove_menu): 
4970         * gtk/gtkmenubar.c (_gtk_menu_bar_cycle_focus): Use the 
4971         new function instead of directly emitting the 
4972         signal.  (#81803, Owen Taylor)
4973
4974 Sun Dec 21 00:39:50 2003  Matthias Clasen  <maclas@gmx.de>
4975
4976         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
4977         Fix the "language_set" blurb.  
4978         
4979 Sat Dec 20 22:06:03 2003  Kristian Rietveld  <kris@gtk.org>
4980
4981         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): do not invalidate
4982         all of treeview when resizing (#110074, patch from Soeren Sandmann).
4983
4984 Fri Dec 19 23:36:00 2003  Kristian Rietveld  <kris@gtk.org>
4985
4986         Fixes #108458.
4987
4988         * gtk/gtkcelllayout.[ch]: added a reorder method.
4989
4990         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_layout_init),
4991         (gtk_tree_view_column_cell_layout_reorder): implement reorder.
4992
4993         * gtk/gtkcellview.c (gtk_cell_view_cell_layout_init),
4994         (gtk_cell_view_cell_layout_reorder): ditto.
4995
4996         * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_init),
4997         (gtk_combo_box_cell_layout_reorder): ditto.
4998
4999         * gtk/gtkentrycompletion.c (gtk_entry_completion_cell_layout_init),
5000         (gtk_entry_completion_reorder): ditto.
5001
5002 Fri Dec 19 22:18:19 2003  Kristian Rietveld  <kris@gtk.org>
5003
5004         * gtk/gtktreeview.c (gtk_tree_view_search_equal_func): use strstr
5005         instead of strcmp (#117127, suggestion from Soeren Sandmann).
5006
5007 Fri Dec 19 21:52:46 2003  Kristian Rietveld  <kris@gtk.org>
5008
5009         * gtk/gtkmenu.c (gtk_menu_do_insert): move item insertion logic
5010         here from gtk_menu_real_insert(),
5011         (gtk_menu_real_insert): just call gtk_menu_do_insert(),
5012         (gtk_menu_reorder_child): run _do_insert after inserting the child
5013         (unbreaks _reorder_child, reported by Tim Janik).
5014
5015 2003-12-19  Federico Mena Quintero  <federico@ximian.com>
5016
5017         * gtk/gtkfilechooserdefault.c (list_mtime_data_func): Use
5018         g_date_strftime() for UTF-8 correctness; use Julian dates to
5019         simplify the function.
5020
5021 Fri Dec 19 01:47:34 2003  Matthias Clasen  <maclas@gmx.de>
5022
5023         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_size_request): 
5024         Test extra_width, not extra_height, when determining whether to
5025         set extra_width.  (#129647, Jan Arne Petersen)
5026
5027 Fri Dec 19 01:35:34 2003  Matthias Clasen  <maclas@gmx.de>
5028
5029         Fix the behaviour of insensitive actions, which was broken
5030         when gtk_action_activate() was changed to pay attention to 
5031         sensitivity  (#129557, Christian Persch)
5032         
5033         * gtk/gtkaction.h: 
5034         * gtk/gtkaction.c (_gtk_action_emit_activate): New auxiliary
5035         function to emit an activate signal without regard to sensitivity.
5036
5037         * gtk/gtkradioaction.c: 
5038         * gtk/gtktoggleaction.c: Always use _gtk_action_emit_activate()
5039         instead of gtk_action_activate().
5040
5041 2003-12-18  Jody Goldberg <jody@gnome.org>
5042
5043         * gtk/gtkicontheme.c (gtk_icon_theme_lookup_icon)) : Add a sanity test
5044           to ensure that the base hicolor theme is installed.  Silently
5045           failing to produce icons that apps assume exist in the theme seems
5046           like a bad idea.
5047
5048 Thu Dec 18 19:13:12 2003  Kristian Rietveld  <kris@gtk.org>
5049
5050         Fixes #110249, reworked patch from Joshua N Pritikin.
5051
5052         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_get_type),
5053         (gtk_tree_model_sort_tree_drag_source_init),
5054         (gtk_tree_model_sort_row_draggable),
5055         (gtk_tree_model_sort_drag_data_get),
5056         (gtk_tree_model_sort_drag_data_delete): implement GtkTreeDragSource.
5057
5058         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_get_type),
5059         (gtk_tree_model_filter_tree_drag_source_init),
5060         (gtk_tree_model_filter_row_draggable),
5061         (gtk_tree_model_filter_drag_data_get),
5062         (gtk_tree_model_filter_drag_data_delete): ditto.
5063
5064 Thu Dec 18 18:01:01 2003  Kristian Rietveld  <kris@gtk.org>
5065
5066         * gtk/gtktreeview.c (gtk_tree_view_class_init): add key bindings
5067         for "*" and "/" (expand/collapse all). (#110195, reported by
5068         Calum Benson).
5069
5070 Thu Dec 18 17:52:56 2003  Kristian Rietveld  <kris@gtk.org>
5071
5072         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property):
5073         clear the extra_attrs list if we set "text" after "markup".
5074         (Fixes #121933, Federico Mena Quintero).
5075
5076 2003-12-18  Alexander Larsson  <alexl@redhat.com>
5077
5078         * gtk/gtkicontheme.c (gtk_icon_info_get_embedded_rect):
5079         Fix typo that used the wrong x/y values for the x1, y1 point
5080         (#129605)
5081
5082 Thu Dec 18 01:41:50 2003  Kristian Rietveld  <kris@gtk.org>
5083
5084         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init),
5085         (gtk_cell_renderer_text_finalize),
5086         (gtk_cell_renderer_text_get_property),
5087         (gtk_cell_renderer_text_set_property), (get_layout): added language
5088         and language_set properties like GtkTextTag has. (#103800, reported
5089         by Owen Taylor).
5090
5091 Thu Dec 18 01:37:59 2003  Matthias Clasen  <maclas@gmx.de>
5092
5093         * gtk/gtkwidget.c (gtk_widget_activate): Correct misleading docs.
5094         * gtk/gtkbutton.c (gtk_button_class_init): Add docs for the 
5095         "activate" signal.  (#129358, Ka-Hing Cheung)
5096
5097 Thu Dec 18 01:21:59 2003  Kristian Rietveld  <kris@gtk.org>
5098
5099         * gtk/gtktreeview.c (gtk_tree_view_class_init): Jonathan got
5100         the logical flag backwards in the expand_collapse_cursor_row
5101         bindings, fixing.
5102         (gtk_tree_view_real_expand_collapse_cursor_row): invert expand
5103         flag when !logical and in RTL. (Fixes #107527, reported by
5104         Noah Levitt).
5105
5106 Thu Dec 18 01:10:16 2003  Kristian Rietveld  <kris@gtk.org>
5107
5108         * gtk/gtktreeview.c (gtk_tree_view_button_press): only start
5109         editing when activated by the left mouse button. (#106869,
5110         patch from Evan Martin).
5111
5112 Thu Dec 18 00:57:18 2003  Kristian Rietveld  <kris@gtk.org>
5113
5114         Migrating all cell renderers to use the new instance private data
5115         construction.
5116
5117         * gtk/gtktreeprivate.h: remove GtkCellRendererInfo, as it is no
5118         longer being used.
5119
5120         * gtk/gtkcellrenderer.c (gtk_cell_renderer_init),
5121         (gtk_cell_renderer_class_init), (gtk_cell_renderer_get_property),
5122         (set_cell_bg_color), (gtk_cell_renderer_render): remove old
5123         GtkCellRendererInfo handling, migrate to instance private data.
5124
5125         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_editing_done),
5126         (gtk_cell_renderer_text_start_editing): moved focus_out_id
5127         from GtkCellRendererInfo to text renderer private data.
5128
5129         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_init),
5130         (gtk_cell_renderer_pixbuf_class_init),
5131         (gtk_cell_renderer_pixbuf_finalize),
5132         (gtk_cell_renderer_pixbuf_get_property),
5133         (gtk_cell_renderer_pixbuf_set_property),
5134         (gtk_cell_renderer_pixbuf_create_stock_pixbuf),
5135         (gtk_cell_renderer_pixbuf_get_size), (gtk_cell_renderer_pixbuf_render):
5136         migrate to instance private data.
5137
5138         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_class_init),
5139         (gtk_cell_renderer_toggle_get_property),
5140         (gtk_cell_renderer_toggle_set_property),
5141         (gtk_cell_renderer_toggle_render): migrate to instance private data.
5142
5143 Thu Dec 18 00:24:32 2003  Kristian Rietveld  <kris@gtk.org>
5144
5145         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init),
5146         (gtk_cell_renderer_text_get_property),
5147         (gtk_cell_renderer_text_set_property), (get_layout): add a
5148         single-paragraph-mode property, use private instance data.
5149         (Fixes #114943, reported by Morten Welinder).
5150
5151 Thu Dec 18 00:07:01 2003  Kristian Rietveld  <kris@gtk.org>
5152
5153         * gtk/gtktreemodel.h (gtk_tree_path_new_root),
5154         (gtk_tree_model_get_iter_root): now deprecated (#106953, reported
5155         by Matthias Clasen).
5156
5157 Wed Dec 17 23:50:56 2003  Kristian Rietveld  <kris@gtk.org>
5158
5159         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_set_property):
5160         if we set a new stock_id and there was a previous stock_id, unref
5161         the pixbuf (since it was used to renderer the previous stock_id
5162         and stock_id might have been set to NULL now). (Fixes #122966).
5163
5164 2003-12-17  Marco Pesenti Gritti  <marco@gnome.org>
5165
5166         * gtk/gtktreemodelsort.c: (gtk_tree_model_sort_get_iter):
5167
5168         Check that index is not bigger than level array length
5169         also when depth is 1. Now get_iter_first correctly return
5170         FALSE when the model is empty (#129411).
5171
5172 Wed Dec 17 23:31:19 2003  Kristian Rietveld  <kris@gtk.org>
5173
5174         * gtk/gtktreeview.c (gtk_tree_view_search_equal_func): only
5175         try to strcmp or strlen if we managed to normalize and casefold
5176         the string correctly. Fixes crashes with non-UTF8 strings.
5177         (#121617, Patch from Tim-Philipp Müller).
5178
5179 Wed Dec 17 23:20:23 2003  Matthias Clasen  <maclas@gmx.de>
5180
5181         * gtk/gtkexpander.c (gtk_expander_animation_timeout): Add missing
5182         GDK_THREADS_ENTER()/GDK_THREADS_LEAVE().
5183         * gtk/gtkcalendar.c, gtk/gtkclist.c, gtk/gtkexpander.c, 
5184         gtk/gtklist.c, gtk/gtknotebook.c, gtk/gtkselection.c, 
5185         gtk/gtkspinbutton.c: Cast second argument to g_timeout_add() to
5186         GSourceFunc instead of GtkFunction.  (#129525, Olexiy Avramchenko) 
5187
5188 Wed Dec 17 23:16:45 2003  Kristian Rietveld  <kris@gtk.org>
5189
5190         * gtk/gtktreeview.c (gtk_tree_view_button_press): fix compile warning.
5191         (#122727, patch from Kjartan Maraas).
5192
5193 Wed Dec 17 21:23:01 2003  Kristian Rietveld  <kris@gtk.org>
5194
5195         Yay! Fixed height mode! Hooray! (Part 2 of #80868).
5196
5197         * gtk/gtktreeview.c (gtk_tree_view_class_init),
5198         (gtk_tree_view_init), (gtk_tree_view_set_property),
5199         (gtk_tree_view_get_property), (gtk_tree_view_set_model): add a
5200         fixed_height_mode property,
5201         (intialize_fixed_height_mode), (do_validate_rows),
5202         (column_sizing_notify), (gtk_tree_view_set_fixed_height_mode),
5203         (gtk_tree_view_style_set), (gtk_tree_view_row_changed),
5204         (gtk_tree_view_row_inserted), (gtk_tree_view_remove_column),
5205         (gtk_tree_view_insert_column): implement fixed height mode,
5206         (gtk_tree_view_append_column), (gtk_tree_view_insert_column),
5207         (gtk_tree_view_insert_column_with_attributes),
5208         (gtk_tree_view_insert_column_with_data_func): update docs.
5209
5210         * gtk/gtktreeprivate.h: add two fields to GtkTreePrivate.
5211
5212 2003-12-07  Murray Cumming  <murrayc@usa.net>
5213  
5214         * gtk/gtktreemodel.c:
5215         (row_inserted_marshal, row_deleted_marshal, rows_reorderered_marshal)
5216         Actually call the default signal handlers instead of calling the
5217         marshallers themselves in an endless loop. These default signal handler
5218         callbacks are not actually set so this is only noticed by gtkmm at
5219         the moment. Bug 123923.
5220
5221 2003-12-16  Federico Mena Quintero  <federico@ximian.com>
5222
5223         * gtk/gtkfilesystem.h (struct _GtkFileSystemIface): Added a
5224         "volumes-changed" signal.  Added the following methods:
5225                 list_volumes
5226                 volume_free
5227                 volume_get_base_path
5228                 volume_get_is_mounted
5229                 volume_mount
5230                 volume_get_display_name
5231                 volume_render_icon
5232
5233         * gtk/gtkfilesystem.c (gtk_file_system_base_init): Create the
5234         "volumes-changed" signal.
5235         (gtk_file_system_list_volumes): New function.
5236         (gtk_file_system_volume_free): New function.
5237         (gtk_file_system_volume_get_base_path): New function.
5238         (gtk_file_system_volume_get_is_mounted): New function.
5239         (gtk_file_system_volume_mount): New function.
5240         (gtk_file_system_volume_get_display_name): New function.
5241         (gtk_file_system_volume_render_icon): New function.
5242
5243         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_volume_free): Implement.
5244         (gtk_file_system_unix_volume_get_base_path): Implement.
5245         (gtk_file_system_unix_volume_get_is_mounted): Implement.
5246         (gtk_file_system_unix_volume_mount): Implement.
5247         (gtk_file_system_unix_volume_get_display_name): Implement.
5248         (gtk_file_system_unix_volume_render_icon): Implement.
5249
5250         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault):
5251         Added a field for the "volumes-changed" signal connection.
5252         (gtk_file_chooser_default_set_property): Connect to
5253         "volumes-changed" on the file system.
5254         (gtk_file_chooser_default_finalize): Disconnect from
5255         "volumes-changed".
5256
5257         * gtk/gtkfilechooserdefault.c (shortcuts_remove_rows): New helper
5258         function.
5259         (shortcuts_get_index): New helper function.
5260         (shortcuts_insert_path): Can now insert volumes as well as paths.
5261         (shortcuts_append_paths): Don't take is_file_system_root.
5262         (shortcuts_add_volumes): New function.
5263         (shortcuts_append_file_system_roots): Removed.
5264         (create_shortcuts_model): Use shortcuts_add_volumes().
5265         (remove_bookmark_button_clicked_cb): Check that the index is
5266         within range.
5267         (bookmarks_check_add_sensitivity): Take volumes into account.
5268         (shortcuts_get_selected_index): New helper function.
5269         (remove_bookmark_button_clicked_cb): Use
5270         shortcuts_get_selected_index().
5271         (bookmarks_check_remove_sensitivity): Likewise.
5272         (shortcuts_select_func): Likewise.
5273         (shortcuts_row_activated_cb): Handle volumes as well as normal
5274         paths.
5275         (shortcuts_activate_volume): New function.
5276         (struct _GtkFileChooserDefault): Removed the bookmarks_set and
5277         bookmarks_iter fields.
5278         (shortcuts_append_bookmarks): Use shortcuts_remove_rows().
5279         (bookmarks_changed_cb): Use shortcuts_add_bookmarks().
5280         (remove_bookmark_rows): Removed.
5281         (shortcuts_add_bookmarks): New function; moved most of the code
5282         over from shortcuts_append_bookmarks().
5283         (shortcuts_append_bookmarks): Add the separator node here, and
5284         then call shortcuts_add_bookmarks().
5285
5286 Tue Dec 16 15:01:10 2003  Manish Singh  <yosh@gimp.org>
5287
5288         * gtk/gtkfilechooserwidget.c: fix preprocessor conditional confusion.
5289         (G_OS_UNIX/G_OS_WIN32 stuff)
5290
5291 Tue Dec 16 01:46:46 2003  Matthias Clasen  <maclas@gmx.de>
5292
5293         Do not interpret distant clicks as double-clicks  (#116541,
5294         Bernhard Walle):
5295         
5296         * gdk/gdkdisplay.h (struct GdkDisplay): Add new fields
5297         double_click_distance, button_x and button_y.
5298         * gdk/gdkdisplay.c (gdk_display_init): Initialize the new fields.
5299
5300         * gdk/gdkdisplay.h: 
5301         * gdk/gdkevents.c (gdk_display_set_double_click_distance): 
5302         New function to set the double click distance on a display.
5303
5304         * gdk/gdkevents.c: Take double click distance into account
5305         when generating single, double or triple clicks.
5306
5307         * gtk/gtksettings.c: Add new setting "gtk-double-click-distance".
5308
5309         * gdk/x11/gdkevents-x11.c: Add the XSetting 
5310         "Net/DoubleClickDistance" and map it to "gtk-double-click-distance".
5311
5312 2003-12-15  Federico Mena Quintero  <federico@ximian.com>
5313
5314         * gtk/gtkdialog.c: Sigh, revert the change.
5315
5316 2003-12-15  Federico Mena Quintero  <federico@ximian.com>
5317
5318         * gtk/gtkdialog.c (dialog_has_cancel): Removed.
5319         (gtk_dialog_close): Don't call dialog_has_cancel().  At least
5320         allows sane behavior for #101293.
5321
5322 Mon Dec 15 00:56:54 2003  Matthias Clasen  <maclas@gmx.de>
5323
5324         * gtk/gtkbutton.[hc]: Add new properties, xalign and yalign, with
5325         getter and setter gtk_button_[sg]et_alignment(), to set the
5326         alignment of the child.  (#70961, Jody Goldberg)
5327
5328 2003-12-14  Hans Breuer  <hans@breuer.org>
5329
5330         * gtk/gtkprivate.h gtk/gtkmain.c : handle GTK_DATADIR
5331         similar as the other filesystem placement 'constants' (dynamic
5332         resolving on win32)
5333
5334         * gtk/gtkfilechooserwidget.c : handle file system to win32
5335         renaming here as will
5336         * gtk/gtkfilesystemwin32.c : implement render_icon
5337
5338         * gtk/gtk.def gdk/gdk.def : updated externals
5339
5340         * gdk/win32/gdkdisplay-win32.c : make it compile without
5341         <multimon.h> - i.e. even older sdk
5342
5343         * gdk/win32/gdkevents-win32.c : match resize_timer_proc
5344         with TIMERPROC prototype
5345
5346         * gdk/win32/gdkwindow-win32.c : older msvc does not know
5347         BITMAPV5HEADER (from win xp) either
5348
5349         * gtk/gtkimmodule.c : make it compile even if GTK_LOCALEDIR is
5350         not defined
5351
5352         * tests/testfilechooser.c : recent GLib crashes on 
5353         g_print ("%s", NULL) so avoid this
5354
5355 2003-12-14  Tor Lillqvist  <tml@iki.fi>
5356
5357         * gdk/win32/gdkselection-win32.c: Calls to OpenClipboard() must be
5358         followed by calls to CloseClipboard(). Add a missing call to
5359         CloseClipboard(). Found by Adam Wright, fixes #104944. Use
5360         API_CALL macro in more places.
5361
5362 2003-12-14  Tor Lillqvist  <tml@iki.fi>
5363
5364         Merge from stable:
5365
5366         * gdk/gdkdisplaymanager.c: Mark default_display static.
5367
5368         * gdk/win32/gdkdnd-win32.c: Mark current_dest_drag static.
5369
5370         * gdk/win32/gdkkeys-win32.c: Disable some overly verbose debugging
5371         output.
5372
5373         * gdk/win32/gdkevents-win32.c: Clean up the debugging output from
5374         --gdk-debug=events. In general, output just one line of debugging
5375         output for each Windows message, plus one line for each GDK event
5376         generated. Indent all lines according to window procedure nesting
5377         level.
5378
5379         (inner_window_procedure): Rename from real_window_procedure.
5380
5381         (find_real_window_for_grabbed_mouse_event): Don't get misled when
5382         the point is in the non-client (decoration) area of the window
5383         returned by WindowFromPoint(). Return the root window in that
5384         case.
5385
5386         (build_pointer_event_state): Test also MK_XBUTTON1 and
5387         MK_XBUTTON2 (buttons 4 and 5).
5388
5389         (synthesize_enter_event): Track the mouse leaving the window in
5390         the event being generated, not the one mentioned in the Windows
5391         message.
5392
5393         (propagate): Test for NULL parent earlier. Improves event
5394         generation from a grabbed pointer. Part of fix for #107320.
5395
5396         (handle_stuff_while_moving_or_resizing): New function, to
5397         dispatch the main loop (once).
5398
5399         (resize_timer_proc): New function, set to be called by an inerval
5400         timer during resizes/moves. Calls handle_stuff_while_moving_or_resizing().
5401
5402         (gdk_event_translate): Drop unused return_exposes parameter.
5403
5404         Handle WM_XBUTTONDOWN and UP messages (buttons 4 and 5).
5405
5406         On WM_SYSKEYUP, generate a key release event also for just the Alt
5407         key.
5408
5409         On WM_MOUSELEAVE, generate a leave event of type
5410         GDK_NOTIFY_ANCESTOR (and not UNKNOWN) if the mouse left a
5411         top-level window, and left the app completely.
5412
5413         On WM_ENTERSIZEMOVE, set a flag, and start an interval timer that
5414         calls resize_timer_proc() at regular intervals. On
5415         WM_EXITSIZEMOVE, kill the timer.
5416
5417         On WM_WINDOWPOSCHANGED, generate a configure event if necessary,
5418         and dispatch the main loop (by calling
5419         handle_stuff_while_moving_or_resizing()). Fixes #99540, idea by
5420         Herman Bloggs.
5421
5422         * gdk/win32/gdkmain-win32.c (_gdk_win32_message_to_string): Handle
5423         also wintab messages.
5424
5425         * gdk/win32/gdkwindow-win32.c (gdk_window_set_skip_taskbar_hint):
5426         Instead of using WS_EX_TOOLWINDOW, implement by setting/unsetting
5427         the window's owner. Fixes #118093, reported by Maxime Romano.
5428
5429 Tue Dec  8 09:41:00 2003  Tim Evans  <t.evans@aranz.com>
5430
5431         * gdk/win32/gdkwindow-win32.[ch]: Implement
5432         gdk_window_set_icon_list() for Win32, with support for big and
5433         small icons and support for alpha-channel icons under Windows
5434         XP. Replaces the previous implementation of gdk_window_set_icon().
5435         (#128762)
5436         
5437 Sun Dec 14 01:28:23 2003  Matthias Clasen  <maclas@gmx.de>
5438
5439         * gdk/x11/gdkprivate-x11.h: 
5440         * gdk/x11/gdkx.h: 
5441         * gdk/x11/gdkevents-x11.c (gdk_x11_register_standard_event_type): 
5442         Rename from _gdk_x11_register_event_type(), added API docs.
5443         * gdk/x11/gdkinput-x11.c (_gdk_input_common_init): 
5444         * gdk/x11/gdkimage-x11.c (_gdk_windowing_image_init): Adjust
5445         all callers.  (#121471, Bill Haneman)
5446
5447 Sat Dec 13 23:37:50 2003  Matthias Clasen  <maclas@gmx.de>
5448
5449         * gdk/gdkdraw.c (gdk_draw_pixbuf): Document that the clip mask
5450         of gc is ignored.  (#101983, Sebastian Rittau)
5451
5452 Sat Dec 13 16:13:27 2003  Kristian Rietveld  <kris@gtk.org>
5453
5454         A trick for a faster treeview, step 1. Patch to short circuit
5455         _build_tree(), inspired by Jonathan (#80868).
5456
5457         * gtk/gtktreeview.c (gtk_tree_view_init): don't put _IS_LIST in
5458         flags by default,
5459         (gtk_tree_view_build_tree): don't even try to recurse when the
5460         model says that it is a list, remove flag unsetter,
5461         (gtk_tree_view_set_model): change flag setting logic.
5462
5463         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_get_flags):
5464         propagate whether or not the child model has _IS_LIST set.
5465
5466         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_get_flags):
5467         ditto.
5468
5469 Sat Dec 13 02:33:17 2003  Matthias Clasen  <maclas@gmx.de>
5470
5471         * gtk/gtkrange.c (gtk_range_scroll): Undo the last change, 
5472         since it broke logical keynav. 
5473         * gtk/gtkrange.c (range_get_scroll_for_grab): Fix stepper
5474         direction in inverted scrollbars here instead.
5475
5476 Sat Dec 13 00:39:24 2003  Matthias Clasen  <maclas@gmx.de>
5477
5478         * gtk/gtkviewport.c (viewport_set_hadjustment_values): Implement
5479         "gravity" for RTL mode in a better way: Keep the distance from 
5480         the upper end of the page to the upper bound constant. This also 
5481         fixes problems with the initial position of the viewport in RTL 
5482         mode.  (#129063)
5483         
5484 Fri Dec 12 21:00:12 2003  Kristian Rietveld  <kris@gtk.org>
5485
5486         Combo box flipping support.
5487
5488         * gtk/gtkcombobox.c (gtk_combo_box_menu_position),
5489         (gtk_combo_box_size_allocate): support RTL flipping (#126518,
5490         patch from Matthias Clasen),
5491         (gtk_combo_box_popup): fix popup window alignment if there's a
5492         cell view frame visible (#126518, patch from Semion Chichelnitsky).
5493
5494         * gtk/gtkcellview.c (gtk_cell_view_expose): support RTL flipping
5495         (#128348, patch from Semion Chichelnitsky).
5496
5497 Fri Dec 12 01:13:34 2003  Matthias Clasen  <maclas@gmx.de>
5498
5499         * examples/gtkdial/gtkdial.c:
5500         * examples/menu/menu.c:
5501         * examples/scribble-xinput/scribble-xinput.c:
5502         * examples/progressbar/progressbar.c:
5503         * docs/tutorial/gtk-tut.sgml: Remove deprecated functions
5504         in examples. (#129074, Olexiy Avramchenko)
5505         * examples/calendar/Makefile:
5506         * examples/rangewidgets/Makefile:
5507         * examples/menu/Makefile: Allow deprecated functions in
5508         examples which use deprecated widgets.
5509
5510 Fri Dec 12 00:43:16 2003  Matthias Clasen  <maclas@gmx.de>
5511
5512         * gdk/gdk.c (gdk_threads_set_lock_functions): 
5513         * gdk/x11/gdkspawn-x11.c: Add "Since: 2.4" to doc comments.
5514
5515 Fri Dec 12 00:05:31 2003  Matthias Clasen  <maclas@gmx.de>
5516
5517         * gtk/gtkrange.c (gtk_range_scroll): Fix direction of 
5518         steppers in inverted scrollbars.  (#129084, Olexiy Avramchenko)
5519
5520 Thu Dec 11 23:50:30 2003  Matthias Clasen  <maclas@gmx.de>
5521
5522         * gtk/gtknotebook.c (gtk_notebook_pages_allocate): Don't 
5523         unnecessarily reserve space for arrows in RTL mode.  (#129075,
5524         Semion Chichelnitsky)
5525
5526 Thu Dec 11 00:35:12 2003  Matthias Clasen  <maclas@gmx.de>
5527
5528         Changes to allow "no input" windows (#64613):
5529         
5530         * gdk/gdkwindow.h (struct _GdkWindowObject): Add a new boolean
5531         field accept_focus.
5532         
5533         * gdk/gdkwindow.h (gdk_window_set_accept_focus): New function to
5534         set it.
5535
5536         * gtk/gtkwindow.[hc]: Add a boolean property "accept_focus"
5537         and gtk_window_get_focus() and gtk_window_set_focus().
5538
5539         * gdk/win32/gdkwindow-win32.c (gdk_window_new): 
5540         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_new): 
5541         * gdk/x11/gdkwindow-x11.c (gdk_window_set_new):
5542         Initialize the accept_focus field to TRUE.
5543
5544         * gdk/win32/gdkwindow-win32.c (gdk_window_set_accept_focus): 
5545         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_accept_focus): 
5546         * gdk/x11/gdkwindow-x11.c (gdk_window_set_accept_focus): 
5547         Implementations for the various backends. The Win32 and linux-fb
5548         implementations set the accept_focus field, but don't use it yet 
5549         to actually implement noinput windows. The X implementation updates
5550         the WM_HINTS to select the globally active input model (see the
5551         ICCCM) if accept_focus is FALSE.
5552
5553         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter): Ignore the
5554         WM_TAKE_FOCUS message if accept_focus is FALSE.
5555         
5556 2003-12-10  Federico Mena Quintero  <federico@ximian.com>
5557
5558         * gtk/gtkfilechooserdefault.c (struct _GtkFileChooserDefault):
5559         Added toolbar items for the filter separator and the filter item.
5560         (toolbar_create): Add the filter widgets here.
5561         (filter_create): Renamed from create_filter().  Don't store the
5562         alignment in the impl structure, just return it.
5563         (toolbar_show_filters): New function.
5564         (gtk_file_chooser_default_add_filter): Use toolbar_show_filters().
5565         (gtk_file_chooser_default_remove_filter): Likewise.
5566         (gtk_file_chooser_default_constructor): Don't create the filter
5567         widget here.
5568         (struct _GtkFileChooserDefault): Added a field for a current
5569         folder label.
5570         (gtk_file_chooser_default_constructor): Create the folder label.
5571         (gtk_file_chooser_default_set_current_folder): Set the current
5572         folder label.
5573
5574         * tests/testfilechooser.c (main): Dramatically improved the
5575         usability of the extra widget through careful word choice.
5576
5577 2003-12-10  Mark McLoughlin  <mark@skynet.ie>
5578
5579         * gdk/gdk.h: include gdkspawn.h.
5580
5581 2003-12-10  Mark McLoughlin  <mark@skynet.ie>
5582
5583         * gdk/linux-fb/gdkspawn-fb.c,
5584           gdk/win32/gdkspawn-win32.c,
5585           gdk/x11/gdkspawn-x11.c: (gdk_spawn_command_line_on_screen):
5586         s/gdk_spawn/gdk_spawn_on_screen/.
5587
5588 2003-12-10  Mark McLoughlin  <mark@skynet.ie>
5589
5590         Utility functions for multi-screen applications which need
5591         to ensure launched applications appear on a certain screen.
5592         See bug #95897.
5593         
5594         * gdk/gdkspawn.h: header for multi-screen launching
5595         support.
5596         
5597         * gdk/Makefile.am: install gdkspawn.h.
5598         
5599         * gdk/x11/Makefile.am:
5600         * gdk/x11/gdkspawn-x11.c:
5601         (gdk_spawn_make_environment_for_screen): private function
5602         to create an environment vector with DISPLAY set appropriately
5603         for the screen.
5604         (gdk_spawn_on_screen): multi-screen version of g_spawn_async().
5605         (gdk_spawn_on_screen_with_pipes): version of g_spawn_async_with_pipes().
5606         (gdk_spawn_command_line_on_screen): version of g_spawn_command_line_async().
5607         
5608         * gdk/linux-fb/Makefile.am,
5609           gdk/linux-fb/gdkspawn-fb.c: linux-fb impl.
5610         
5611         * gdk/win32/Makefile.am,
5612           gdk/win32/gdkspawn-win32.c: win32 impl.
5613
5614 2003-12-09  Federico Mena Quintero  <federico@ximian.com>
5615
5616         * gtk/gtkfilechooserdefault.c (shortcuts_append_home): Use "Home"
5617         rather than "Username's Home" (#125964).
5618         (shortcuts_selection_changed_cb): New callback, check the
5619         sensitivity of the Remove Bookmark button at the right time.
5620         (shortcuts_row_activated_cb): It is not necessary to check the
5621         sensitivity here.
5622
5623 Wed Dec 10 00:06:24 2003  Matthias Clasen  <maclas@gmx.de>
5624
5625         Improve the GDK API for dealing with group leaders (#119375):
5626         
5627         * gdk/gdkwindow.h: 
5628         * gdk/x11/gdkwindow-x11.c (gdk_window_get_group): New function to 
5629         get the group leader of a toplevel window as a GdkWindow.
5630
5631         * gdk/gdkdisplay.h: 
5632         * gdk/x11/gdkdisplay-x11.c (gdk_display_get_default_group): New 
5633         function to get the default group leader as a GdkWindow.
5634
5635         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add a field for
5636         the GdkWindow of the default group leader.
5637         
5638         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Construct the GdkWindow
5639         for the default group leader.
5640
5641 2003-12-09  Noah Levitt  <nlevitt@columbia.edu>
5642
5643         * gdk/gdkkeysyms.h:
5644         * gdk/gdkkeyuni.c: Add keysyms Ukrainian_ghe_with_upturn,
5645         Ukrainian_GHE_WITH_UPTURN. (#128529)
5646
5647 2003-12-08  Jan Arne Petersen  <jpetersen@uni-bonn.de>
5648
5649         * gtk/gtkfilechooserdefault.c:
5650         (gtk_file_chooser_default_get_paths), (entry_activate): Use the
5651         behavior of the GtkFileSelection to determine selected paths in
5652         single selected, GTK_FILE_CHOOSER_ACTION_SAVE mode.
5653
5654 2003-12-08  Federico Mena Quintero  <federico@ximian.com>
5655
5656         * gtk/gtkfilechooserdefault.c
5657         (gtk_file_chooser_default_get_paths): Don't declare the closure
5658         struct twice.
5659         (get_paths_foreach): Likewise.
5660
5661 Tue Dec  9 00:12:36 2003  Matthias Clasen  <maclas@gmx.de>
5662
5663         * gtk/gtkfilesystemwin32.[hc]: s/Unix/Win32/g. 
5664
5665 2003-12-08  Tor Lillqvist  <tml@iki.fi>
5666
5667         * gdk/win32/gdkdisplay-win32.c: Use <multimon.h> when compiling
5668         with MSVC and old headers. (#126933, John Ehresman)
5669
5670 Mon Dec  8 10:54:44 2003  Owen Taylor  <otaylor@redhat.com>
5671          
5672         * === Released 2.3.1 ===
5673
5674         * NEWS: Updates for 2.3.1
5675
5676         * configure.in: Version 2.3.1, interface age 0, binary age 301.
5677
5678         * gtk/gtkmenuitem.c (gtk_menu_item_can_activate_accel):
5679         Rename from gtk_menu_item_real_can_activate_accel() to
5680         match GTK+ convention, improve comment.
5681
5682         * gtk/gtkwidget.c: Document gtk_widget_can_activate_accel(),
5683         can ::can-activate-accel signal.
5684
5685         * gtk/gtkwidget.c (closure_accel_activate): Fix spelling
5686         in comment.
5687
5688         * gtk/gtkmenu.c (gtk_menu_real_can_activate_accel): Clean 
5689         up comment.
5690         
5691         * gtk/gtkcellview{,menuitem}.[ch]: Move GET_PRIVATE() macros
5692         into the .c file.
5693
5694 Mon Dec  8 12:09:21 2003  Owen Taylor  <otaylor@redhat.com>
5695
5696         * gtk/gtkicontheme.c (find_builtin_icon): Fix a
5697         missing 'else'. (#128816, Jorn Baayen)
5698
5699 2003-12-02  Michael Meeks  <michael@ximian.com>
5700
5701         Based on a patch by Martin Kretzschmar; #122448
5702         
5703         * gdk/gdk.h: new gdk_threads_lock, gdk_threads_unlock, point to
5704         implementation of GDK_THREADS_ENTER / GDK_THREADS_LEAVE.
5705         (GDK_THREADS_ENTER, GDK_THREADS_LEAVE): use gdk_threads_[un]lock
5706         function pointers. Deprecate the global gdk_threads_mutex variable.
5707         
5708         * gdk/gdk.c (gdk_threads_impl_lock, gdk_threads_impl_unlock): new,
5709         extracted from GTK_THREADS_ENTER/LEAVE macros.
5710         (gdk_threads_init): init gtk_threads_[un]lock if not set.
5711         (gdk_threads_set_lock_functions): impl.
5712
5713         * gdk/gdkglobals.c: add definitions of gdk_threads_[un]lock.
5714
5715 Sun Dec  7 23:45:40 2003  Matthias Clasen  <maclas@gmx.de>
5716
5717         * gtk/gtkicontheme.c (gtk_icon_theme_has_icon): Don't crash if
5718         icon_theme_builtin_icons hasn't been initialized.  (#128726, Diego
5719         Gonzalez)
5720
5721 2003-12-07  Tor Lillqvist  <tml@iki.fi>
5722
5723         * gdk/win32/gdkwindow-win32.c (gdk_window_set_icon): Don't use the
5724         return value from SendMessage(WM_SETICON). That is the old
5725         icon. Fixes GDI resource leak. (#128559, Tim Evans)
5726
5727         * gdk/win32/gdkevents-win32.c (gdk_pointer_grab): If we already
5728         have a pointer grab active with a grab cursor set, destroy that
5729         cursor to avoid a GDI resource leak. (#128410, Tim Evans)
5730
5731 2003-12-05  Paisa Seeluangsawat  <paisa@users.sf.net>
5732
5733         * configure.in: Added Thai (th) to ALL_LINGUAS.
5734
5735 Sat Dec  6 01:42:04 2003  Matthias Clasen  <maclas@gmx.de>
5736
5737         * gtk/gtkalignment.c (gtk_alignment_size_allocate): Implement
5738         RTL flipping for GtkAlignment.  (#127585)
5739
5740 Sat Dec  6 01:13:09 2003  Matthias Clasen  <maclas@gmx.de>
5741
5742         * gtk/gtkcombo.c (gtk_combo_get_pos): Fix the position of the 
5743         popup window when in RTL mode.  (#127578)
5744
5745 Fri Dec  5 15:30:16 2003  Manish Singh  <yosh@gimp.org>
5746
5747         * gtk/gtkaccelgroup.c (quick_accel_find): Applied patch from
5748         Ross McFarland <rwmcfa1@neces.com>, initialize *count_p to 0
5749         before doing anything to prevent garbage returns.
5750
5751 Sat Dec  6 00:23:46 2003  Matthias Clasen  <maclas@gmx.de>
5752
5753         * gtk/gtkviewport.c: Implement RTL flipping for 
5754         GtkViewport: Adjust the "gravity" when resizing
5755         This is a bit flickery in RTL mode.  (#107526)
5756
5757 Sat Dec  6 00:22:14 2003  Matthias Clasen  <maclas@gmx.de>
5758
5759         * gtk/gtkscrolledwindow.c: Implement RTL flipping for 
5760         GtkScrolledWindow: the vertical scrollbar shows up on the left
5761         side in RTL mode.  (#107526)
5762
5763 Fri Dec  5 01:58:33 2003  Matthias Clasen  <maclas@gmx.de>
5764
5765         * gtk/gtknotebook.c: Implement RTL flipping for GtkNotebook:
5766         tabs displayed at the top/bottom are rearranged, and tabs on
5767         the left/right are displayed at the opposite edge.  (#96630)
5768
5769 2003-12-04  Mark McLoughlin  <mark@skynet.ie>
5770
5771         * gtk/gtklabel.c: (gtk_label_set_attributes_internal): Allow
5772         gtk_label_set_attributes() take NULL. See bug #128517.
5773
5774 2003-12-03  Federico Mena Quintero  <federico@ximian.com>
5775
5776         * gtk/gtkfilechooserentry.c (struct _GtkFileChooserEntry): Removed
5777         the in_change flag.
5778         (completion_idle_callback): Use a temporary list store and re-set
5779         it on the completion rather than modifying the old one.  We are
5780         re-reading the folder anyway, and this gets rid of non-atomicity
5781         problems.
5782
5783 2003-12-01  Federico Mena Quintero  <federico@ximian.com>
5784
5785         Decouple impl->current_folder from the selection in the folder
5786         tree.  This is so that going to /home/federico/.foo (e.g. from a
5787         bookmark) will work even if show_hidden == FALSE.  The folder tree
5788         needs to be fixed in this case to show such folders explicitly.
5789
5790         * gtk/gtkfilechooserdefault.c
5791         (gtk_file_chooser_default_set_current_folder): When changing
5792         folders, do the entry and list model work here, instead of
5793         tree_selection_changed().
5794         (struct _GtkFileChooserDefault): Added a changing_folder flag
5795         again, dum de dum.
5796         (tree_selection_changed): Use _gtk_file_chooser_set_current_folder_path().
5797
5798 Tue Dec  2 01:01:54 2003  Matthias Clasen  <maclas@gmx.de>
5799
5800         * gtk/gtkiconfactory.h: Remove duplicate declaration of 
5801         gtk_icon_source_set_icon_name().  (#Jeff Franks, #128269)
5802
5803 2003-12-01  Federico Mena Quintero  <federico@ximian.com>
5804
5805         Patch from Hans-Petter Jansson <hpj@ximian.com> to align the
5806         bookmarks buttons with the location entry.
5807
5808         * gtk/gtkfilechooserdefault.c
5809         (gtk_file_chooser_default_constructor): Use a GtkSizeGroup for the
5810         bookmarks buttons and the location entry.
5811
5812 2003-12-01  Federico Mena Quintero  <federico@ximian.com>
5813
5814         * gtk/gtkfilechooserdefault.c (create_shortcuts_tree): Set the
5815         shortcuts tree as a drag destination.
5816         (shortcuts_drag_data_received_cb): New callback.
5817         (get_file_info): Also fetch information on whether the file is a folder.
5818         (add_bookmark_button_clicked_cb): Use error_could_not_add_bookmark_dialog().
5819         (error_could_not_add_bookmark_dialog): New function.
5820         (shortcuts_add_bookmark_from_path): New helper function.
5821         (add_bookmark_button_clicked_cb): Use shortcuts_add_bookmark_from_path().
5822         (shortcuts_row_activated): We no longer need the changing_folder flag.
5823         (struct _GtkFileChooserDefault): Likewise.
5824
5825 Sun Nov 30 17:31:32 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
5826
5827         * gtk/gtktoolbar.c (slide_idle_handler): return TRUE if there are
5828         disappearing placeholders that are still visible.
5829
5830         * gtk/gtktoolbar.c: formatting fixes
5831
5832         * gtk/gtktoolbar.c (struct _ToolbarContent): new bit:
5833         disappearing, for placeholders that are going to disappear.
5834
5835         * gtk/gtktoolbar.c (get_item_size): return 0 for disappearing placeholders
5836
5837 Sat Nov 29 00:55:28 2003  Jonathan Blandford  <jrb@gnome.org>
5838
5839         * gtk/gtktreeview.c (gtk_tree_view_new_column_width): 
5840         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_realize_button):
5841         Patch from <chinen@jp.ibm.com> to handle RTL support for column
5842         resizers, #127874
5843
5844 Fri Nov 28 00:26:24 2003  Matthias Clasen  <maclas@gmx.de>
5845
5846         * gtk/gtkfilesystemmodel.c (gtk_file_system_model_finalize): 
5847         Don't use freed memory.  (#127698, Taavi Talvik) 
5848
5849 Fri Nov 28 00:09:10 2003  Matthias Clasen  <maclas@gmx.de>
5850
5851         * gtk/gtkfilechooserentry.c: Remove debug g_print()s. 
5852
5853 Thu Nov 27 22:17:50 2003  Matthias Clasen  <maclas@gmx.de>
5854
5855         * gtk/gtkuimanager.c: Remove debug define.
5856
5857 Thu Nov 27 16:19:03 2003  Tim Janik  <timj@gtk.org>
5858
5859         * gtk/gtkmenu.c: allow accel activation depending on sensitivity
5860         and the attach widget.
5861
5862         * gtk/gtkmenuitem.c: allow accel activation depending on visibility,
5863         sensitivity and the parent menu.
5864
5865         * gtk/gtkwidget.[hc]: introduced ::can-activate-accel signal which
5866         checks whether accelerators may activate a widget. the default handler
5867         demands the widget be sensitive and visible+viewable.
5868
5869         * gtk/gtkaccelgroup.[hc]: export gtk_accel_group_activate().
5870
5871 Tue Nov 25 00:10:05 2003  Matthias Clasen  <maclas@gmx.de>
5872
5873         * gtk/gtkuimanager.c (update_node): Don't show accelerators in
5874         popup menus.  (#127227)
5875
5876 Mon Nov 24 13:47:39 GMT 2003  Tony Gale <gale@gtk.org>
5877
5878         * docs/faq/gtk-faq.sgml: start 2.x Section 4 updates
5879
5880 Mon Nov 24 04:05:15 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
5881
5882         * gtk/gtkradiotoolbutton.[ch]
5883         (gtk_radio_tool_button_new_from_widget): Make this function take a
5884         GtkRadioToolButton instead of a GtkWidget. (#127729, Murray
5885         Cumming)
5886
5887 Mon Nov 24 02:34:00 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
5888
5889         * gtk/gtktoolbar.c: remove variables in_dnd and leaving_dnd
5890
5891 Mon Nov 24 02:19:33 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
5892
5893         * gtk/gtktoolbar.c: remove variable
5894         n_overflowed_menu_items_when_dnd_started
5895
5896 Mon Nov 24 01:47:10 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
5897
5898         Rework sliding algorithm.
5899         - No more weird jumping when items are dragged off and added to
5900         the toolbar,
5901         - More natural item movement
5902
5903         * gtk/gtktoolbar.c (gtk_toolbar_size_allocate): Many changes. This
5904         function is now responsible for calculating intermediate positions
5905         during item sliding. It is also responsible for starting sliding
5906         if items disappear.  Also turn off expanding when there is an
5907         overflow menu.
5908         (gtk_toolbar_begin_sliding, stop_sliding): New functions.
5909         (slide_idle_handler): New function. All the sliding is now done by
5910         gtk_toolbar_size_allocate(), so the idle handler now just checks
5911         if there is more sliding to be done.
5912         (compute_intermediate_allocation, position): new functions
5913         calculating intermediate steps in the slide animations. The new
5914         animation algorithm uses a constant speed instead of a constant
5915         must-be-finished-within time.
5916         (struct _ToolbarContent): use 
5917         GtkAllocation goal_allocation; and 
5918         GtkAllocation start_allocation; instead of 
5919         gint start/goal_width;
5920
5921         * gtk/gtktoolitem.c (gtk_tool_item_set_tooltip): fix typo in
5922         documentation
5923
5924 Sun Nov 23 22:26:25 2003  Matthias Clasen  <maclas@gmx.de>
5925
5926         * gtk/gtktooltips.c (gtk_tooltips_draw_tips): Make tooltip 
5927         positioning Xinerama-aware.  (#127332)
5928
5929 Fri Nov 21 01:57:21 2003  Matthias Clasen  <maclas@gmx.de>
5930
5931         * gdk/x11/gdkscreen-x11.c (init_xinerama_support): Make monitor
5932         boundaries visible in fake Xinerama mode.
5933
5934 Thu Nov 20 15:41:56 2003  Manish Singh  <yosh@gimp.org>
5935
5936         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): cast to GTK_WIDGET()
5937         for the gtk_widget_hide() call.
5938
5939 Thu Nov 20 14:51:41 2003  Jonathan Blandford  <jrb@redhat.com>
5940
5941         * gtk/gtktreedatalist.c (gtk_tree_data_list_compare_func): Patch
5942         from David Hampton to fix sorting on booleans.
5943
5944 Thu Nov 20 15:48:03 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
5945
5946         * gtk/gtksocket.c (gtk_socket_focus): Use gtk_widget_is_focus()
5947         instead of GTK_WIDGET_HAS_FOCUS. (#122327, Owen Taylor. Reported
5948         by Frederic Crozat).
5949
5950 Thu Nov 20 13:10:29 GMT 2003  Tony Gale <gale@gtk.org>
5951
5952         * docs/faq/gtk-faq.sgml: Update Section 3 to 2.x
5953
5954 2003-11-19  Federico Mena Quintero  <federico@ximian.com>
5955
5956         Fixes to problems reported by Iain Holmes:
5957
5958         * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Do not
5959         throw up an error dialog if the desktop doesn't exist.
5960         (error_message): Handle the case where there is no real toplevel
5961
5962         yet.
5963         (list_model_filter_func): Always let folders pass through (patch
5964         by Dave Malcolm).
5965
5966 Wed Nov 19 23:19:23 2003  Kristian Rietveld  <kris@gtk.org>
5967
5968         * gtk/gtkcombobox.[ch] (gtk_combo_box_scroll_event): move function
5969         to a somewhat more logical place,
5970         (gtk_combo_box_remove_text): New function (#125262, Owen Taylor).
5971
5972 Wed Nov 19 22:15:01 2003  Kristian Rietveld  <kris@gtk.org>
5973
5974         * gtk/gtkentry.c (gtk_entry_completion_timeout): always resize
5975         the popup when it is visible, popdown when there are less chars
5976         than the minimum key length in the entry,
5977         (gtk_entry_completion_changed): popdown when the entry is empty.
5978
5979         * gtk/gtkentrycompletion.c (gtk_entry_completion_init): set the
5980         size request of the vscrollbar to (-1, 0), to get a nicely sized
5981         completion treeview (Fixes #126573, reported by Piers Cornwell),
5982         (_gtk_entry_completion_resize_popup): show/hide the action_view
5983         based on items.
5984
5985 2003-11-19  Federico Mena Quintero  <federico@ximian.com>
5986
5987         * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_init): Turn
5988         off the dialog's separator (thanks to Iain Holmes).
5989
5990 Wed Nov 19 18:15:00 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
5991
5992         * gtk/gtkmenu.c (DEFAULT_POPUP_DELAY): set to 200 instead of 225
5993         * gtk/gtkmenuitem.c (get_minimum_width): Impose a minimum width
5994         on items that have a submenu. (#120104).
5995
5996 Wed Nov 19 18:11:08 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
5997
5998         * gtk/gtktoolbar.c (struct _ToolbarContent): Add a new
5999         "ItemState" field indicating the overflowed-ness etc. of the item.
6000         (gtk_toolbar_size_allocate): update the field here.
6001
6002 2003-11-19  Federico Mena Quintero  <federico@ximian.com>
6003
6004         * gtk/gtkfilechooserdefault.c (create_filter): Don't add padding
6005         to the alignment.  Use the HIG-specified spacing between the
6006         filter label and the combo.
6007         (create_filename_entry): Use HIG-specified spacing between the
6008         location label and the entry.
6009         (gtk_file_chooser_default_constructor): Don't use vertical padding
6010         around the filename entry.
6011
6012 2003-11-19  Federico Mena Quintero  <federico@ximian.com>
6013
6014         * gtk/gtkfilesystem.h (struct _GtkFileSystemIface): Added a
6015         render_icon virtual method.
6016
6017         * gtk/gtkfilesystem.c (gtk_file_system_render_icon): New function.
6018
6019         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_render_icon):
6020         Implement as a stub for now.
6021
6022         * gtk/gtkfilechooserdefault.c (shortcuts_insert_path): Use
6023         gtk_file_system_render_icon().
6024         (list_icon_data_func): Likewise.
6025         (toolbar_create): Set the toolbar style to icons only.
6026
6027         * gtk/gtkfilechooser.c (gtk_file_chooser_add_shortcut_folder_uri):
6028         Fix doc comments.
6029
6030 Wed Nov 19 02:18:37 2003  Matthias Clasen  <maclas@gmx.de>
6031
6032         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Call 
6033         gtk_widget_hide(menu) when reattaching the menu.  (#126057) 
6034
6035 Wed Nov 19 00:06:04 2003  Kristian Rietveld  <kris@gtk.org>
6036
6037         * gtk/gtkentrycompletion.c (gtk_entry_completion_selection_changed):
6038         only unselect all items if the treeview has focus. (Fixes bug
6039         reported by Marco Pesenti Gritti).
6040
6041 Tue Nov 18 22:26:30 2003  Kristian Rietveld  <kris@gtk.org>
6042
6043         * gtk/gtkentry.c (gtk_entry_completion_key_press): the total
6044         number of actions is "matches + actions - 1". (Fixes #126572).
6045
6046 Tue Nov 18 21:05:05 2003  Christian Persch  <chp@cvs.gnome.org>
6047
6048         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_inserted): fix
6049         mem leaks (#119435).
6050
6051 Tue Nov 18 20:51:38 2003  Kristian Rietveld  <kris@gtk.org>
6052
6053         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_deleted): don't
6054         try to fetch the child back, since we do know that it is already
6055         gone by now (#126493, Marco Pesenti Gritti).
6056
6057 Tue Nov 18 19:47:59 2003  Kristian Rietveld  <kris@gtk.org>
6058
6059         Fixes based on comments from Owen Taylor, #125264.
6060
6061         * gtk/gtkcellview.[ch] (gtk_cell_view_finalize): remove unused
6062         variable,
6063         (gtk_cell_view_set_value), (gtk_cell_view_set_displayed_model): queue
6064         a resize,
6065         (gtk_cell_view_get_size_of_row): new function,
6066         (gtk_cell_view_set_value), (gtk_cell_view_set_valuesv),
6067         (gtk_cell_view_set_values), (gtk_cell_view_set_model),
6068         (gtk_cell_view_set_displayed_row), (gtk_cell_view_get_displayed_row):
6069         s/cellview/cell_view/ in the function definitions, so they match
6070         with the header file.
6071
6072         * gtk/gtkcombobox.c (gtk_combo_box_remeasure): remove the resize
6073         flag again (:, and use gtk_cell_view_get_size_of_row instead of
6074         the measurer, remove _set_size_request call,
6075         (gtk_combo_box_calc_requested_width): use gtk_cell_view_get_size_of_row
6076         instead of the measurer,
6077         (gtk_combo_box_style_set): queue a resize,
6078         (gtk_combo_box_size_request): update of _remeasure call,
6079         (gtk_combo_box_init), (gtk_combo_box_cell_layout_pack_start),
6080         (gtk_combo_box_cell_layout_pack_end),
6081         (gtk_combo_box_cell_layout_clear),
6082         (gtk_combo_box_set_model): get rid of the measurer,
6083         (gtk_combo_box_cell_layout_add_attribute),
6084         (gtk_combo_box_cell_layout_set_cell_data_func),
6085         (gtk_combo_box_cell_layout_clear_attributes): ditto and queue a
6086         resize instead of calling _remeasure.
6087
6088 Mon Nov 17 16:25:04 2003  Manish Singh <yosh@gimp.org>
6089
6090         * gdk-pixbuf/Makefile.am
6091         * modules/input/Makefile.am: Use install-data-hook for
6092         gdk-pixbuf.loaders and gtk.immodules install generation targets.
6093         Fixes #112806.
6094
6095         * gtk/gtkexpander.h: Apply missing declarations from #124449.
6096
6097 Tue Nov 18 00:12:55 2003  Matthias Clasen  <maclas@gmx.de>
6098
6099         Fix for #119555, Peter Zelezny:
6100         
6101         * gdk/gdkdrawable.h: Declare gdk_drawable_copy_to_image.
6102         * gdk/gdkdraw.c (gdk_drawable_copy_to_image): Make public
6103         by removing the _ prefix. 
6104         * gdk/gdkdraw.c, gdk/gdkpixbuf-drawable.c, gdk/gdkpixmap.c, 
6105         gdk/gdkwindow.c: Adjust all callers.
6106
6107 Mon Nov 17 23:36:02 2003  Matthias Clasen  <maclas@gmx.de>
6108
6109         * gtk/gtkaction.c (gtk_action_activate): Only activate if 
6110         the action is sensitive.  (#127187, Christian Persch)
6111
6112 Mon Nov 17 23:23:49 2003  Matthias Clasen  <maclas@gmx.de>
6113
6114         * gtk/gtkcombobox.c: Add mouse wheel support.  (#126517)
6115
6116 Mon Nov 17 22:56:09 2003  Kristian Rietveld  <kris@gtk.org>
6117
6118         * gtk/gtkentryprivate.h: add _gtk_entry_completion_resize_popup.
6119
6120         * gtk/gtkentry.c (gtk_entry_completion_timeout): popup when not
6121         mapped, else resize_popup.
6122
6123         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup),
6124         (_gtk_entry_completion_popup): moved all popup resizing code to
6125         _gtk_entry_completion_resize_popup, and show the window when there
6126         are more than zero items in the completion list again (sigh).
6127
6128 2003-11-17  Mark McLoughlin  <mark@skynet.ie>
6129
6130         Patch from Jaiserca <jaiserca@inf.upv.es> to add a
6131         "use_markup" property. See bug #124449.
6132
6133         * gtk/gtkexpander.c:
6134         (gtk_expander_class_init),
6135         (gtk_expander_init), (gtk_expander_set_property),
6136         (gtk_expander_get_property), (gtk_expander_set_label),
6137         (gtk_expander_set_use_markup),  (gtk_expander_get_use_markup):
6138         Add a "use_markup" property and use it when creating the
6139         child label.
6140
6141 Mon Nov 17 12:58:32 2003  Kristian Rietveld  <kris@gtk.org>
6142
6143         Temporary size requisition fix. Will fix it for real tonight.
6144
6145         * gtk/gtkcombobox.c (gtk_combo_box_remeasure): add a resize flag,
6146         (gtk_combo_box_size_request): use gtk_combo_box_remeasure to determine
6147         a good width for the child,
6148         (gtk_combo_box_cell_layout_add_attribute),
6149         (gtk_combo_box_set_cell_data_func),
6150         (gtk_combo_box_cell_layout_clear_attributes): update.
6151
6152 Mon Nov 17 00:11:21 2003  Kristian Rietveld  <kris@gtk.org>
6153
6154         Fixes #124373, Murray Cumming.
6155
6156         * gtk/gtkcombobox.[ch] (gtk_combo_box_class_init): the model property
6157         is no longer construct only,
6158         (gtk_combo_box_unset_model), (gtk_combo_box_set_model_internal),
6159         (gtk_combo_box_menu_fill): new functions,
6160         (gtk_combo_box_menu_setup), (gtk_combo_box_menu_destroy),
6161         (gtk_combo_box_menu_row_*), (gtk_combo_box_list_setup),
6162         (gtk_combo_box_list_destroy): updated,
6163         (gtk_combo_box_new), (gtk_combo_box_new_with_model): new/changed
6164         functions,
6165         (gtk_combo_box_set_model): is now public, updated,
6166         (gtk_combo_box_get_model): small update.
6167
6168         * gtk/gtkcomboboxentry.[ch] (gtk_combo_box_entry_class_init): the
6169         text_column property is no longer construct only,
6170         (gtk_combo_box_entry_set_text_column): now public,
6171         (gtk_combo_box_entry_new), (gtk_combo_box_entry_new_with_model):
6172         new/changed functions.
6173
6174         * tests/testcombo.c: updated.
6175
6176 Sun Nov 16 22:50:58 2003  Matthias Clasen  <maclas@gmx.de>
6177
6178         Reinstate fixes for (#124212, Marco Pesenti Gritti):
6179         
6180         * gtk/gtkuimanager.c (update_smart_separators): Don't spit 
6181         warnings for popups.
6182         (_gtk_menu_is_empty): Return FALSE for non-menus.
6183
6184 Sun Nov 16 21:48:40 2003  Kristian Rietveld  <kris@gtk.org>
6185
6186         * gtk/gtkcellview.c (gtk_cell_view_finalize): just call
6187         gtk_cell_view_cell_layout_clear instead of trying to free the
6188         structure ourselves here. (#125726, Morten Welinder).
6189
6190 Sun Nov 16 00:35:29 2003  Matthias Clasen  <maclas@gmx.de>
6191
6192         * gtk/gtkfilechooser.[hc]: 
6193         * gtk/gtkentrycompletion.h: Fix parameter name mismatches which
6194         confuse gtk-doc.
6195
6196 2003-11-15  Hans Breuer  <hans@breuer.org>
6197
6198         * gdk/makefile.msc gdk/gdk.def 
6199             gtk/gtk.def gtk/makefile.msc.in : updated
6200         * tests/makefile.msc : added all the new tests
6201
6202         * gtk/gtkfilefilter.c(finalize) : initialize filter
6203         from object not from itself
6204
6205         * gtk/gtkfilesystemwin32.[hc] : copied from gtkfilesystemunix.[hc]
6206         modified as less as posible to have aworking implementation
6207         on win32. There maybe the desire to merge the unchanged pats into
6208         a common base class.
6209         Also implemented a simple glib based bookmark handling, which
6210         is currently missing in gtkfilesystemunix.[hc] but can be copied
6211         over there.
6212         * gtk/gtkfilechooserwidget.c : conditional include gtkfilesystemwin32.h
6213
6214         * gdk/win32/gdkwindow-win32.c : implement 
6215         gdk_window_set_keep_above() and gdk_window_set_keep_below()
6216
6217         * tests/testmerge.c : don't include unistd.h unconditionally,
6218         #define STDOUT_FILENO if it isn't defined
6219
6220         * tests/testfilechooser.c : make it compile on win32
6221
6222 2003-11-15  Tor Lillqvist  <tml@iki.fi>
6223
6224         * gdk/win32/gdkwindow-win32.c (gdk_window_focus): If the window is
6225         maximized, use SW_SHOWMAXIMIZED. (#126986, John Ehresman)
6226
6227 Thu Nov 13 12:55:29 GMT 2003  Tony Gale <gale@gtk.org>
6228
6229         * docs/faq/gtk-faq.sgml: Update the rest of Section 2
6230
6231 Thu Nov 13 01:46:32 2003  Matthias Clasen  <maclas@gmx.de>
6232
6233         * gtk/gtkicontheme.c (gtk_icon_theme_init): Use 
6234         GTK_DATADIR/{icons,pixmaps} instead of 
6235         GTK_DATA_PREFIX/{icons,pixmaps}.  (#123365, Marco Pesenti Gritti)
6236
6237 Wed Nov 12 21:40:10 2003  Matthias Clasen  <maclas@gmx.de>
6238
6239         Changes to improve menu positioning on Xinerama (#108328, #126150):
6240         
6241         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Use the event 
6242         window of the menuitem to determine the monitor. This fixes some
6243
6244         * gtk/gtkmenu.c (struct _GtkMenuPrivate): Add a menu_num field
6245         to store the monitor on which the menu is to be positioned.
6246
6247         * gtk/gtkmenu.[hc] (gtk_menu_position): Store the monitor number
6248         in the GtkMenuPrivate struct and fetch the monitor geometry after
6249         calling the position_func, in case it has been changed.
6250
6251         * gtk/gtkmenu.c (gtk_menu_set_monitor): New function 
6252         to be used in GtkMenuPositionFunc implementations for setting
6253         the monitor_num field in GtkMenuPrivate.
6254
6255         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Call 
6256         gtk_menu_set_monitor.
6257
6258 Wed Nov 12 21:00:10 2003  Matthias Clasen  <maclas@gmx.de>
6259
6260         * gtk/gtkinputdialog.c (gtk_input_dialog_init): Clarify the
6261         label for the empty list. String change.  (#95446, Tomas Ã–gren)
6262
6263 Wed Nov 12 20:57:50 2003  Matthias Clasen  <maclas@gmx.de>
6264
6265         * gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
6266         the definition of the values.  (#123361, Marco Pesenti Gritti)
6267
6268 Wed Nov 12 20:54:02 2003  Matthias Clasen  <maclas@gmx.de>
6269
6270         * gdk/gdkkeyuni.c: Map KP_Separator to ','.
6271         (#122941, Egmont Koblinger)
6272
6273 2003-11-12  Padraig O'Briain  <padraig.obriain@sun.com>
6274
6275         *gtk/gtkcolorsel.c (gtk_color_selection_init): Add tooltip for
6276         opacity entry widget. Change tooltip for opacity widgets. (#126426)
6277
6278 2003-11-12  Padraig O'Briain  <padraig.obriain@sun.com>
6279
6280         * gtk/gtkmenu.c (gtk_menu_popup): Do not let pointer position
6281         affect window menu position when popped from keyboard. (#102660)
6282
6283 Wed Nov 12 01:29:32 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
6284
6285         * gtk/gtktoolbar.c (gtk_toolbar_internal_insert_element): When we
6286         are using the old API, make all items "is_important". That way
6287         BOTH_HORIZ will continue to show both icon and label in old API
6288         mode.
6289
6290 Mon Nov 10 00:40:41 2003  Matthias Clasen  <maclas@gmx.de>
6291
6292         * gtk/gtkeventbox.c (gtk_event_box_set_above_child): 
6293         Remember the new value in all cases.  (#126276, Damon Chaplin)
6294
6295 Sat Nov  8 23:06:02 2003  Matthias Clasen  <maclas@gmx.de>
6296
6297         * demos/gtk-demo/main.c (row_activated_cb): Call the do_
6298         functions with the toplevel as argument.
6299
6300         * demos/gtk-demo/geninclude.pl.in: Change the signature
6301         of GDoDemoFunc to take a widget argument
6302
6303         * demos/gtk-demo/ui_manager.c (do_ui_manager): 
6304         * demos/gtk-demo/tree_store.c (do_tree_store): 
6305         * demos/gtk-demo/textview.c (do_textview): 
6306         * demos/gtk-demo/stock_browser.c (do_stock_browser): 
6307         * demos/gtk-demo/sizegroup.c (do_sizegroup): 
6308         * demos/gtk-demo/pixbufs.c (do_pixbufs): 
6309         * demos/gtk-demo/panes.c (do_panes): 
6310         * demos/gtk-demo/menus.c (do_menus): 
6311         * demos/gtk-demo/list_store.c (do_list_store): 
6312         * demos/gtk-demo/images.c (do_images): 
6313         * demos/gtk-demo/hypertext.c (do_hypertext): 
6314         * demos/gtk-demo/editable_cells.c (do_editable_cells): 
6315         * demos/gtk-demo/drawingarea.c (do_drawingarea): 
6316         * demos/gtk-demo/dialog.c (do_dialog): 
6317         * demos/gtk-demo/colorsel.c (do_colorsel): 
6318         * demos/gtk-demo/changedisplay.c (do_changedisplay): 
6319         * demos/gtk-demo/button_box.c (do_button_box): 
6320         * demos/gtk-demo/appwindow.c (do_appwindow): Take a widget
6321         as argument, and make new windows or dialogs appear on the
6322         same screen.  (#80388)
6323
6324 Sat Nov  8 21:59:30 2003  Matthias Clasen  <maclas@gmx.de>
6325
6326         * gtk/gtkeventbox.c (gtk_event_box_class_init): Let 
6327         visible-window default to TRUE, as documented and 
6328         implemented. (#126270 Damon Chaplin)
6329
6330 Sat Nov  8 01:50:17 2003  Matthias Clasen  <maclas@gmx.de>
6331
6332         * gtk/gtkicontheme.c: 
6333         * gtk/gtkfilechooserwidget.c (gtk_file_chooser_widget_new): 
6334         * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_new): 
6335         * gtk/gtkfilechooser.c (gtk_file_chooser_[un]select_all): Mark as
6336         2.4 additions.
6337
6338 2003-11-07  Federico Mena Quintero  <federico@ximian.com>
6339
6340         Changing GtkFileChooserEntry to use GtkEntryCompletion.
6341
6342         * gtk/gtkfilechooserentry.c (gtk_file_chooser_entry_init): Create
6343         a GtkListStore for the completion list.  Create a
6344         GtkEntryCompletion and attach it to the chooser entry.
6345         (gtk_file_chooser_entry_finalize): Unref the completion store.
6346         (completion_match_func): New callback for the GtkEntryCompletion.
6347         (completion_idle_callback): Fill the completion store with filenames.
6348
6349 Fri Nov  7 22:55:49 2003  Matthias Clasen  <maclas@gmx.de>
6350
6351         * gtk/gtkwindow.c (gtk_window_set_role): 
6352         * gtk/gtkwindow.c (gtk_window_set_title): 
6353         * gtk/gtkwidget.c (gtk_widget_set_name): 
6354         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_title): 
6355         * gtk/gtkbutton.c (gtk_button_set_label): Make string setters
6356         safe for self-assignment.  (#122745, Soeren Sandmann)
6357
6358 Thu Nov  6 20:41:40 2003  Matthias Clasen  <maclas@gmx.de>
6359
6360         * gtk/gtkstyle.c (gtk_style_attach): Fix doc comment.
6361         (#126369, Olexiy Avramchenko)
6362
6363 Thu Nov  6 00:21:41 2003  Matthias Clasen  <maclas@gmx.de>
6364
6365         * gtk/gtkcolorbutton.c (gtk_color_button_init): 
6366         * gtk/gtkfontbutton.c (gtk_font_button_init): Improve the 
6367         consistency of titles.  (#126193, Damon Chaplin)
6368
6369 Wed Nov  5 22:49:36 2003  Matthias Clasen  <maclas@gmx.de>
6370
6371         * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Set torn off 
6372         menus to be transient for the toplevel they were torn off from.
6373         (gtk_menu_get_toplevel): Auxiliary function to find the
6374         toplevel of a menu.  (#54775, Jon-Kare Hellan)
6375
6376 Wed Nov  5 21:07:58 2003  Matthias Clasen  <maclas@gmx.de>
6377
6378         * gtk/gtkpaned.c (gtk_paned_class_init): Add readonly properties
6379         min-position and max-position.  (#58431, Padraig O'Briain)
6380
6381 Wed Nov  5 21:02:26 2003  Matthias Clasen  <maclas@gmx.de>
6382
6383         * gtk/gtkcolorsel.c (update_color): 
6384         (make_label_spinbutton): 
6385         (adjustment_changed): Change the ranges for Saturation and
6386         Value to be 0-100 instead of 0-255, since these axes of HSV
6387         are usually expressed in percent.  (#121519, Gregory Merchan)
6388
6389 Wed Nov  5 08:51:48 GMT 2003  Tony Gale <gale@gtk.org>
6390
6391         * docs/faq/gtk-faq.sgml: More 2.x updates
6392
6393 Tue Nov  4 15:00:33 GMT 2003  Tony Gale <gale@gtk.org>
6394
6395         * docs/faq/gtk-faq.sgml: More 2.x updates, fix
6396         pkg-config command error, update copyright.
6397
6398 2003-11-03  Federico Mena Quintero  <federico@ximian.com>
6399
6400         * gtk/gtkfilechooserdefault.c (error_dialog): Take in a path as
6401         well.  Use a helper function.
6402         (shortcuts_append_home): Display an error box if necessary.
6403         (shortcuts_append_desktop): Likewise.
6404         (add_bookmark_button_clicked_cb): Likewise.
6405         (gtk_file_chooser_default_select_path): Likewise.
6406         (entry_activate): Likewise.
6407         (shortcuts_append_paths): New helper function.
6408         (shortcuts_append_file_system_roots): Use
6409         shortcuts_append_paths().
6410         (shortcuts_append_bookmarks): Likewise.
6411
6412 Mon Nov  3 23:12:41 2003  Matthias Clasen  <maclas@gmx.de>
6413
6414         * gtk/gtkuimanager.c (_gtk_menu_is_empty): Return TRUE if 
6415         menu is NULL.
6416         (update_smart_separators): Remove some unneeded ifs.
6417
6418 Mon Nov  3 22:45:58 2003  Matthias Clasen  <maclas@gmx.de>
6419
6420         * gtk/gtkwindow-decorate.h: Add G_BEGIN_DECLS/G_END_DECLS to make 
6421         these usable in C++. Forgot this file in my Oct 11 commit.
6422
6423 2003-11-03  Federico Mena Quintero  <federico@ximian.com>
6424
6425         * gtk/gtkfilechooserdefault.c (create_shortcuts_tree): Add a stock
6426         icon to the "Add bookmark" button.
6427
6428         * gtk/gtkfilesystemunix.c: Mark missing strings for translation.
6429         * gtk/gtkfilesystemmodel.c: Likewise.
6430         * gtk/gtkfilechooser.c: Likewise.
6431         * gtk/gtkfilechooserdefault.c: Likewise.
6432
6433 Mon Nov  3 20:56:28 2003  Matthias Clasen  <maclas@gmx.de>
6434
6435         * gdk/gdk.c: 
6436         * gdk/gdkinternals.h: 
6437         * gdk/x11/gdkscreen-x11.c (init_xinerama_support): Introduce a
6438         GDK_DEBUG_XINERAMA debug flag, and make it trigger a fake 2x2
6439         Xinerama mode when no actual Xinerama setup is found. 
6440
6441 2003-11-03  Federico Mena Quintero  <federico@ximian.com>
6442
6443         * gtk/gtkfilechooserdefault.c (shortcuts_select_folder): Removed.
6444         (create_shortcuts_tree): Don't call the above.
6445         (bookmarks_changed_cb): Likewise.
6446         (tree_selection_changed): Unselect everything from the shortcuts
6447         list.  This is the behavior that Mac OS has.
6448         (toolbar_add_item): Return the item.
6449         (toolbar_create): Store the up_button in the impl structure.
6450         (toolbar_check_sensitivity): New function to set the sensitivity
6451         of the "Up" button in the toolbar.
6452         (tree_selection_changed): Call toolbar_check_sensitivity().
6453
6454 2003-11-02  Federico Mena Quintero  <federico@ximian.com>
6455
6456         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): Do
6457         not set a border width for the toplevel container.
6458         (toolbar_create): New function; create a simple toolbar for the
6459         file chooser.
6460         (gtk_file_chooser_default_constructor): Use a spacing of 12 for
6461         the table, as per the HIG.
6462         (gtk_file_chooser_default_init): Likewise, for the default
6463         implementation's vbox.
6464
6465         * gtk/gtkfilesystem.c (gtk_file_system_get_parent): Added docs to
6466         note that NULL is a valid return value for the parent path.
6467
6468 Sat Nov  1 14:59:27 2003  Owen Taylor  <otaylor@redhat.com>
6469
6470         * gtk/gtkfilechooserdefault.c (shortcuts_row_activated): 
6471         Change on activation, not selection change (temporary
6472         workaround for #125955, needed for keynav, likely
6473         the right UI anyways.)
6474
6475         * gtk/gtkfilechooserdefault.c (shortcuts_select_func): 
6476         Don't allow the separator node to be selected.
6477
6478         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_constructor):
6479         Set the focus chain so that the entry gets focused first.
6480         (Not really right after initial focusing, maybe we
6481         should just have a gtk_file_chooser_focus_entry() that
6482         we call from gtk_file_chooser_dialog on creation.)
6483
6484 Sat Nov  1 12:41:04 2003  Owen Taylor  <otaylor@redhat.com>
6485
6486         * gtk/gtkwindow.c (gtk_window_unfullscreen): Fix a
6487         residual call to gtk_window_get_private().
6488
6489 Sat Nov  1 09:10:13 2003  Owen Taylor  <otaylor@redhat.com>
6490
6491         * gtk/gtkwindow.[ch]: Move above_initially, below_initially
6492         into GtkWindowPrivate structure, fixing ABI breakage
6493         on Win32. (Hans Breuer). Switch GtkWindowPrivate over
6494         to instance-private-data.
6495
6496 Fri Oct 31 02:43:34 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
6497
6498         * gtk/gtktoolbar.c (get_item_requisition): delete this function
6499         (toolbar_item_is_homogeneous): cache max_homogeneous_pixels
6500         instead of re-calculating for each item.
6501         (gtk_toolbar_size_allocate): Update comments
6502
6503 Thu Oct 30 22:04:31 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
6504
6505         * gtk/gtktoolbar.c (gtk_toolbar_forall): Only include
6506         placeholders when include_internals is TRUE.
6507
6508 Thu Oct 30 17:57:53 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
6509
6510         * gtk/gtktoolbar.c (logical_to_physical): Make it work even when
6511         item 0 is a placeholder. (#125826)
6512         * tests/testtoolbar.c: add an assertion that 
6513         gtk_toolbar_get_nth_item (0) != NULL
6514
6515 Thu Oct 30 17:40:26 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
6516
6517         * gtk/gtktoolbar.c (logical_to_physical): Make it work for
6518         logical == 0.(#125826)
6519
6520 Thu Oct 30 16:20:58 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
6521
6522         * gtk/gtktoolbar.c (logical_to_physical): Make sure we actually
6523         return the index of a real item.
6524         (get_nth_item) assert that the returned items is not a
6525         placeholder.  (#125826, Marco Pesenti Gritti).
6526         
6527 2003-10-29  Federico Mena Quintero  <federico@ximian.com>
6528
6529         * gtk/gtkcellrendererseptext.c
6530         (gtk_cell_renderer_sep_text_render): Only paint a separator if the
6531         text is NULL, rather than also doing it if it is an empty string.
6532
6533 Wed Oct 29 15:40:26 2003  Owen Taylor  <otaylor@redhat.com>
6534
6535         * gtk/gtkmessagedialog.c (gtk_message_dialog_new/
6536         gtk_message_dialog_new_with_format): Allow NULL
6537         for message_format, as described in the docs and
6538         as worked previously. (#125759, Richard Hult)
6539
6540         * gtk/gtkmessagedialog.c (gtk_message_dialog_new_with_markup):
6541         Use g_markup_vprintf_escaped() to escape arguments.
6542
6543         * gtk/gtkmessagedialog.[ch]: Add gtk_message_dialog_set_markup()
6544         so there is some way to set literal markup.
6545
6546 Wed Oct 29 15:01:32 2003  Owen Taylor  <otaylor@redhat.com>
6547  
6548         * gdk/x11/gdkimage-x11.c (_gdk_x11_copy_to_image): Move
6549         the call to gdk_error_trap_pop() to the right place,
6550         fixing a problem where we'd pop() too many times 
6551         when bailing out. (#123302, Thomas Leonard)
6552         
6553 Wed Oct 29 12:50:02 2003  Owen Taylor  <otaylor@redhat.com>
6554
6555         * gtk/gtkfilechooserutils.c (delegate_set_current_folder): 
6556         Fix infinite recursion. (#125679, Christian Persch)
6557
6558 Wed Oct 29 13:29:15 GMT 2003  Tony Gale <gale@gtk.org>
6559
6560         * docs/faq/gtk-faq.sgml: further 2.x updates:
6561         mirrors,compiling,g_main_context_iteration
6562
6563 Wed Oct 29 02:54:35 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
6564
6565         * gtk/gtktoolbar.[ch] (gtk_toolbar_set_drop_highlight_item): Add this
6566         function; remove gtk_toolbar_highlight_drop_location() and
6567         gtk_toolbar_unhighlight_drop_location().
6568
6569         Also fix bug where the number of overflowed items were miscounted.
6570
6571 Tue Oct 28 12:20:16 2003  Owen Taylor  <otaylor@redhat.com>
6572
6573         * gtk/gtkwindow.c (gtk_window_has_toplevel_focus): Remove
6574         some accidentally committed duplicate code.
6575
6576 Tue Oct 28 17:06:17 GMT 2003  Tony Gale <gale@gtk.org>
6577
6578         * docs/faq/gtk-faq.sgml: Update info on compiling GTK+
6579
6580 Tue Oct 28 10:34:24 2003  Owen Taylor  <otaylor@redhat.com>
6581
6582         * gtk/gtkwindow.[ch] (gtk_window_is_active, 
6583         gtk_has_toplevel_focus): Add getters corresponding to
6584         the is_active and has_toplevel_focus properties.
6585         (#122531)
6586
6587 2003-10-28  Mark McLoughlin  <mark@skynet.ie>
6588
6589         * gtk/gtkexpander.c:
6590         (gtk_expander_class_init): hook up the destroy handler.
6591         (gtk_expander_destroy), (gtk_expander_unrealize):
6592         remove the expand/collapse timeout on destroy instead
6593         of unrealize to avoid leaving the expander in a inconsistent
6594         state when unrealizing during animation.
6595         (gtk_expander_start_animation): remove realized check.
6596         (gtk_expander_set_expanded): if the widget isn't realized,
6597         expand immediately.
6598
6599 Tue Oct 28 09:44:16 2003  Owen Taylor  <otaylor@redhat.com>
6600
6601         * gtk/gtkxembed.c (_gtk_xembed_send_focus_message): Silently
6602         do nothing when recipient is NULL, as described in the
6603         doc comment. (#123107, Thomas Leonard)
6604
6605 Tue Oct 28 09:21:29 2003  Owen Taylor  <otaylor@redhat.com>
6606
6607         * gtk/gtkmain.c (gtk_check_version): Move docs inline,
6608         rewrite docs, mention memory management for the return
6609         value. (Partly addresses #125549, Michael Natterer)
6610
6611 2003-10-28  Padraig O'Briain  <padraig.obriain@sun.com>
6612
6613         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_remove_filter):
6614         Change index to filter_index to fix compilation error.
6615
6616         * gtk/gtkfilesystem.h: Correct definition of gtk_file_path_get_string.
6617
6618 Mon Oct 27 15:47:58 2003  Manish Singh  <yosh@gimp.org>
6619
6620         * gdk/x11/gdkscreen-x11.c: #include <X11/extensions/Xrandr.h> if
6621         we have RandR support, for XRRUpdateConfiguration declaration.
6622
6623         * gtk/gtkfilefilter.c: #include "gtkprivate.h" for _gtk_fnmatch
6624         declaration.
6625
6626         * gtk/gtkuimanager.c (gtk_ui_manager_add_ui_from_file): Make
6627         length a gsize variable, since that's what g_file_get_contents()
6628         expects.
6629
6630 Mon Oct 27 12:18:49 2003  Owen Taylor  <otaylor@redhat.com>
6631
6632         * NEWS: Fix attribution for above/below EWMH work.
6633
6634 Sat Oct 25 23:30:13 2003  Matthias Clasen  <maclas@gmx.de>
6635
6636         * gtk/gtkactiongroup.c (gtk_action_group_class_init): Add "name" 
6637         as a construct-only property.  (#125475, Murray Cumming)
6638
6639 Thu Oct 23 21:55:10 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
6640
6641         Fix bug 116297 and 125472
6642         
6643         * gtk/gtktoolbar.c (gtk_toolbar_highlight_drop_location): Make
6644         this function take an index and a GtkToolItem.
6645
6646         * tests/testtoolbar.c (main): Make "Show Arrow" default to
6647         true. Make one of the separators !draw and expand.
6648         Update for new highlight_drop_location() API.
6649
6650         * gtk/gtktoolitem.[ch]: Remove "pack_end" property
6651
6652         * gtk/gtktoolbar.h: Formatting fixes.
6653
6654         * gtk/gtktoolbar.c: Remove "pack_end" child property. Allow
6655         separator tool items to expand.
6656         (logical_to_physical, physical_to_logical): Fix off-by-one errors
6657         (Fix #125472, Marco Pesenti Gritti)
6658
6659         * gtk/gtkseparatortoolitem.[ch]: Add new "draw" property.
6660         (gtk_separator_tool_item_expose) only draw if "draw" is TRUE. Also
6661         return FALSE, not TRUE.
6662         (gtk_separator_too_item_{set|get}_property,
6663         (gtk_separator_tool_item_{set|get}_draw): new functions
6664
6665 Fri Oct 24 16:54:04 2003  Owen Taylor  <otaylor@redhat.com>
6666
6667         * === Released 2.3.0 ===
6668
6669         * configure.in: Remove a stray comma.
6670
6671         * README.in: Fix a few notes about Xft 1 and pango-1.0.
6672
6673         * NEWS: Finish updates for 2.3.0.
6674
6675         * po/Makefile.in.in: Update to latest GLib version.
6676
6677 Fri Oct 24 20:31:35 2003  Kristian Rietveld  <kris@gtk.org>
6678
6679         * gtk/gtkcellview.[ch], gtk/gtkcellviewmenuitem.[ch],
6680         gtk/gtkcombobox.[ch], gtk/gtkcomboboxentry.[ch],
6681         gtk/gtktreemodelfilter.[ch]: Fix licensing (I managed to put it
6682         under GPL licensing instead of LGPL...). (Fixes #125381, Soeren
6683         Sandmann).
6684
6685 Fri Oct 24 20:22:40 2003  Kristian Rietveld  <kris@gtk.org>
6686
6687         * gtk/gtktreemodelfilter.h: add padding to the class structure.
6688
6689 2003-10-23  Federico Mena Quintero  <federico@ximian.com>
6690
6691         * gtk/gtkfilechooser.c (gtk_file_chooser_get_preview_uri): Fixed docs.
6692         (gtk_file_chooser_remove_filter): Likewise.
6693         (gtk_file_chooser_select_all): Added docs.
6694         (gtk_file_chooser_unselect_all): Likewise.
6695
6696         * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_new): Added docs.
6697
6698         * gtk/gtkfilechooserwidget.c (gtk_file_chooser_widget_new): Added docs.
6699
6700 Thu Oct 23 23:22:15 2003  Matthias Clasen  <maclas@gmx.de>
6701
6702         * gtk/gtkfilefilter.c: 
6703         * gtk/gtkfilechooser.c: Add "Since: 2.4" to all API doc comments.
6704
6705 Thu Oct 23 22:33:47 2003  Matthias Clasen  <maclas@gmx.de>
6706
6707         * gtk/gtkfilefilter.c (gtk_file_filter_new): Fix doc markup.
6708
6709 Thu Oct 23 21:49:05 2003  Matthias Clasen  <maclas@gmx.de>
6710
6711         * NEWS: Remove a few duplicates, group the menu changes.
6712
6713 Thu Oct 23 21:12:50 2003  Kristian Rietveld  <kris@gtk.org>
6714
6715         * NEWS: Updates for 2.3.0; changed header to match the style we used
6716         for 2.1.0.
6717
6718 Thu Oct 23 20:47:44 2003  Matthias Clasen  <maclas@gmx.de>
6719
6720         * gdk/x11/gdkwindow-x11.c (gdk_window_set_group): Actually
6721         assign the new leader.  (#125168, Mariano Suarez-Alvarez)
6722
6723 Thu Oct 23 20:21:16 2003  Kristian Rietveld  <kris@gtk.org>
6724
6725         * gtk/gtkcelllayout.c, gtk/gtkcellview.c gtk/gtkcellviewmenuitem.c,
6726         gtk/gtkcombobox.c, gtk/gtkcomboboxentry.c, gtk/gtkentrycompletion.c,
6727         gtk/gtktreemodelfilter.c, gtk/gtkcellrenderertoggle.c: Fix includes.
6728
6729 Thu Oct 23 15:13:56 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
6730
6731         * NEWS: Partial update for 2.3.0.
6732
6733 Thu Oct 23 01:09:04 2003  Owen Taylor  <otaylor@redhat.com>
6734
6735         * gtk/gtkfilechooserdefault.c: Convert GtkOptionMenu to
6736         GtkComboBox.
6737
6738 Wed Oct 22 23:20:04 2003  Owen Taylor  <otaylor@redhat.com>
6739
6740         * gtk/gtkfilechooser.[ch] gtk/gtkfilefilter.[ch] 
6741         gtk/gtkfilechooserwidget.[ch] gtk/gtkfilechooserdialog.[ch]:
6742         gtk/gtkfilechooserutils.c gtk/gtkfilechooserprivate.[ch]:
6743         Basic framework for the new file selector widget.
6744
6745         * gtk/gtkfilechooserdefault.[ch] gtk/gtkcellrenderersep.[ch] 
6746         gtk/gtkfilechooserentry.[ch] gtk/gtkfilesystemmodel.[ch]:
6747         Initial implementation of the GtkFileChooser user interface.
6748
6749         * gtk/gtkfilesystemunix.[ch]: GtkFileSystem implementation
6750         for Unix files.
6751
6752         * configure.in gtk/Makefile.am gtk/xdgmime: Build code
6753         for freedesktop.org MIME system on Unix.
6754
6755         * tests/testfilechooser.c: Test program for GtkFileChooser
6756
6757         * tests/prop-editor.c: Add support for properties on interfaces.
6758
6759 Tue Oct 21 16:12:51 2003  Owen Taylor  <otaylor@redhat.com>
6760
6761         * demos/gtk-demo/menus.c (do_menus): Fix some unused
6762         variables.
6763
6764         * gtk/gtkmain.c (_gtk_get_lc_ctype): Fix an unused
6765         variable warning.
6766
6767 Thu Oct 23 00:04:50 2003  Matthias Clasen  <maclas@gmx.de>
6768
6769         * NEWS: Partial update for 2.3.0.
6770
6771 Tue Oct 21 22:07:12 2003  Kristian Rietveld  <kris@gtk.org>
6772
6773         * gtk/gtktreeview.c (gtk_tree_view_real_move_cursor): set
6774         ctrl_pressed and shift_pressed according to the current event
6775         state (if there is one). (Fixes #125063, reported by Sebastien Bacher).
6776
6777 Mon Oct 20 23:24:27 2003  Kristian Rietveld  <kris@gtk.org>
6778
6779         * gtk/gtkentry.c (gtk_entry_key_press): remove the completion
6780         timeout when the user pressed on Enter/ESC. Fixes the bug where the
6781         completion popup popped up after the user pressed on Enter (which is
6782         just weird). Reported by the Epiphany people (all of them).
6783
6784 Mon Oct 20 20:27:22 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
6785
6786         Add support for OS X like sliding of toolbar items during drag and
6787         drop, (#110919, Dave Bordoley)
6788
6789         Make dnd highlighting the responsibility of the
6790         application. (Fixes #116298, Owen Taylor)
6791
6792         * gtk/gtktoolbar.h: Add prototypes for new API.
6793         
6794         * gtk/gtktoolbar.c
6795         (physical_to_logical, logical_to_physical): new functions
6796         converting between "position including placeholders" and "position
6797         excluding placeholders".
6798         (gtk_toolbar_class_init): remove drag_leave and drag_motion
6799         handlers
6800         (struct _ToolbarContent): new struct containing information
6801         related to toolbar items.
6802         (gtk_toolbar_highlight_drop_location): new public function
6803         (gtk_toolbar_unhighlight_drop_location): new public function
6804         
6805         * tests/testtoolbar.c
6806         (toolbar_drag_motion, toolbar_drag_leave): new functions
6807         (main): connect to dnd signals.  Make the "New" item expand to
6808         make drag and drop more exciting.
6809
6810 Wed Oct 15 22:39:23 2003  Kristian Rietveld  <kris@gtk.org>
6811
6812         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): it's
6813         _set_active, not _set_active_item.
6814
6815 Wed Oct 15 22:31:09 2003  Kristian Rietveld  <kris@gtk.org>
6816
6817         * gtk/gtkcombobox.h: add padding to the class structure.
6818         * gtk/gtkcomboboxentry.h: ditto.
6819         * gtk/gtkentrycompletion.h: ditto.
6820
6821 Wed Oct 15 22:04:59 2003  Kristian Rietveld  <kris@gtk.org>
6822
6823         * gtk/gtkcombobox.c (gtk_combo_box_get_active),
6824         (gtk_combo_box_set_active): mention in the docs that -1 is a valid
6825         value and what it means.
6826
6827         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): set the active
6828         item to -1 (default),
6829         (gtk_combo_box_entry_active_changed): do nothing when the index is
6830         < 0.
6831
6832 Tue Oct 14 16:10:21 2003  Jonathan Blandford  <jrb@redhat.com>
6833
6834         * gtk/gtkcombobox.c (gtk_combo_box_set_active_iter): New function
6835         to set the active row by iter.
6836
6837         * gtk/gtkcombobox.c (gtk_combo_box_get_active_iter): New function
6838         to get the active row by iter.
6839
6840 2003-10-13  Federico Mena Quintero  <federico@ximian.com>
6841
6842         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): Don't do
6843         operations on windows if the tree view is not mapped.
6844         (gtk_tree_view_button_press): Compare equal types of pointers, not
6845         GtkWidget* vs. GtkTreeView*.
6846
6847 Mon Oct 13 21:01:43 2003  Kristian Rietveld  <kris@gtk.org>
6848
6849         * gtk/gtkentrycompletion.c (gtk_entry_completion_popup): remove
6850         the reset of first_sel_changed, as after the first popup the treeview
6851         will always have a row selected and will thus not focus_to_cursor.
6852
6853         * gtk/gtkentry.c (keyval_is_cursor_move): new function to determine
6854         whether the keyval should move the completion selection cursor (used
6855         to avoid ending up with extreme cluttered code), also added
6856         all KP_ equivalents of the keys here,
6857         (gtk_entry_completion_key_press): Keynav tweaks based on comments
6858         from Dave Bordoley and Marco Pesenti Gritti; add the -1 state
6859         as possible current selection, implement Home/End keys, modified
6860         the down key to stop cycling. Maybe page up/down should be implemented
6861         at some later time.
6862
6863 Mon Oct 13 20:58:07 2003  Matthias Clasen  <maclas@gmx.de>
6864
6865         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon): Make it work 
6866         as documented when pixmap or mask is NULL.  (#124081) 
6867
6868 Mon Oct 13 20:21:38 2003  Kristian Rietveld  <kris@gtk.org>
6869
6870         * gtk/gtkentry.c (gtk_entry_set_text): I overlooked a return when
6871         I was adding the signal block/unblock code. Oops. (Noticed by
6872         Marco Pesenti Gritti).
6873
6874 Mon Oct 13 20:21:55 2003  Kristian Rietveld  <kris@gtk.org>
6875
6876         * demos/testpixbuf-scale.c: enable GTK_DISABLE_DEPRECATED again,
6877         (set_interp_type), (main): port over from option menu to GtkComboBox.
6878
6879 Mon Oct 13 19:41:55 2003  Kristian Rietveld  <kris@gtk.org>
6880
6881         * tests/testmenus.c: Still uses option menus, so turn off
6882         GTK_DISABLE_DEPRECATED.
6883
6884 Sun Oct 12 01:10:29 2003  Matthias Clasen  <maclas@gmx.de>
6885
6886         * gtk/gtkalignment.[hc]: 
6887         * gtk/gtkcombobox.[hc]: 
6888         * gtk/gtkcomboboxentry.[hc]: 
6889         * gtk/gtktreemodelfilter.[hc]: Move GET_PRIVATE macros
6890         from header to implementation.
6891
6892 Sun Oct 12 00:18:02 2003  Matthias Clasen  <maclas@gmx.de>
6893
6894         * tests/testtreeview.c: 
6895         * demos/testpixbuf-scale.c: 
6896         * tests/prop-editor.c: These files still use option menus,
6897         so turn off GTK_DISABLE_DEPRECATED to fix the build. 
6898
6899 Sat Oct 11 23:14:36 2003  Matthias Clasen  <maclas@gmx.de>
6900
6901         * gtk/gtkactiongroup.h: 
6902         * gtk/gtkaction.h: 
6903         * gtk/gtkradioaction.h: 
6904         * gtk/gtkradiotoolbutton.h: 
6905         * gtk/gtkseparatortoolitem.h: 
6906         * gtk/gtktoggleaction.h: 
6907         * gtk/gtktoolitem.h: 
6908         * gtk/gtkuimanager.h: Add G_BEGIN_DECLS/G_END_DECLS to make 
6909         these usable in C++.  (#124351, Murray Cumming)
6910
6911 Sat Oct 11 19:09:05 2003  Kristian Rietveld  <kris@gtk.org>
6912
6913         * gtk/gtkentry.c (gtk_entry_set_text): Check if completion is
6914         non-NULL before accessing it. Oops.
6915
6916 Sat Oct 11 15:47:03 2003  Kristian Rietveld  <kris@gtk.org>
6917
6918         * gtk/gtkentrycompletion.[ch] (gtk_entry_completion_insert_action),
6919         (gtk_entry_completion_insert_action_text),
6920         (gtk_entry_completion_insert_action_markup): the gchar* parameters
6921         should be const (pointed out by both Marco Pesenti Gritti and
6922         Murray Cumming (#124356).
6923
6924 Sat Oct 11 15:37:19 2003  Kristian Rietveld  <kris@gtk.org>
6925
6926         * gtk/gtkcombobox.c (gtk_combo_box_size_allocate): for the custom
6927         child list mode, allocate the height allocation->height to the
6928         button instead of the height requested by the button. (Tiny
6929         size allocation screwup noticed by Macro Pesenti Gritti).
6930
6931 Sat Oct 11 15:23:27 2003  Kristian Rietveld  <kris@gtk.org>
6932
6933         Fixes based on comments from Marco Pesenti Gritti.
6934
6935         * gtk/gtkentry.c (gtk_entry_set_text): block the completion changed
6936         signal handler, avoids the completion popup to popup when text is
6937         set programmatically in most cases (we actually have to handle this
6938         in the _editable functions as well, but that will break popping up
6939         when the user actually typed something :),
6940         (gtk_entry_completion_key_press): when handling enter, bail out
6941         when nothing has been selected,
6942         (gtk_entry_completion_changed): don't popdown when the entry content
6943         changed.
6944
6945         * gtk/gtkentrycompletion.c (gtk_entry_completion_init),
6946         (gtk_entry_completion_selected_changed): unselect_all on the
6947         first selected changed signal. Avoids having a default row selected,
6948         (_gtk_entry_completion_popup): don't select the first row by default.
6949
6950         * gtk/gtkentryprivate.h (struct _GtkEntryCompletionPrivate): add a
6951         first_sel_changed field.
6952
6953 Fri Oct 10 23:02:58 2003  Matthias Clasen  <maclas@gmx.de>
6954
6955         * demos/gtk-demo/menus.c: Replace GtkItemFactory by GtkUIManager 
6956         in the intro (again).
6957
6958 Fri Oct 10 22:50:05 2003  Matthias Clasen  <maclas@gmx.de>
6959
6960         Fixes for (#124212, Marco Pesenti Gritti):
6961         
6962         * gtk/gtkuimanager.c (update_smart_separators): Don't spit 
6963         warnings for popups.
6964         (_gtk_menu_is_empty): Return FALSE for non-menus.
6965
6966 Fri Oct 10 19:10:12 2003  Kristian Rietveld  <kris@gtk.org>
6967
6968         * gtk/gtkcombo.h: Deprecate.
6969         * gtk/gtkoptionmenu.h: Ditto.
6970
6971         * gtk/gtkcombobox.c (gtk_combo_box_size_request),
6972         (gtk_combo_box_size_allocate): Rework, things behave better now. Still
6973         needs some work on requesting enough size when taking the items in
6974         the list into account.
6975
6976         * gtk/gtkfilesel.c: put gtkoptionmenu.h include inside "enable
6977         deprecated" guards.
6978         * gtk/gtkinputdialog.c: ditto.
6979         * gtk/gtkitemfactory.c: ditto.
6980         * gtk/gtkoptionmenu.c: ditto.
6981
6982         * demos/gtk-demo/menus.c: remove the option menu.
6983         * demos/gtk-demo/sizegroup.c: replace the option menus with
6984         GtkComboBox.
6985         * demos/gtk-demo/textview.c: ditto.
6986         (A general GtkComboBox demo will be added later on).
6987
6988 Wed Oct  8 00:06:17 2003  Matthias Clasen  <maclas@gmx.de>
6989
6990         * demos/gtk-demo/ui_manager.c (activate_radio_action): New
6991         callback to propertly report radio actions.
6992
6993         * demos/gtk-demo/ui_manager.c (do_ui_manager): Use it here.
6994
6995 Tue Oct  7 23:23:05 2003  Matthias Clasen  <maclas@gmx.de>
6996
6997         * gtk/gtkplug.c (xembed_set_info): Put the supported protocol
6998         version in in the right field of the _XEMBED_INFO property.  
6999         (#123885, Denis Mikhalkin)
7000
7001 Mon Oct  6 14:18:47 2003  Jonathan Blandford  <jrb@redhat.com>
7002
7003         * gtk/gtkexpander.c (gtk_expander_animation_timeout): only show
7004         the child if we have one.
7005
7006         (gtk_expander_button_release): use
7007         gtk_widget_activate instead.
7008
7009 Mon Oct  6 21:05:46 2003  Matthias Clasen  <maclas@gmx.de>
7010
7011         * gtk/gtktable.c (gtk_table_class_init): Start the blurb for 
7012         "right_attach" with a capital.  (#123945, Christian Rose)
7013
7014 Sun Oct  5 23:59:03 2003  Matthias Clasen  <maclas@gmx.de>
7015
7016         * tests/testsocket.c (child_read_watch): Remove an
7017         extraneous unref.  (#122336, Frederic Crozat)
7018
7019 Sun Oct  5 22:38:22 2003  Matthias Clasen  <maclas@gmx.de>
7020
7021         * gtk/gtkeventbox.c (gtk_event_box_class_init): Trim 
7022         whitespace in "visible-window" blurb.  (#123910, Christian Rose)
7023
7024 Sun Oct  5 00:53:15 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7025
7026         * gtk/gtktoolbar.c (gtk_toolbar_list_children_in_focus_order):
7027         focus arrow before pack_end items (#123851, Matthias Clasen)
7028
7029 Fri Oct  3 20:50:48 2003  Kristian Rietveld  <kris@gtk.org>
7030
7031         * gtk/gtkcombobox.c (gtk_combo_box_set_model): only set the model
7032         on ->priv->cell_view if ->priv->cell_view is non-NULL.
7033
7034         * gtk/gtkcomboboxentry.c: include gtkintl.h, add text_renderer
7035         field to GtkComboBoxEntryPrivate,
7036         (gtk_combo_box_entry_class_init), (gtk_combo_box_entry_init),
7037         (gtk_combo_box_entry_set_property), (gtk_combo_box_entry_get_property),
7038         (gtk_combo_box_entry_set_text_column), (gtk_combo_box_entry_new): add
7039         a construct-only "text_column" property and reorder code to use it
7040         and support inheriting this widget.
7041
7042 Thu Oct  2 23:28:02 2003  Kristian Rietveld  <kris@gtk.org>
7043
7044         * gtk/gtkcombobox.c: Added API doc comments.
7045
7046         * gtk/gtkcomboboxentry.c: Ditto.
7047
7048 2003-10-02  Matthias Clasen  <maclas@gmx.de>
7049
7050         * gtk/gtktoggleaction.c: Documentation tweaks.
7051
7052 Wed Oct  1 22:43:40 2003  Kristian Rietveld  <kris@gtk.org>
7053
7054         * gtk/gtkcellview.[ch]: implement the GtkCellLayout interface, drop
7055         packing/attribute/cell data functions from the header,
7056         (gtk_cell_view_set_cell_data): added support for cell data funcs.
7057
7058         * gtk/gtkcombobox.[ch]: implement the GtkCellLayout interface, drop
7059         packing/attribute/cell data functions from the header, implemented
7060         cell data func support.
7061
7062         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_new): updated
7063         for the move to GtkCellLayout.
7064
7065         * tests/testcombo.c (create_combo_box_grid_demo), (main): ditto.
7066
7067 2003-10-01  Matthias Clasen  <maclas@gmx.de>
7068
7069         * gtk/gtkaction.c (gtk_action_class_init): 
7070         (gtk_action_[gs]et_property): Introduce a separate
7071         "hide_if_empty" property for empty menu handling.
7072         (_gtk_action_sync_menu_visible): ...and use it here.
7073
7074         * tests/testmerge.c (main): ...and here.
7075
7076         * gtk/gtktoolitem.c (gtk_tool_item_class_init): Fix signal doc 
7077         comments to pacify gtk-doc.
7078
7079         * gtk/gtkmain.c: Doc formatting tweaks.
7080
7081         * gtk/gtktoolitem.c (gtk_tool_item_set_is_important): Fix a typo.
7082
7083         * gtk/gtkcheckmenuitem.h (gtk_check_menu_item_set_draw_as_radio): 
7084         Use the same parameter names as in .c file, to pacify gtk-doc.
7085
7086         * gtk/gtktoggletoolbutton.[hc]: 
7087         * gtk/gtktoolbutton.[hc]: 
7088         * gtk/gtktoolitem.[hc]:
7089         * gtk/gtktoolbar.[hc]: 
7090         * gtk/gtkcolorbutton.[hc]: 
7091         * gtk/gtkfontbutton.[hc]: 
7092         * gtk/gtkalignment.[hc]: Define GET_PRIVATE macros in the 
7093         source, not in the header.
7094
7095         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_[sg]et_draw_as_radio): 
7096         Document these as 2.4 API additions.
7097
7098 Tue Sep 30 23:42:56 2003  Kristian Rietveld  <kris@gtk.org>
7099
7100         * gtk/gtkentry.c (gtk_entry_set_completion),
7101         (gtk_entry_get_completion): Add API doc comments.
7102
7103         * gtk/gtkentrycompletion.c: Fix #includes and add API doc comments.
7104
7105 Tue Sep 30 23:12:34 2003  Kristian Rietveld  <kris@gtk.org>
7106
7107         * gtk/gtktreemodelfilter.c: Add "Since: 2.4" to all API doc comments.
7108
7109 Tue Sep 30 22:59:58 2003  Kristian Rietveld  <kris@gtk.org>
7110
7111         * gtk/gtktreeviewcolumn.c: Some API doc comment fixes.
7112
7113         * gtk/gtkcellayout.c: Fix #include and oooooh API doc comments!
7114
7115 2003-09-30  Matthias Clasen  <maclas@gmx.de>
7116
7117         * tests/merge-*.ui: 
7118         * tests/testmerge.c: Test handling of empty menus.
7119
7120         * gtk/gtkuimanager.c (_gtk_menu_is_empty): New function to determine
7121         whether a menu is empty. Used in gtkaction.c.
7122         (update_smart_separators): Also update the visibility of empty menus.
7123         (update_node): When creating a new menu proxy, insert an "Empty" menu 
7124         item which only gets shown if the menu is empty. 
7125
7126         * gtk/gtkaction.c (gtk_action_class_init): Document the meaning of
7127         "is_important" for menu proxies.
7128         (_gtk_action_sync_menu_visible): New function to sync the visibility
7129         of menu proxies. Used in gtkuimanager.c.
7130         (gtk_action_sync_visible): New function to sync the visibility of 
7131         proxies.
7132
7133 Tue Sep 30 21:43:34 2003  Kristian Rietveld  <kris@gtk.org>
7134
7135         * gtk/gtkcombobox.c (gtk_combo_box_menu_button_press): set
7136         popup_in_progress to TRUE,
7137         (gtk_combo_box_menu_show): and back to FALSE here; the menu now
7138         won't disappear on the first button release. (Reported by Matthias
7139         Clasen).
7140
7141 Tue Sep 30 21:08:43 2003  Kristian Rietveld  <kris@gtk.org>
7142
7143         * gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child.
7144
7145         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543,
7146         Marco Pesenti Gritti).
7147
7148 2003-09-30  Murray Cumming  <murrayc@usa.net>
7149  
7150         * gtk/gtkcellrenderer.h: The render vfunc takes a GdkDrawable*
7151         instead of a GdkWindow*, because that what it is given. The 
7152         documentation was already correct. This should cause no API/ABI
7153         breakage with C compilers.
7154         * gtk/gtkcellrenderertext.c, gtkcellrendererpixbuf.c, 
7155         gtkcellrenderertogger.c: Updated the declarations of the render vfunc
7156         implementation accordingly.
7157
7158 2003-09-30  Matthias Clasen  <maclas@gmx.de>
7159
7160         * gdk/gdkkeys.c (gdk_keymap_class_init): Document the
7161         "direction-changed" and "keys-changed" signals.
7162
7163         * gdk/gdkscreen.c (gdk_screen_class_init): Document the 
7164         "size-changed" signal.
7165
7166         * gdk/gdkdisplaymanager.c (gdk_display_manager_class_init): 
7167         Document the "display-opened" signal.
7168
7169         * gdk/gdkdisplay.c (gdk_display_close): Doc tweak.
7170         (gdk_display_class_init): Document the "closed" signal.
7171
7172 Sat Sep 27 16:02:40 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7173
7174         * gtk/gtktextview.[ch]: rename property tab_moves_focus to
7175         accepts_tab. (#122709 again).
7176
7177 2003-09-27  Matthias Clasen  <maclas@gmx.de>
7178
7179         * gtk/gtkwindow.c (gtk_window_new):
7180         * gtk/gtkitemfactory.c (gtk_item_factory_new): Document 
7181         the fact that the newly created object does not come with 
7182         a floating reference.  (#103068, patch by Frederic Lespez)
7183         
7184         * gtk/gtkitemfactory.h: Deprecate GtkItemFactory in favor 
7185         of GtkUIManager. Just leave GtkTranslateFunc undeprecated, 
7186         since GtkActionGroup uses it.
7187
7188         * tests/testtext.c: Turn off GTK_DISABLE_DEPRECATED, since
7189         this test uses the soon-to-be-deprecated GtkItemFactory.
7190
7191         * demos/gtk-demo/Makefile.am (demos): Add ui_manager.c,
7192         remove item_factory.c
7193
7194         * demos/gtk-demo/ui_manager.c: Duplicate of item_factory.c 
7195         using GtkUIManager instead of GtkItemFactory.
7196
7197         * tests/testmerge.c: Demonstrate the use of the 
7198         connect-proxy signal.
7199
7200         * gtk/gtkaction.c (connect_proxy): Add connect-proxy and 
7201         disconnect-proxy signals to do small customizations 
7202         like displaying tooltips in the statusbar without 
7203         custom actions.  (#122894, Philip Langdale)
7204
7205         * gtk/gtkuimanager.c (update_node): Don't leak tooltip.
7206
7207 Fri Sep 26 23:49:44 2003  Kristian Rietveld  <kris@gtk.org>
7208
7209         Landing the new ComboBox. Note that only gtkcombobox.h and
7210         gtkcomboboxentry.h are public.
7211
7212         * gtk/gtkcellview.[ch], gtk/gtkcellviewmenuitem.[ch],
7213         gtk/gtkcombobox.[ch], gtk/gtkcomboboxentry.[ch]: new files.
7214
7215         * gtk/Makefile.am, gtk/gtk.h: adding the new files.
7216
7217         * tests/testcombo.c: and a new test.
7218
7219         * tests/Makefile.am: adding the new test.
7220
7221 2003-09-25  Tor Lillqvist  <tml@iki.fi>
7222
7223         * demos/gtk-demo/main.c: Don't use hardcoded DEMOCODEDIR on Windows.
7224
7225 2003-09-21  Tor Lillqvist  <tml@iki.fi>
7226
7227         * gdk/win32/gdkevents-win32.c (handle_wm_paint): New
7228         function. Code split out from gdk_event_translate(). Needed
7229         because gdk_event_get_graphics_expose() couldn't do anything
7230         sensible otherwise. (Not that I think graphics exposes work anyway
7231         in gdk/win32, but at least now the code could work.)
7232
7233         (gdk_event_get_graphics_expose): Call handle_wm_paint() instead of
7234         gdk_event_translate(), which couldn't have worked as it doesn't
7235         take any pre-allocated GdkEvent parameter any longer.
7236         
7237         (gdk_event_translate): Handle WM_MOUSEACTIVATE: Don't let
7238         GDK_WINDOW_TEMP windows be activated. (#122578, John Ehresman)
7239
7240 2003-09-24  Matthias Clasen  <maclas@gmx.de>
7241
7242         * demos/gtk-demo/appwindow.c (do_appwindow): Demonstrate tooltips
7243         on toolitems.
7244
7245         * gtk/gtkaction.c (connect_proxy): Sync tooltips on toolitems.
7246
7247         * gtk/gtkuimanager.c (update_node): Don't complain about missing
7248         actions on popups. Re-set "tooltip" property on toolitems after
7249         adding them to parent to trigger proxy update.
7250
7251 2003-09-22  Matthias Clasen  <maclas@gmx.de>
7252
7253         * tests/testmerge.c (main): Initially activate the JUSTIFY_RIGHT
7254         group member to test the fix for #122904.
7255
7256         * gtk/gtkactiongroup.c (gtk_action_group_add_radio_actions_full): 
7257         Add the action to the group before activating it, otherwise we
7258         may end up with multiple active group members.  (#122904, Marco
7259         Pesenti Gritti)
7260
7261 2003-09-21  Matthias Clasen  <maclas@gmx.de>
7262
7263         Changes to make cross-process merging feasible:
7264         
7265         * gtk/gtkuimanager.[hc]: Add a readonly "ui" property which holds the
7266         merged UI definition. Remove the "changed" signal, since its role
7267         is now filled by "notify::ui". Instead add a "actions-changed" signal
7268         which gets emitted when the set of actions changes.
7269
7270         * gtk/gtktoggleactionprivate.h:
7271         * gtk/gtktoggleaction.[hc] (gtk_toggle_action_[sg]et_draw_as_radio):
7272         Add a "draw_as_radio" property to toggle actions so that they can be
7273         used as proxies for radio actions much like the "draw_as_radio" 
7274         property on check menu items enables them to operate as proxies for
7275         radio actions.
7276
7277         Prevent the "show_all" trap for action-based menus (see
7278         http://mail.gnome.org/archives/gtk-devel-list/2003-September/
7279         msg00260.html):
7280
7281         * gtk/gtkmenu.c (gtk_menu_{hide,show}_all): Remove g_return_if_fail()
7282         calls from static functions.
7283
7284         * gtk/gtkuimanager.c (update_node): 
7285         * gtk/gtkaction.c (connect_proxy): Set "no_show_all" on constructed
7286         widgets whose visibility is externally controlled.
7287
7288         * gtk/gtkwidget.[hc] (gtk_widget_[gs]et_no_show_all): Add a boolean 
7289         "no_show_all" property with setter and getter. When TRUE, it keeps
7290         gtk_widget_{hide,show}_all() from modifying the visibility of the 
7291         widget and its children.
7292
7293 Sun Sep 21 23:13:37 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7294
7295         * gtk/gtktextview.[ch]: Add new "tab moves focus" property (#122709)
7296
7297 2003-09-20  Tor Lillqvist  <tml@iki.fi>
7298
7299         * gtk-zip.sh.in: Don't use zip -r on the etc directory, to avoid
7300         including editor backup files. List files we want explicitly.
7301
7302         * gtk/gtkmain.c (_gtk_get_lc_ctype): New function. On Unix, just
7303         calls setlocale (LC_CTYPE, NULL). On Windows, looks for the
7304         LC_ALL, LC_CTYPE and LANG environment variables, than calls
7305         g_win32_getlocale().
7306
7307         (gtk_get_default_language): Code snippet moved to above function,
7308         call it.
7309
7310         * gtk/gtkimmulticontext.c (gtk_im_multicontext_get_slave)
7311         * gtk/gtkrc.c (gtk_rc_context_parse_file): Call
7312         _gtk_get_lc_ctype() instead of setlocale().
7313
7314 Fri Sep 19 18:15:31 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7315
7316         * gtk/gtkpaned.c, gtk/gtkhpaned.c: implement RTL flipping
7317         (#96632)
7318
7319 Fri Sep 19 13:24:54 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7320
7321         * gtk/gtktreeview.c (gtk_tree_view_get_cursor): Improve
7322         documentation. (#117306, Steve Chaplin)
7323
7324 2003-09-19  Tor Lillqvist  <tml@iki.fi>
7325
7326         * gdk/win32/gdkkeys-win32.c (update_keymap): Handle dead keysyms
7327         present on the US-International keyboard. For clarity, order
7328         keysyms in case statement according to numeric value.
7329
7330         (gdk_keymap_translate_keyboard_state): Handle Caps Lock
7331         correctly. (#120176, Ken Rastatter and Owen Taylor)
7332
7333 2003-09-18  Matthias Clasen  <maclas@gmx.de>
7334
7335         * gtk/gtkaction.c (gtk_action_finalize): Call g_closure_unref() to
7336         unref a closure, not g_object_unref().  (#122637, Marco Pesenti Gritti)
7337
7338         Install accelerators on actions, not on proxies, support
7339         accelerator-only actions:
7340         
7341         * gtk/gtkmenu.c (get_accel_path): New function to get the accel path
7342         and its lock status either via _gtk_widget_get_accel_path() or by 
7343         looking at the accel_path stored in the menu item itself and determining
7344         its lock status by peeking into the contained accel label. This was
7345         already (accidentally) committed a week ago.
7346
7347         * gtk/gtkaction.h (gtk_action_set_accel_group):
7348         (gtk_action_[dis]connect_accelerator): New functions.
7349
7350         * gtk/gtkaction.c (struct _GtkActionPrivate): Add accel_group,
7351         accel_closure and accel_count. We must have a reference to the 
7352         accel_group, since we need it in connect_proxy. The count is necessary
7353         to ensure that the accelerator isn't removed before the last proxy 
7354         requesting it has been unmerged.
7355         (connect_proxy): Connect the accelerator to the 
7356         action now, only set the accel_path on the menuitem.
7357         (remove_proxy): Disconnect the accelerator from the action, not from
7358         the menuitem.
7359         (gtk_action_set_accel_group): Set the accel group. 
7360         (gtk_action_[dis]connect_accelerator): Count the number of times
7361         this functions have been called and install/remove the accelerator if
7362         the count leaves/reaches zero.
7363
7364         * gtk/gtkuimanager.h (GtkUIManagerItemType): Add 
7365         GTK_UI_MANAGER_ACCELERATOR.
7366
7367         * gtk/gtkuimanager.c (NodeType): Add NODE_TYPE_ACCELERATOR.
7368         (start_element_handler): Create NODE_TYPE_ACCELERATOR nodes from
7369         <accelerator> elements.
7370         (gtk_ui_manager_add_ui): Create NODE_TYPE_ACCELERATOR nodes when
7371         type is GTK_UI_MANAGER_ACCELERATOR.
7372         (update_node): Set the accel group on actions before creating their
7373         proxies. Don't set the accel group on created menus. For 
7374         NODE_TYPE_ACCELERATOR nodes, [dis]connect the actions' accelerator.
7375         (print_node): Also emit <accelerator> elements.
7376
7377         * tests/testmerge.c (dump_accels): Add a "Dump Accels" button. 
7378
7379         * gtk/gtkuimanager.c (update_node): Robustness improvements.
7380
7381 2003-09-17  Matthias Clasen  <maclas@gmx.de>
7382
7383         * gtk/gtkuimanager.c (text_handler): Report unexpected character
7384         data as error from the GMarkup parser, otherwise things like
7385         gtk_ui_manager_add_ui_from_string (ui, "Hi there!", -1, &error) 
7386         pass unexpectedly.
7387
7388 Wed Sep 17 02:38:53 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7389
7390         * gtk/gtktoolbar.c (gtk_toolbar_class_init): revert accidentally
7391         committed redraw_on_allocate change.
7392
7393 Tue Sep 16 10:42:00 2003  Eric Warmenhoven  <eric@warmenhoven.org>
7394
7395         * gdk/linux-fb/gdkwindow-fb.c: Add gdk_window_set_keep_{above,below}
7396         stubs to fix compilation
7397
7398         * gdk/linux-fb/gdkrender-fb.c: Add gdk_shadow_fb_stop_updates stub for
7399         when shadowfb is disabled. Patch from pjm@cctechnol.com (#120847).
7400
7401         * gdk/linux-fb/gdkmouse-fb.c: Add GDK_MOUSE_DEVICE environment
7402         variable. Patch from Marc Welz (#121347).
7403
7404 2003-09-16  Matthias Clasen  <maclas@gmx.de>
7405
7406         * gtk/gtkaction.h: Apply egtk-format-protos.
7407
7408 2003-09-15  Matthias Clasen  <maclas@gmx.de>
7409
7410         * gtk/gtkuimanager.c: Doc tweaks.
7411
7412         Smart separators; see 
7413         http://mail.gnome.org/archives/gtk-devel-list/2003-September/msg00133.html:
7414         
7415         * gtk/gtkuimanager.c (update_smart_separators): New function which 
7416         implements "smart" separators by iterating once over the entries of a 
7417         menu, hiding and showing separators as necessary.
7418         (update_node): Mark separators used as fences of placeholders as
7419         hidden. Explicitly added separators are marked as smart. Call 
7420         update_smart_separators after updating a menu or toolbar node. 
7421         Connect update_smart_separators to "notify::visible" signal on menu
7422         and tool items.
7423         
7424         * tests/merge-[12].ui: Test smart separators.
7425
7426         Changes to allow setting action state before connecting signal; see
7427         the thread starting at 
7428         http://mail.gnome.org/archives/gtk-devel-list/2003-September/msg00140.html:
7429         
7430         * gtk/gtkactiongroup.[hc]: (gtk_action_group_add_radio_actions):
7431         (gtk_action_group_add_radio_actions_full): Add value parameter to allow
7432         setting the currently selected group member before connecting signals.
7433         (GtkToggleActionEntry): Separate struct for constructing toggle actions,
7434         including a boolean to initialize the action state before connecting
7435         signals.
7436         (gtk_action_group_add_toggle_actions):
7437         (gtk_action_group_add_toggle_actions_full): New functions to construct
7438         toggle actions from an array of GtkToggleActionEntries.
7439
7440         * demos/gtk-demo/appwindow.c: 
7441         * tests/testactions.c: 
7442         * tests/testmerge.c: Adjust to new action group API.
7443
7444 Sun Sep 14 16:59:52 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7445
7446         * gtk/gtktoolbar.c (gtk_toolbar_init): Name the arrow 
7447         "gtk-toolbar-arrow" so themes can special-case it.
7448
7449 Sun Sep 14 16:07:49 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7450
7451         * gtk/Makefile.am (gtk_c_sources): sort the list of files.
7452
7453 Sun Sep 14 15:49:00 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7454
7455         * gtk/gtktoolbar.c (toolbar_item_is_homogeneous): Unref the
7456         PangoFontMetrics. Patch from Steve Chaplin (#122257).
7457
7458 2003-09-14  Tor Lillqvist  <tml@iki.fi>
7459
7460         * gdk/win32/gdkwindow-win32.c (show_window_internal): Remove
7461         special-case code for WS_EX_TRANSPARENT (GDK_INPUT_ONLY) windows,
7462         the usefulness of which was already in doubt. Removing it fixes
7463         bugs #118575 and #121851.
7464
7465 Fri Sep 12 16:32:53 2003  Jonathan Blandford  <jrb@redhat.com>
7466
7467         Merge from stable.
7468
7469         * gtk/gtktreeview.c (gtk_tree_view_button_press): only save the
7470         pressed button (used to determine if we want to initiate a drag later
7471         on) if the current grab widget is either NULL or tree_view (Reported
7472         by Jeroen Zwartepoorte).
7473
7474 2003-09-12  Matthias Clasen  <maclas@gmx.de>
7475
7476         * gdk/gdkdraw.c (gdk_draw_string, gdk_draw_text) 
7477         (gdk_draw_text_wc): Add deprecation notes.  (#121955, Martin Pool)
7478
7479 2003-09-11  Matthias Clasen  <maclas@gmx.de>
7480
7481         * gdk/gdkpango.c: Doc tweaks.
7482
7483         * tests/testgtk.c: Add table menu tests.
7484
7485         * gtk/gtkmenu.c (gtk_menu_free_private): Don't forget to free the 
7486         GtkMenuPrivate struct itself. Pointed out by valgrind.
7487
7488         * gtk/gtkuimanager.c (gtk_ui_manager_finalize): Clean up 
7489         properly.  (#121998)
7490
7491 Wed Sep 10 22:25:04 2003  Kristian Rietveld  <kris@gtk.org>
7492
7493         The table menu patch! Turns GtkMenu into a table, so you can attach
7494         menu items in numerous new ways! Be creative!
7495
7496         Contains some bug fixes and RTL adaptions from Matthias Clasen.
7497
7498         * gtk/gtkmenu.c [toplevel]: introduce ATTACH_INFO_KEY, extend
7499         GtkMenuPrivate, introduce AttachInfo, add child properties enum,
7500         (gtk_menu_free_private), (gtk_menu_get_private): we have to free
7501         the heights array in the private struct,
7502         (gtk_menu_class_init): reorder code a bit, install child properties,
7503         (get_attach_info), (get_child_attach): new utility functions,
7504         (gtk_menu_set_child_property), (gtk_menu_get_child_property): introduce
7505         child properties, for the attach info,
7506         (gtk_menu_remove): remove AttachInfo from menu item,
7507         (gtk_menu_real_insert): implemented algorithm to automagically place
7508         inserted menu items at the correct place in the table,
7509         (gtk_menu_size_request), (gtk_menu_size_allocate),
7510         (compute_child_offset): reworked/rewritten to support table menus,
7511         (gtk_menu_attach): new function,
7512         (find_child_containing), (gtk_menu_move_current): new functions to
7513         get table menu keynav right.
7514
7515         * gtk/gtkmenu.h: add gtk_menu_attach() prototype.
7516
7517 2003-09-10  Matthias Clasen  <maclas@gmx.de>
7518
7519         * gtk/gtksocket.c (gtk_socket_filter_func): Only remove 
7520         PropertyNotify events from the stream if they have been handled,
7521         in order to enable extending the plug<->socket communication via
7522         properties.
7523
7524 Wed Sep 10 01:06:44 2003  Kristian Rietveld  <kris@gtk.org>
7525
7526         Big TreeView DnD fixage, makes drops on empty models work, makes
7527         TreeStore DnD work and gets rid of gtk-tree-model-drop-append.
7528         Related bugs #95362 and #113314. I don't want to touch this code
7529         ever again.
7530
7531         * gtk/gtktreeprivate.h (GtkTreePrivate): add empty_view_drop field.
7532
7533         * gtk/gtktreednd.c (gtk_tree_get_row_drag_data): add check
7534         for selection_data->length.
7535
7536         * gtk/gtktreeview.c (struct DestRow), (dest_row_free),
7537         (set_dest_row), (get_dest_row): we don't store just the row ref
7538         anymore, but a struct with the row ref and additional info,
7539         (set_destination_row): handle drops on empty space and some
7540         style fixes,
7541         (get_logical_dest_row): also return path_down_mode/drop_append_mode
7542         flags, handle dropping childs on their new parents, rewrite
7543         drop append handling into something saner,
7544         (gtk_tree_view_drag_motion): show a "drop possible arrow" on empty
7545         spaces,
7546         (gtk_tree_view_drag_drop): updates for updated backend,
7547         (gtk_tree_view_drag_data_received): updates for updated backend,
7548         path down mode (treestore DnD) handling,
7549         (gtk_tree_view_set_drag_dest_row): set empty_view_drop flag,
7550         when we are trying to drop a row on an empty model,
7551         (gtk_tree_view_get_drag_dest_row): handle empty_view_drop flag.
7552
7553         * gtk/gtkliststore.c (gtk_list_store_drag_data_received),
7554         (gtk_list_store_row_drop_possible): style and drop-append fixes.
7555
7556         * gtk/gtktreestore.c (gtk_tree_store_drag_data_received): ditto.
7557
7558 2003-09-08  Alexander Larsson  <alexl@redhat.com>
7559
7560         * gtk/gtkeventbox.[hc]:
7561         Implement gtk_event_box_get/set_input_only()
7562         
7563         * tests/testgtk.c:
7564         Tests for the new input only event boxes
7565
7566 Mon Sep  8 21:44:20 2003  Kristian Rietveld  <kris@gtk.org>
7567
7568         Fixes from David Hampton <hampton@employees.org> via gtk-devel-list.
7569
7570         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_elt_get_path): fix
7571         the call to gtk_tree_model_filter_add_root,
7572         (gtk_tree_model_filter_row_changed): bail out if c_path is not above
7573         the virtual root, allow building levels on the second try to convert
7574         the child path to a filter path,
7575         (gtk_tree_model_filter_convert_iter_to_child_iter): pass the virtual
7576         root when calling gtk_tree_model_filter_elt_get_path.
7577
7578 2003-09-07  Matthias Clasen  <maclas@gmx.de>
7579
7580         * gtk/gtkuimanager.c (update_node): Fix a C99ism.  (#121640,
7581         Josh Beam)
7582
7583         Fixes for accelerator handling during (un)merging:
7584         
7585         * gtk/gtkuimanager.c (update_node): Move setting info-action
7586         after the switch, since the old action is needed in some cases.
7587         In cases of proxy type mismatch, disconnect the old proxy from
7588         the old action.
7589
7590         * gtk/gtkaction.c (remove_proxy): Renamed from 
7591         gtk_action_remove_proxy(). Move unsetting of the accelerator
7592         here from disconnect_proxy() in order to catch all cases of 
7593         removing a proxy.
7594         (gtk_action_disconnect_proxy): Fix logic in g_return_if_fail()
7595         to fail if proxy isn't a proxy of action.
7596
7597 2003-09-07  Pablo Saratxaga  <pablo@mandrakesoft.com>
7598
7599         * configure.in: Added Uzbek latin (uz) and cyrillic (uz@Cyrl) to
7600         ALL_LINGUAS
7601
7602 2003-09-07  Matthias Clasen  <maclas@gmx.de>
7603
7604         * gtk/gtkaction.c (disconnect_proxy): Make disconnect work
7605         for toolitems.
7606
7607 2003-09-06  Matthias Clasen  <maclas@gmx.de>
7608
7609         * gtk/gtkaction.c (gtk_action_connect_proxy): Disconnect from 
7610         prev_action, not from action.  (Fix by David Hampton)
7611
7612 Fri Sep  5 14:15:10 2003  Owen Taylor  <otaylor@redhat.com>
7613  
7614         * Back out locale-dependent interpretation of
7615         KP_Decimal, the official XFree86 interpretation
7616         is that KP_Decimal => . KP_Separator => ,
7617         always, independent of locale. 
7618         (#105161, Frederic Crozat, 
7619         http://bugs.xfree86.org/show_bug.cgi?id=534)
7620  
7621 2003-09-04  Matthias Clasen  <maclas@gmx.de>
7622
7623         * tests/testmerge.c: Test buttons and toggle buttons as proxies.
7624
7625         * gtk/gtktoggleaction.c (connect_proxy): 
7626         (gtk_toggle_action_real_toggled): Support toggle buttons as proxies. Note 
7627         that a "draw_as_radio" property is needed for check buttons similar to 
7628         check menu items, in order to fully support button proxies for radio actions.
7629
7630         * gtk/gtkaction.c (connect_proxy): Allow buttons as proxies.
7631
7632         * tests/testmerge.c (toggle_dynamic): Test gtk_ui_manager_add_ui(). 
7633
7634         * gtk/gtkuimanager.h: Add GtkUIManagerItemType enum which is needed for the
7635         'type' argument of gtk_ui_manager_add_ui().
7636
7637         * gtk/gtkuimanager.[hc] (gtk_ui_manager_add_ui): Add 'type' and 'top' arguments
7638         to make this function as powerful as the XML methods of adding UI.  (#120647)
7639
7640 Thu Sep  4 19:11:23 2003  Kristian Rietveld  <kris@gtk.org>
7641
7642         Merge from stable.
7643
7644         * docs/RELEASE-HOWTO: updates.
7645
7646 2003-09-04  Matthias Clasen  <maclas@gmx.de>
7647
7648         * tests/merge-2.ui: Use "position" instead of "pos".
7649
7650         * gtk/gtkuimanager.c (start_element_handler): No need 
7651         to be terse: Change the name of the "pos" attribute
7652         to "position".
7653
7654 2003-09-04  Matthias Clasen  <maclas@gmx.de>
7655
7656         * gtk/gtkuimanager.c: Un-prefix GtkUIManagerNodeType and 
7657         GtkUIManagerNode to shorten the names and to make the
7658         GTK_UI_MANAGER_<TYPE> names available for a public enum.
7659
7660         * gtk/gtkactiongroup.c:
7661         * gtk/gtkuimanager.c: Various doc tweaks.       
7662
7663         * gtk/gtkuimanager.c (start_element_handler):
7664         (end_element_handler): Improve error reporting. 
7665
7666 Wed Sep  3 23:18:17 2003  Kristian Rietveld  <kris@gtk.org>
7667
7668         Merge from stable.
7669
7670         * gtk/gtkmenu.c (gtk_menu_real_move_scroll): for the END case,
7671         use end_position - page_size instead of G_MAXINT, since
7672         gtk_menu_scroll_to doesn't CLAMP anymore internally. (Fixes #121237,
7673         reported by Havoc Pennington).
7674
7675 Wed Sep  3 21:58:03 2003  Kristian Rietveld  <kris@gtk.org>
7676
7677         Merge from stable.
7678
7679         * gtk/gtkiconfactory.c (cached_icon_free): if icon->style != NULL,
7680         unref it. (Fixes memleak, patch from Kjartan Maraas).
7681
7682 Wed Sep  3 21:38:26 2003  Kristian Rietveld  <kris@gtk.org>
7683
7684         * gdk/Makefile.am, gdk/linux-fb/gdkfbmanager.c, gdk/x11/gdkcolor-x11.c,
7685         gdk-pixbuf/io-gif.c, gtk/Makefile.am, gtk/gtkcalendar.c,
7686         gtk/gtkclist.c, gtk/gtkctree.c, gtk/gtkdnd.c, gtk/gtkentry.c,
7687         gtk/gtkhandlebox.c, gtk/gtkitemfactory.c, gtk/gtkmenu.c,
7688         gtk/gtknotebook.c, gtk/gtkrange.c, gtk/gtkrc.h, gtk/gtktree.c,
7689         gtk/gtktypeutils.h: big patch from Kjartan Maraas
7690         to fix numerous typos.
7691
7692 Wed Sep  3 17:38:01 BST 2003  Tony Gale <gale@gtk.org>
7693
7694         * docs/faq/gtk-faq.sgml: Correct compile line for threads example.
7695
7696 2003-09-02  Tor Lillqvist  <tml@iki.fi>
7697
7698         * gdk/win32/gdkdisplay-win32.c (gdk_display_open): Don't call
7699         CloseHandle() on the HMODULE returned from GetModuleHandle().
7700         Didn't cause any harm, but didn't do anything useful either. When
7701         running a GTK+ program under MS's debugger, the CloseHandle() call
7702         would cause a "first-chance exception" in ntdll.dll to show up.
7703         (The exception is caught appropriately if you let it proceed, but
7704         it confuses the person using the debugger). Thanks to Bruce
7705         Hochstetler for noticing.
7706
7707 Tue Sep  2 21:01:19 2003  Kristian Rietveld  <kris@gtk.org>
7708
7709         Merge from stable.
7710
7711         * gtk/gtktreeview.c (gtk_tree_view_button_press): revert the change
7712         to only select when button 1 is pressed introduced in the fix of
7713         bug #120187.
7714
7715 2003-09-02  Matthias Clasen  <maclas@gmx.de>
7716
7717         * gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition.
7718
7719         * gtk/gtkuimanager.c: Shorten the names of some static 
7720         functions.
7721
7722         Support adding and removing merge nodes dynamically (#120647, 
7723         Anders Carlsson):
7724         
7725         * gtk/gtkuimanager.[ch] (gtk_ui_manager_new_merge_id): Renamed 
7726         gtk_ui_manager_next_merge_id to gtk_ui_manager_new_merge_id 
7727         and made it public.
7728         (gtk_ui_manager_add_ui): New function to add UI elements
7729         without juggling XML fragments, currently restricted to menuitems,
7730         toolitems and separators. Actions still come from registered 
7731         action groups.
7732
7733 Mon Sep  1 19:39:14 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7734
7735         * gdk/gdkwindow.c (gdk_window_get_bg_gc): Fix bug where the
7736         background pixmap was being offset twice, once by the ts_origin in
7737         gdk_window_get_bg_gc(), and once by gdk_draw_rectangle().
7738
7739 2003-09-01  Matthias Clasen  <maclas@gmx.de>
7740
7741         * gtk/gtkuimanager.[ch] (gtk_ui_manager_ensure_update): Make
7742         this public again, since it's occasionally useful.  (#121128,
7743         Marco Pesenti Gritti)
7744
7745         * gtk/gtkaction.c: Add an "is_important" property and propagate
7746         it to toolitem proxies.  (#121058, Marco Pesenti Gritti)
7747
7748 Mon Sep  1 00:32:30 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7749
7750         * tests/testtoolbar.c (main): connect to "delete_event" so the
7751         application will actually quit when you close the window
7752
7753 2003-09-01  Matthias Clasen  <maclas@gmx.de>
7754
7755         * gtk/gtkuimanager.c (gtk_ui_manager_get_widget) 
7756         (gtk_ui_manager_get_action): g_return_if_fail() if
7757         path is NULL.
7758         (gtk_ui_manager_get_node): Avoid a segfault if path is empty.
7759         (gtk_ui_manager_finalize): Remove the idle on finalize. (#121125, 
7760         Marco Pesenti Gritti)
7761
7762 2003-08-31  Matthias Clasen  <maclas@gmx.de>
7763
7764         * gtk/gtktoolitem.c: Fix some typos in docs.
7765
7766         * gtk/gtkuimanager.[ch] (gtk_ui_manager_get_action): New function,
7767         replaces gtk_ui_manager_activate().  (#120658)
7768
7769         * tests/testmerge.c: Use gtk_ui_manager_get_action() instead of
7770         gtk_ui_manager_activate().
7771
7772         * gtk/gtkaction.c: 
7773         * gtk/gtkactiongroup.c: Some doc tweaks.
7774
7775         * gtk/gtkuimanager.[hc]: Get rid of the remove_widget signal. It
7776         wasn't emitted anyway. Some doc tweaks.
7777
7778 2003-08-30  Matthias Clasen  <maclas@gmx.de>
7779
7780         * tests/testmerge.c (add_widget): Connect to "destroy" on toolbar,
7781         rather than to "remove" on handlebox. 
7782
7783         * gtk/gtkuimanager.[hc] (gtk_ui_manager_activate): New method to
7784         activate an action found by following a path.  (#120658)
7785
7786         * tests/testmerge.c: Add a button to test gtk_ui_manager_activate().
7787
7788         * tests/testmerge.c (add_widget): Put toolbars in handleboxes.
7789
7790         * gtk/gtkuimanager.[hc]: Add a boolean property, "add_tearoffs" with 
7791         setter and getter. If it is set, add tearoff menu items to regular 
7792         menus, but not to popups. Add a signal "changed", which gets emitted
7793         when the merged ui has changed.  (#120649, #120656)
7794
7795         * tests/testmerge.c: Add button to test the generation of tearoff 
7796         menu items.
7797
7798 2003-08-29  Matthias Clasen  <maclas@gmx.de>
7799
7800         * gtk/gtkactiongroup.c (gtk_action_group_add_radio_actions_full): 
7801         Actually group the actions together rather than putting each in its 
7802         own group.
7803
7804         * gtk/gtkradioaction.c (create_menu_item): Set "draw_as_radio" on 
7805         proxy menu items for radio actions.
7806
7807         * gtk/gtkgamma.c (gamma_ok_callback): Use g_strtod instead of strtod.
7808
7809 Fri Aug 29 21:40:01 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7810
7811         * gtk/gtkactiongroup.c (gtk_action_group_add_radio_actions_full):
7812         Fix use of uninitialized variable.
7813
7814         * gtk/gtktextutil.c
7815         (_gtk_text_util_append_special_char_menuitems): add const cast to
7816         get rid of warning
7817
7818 2003-08-29  Matthias Clasen  <maclas@gmx.de>
7819
7820         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Install 
7821         "draw_as_radio" as a separate property, not as an alias of 
7822         "inconsistent".
7823         (gtk_check_menu_item_get_property): 
7824         (gtk_check_menu_item_set_property): Also support "draw_as_radio".
7825
7826 Fri Aug 29 20:32:07 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
7827
7828         * gtk/gtktoolbar.c: Only treat buttons as homogeneous when they
7829         are narrower than 13 time the estimated character width of the
7830         font. (#107781, David Bordoley)
7831
7832         * gtk/gtktoggletoolbutton.c (gtk_toggle_tool_button_init): Check
7833         here if the GtkToggleButton is active. This may be the case if it
7834         is a radio button.
7835
7836         * gtk/gtktoolbar.c: Clarify documentation wrt. GtkSignalFunc
7837         vs. void (*) (GtkWidget, gpointer). (#107495, Mariano
7838         Suarez-Alvarez).
7839
7840         * gtk/gtkcheckmenuitem.[ch]: new "draw_as_radio"
7841         property. (#111207, David Bordoley).
7842
7843         * gtk/gtktoggletoolbutton.c
7844         (gtk_toggle_tool_button_create_menu_proxy): use new
7845         "draw_as_radio" property on the menu item when the item is a radio
7846         tool button
7847
7848         * gtk/gtktoolbutton.c (gtk_tool_button_create_menu_proxy): Fixes
7849         to only pay attention to the "use_underline" property when the
7850         button label comes from the "label" property.
7851
7852 2003-08-29  Laurent Dhima  <laurenti@alblinux.net>
7853
7854         * configure.in: Added "sq" to ALL_LINGUAS.
7855         
7856 2003-08-28  Matthias Clasen  <maclas@gmx.de>
7857
7858         * gdk/x11/gdkkeys-x11.c (gdk_keymap_translate_keyboard_state): Markup
7859         fix in the docs.
7860
7861         * gtk/gtkuimanager.c: Change the XML format:
7862         <Root> element is replaced by <ui>,
7863         <menu> element is replaced by <menubar>,
7864         <submenu> element is replaced by <menu>,
7865         <dockitem> element is replaced by <toolbar>,
7866         <popups> element is gone,
7867         verb attribute is replaced by action,
7868         name defaults to action or the element name. 
7869
7870         * gtk/gtkactiongroup.[hc]: Replace GtkActionGroupEntry by 
7871         GtkActionEntry and GtkRadioActionEntry. GtkActionEntry is simplified 
7872         by removing the user_data, entry_type and extra_data fields, 
7873         GtkRadioActionEntry is further simplified by removing the callback. 
7874         The user_data can now be specified as an argument to 
7875         gtk_action_group_add_actions(). There is a new method 
7876         gtk_action_group_add_radio_actions(), which is similar to 
7877         gtk_action_group_add_actions(), but takes GtkRadioActionEntrys
7878         and a callback parameter in addition to the user_data. The callback
7879         is connected to the ::changed signal of the first group member.
7880         There are _full() variants taking a GDestroyNotify of 
7881         gtk_action_group_add_[radio_]actions().
7882
7883         * gtk/gtkradioaction.[hc]: Add a ::changed signal which gets emitted 
7884         on every member of the radio group when the active member is changed. 
7885         Add an integer property "value", and a getter for the value of "value"
7886         on the currently active group member. 
7887
7888         * tests/testactions.c: 
7889         * tests/testmerge.c: 
7890         * tests/merge-[123].ui:  
7891         * demos/gtk-demo/appwindow.c: Adjust to these changes.
7892
7893         * gtk/gtktoolbar.c (gtk_toolbar_append_element): Trivial doc fix.
7894
7895 2003-08-27  Anders Carlsson  <andersca@gnome.org>
7896
7897         * demos/gtk-demo/appwindow.c (do_appwindow): Focus the
7898         text view, so the tool bar won't have focus.
7899
7900 Tue Aug 26 09:57:38 2003  Owen Taylor  <otaylor@redhat.com>
7901
7902         * gdk/x11/gdkkeys-x11.c (update_keymaps): Fix variable
7903         declaration not at start of block. (#120371, Damien Carbery)
7904
7905 2003-08-26  Matthias Clasen  <maclas@gmx.de>
7906
7907         * gtk/gtkuimanager.[hc] (gtk_ui_manager_add_ui_from_string): Use gssize 
7908         for length, not gsize.
7909
7910         * gtk/gtkuimanager.c: Refactor the XML format a bit: rename <Root> to 
7911         <ui> and make it optional in strings. Rename verb to action, <dockitem> 
7912         to <toolbar>, <menu> to <menubar>, <submenu> to <menu>.
7913
7914         * demos/gtk-demo/appwindow.c: 
7915         * tests/testactions.c: 
7916         * tests/testmerge.c:
7917         * tests/merge-1.ui:
7918         * tests/merge-2.ui:
7919         * tests/merge-3.ui: Adjust to the new XML format.
7920
7921 Mon Aug 25 19:55:55 2003  Owen Taylor  <otaylor@redhat.com>
7922
7923         * gtk/gtktextview.c (gtk_text_view_update_layout_width): 
7924         Since we add one to the layout's reported width to
7925         account for the cursor, we need to subtract one when
7926         setting the wrap width for the layout. (Fixes infinite
7927         loop (#120325, Frederic Crozat)
7928
7929         * gtk/gtktextlayout.c (gtk_text_layout_get_line_display): 
7930         Be a bit more careful about rounding when converting
7931         wrapped width from Pango units to pixels.
7932
7933 2003-08-26  Matthias Clasen  <maclas@gmx.de>
7934
7935         Rename GtkMenuMerge to GtkUIManager. 
7936         
7937         * gtk/gtkuimanager.[hc]: New files. 
7938         * gtk/gtkmenumerge.[hc]: Removed. 
7939
7940         * gtk/Makefile.am: 
7941         * gtk/gtk.h:
7942         * tests/testmerge.c: 
7943         * tests/testactions.c: 
7944         * demos/gtk-demo/appwindow.c: Replace all uses of GtkMenuMerge by 
7945         GtkUIManager.
7946
7947         * demos/gtk-demo/appwindow.c: Make GtkMenuMerge demo less intimidating: 
7948         add comments to entries array, remove newlines from ui definition. Don't 
7949         use the ::add_widget signal.
7950
7951 Mon Aug 25 17:28:04 2003  Owen Taylor  <otaylor@redhat.com>
7952
7953         * gtk/gtknotebook.c (gtk_notebook_forall): Don't
7954         include page->menu_label - causes various problems,
7955         including #12047.
7956
7957 Mon Aug 25 23:21:43 2003  Kristian Rietveld  <kris@gtk.org>
7958
7959         Merge from stable.
7960
7961         Fixes #115871, reported by Michael Natterer.
7962
7963         * gtk/gtktreeprivate.h: added GtkTreeSelectMode enum,
7964         added ctrl_pressed and shift_pressed bitfields,
7965         (_gtk_tree_selection_internal_select_node): replace GdkModifierType
7966         arg with GtkTreeSelectMode.
7967
7968         * gtk/gtktreeselection.c (gtk_tree_selection_set_mode),
7969         (gtk_tree_selection_select_path), (gtk_tree_selection_unselect_path),
7970         (_gtk_tree_selection_internal_select_node): all updated for
7971         GdkModifierType -> GtkTreeSelectMode move.
7972
7973         * gtk/gtktreeview.c (gtk_tree_view_button_press): set ctrl_pressed
7974         and shift_pressed around selection handling block,
7975         (gtk_tree_view_real_select_cursor_row),
7976         (gtk_tree_view_real_toggle_cursor_row),
7977         (gtk_tree_view_real_selection_cursor_parent),
7978         (gtk_tree_view_real_set_cursor): use ctrl_pressed and shift_pressed,
7979         instead of checking the event state. And also updates for the
7980         GdkModifierType -> GtkTreeSelectMode move.
7981
7982 Wed Aug 20 21:26:49 2003  Owen Taylor  <otaylor@redhat.com>
7983
7984         * gtk/gtkplug.c (gtk_plug_focus): Send the focus on
7985         to the parent when there was no focus widget before
7986         and no focus widget after - that is, when there are
7987         no focusable widgets. (#108678, help tracking it
7988         down from Padraig O'Briain, Federico Mena Quintero, )
7989
7990         * gtk/gtkxembed.[ch]: Move various shared utilities
7991         for the XEMBED protocol eused by GtkPlug and GtkSocket 
7992         here.
7993
7994         * gtk/gtkxembed.[ch] gtkplug.c gtksocket.c: Implement
7995         a flag bit that is sent with focus mesages to indicate
7996         that the focus has wrapped around on the toplevel;
7997         use this bit to catch infinite loops when there is no
7998         focusable widget at ll in the entire toplevel.
7999
8000         * tests/testsocket.c (child_read_watch): Remove an
8001         extraneous unref.
8002
8003         * gtk/gtkplug.c gtk/gtksocket.c gtk/gtkxembed.h: 
8004         Up XEMBED protocol version to 1, add logic for 
8005         sending the right version in XEMBED_EMBEDDED_NOTIFY.
8006
8007         * gtk/gtksocket.c (gtk_socket_add_window): Send
8008         the embedder window in the XEMBED_EMBEDDED_NOTIFY
8009         as the spec requires.
8010
8011 Mon Aug 25 16:15:41 2003  Owen Taylor  <otaylor@redhat.com>
8012
8013         * gdk/x11/gdkkeys-x11.c: Fix up CapsLock and 
8014         NumLock handling for non-XKB. Add a special case
8015         hack for NumLock on Sun servers. (Patch from
8016         Robert Basch, #115819)
8017
8018 2003-08-25  Matthias Clasen  <maclas@gmx.de>
8019
8020         * gtk/gtkactiongroup.c (gtk_action_group_add_actions): Remove C99isms. (Morten 
8021         Welinder)
8022
8023         * gtk/gtkactiongroup.[hc] (gtk_action_group_set_translate_func,
8024         gtk_action_group_set_translation_domain): Hooks for translation of
8025         label and tooltip in GtkActionGroupEntries.  (#120620)
8026
8027 2003-08-25  Matthias Clasen  <maclas@gmx.de>
8028
8029         * gtk/gtkactiongroup.h (GtkActionGroupEntryType): Namespace the enum
8030         values properly. Sorry about the resize grip trouble, Owen.  (#120621)
8031         
8032         * gtk/gtkactiongroup.c: 
8033         * demos/gtk-demo/appwindow.c: 
8034         * tests/testmerge.c: 
8035         * tests/testactions.c: Use new GtkActionGroupEntryType enum.  
8036
8037 Sun Aug 24 17:14:44 2003  Owen Taylor  <otaylor@redhat.com>
8038
8039         * gtk/gtk.h: Remove reference to gtkresizegrip.h.
8040
8041 Sun Aug 24 17:03:44 2003  Owen Taylor  <otaylor@redhat.com>
8042
8043         * gtk/Makefile.am: Fix accidental commit of references
8044         to gtkresizegrip.[ch]
8045
8046 Sun Aug 24 17:00:03 2003  Owen Taylor  <otaylor@redhat.com>
8047
8048         * gtk/gtkrc.c: Fix some missing initializations of
8049         rc_file->directory.
8050
8051 2003-08-24  Matthias Clasen  <maclas@gmx.de>
8052
8053         * gtk/gtkaction.[ch]: 
8054         * gtk/gtktoggleaction.[ch]: 
8055         * gtk/gtktoggleactionprivate.h: 
8056         * gtk/gtkradioaction.[ch]: 
8057         * gtk/gtkactiongroup.[ch]: 
8058         * gtk/gtkmenumerge.[ch]: A model-view separation for menus and
8059         toolbars, using the EggMenu code by James Henstridge.
8060
8061         * gtk/gtk.h: Include new headers.
8062         * gtk/Makefile.am: Add new files.
8063
8064         * tests/testactions.c: Test for actions.
8065         * tests/testmerge.c: Test for menu merging.
8066         * tests/merge-[123].ui: Test data for testmerge. 
8067         * tests/Makefile.am: Add testactions and testmerge.
8068
8069         * demos/gtk-demo/appwindow.c: Use GtkMenuMerge to construct the 
8070         menubar and toolbar.
8071         
8072 Sat Aug 23 21:40:18 2003  Owen Taylor  <otaylor@redhat.com>
8073  
8074         * gtk/gtkrc.c (gtk_rc_context_parse_one_file): Fix 
8075         problem where rc_file->directory wasn't always getting
8076         set. (#120549, Luis Villa)
8077  
8078 2003-08-22  Christian Rose  <menthos@menthos.com>
8079
8080         * configure.in: Added "ne" to ALL_LINGUAS.
8081
8082 Thu Aug 21 16:00:36 2003  Owen Taylor  <otaylor@redhat.com>
8083  
8084         * gtk/gtkrc.c: Keep a list of current GtkRcFiles
8085         being parsed, not just the directories for those
8086         files. Use that to catch recursion. (Part of
8087         #114988)
8088  
8089 Thu Aug 21 21:27:45 2003  Kristian Rietveld  <kris@gtk.org>
8090
8091         Merge from stable.
8092
8093         Fix option menu scrolling (#119821, Owen Taylor).
8094
8095         * gtk/gtkmenu.c (gtk_menu_scroll_to): remove logic introduced
8096         by #80484 and the CLAMP,
8097         (get_menu_height): new function,
8098         (gtk_menu_real_move_scroll): sort of moved the CLAMP here to correct
8099         new_offset to handle page up/down right.
8100
8101 Thu Aug 21 15:17:42 2003  Owen Taylor  <otaylor@redhat.com>
8102
8103         * gdk/x11/gdkkeys-x11.c: Change the interpretation
8104         of consumed_modifiers so that it contains:
8105          - Modifiers combinations actually found in
8106            state.
8107          - Single modifier modifier combinations.
8108         But not multi-modifier combinations that aren't
8109         in event->state. Document. (#100439)
8110
8111 Thu Aug 21 20:53:46 2003  Kristian Rietveld  <kris@gtk.org>
8112
8113         Slightly modified patch from Yann Rouillard to improve selection
8114         behavior with the mouse. Fixes #120187.
8115
8116         * gtk/gtktreeview.c (gtk_tree_view_button_press): only
8117         select/deselect items on the first button press of button 1,
8118         expand checks for row_activated to include triple clicks.
8119
8120 Thu Aug 21 01:33:51 2003  Kristian Rietveld  <kris@gtk.org>
8121
8122         Merge from stable.
8123
8124         * gtk/gtkspinbutton.c (gtk_spin_button_size_request): always round
8125         approximate digit widths up, to avoid truncation, convert to
8126         pango pixels when we have the full string width instead of converting
8127         the approx digit width to pango pixels, take inner border and
8128         interior focus into account correctly. (Fixes #116368, patch from
8129         Morten Welinder).
8130
8131 2003-08-20  Noah Levitt  <nlevitt@columbia.edu>
8132
8133         * gtk/queryimmodules.c: Don't look at the same directory twice (in
8134         simple cases). (#120342)
8135
8136 Wed Aug 20 22:04:47 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
8137
8138         * gdk/gdkwindow.c: Make the layers in the paint stack have their
8139         own pixmap instead of sharing one. (#118317)
8140
8141         * tests/testgtk.c (create_get_image): Fixes to make the window fit
8142         on an 800x600 screen
8143
8144 Wed Aug 20 22:03:25 2003  Kristian Rietveld  <kris@gtk.org>
8145
8146         Merged from stable.
8147
8148         * gtk/gtkspinbutton.c (start_spinning): change the type of step
8149         to gdouble, since it gets it's data from a gdouble (Fixes #113547).
8150
8151 Mon Aug 18 17:19:12 2003  Owen Taylor  <otaylor@redhat.com>
8152
8153         * modules/input/gtkimcontextxim.[ch]: Substantially
8154         rework the handling of status windows:
8155         
8156          - Store the current StatusWindow in the 
8157            GtkIMContextXIM structure and vice-versa, so we
8158            don't have to hunt the window hierarchy on
8159            cleanup.
8160          - Use the Gtkidget hierarchy instead of/or as well
8161            as the GdkWindow hierarchy when finding the toplevel;
8162            this helps for things like GtkHandlebox
8163          - Watch GtkWidget::hierarchy_changed to catch 
8164            changes in the toplevel without changes in the
8165            GdkWindow (reparenting)
8166          - Never create the GtkWindow for the status window
8167            unless we have text to display.
8168          - Various cleanups, add lots of comments.
8169
8170         (#115077, much help from Takuro Ashie and Hidetoshi
8171         Tajima in tracking this down and figuring out a fix.)
8172
8173         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_focus_in): 
8174
8175         * modules/input/gtkimcontextxim.c: Track the current
8176         screen for each toplevel so that we show the status
8177         window on the right screen. (#116340, James Su)
8178
8179         * modules/input/gtkimcontextxim.c: If create a new IC
8180         when we currently have the focus, call XSetICFocus()
8181         on it.
8182         
8183         * modules/input/gtkimcontextxim.c (get_im): Fix bug
8184         with multiple open screens.
8185
8186 Tue Aug 19 14:37:46 2003  Owen Taylor  <otaylor@redhat.com>
8187
8188         * gtk/gtkimmulticontext.[ch] (struct _GtkIMMulticontext): 
8189         Replace client_window field with 'priv' pointer,
8190         retaining binary compatibility.
8191
8192         * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_slave): 
8193         save use_preedit/cursor_location/focus status and set
8194         up the new slave appropriately. (#118651, Botond Botyanszki)
8195
8196 Tue Aug 19 13:58:50 2003  Owen Taylor  <otaylor@redhat.com>
8197
8198         * gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): 
8199         Don't use impl->position_info.clip_rect for toplevels.
8200         (#107068, reported by Thomas Mirlacher)
8201
8202 Mon Aug 18 11:48:51 2003  Owen Taylor  <otaylor@redhat.com>
8203
8204         * gdk/x11/gdkdrawable-x11.c (convert_to_format): 
8205         Add a fallback for unaligned source data for
8206         FORMAT_ARGB_MASK. (#117217)
8207
8208 Mon Aug 18 10:51:57 2003  Owen Taylor  <otaylor@redhat.com>
8209
8210         * configure.in: Rework handling of REBUILD_PNGS,
8211         so that we also don't try to REBUILD_PNGS when
8212         cross-compiling and there is no gdk-pixbuf-csource.
8213         But give an error if gtk/stock-icons/gtkstockpixbufs.h
8214         is not in the source tree. (Note that REBUILDS_PNG
8215         was set backwards before, which is why you always
8216         had to manually recreate gtkstockpixbufs.h!)
8217
8218 Mon Aug 18 10:19:55 2003  Owen Taylor  <otaylor@redhat.com>
8219
8220         * gtk+-2.0-uninstalled.pc.in: Add a missing gtk/ in the
8221         path to libgtk.la. (#120080, Benedikt Spranger)
8222
8223 Sat Aug 16 10:34:49 2003  Owen Taylor  <otaylor@redhat.com>
8224
8225         * modules/input/imcedilla.c: Make the list of default
8226         languages more comprehensive. (Suggestion of
8227         Fco. Javier F. Serrador)
8228
8229 Sat Aug  9 12:47:11 2003  Owen Taylor  <otaylor@redhat.com>
8230
8231         * gdk/gdk.c (gdk_arg_context_parse): Fix broken 
8232         parentheses when skipping args.
8233
8234 Sat Aug 16 16:22:23 2003  Kristian Rietveld  <kris@gtk.org>
8235
8236         Fix major bug in row ref handling, so the new combo box
8237         will actually work right (:. Bug #107748. Patch written
8238         with help from Tim Janik.
8239
8240         The basic idea is to update the row refs in a closure,
8241         before the actual signal is emitted (rather than having
8242         the model connect signal handlers).
8243
8244         * gtk/gtktreemodel.c (gtk_tree_model_base_init): change
8245         g_signal_new calls for row_inserted, row_deleted and
8246         rows_reordered to use the new marshallers,
8247         (row_inserted_marshall), (row_deleted_marshall),
8248         (rows_reordered_marshall): the new marshallers,
8249         (gtk_tree_row_ref_inserted_callback): renamed to
8250         gtk_tree_row_ref_inserted since it isn't a callback
8251         anymore and gets called by the marshaller now,
8252         (gtk_tree_row_ref_deleted_callback): likewise,
8253         (gtk_tree_row_ref_reordered_callback): likewise,
8254         (connect_ref_callbacks), (disconnect_ref_callbacks):
8255         removed,
8256         (gtk_tree_row_reference_new_proxy),
8257         (gtk_tree_row_reference_free),
8258         (gtk_tree_row_reference_inserted),
8259         (gtk_tree_row_reference_deleted),
8260         (gtk_tree_row_reference_reordered): updated.
8261
8262 Fri Aug 15 16:54:39 2003  Owen Taylor  <otaylor@redhat.com>
8263
8264         Improve Cedilla handling - based on a patch from Gustavo 
8265         De Nardin, #111334
8266
8267         * modules/input/imcedilla.c po/POTFILES.in: Input method that 
8268         produces C_WITH_CEDILLA rather than C_WITH_ACUTE for 
8269         dead_acute+c combinations. Make this the default for
8270         fr and pt.
8271
8272         * gtk/gtkimmulticontext.c (gtk_im_multicontext_get_slave): 
8273         Use LC_CTYPE instead of LC_MESSAGES to pick the default
8274         input method.
8275
8276 Fri Aug 15 17:00:19 2003  Owen Taylor  <otaylor@redhat.com>
8277
8278         * gtk/gtkimcontextsimple.c: Fix missing compose sequence
8279         for Multi_key+c+apostrophe.
8280
8281 Fri Aug 15 21:57:34 2003  Kristian Rietveld  <kris@gtk.org>
8282
8283         Merged from stable.
8284
8285         * gtk/gtktreeview.c (gtk_tree_view_adjustment_changed): stop editing
8286         on vertical scrolling. (#108035, reported by Tim Janik).
8287
8288 Fri Aug 15 20:06:42 2003  Kristian Rietveld  <kris@gtk.org>
8289
8290         Merged from stable.
8291
8292         * gtk/gtktreeview.c (gtk_tree_model_sort_row_changed),
8293         (gtk_tree_model_sort_level_find_insert),
8294         (gtk_tree_model_sort_insert_value): fix off-by-one error.
8295         (#109292 continued, patch from Yann Rouillard).
8296
8297 Fri Aug 15 19:43:14 2003  Kristian Rietveld  <kris@gtk.org>
8298
8299         (Note: This is not exactly the same as the patch which went in
8300          gtk-2-2).
8301
8302         * gtk/gtktreeview.c (gtk_tree_view_class_init),
8303         (gtk_tree_view_key_press), (gtk_tree_view_search_key_press_event):
8304         Also support the up, down, left, right, home, end, page up and
8305         page down keys on the numpad. (#119419, reported by Alex Larsson).
8306
8307 Fri Aug 15 12:34:04 2003  Owen Taylor  <otaylor@redhat.com>
8308
8309         Fixes for X/Cygwin builds of GTK+ (#107623, Masahiro Sakai):
8310
8311         * configure.in (GDK_DEP_LIBS_FOR_X): Make sure that
8312         we link libgtk against X explicitely, since we
8313         make GTK+ calls for plug/socket.
8314
8315         * gtk/queryimmodules.c: Use USE_LA_MODULES and 
8316         G_MODULE_SUFFIX here. 
8317
8318         * gdk/x11/gdkdrawable-x11.c (gdk_x11_draw_image): Protect
8319         XShmPutImage with #ifdef USE_SHM.
8320
8321 Thu Aug 14 18:25:39 2003  Owen Taylor  <otaylor@redhat.com>
8322
8323         * gtk/gtkfilesel.c (gtk_file_selection_populate):
8324         Don't reposition the cursor when we aren't trying
8325         to complete. (Fixes problems with selection on
8326         startup, #108433, reported by Mark Finlay.)
8327
8328         * gtk/gtkfilesel.c (gtk_file_selection_populate): Remove
8329         code that tried to position the cursor after the common
8330         prefix when there was one, it wasn't working, and
8331         would be hard to fix. Just always put the cursor
8332         at the end when completing.
8333
8334 Thu Aug 14 17:58:23 2003  Owen Taylor  <otaylor@redhat.com>
8335
8336         * gtk/gtkfilesel.c (get_current_dir_utf8): If getting
8337         the current directory fails because of encoding
8338         conversion problems, walk up textually to parent
8339         directories until we can convert. (#113627)
8340
8341 Wed Aug 13 17:01:49 2003  Owen Taylor  <otaylor@redhat.com>
8342
8343         * gtk/gtkmenushell.[ch] (gtk_menu_shell_enter_notify):
8344         Remove usage of menu_shell->ignore leave which was
8345         to deal with stray events we no longer get because
8346         we do grabbing differently. Comment it as unused in
8347         the header. (#115837, Keith Bissett)
8348
8349 Wed Aug 13 16:32:43 2003  Owen Taylor  <otaylor@redhat.com>
8350
8351         * gtk/gtkmenu.c (gtk_menu_position, gtk_menu_window_size_request): 
8352         Fix some places that weren't properly Xinerama-ified.
8353
8354         * gtk/gtkmenu.c: Fix problem with windows that scroll
8355         at the top of the screen.
8356
8357 Wed Aug 13 11:34:53 2003  Owen Taylor  <otaylor@redhat.com>
8358
8359         * gtk/gtkcombo.c (gtk_combo_init): connect_after() to 
8360         key-press-event on the entry, so input methods get access to 
8361         key presses before GtkCombo customization.
8362         (#115451, Botond Botyanszki)
8363
8364 2003-08-13  Anders Carlsson  <andersca@gnome.org>
8365
8366         * tests/testtoolbar.c: (set_important_func), (important_toggled),
8367         (create_items_list):
8368         Add an important column.
8369         
8370 Tue Aug 12 15:00:15 2003  Owen Taylor  <otaylor@redhat.com>
8371
8372         * gtk/gtkwindow.c (gtk_window_real_set_focus): Protect
8373         against reentrancy from ::focus-out handlers. 
8374         (#118129, Felipe Heidrich)
8375
8376 Tue Aug 12 14:27:42 2003  Owen Taylor  <otaylor@redhat.com>
8377
8378         * gtk/gtkkeyhash.c (_gtk_key_hash_lookup): Remove
8379         GDK_LOCK_MASK before calling
8380         gdk_keymap_translate_keyboard_state so bindings 
8381         and accelerators are independent of the Caps-lock
8382         key. (#115384, reported by Toni Willberg)
8383
8384 Mon Aug 11 12:07:14 2003  Owen Taylor  <otaylor@redhat.com>
8385
8386         * gdk/x11/gdkevents-x11.c (get_real_window): Add missing
8387         break statements (#119494, Soeren Sandmann)
8388
8389 Mon Aug 11 11:10:07 2003  Owen Taylor  <otaylor@redhat.com>
8390
8391         * gtk/gtkwidget.h: Mark parent public as well; it's
8392         extensively accessed in existing code, so there is
8393         no advantage in making people use get_parent().
8394         (Tweak to #119463 fix)
8395
8396 2003-08-11  Matthias Clasen  <maclas@gmx.de>
8397
8398         Add support for EWMH "Above" and "Below" window states.  (105100,
8399         Manuel Clos)
8400         
8401         * tests/testgtk.c: Add "Above" and "Below" to the the "Window
8402         State" demo.
8403
8404         * gtk/gtkwindow.h: Add gtk_window_set_keep_above and
8405         gtk_window_set_keep_below.
8406
8407         * gtk/gtk.def: Add gtk_window_set_keep_above and
8408         gtk_window_set_keep_below.
8409
8410         * gtk/gtkwindow.c (gtk_window_set_keep_below):
8411         (gtk_window_set_keep_above): New functions, call the corresponding
8412         gdk functions.
8413
8414         * gdk/x11/gdkwindow-x11.c (gdk_window_set_keep_below): New
8415         function, sets _NET_WM_STATE_BELOW.
8416         (gdk_window_set_keep_above): New function, sets
8417         _NET_WM_STATE_ABOVE.
8418
8419         * gdk/gdkwindow.h: Add gdk_window_set_keep_above and
8420         gdk_window_set_keep_below.
8421
8422         * gdk/gdkevents.h (GdkWindowState): Add GDK_WINDOW_STATE_ABOVE and
8423         GDK_WINDOW_STATE_BELOW.
8424
8425         * gdk/gdk.def: Add gdk_window_set_keep_above and
8426         gdk_window_set_keep_below.
8427
8428         * acinclude.m4: Copy newer versions of JH_CHECK_XML_CATALOG and
8429         JH_PATH_XML_CATALOG from gtk-doc to enable configuring without
8430         xmlcatalog in PATH.  (#119115)
8431
8432 2003-08-10  Matthias Clasen  <maclas@gmx.de>
8433
8434         * gtk/gtkwidget.h (struct _GtkWidget): Mark some members as
8435         public.  (#119463)
8436
8437 2003-08-09  Noah Levitt  <nlevitt@columbia.edu>
8438
8439         * gdk/gdkevents.h:
8440         * docs/reference/gdk/tmpl/windows.sgml: Elaborate a bit more in the
8441         docs on GdkFilterFunc and GdkFilterReturn.
8442
8443 2003-08-09  Matthias Clasen  <maclas@gmx.de>
8444
8445         * gtk/gtkcalendar.c:  Add and hook in gtk_calendar_scroll,
8446         to let the mouse wheels select the month. Scrolling down
8447         moves forward in time. (#53134, Abigail Brady) 
8448
8449         * gtk/gtkcalendar.c: Complete the RTL flipping support for
8450         GtkCalendar, make it possible to flip the headings using the
8451         "magic translated string" technique.  Translators, note the
8452         comment in gtk_calendar_init() explaining this.  (#102416)
8453
8454         * gtk/gtkcalendar.c: Get the information about the first day of
8455         the week from the locale using another instance of the "magic
8456         translated string" technique.  Ignore the display option
8457         GTK_CALENDAR_WEEK_START_MONDAY with a warning.  (#87977)
8458
8459         * gtk/gtkcalendar.c: Add DND support to GtkCalendar. The selected
8460         date is dragged as text, formatted via strftime %x. Text drops are
8461         accepted if g_date_set_parse() can make sense of the text. A
8462         dedicated data format for date DND has not been introduced yet,
8463         since there didn't seem to be sufficient consensus on such a
8464         format on xdg-list.  (#117297)
8465         
8466 2003-08-08  Matthias Clasen  <maclas@gmx.de>
8467
8468         * gdk/gdkregion-generic.c (gdk_region_spans_intersect_foreach):
8469         Fix a segfault.  (#115284, Jan Kratochvil)
8470
8471 2003-08-08  Tor Lillqvist  <tml@iki.fi>
8472
8473         * gdk/win32/gdkevents-win32.c (print_event): Print also the root
8474         coordinates for events that have such. Print coordinates for enter
8475         and leave events.
8476
8477         (gdk_event_translate): Don't use event uninitialixed in the
8478         return_exposes branch of the WM_PAINT handler.
8479
8480         * gdk/win32/gdkwindow-win32.c (gdk_window_new,
8481         _gdk_windowing_window_get_pointer, _gdk_windowing_window_at_pointer): 
8482         Must offset top-level window coordinates here, too.
8483
8484 2003-08-08  Matthias Clasen  <maclas@gmx.de>
8485
8486         * demos/gtk-demo/appwindow.c (do_appwindow): Hide the resize grip
8487         when maximized or fullscreen.
8488
8489 2003-08-07  Tor Lillqvist  <tml@iki.fi>
8490
8491         * gdk/win32/gdkinput-win32.h
8492         * gdk/win32/gdkinput-win32.c (_gdk_input_configure_event,
8493         _gdk_input_enter_event): Drop the GdkEvent* parameter, it wasn't
8494         used.
8495
8496         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Adapt caller
8497         accordingly, in fact an uninitialised variable was dereferenced.
8498         
8499
8500         [Win32] Add support for multiple monitors. 
8501         
8502         * gdk/win32/gdkprivate-win32.h
8503         * gdk/win32/gdkglobals-win32.c: New global variables for
8504         multiple-monitor info: _gdk_num_monitors, _gdk_monitors, and
8505         _gdk_offset_x and _gdk_offset_y.
8506         
8507         * gdk/win32/gdkdisplay-win32.c (count_monitor, enum_monitor): New
8508         functions, enumeration functions passed to EnumDisplayMonitors().
8509
8510         (gdk_display_open): If the EnumDisplayMonitors() and
8511         GetMonitorInfo() API is present (on Win98, Win2000 and newer), use
8512         if to find out monitor info.
8513
8514         Calculate the offset between Win32 coordinates (relative to the
8515         primary monitor's origin (and thus negative on monitors to the
8516         left of or above it), and GDK's (visible coordinates should be
8517         non-negative).
8518         
8519         * gdk/win32/gdkscreen-win32 (gdk_screen_get_n_monitors,
8520         gdk_screen_get_monitor_geometry): Use information collected above.
8521
8522         (gdk_window_move, gdk_window_move_resize_window_get_geometry):
8523         Subtract _gdk_offset_{x,y} from GDK root window coordinates.
8524
8525         (gdk_window_get_geometry, gdk_window_get_origin,
8526         gdk_window_get_frame_extents): For top-level windows, add
8527         _gdk_offset_{x,y} to GDK root window coordinates
8528
8529         Still need to handle multiple monitors in
8530         gdk_window_fullscreen(). Probably should make the window
8531         fullscreen on the monitor where the cursor is?
8532
8533         * gdk/win32/gdkevents-win32.c: Add _gdk_offset_{x,y} to all GDK
8534         root window coordinates in GdkEvents.
8535
8536         
8537         [Win32] Fix geometry hint handling. Add support for resize
8538         increment and base size, and aspect ratio geometry hints. The
8539         "gridded geometry" test in testgtk now works beautifully.
8540
8541         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints):
8542         Turns out this function shouldn't actually ever modify the
8543         window's size, just store the hints. (Old code kept for a while
8544         inside #if 0.)
8545
8546         (gdk_window_set_hints): Remove presumably broken code that handles
8547         the position hints, this function is obsolete anyway.
8548
8549         * gdk/win32/gdkevents-win32.c: Drop the current_{x,y}_root
8550         variables, not used.
8551
8552         (adjust_drag): New function, used to implement resize increment
8553         hints.
8554
8555         (gdk_event_translate): Handle WM_SIZING, implement resize
8556         increment and base size, and aspect ratio geometry hints here. The
8557         WM_GETMINMAXINFO handler takes care of the minimum and maximum
8558         size hints as before. Fix the WM_GETMINMAXINFO handler to take
8559         into account window decorations. No need to modify the
8560         ptMaxPosition and ptMaxSize fields in the MINMAXINFO struct,
8561         the defaults are fine.
8562         
8563         * gdk/win32/gdkprivate-win32.h 
8564         * gdk/win32/gdkwindow-win32.c (_gdk_win32_adjust_client_rect,
8565         _gdk_win32_get_adjusted_client_rect): New helper functions.
8566
8567 2003-08-07  Matthias Clasen  <maclas@gmx.de>
8568
8569         * gdk/x11/gdkevents-x11.c (gdk_check_wm_state_changed): Reset the
8570         toplevel->have_* flags before iterating over the _NET_WM_STATE 
8571         atoms.  (#119217) 
8572
8573 Thu Aug  7 16:49:29 2003  Owen Taylor  <otaylor@redhat.com>
8574  
8575         * gtk/gtkwidget.c (gtk_widget_set_style_internal): 
8576         Fix a bug where on theme change, resize/redraw wasn't
8577         properly getting queued on toplevel windows. (#116346,
8578         Rajkumar Siva)
8579  
8580         * gtk/gtkwidget.c (gtk_widget_invalidate_widget_windows): 
8581         Fix bug where wrong coordinates were used for toplevel
8582         window.
8583  
8584 Thu Aug  7 16:40:21 2003  Owen Taylor  <otaylor@redhat.com>
8585
8586         * gtk/gtknotebook.c (gtk_notebook_remove): Remove leftover
8587         page_num variable (Archit Baweja)
8588
8589 2003-08-07  Matthias Clasen  <maclas@gmx.de>
8590
8591         * gtk/gtkspinbutton.c (gtk_spin_button_default_input): Use g_strtod() to
8592         cope with C libraries with crippled locale support.  (#115293)
8593
8594 2003-08-07  Hans Breuer  <hans@breuer.org>
8595
8596         * gdk/win32/gdkevents-win32.c : finally use TrackMouseEvent
8597         (only if the new window not known to Gdk) to get proper
8598         leave notification, and get rid of the wrong placed 
8599         tooltips, bug #102283
8600  
8601         (gdk_event_translate) : small code reordering to not get
8602         GDK_MOTION_NOTIFY for still mouse and get back tooltips on 
8603         menus, bug #117367
8604
8605 2003-08-07  Tor Lillqvist  <tml@iki.fi>
8606
8607         * gdk/gdk.def
8608         * gdk/win32/gdkfont-win32.c (gdk_fontset_load_for_display): Add
8609         missing function, trivially implement.
8610
8611 2003-08-07  Matthias Clasen  <maclas@gmx.de>
8612
8613         * gtk/gtkctree.c (draw_row): Don't cut descenders when 
8614         rendering.  (#118646, Charles Kerr) 
8615
8616 2003-08-06  Hans Breuer  <hans@breuer.org>
8617
8618         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_new) :
8619         initialize bits to 0 (probably default on NT)
8620
8621         * gdk/win32/gdkwindow-win32.c (gdk_window_set_icon) :
8622         now it works as intended ;-)
8623
8624 2003-08-04  Hans Breuer  <hans@breuer.org>
8625
8626         * gdk/win32/gdkwindow-win32.c(gdk_window_set_modal_hint) :
8627         set HWND_NOTOPMOST for modal==FALSE, fixes bug #118435
8628
8629         * gdk/win32/gdkwindow-win32.c : implement gdk_window_[un]fullscreen
8630         (gdk_window_{move,resize,move_rezize})) : noop if FULLSCREEN
8631
8632         * gdk/win32/gdkwindow-win32.c (gdk_window_set_icon) :
8633         against all expectations it is basically ony a call with WM_SETICON
8634         needed (the visual effect is there, though colors or mask are
8635         still somewhat wrong).
8636         * gdk/win32/gdkwindow-win32.h : place to store the HICON
8637
8638         * gdk/win32/gdkdrawabke.win32.c : readded the conditional end
8639         pixel drawing as it was fixed at 1999-08-23
8640
8641         gtk/gtk.def : updated
8642
8643 Tue Aug  5 10:07:08 2003  Owen Taylor  <otaylor@redhat.com>
8644
8645         * gtk/gtkmessagedialog.c (gtk_message_dialog_get_property): 
8646         Add a missing break. (#119156, Callum McKenzie)
8647
8648 Tue Aug  5 00:24:13 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
8649
8650         * gtk/gtkmenu.c (gtk_menu_position): New positioning
8651         algorithm.(#116649)
8652
8653 Fri Aug  1 15:26:46 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
8654
8655         * gtk/gtktoolbar.c, gtk/toolitem.c: add new "is_important"
8656         property
8657         
8658         * gtk/gtkradiotoolbutton.c
8659         (gtk_radio_tool_button_new_from_widget): Don't take a stock id
8660
8661         * gtk/gtkradiotoolbutton.c
8662         (gtk_radio_tool_button_new_with_stock_from_widget): make this
8663         function take a stock_id.
8664
8665         * gtk/toolbar: documentation
8666
8667 Mon Aug  4 14:53:46 2003  Owen Taylor  <otaylor@redhat.com>
8668
8669         * gdk/x11/gdkimage-x11.c (_gdk_windowing_image_init): 
8670         Fix problem where use_xshm was getting set wrong if
8671         MIT_SHM wasn't found. (George Lebel)
8672
8673 2003-08-04  Tor Lillqvist  <tml@iki.fi
8674
8675         * gdk/win32/gdkevents-win32.c (apply_filters): Fix braino:
8676         actually use the passed-in filter list. The function also needs a
8677         GdkWindow parameter, as filter functions expect
8678         GdkEvent::any.window to be valid. (#119034, Hans Breuer)
8679
8680 2003-08-03  Matthias Clasen  <maclas@gmx.de>
8681
8682         * gdk/x11/gdkscreen-x11.c (gdk_screen_get_n_monitors): 
8683         (gdk_screen_get_monitor_geometry): Improve wording of the docs, avoid
8684         the term "virtual screen".  (#119030, Tor Lillqvist)
8685
8686 2003-08-02  Matthias Clasen  <maclas@gmx.de>
8687
8688         * tests/testtext.c (test_init): 
8689         * tests/testgtk.c (test_init): 
8690         * tests/testdnd.c (test_init): 
8691         * demos/pixbuf-init.c (pixbuf_init): 
8692         * demos/gtk-demo/main.c (main): Use g_setenv().
8693
8694         * gdk/x11/gdkdisplay-x11.c (_gdk_windowing_set_default_display): Use
8695         g_unsetenv(). 
8696
8697 Sat Aug  2 12:53:16 2003  Owen Taylor  <otaylor@redhat.com>
8698
8699         * configure.in: Requires glib-2.3.0, pango-1.2.0.
8700
8701         * configure.in: Require Xft version 2,
8702         remove code for handling older versions of pango and Xft.
8703         Many miscellaneous improvements to X checks
8704
8705         * acinclude.m4: Add GTK_ADD_LIB() macro for adding 
8706         a library to a variable, avoiding dups.
8707
8708         * gdk/x11/gdkfont-x11.c (gdk_font_from_description_for_display): 
8709         Always load "fixed"
8710
8711         * gdk/x11/gdk*-x11.[ch]: Remove support for Xft1 and
8712         for pangox.
8713
8714 2003-08-02  Matthias Clasen  <maclas@gmx.de>
8715
8716         * gtk/gtkcolorsel.c (color_sample_drop_handle) 
8717         (palette_drop_handle): 
8718         * gtk/gtkcolorbutton.c (gtk_color_button_drag_data_received):  Accept
8719         drops with the wrong format, since the KDE color chooser incorrectly
8720         drops application/x-color with format 8.  (#118810)
8721
8722         * gtk/gtkcolorsel.c (color_sample_drop_handle) (palette_drop_handle): 
8723         * gtk/gtkcolorbutton.c (gtk_color_button_drag_data_received):  
8724         Accept drops with the wrong format, since the KDE color chooser 
8725         incorrectly drops application/x-color with format 8.  (#118810)
8726
8727 2003-08-02  Tor Lillqvist  <tml@iki.fi>
8728
8729         Fix gdk/win32 window geometry handling again. The window position
8730         in a GDK_CONFIGURE event should be that of the client area, not of
8731         the window decorations. (I was confused by the term "window
8732         border" in X11. It does *not* mean the window manager
8733         decorations. There are no X11-style window borders in Win32.)
8734         Also, this time do take the geometry hints into account
8735         appropriately when moving windows. Now testgtk's gravity test's
8736         move buttons work OK. There are stil problems with taking gravity
8737         into account when showing a hidden window.
8738
8739         * gdk/win32/gdkwindow-win32.h: Keep a whole GdkGeometry as hints
8740         instead of separate fields.
8741         
8742         * gdk/win32/gdkevents-win32.c (handle_configure_event): Don't
8743         adjust for decorations.
8744
8745         * gdk/win32/gdkwindow-win32.c (get_outer_rect,
8746         adjust_for_gravity_hints): New functions.
8747         (gdk_window_move, gdk_window_resize, gdk_window_move_resize): Use
8748         above functions, take geometry hints into account.
8749         (gdk_window_set_geometry_hints): Size hints specicy client area,
8750         not including decorations.
8751
8752 Fri Aug  1 17:10:22 2003  Owen Taylor  <otaylor@redhat.com>
8753
8754         * gtk/gtkfilesel.c (cmpl_completion_fullname): Always
8755         return an absolute path (#115590), fix a problem where
8756         you could crash the file selector with a looong name
8757         by returning a newly allocated buffer.
8758
8759 Fri Aug  1 16:44:51 2003  Owen Taylor  <otaylor@redhat.com>
8760
8761         * gtk/gtkfilesel.c (update_cmpl): Fix obvious reallocation
8762         bug in rarely or never hit code path (#118071,
8763         Tor Lillqvist)
8764
8765 Fri Aug  1 16:30:13 2003  Owen Taylor  <otaylor@redhat.com>
8766
8767         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render): 
8768         If the check for missing depths, try actually creating pixmaps
8769         of the depths to deal with Xinerama not reporting
8770         all the depths it should. (#115822)
8771
8772 Fri Aug  1 15:33:59 2003  Owen Taylor  <otaylor@redhat.com>
8773
8774         * gtk/gtksocket.c: Patch from Denis Mikhalkin to
8775         forward KeyRelease events as well as KeyPress events.
8776         (#115597)
8777
8778 Fri Aug  1 15:06:25 2003  Owen Taylor  <otaylor@redhat.com>
8779  
8780         * gdk/gdk.c (gdk_parse_args): g_set_prgname("<unknown>")
8781         if argc is 0 as well, instead of leaving it unset.
8782         (#116023, Michael Meeks)
8783  
8784 Thu Jul 31 23:09:02 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
8785
8786         * gtk/gtktoolbar.c (gtk_toolbar_class_init): make show_arrow
8787         default to TRUE; ignore the property when api_mode != NEW_API
8788
8789 2003-07-31  Matthias Clasen  <maclas@gmx.de>
8790
8791         * gtk/gtkwindow.c (gtk_window_set_default_icon): Rename parameter pixbuf
8792         to icon, to pacify gtk-doc.
8793
8794         * gtk/gtkwidget.c (gtk_widget_class_init): Fix formatting of drag-motion 
8795         example. 
8796
8797 Thu Jul 31 15:33:33 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
8798
8799         * gtk/gtk*tool*.h: add padding to subclasses of GtkToolItem
8800
8801 Thu Jul 31 15:29:28 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
8802
8803         * gtk/gtktoolitem.c (struct _GtkToolItemPrivate): remove unused
8804         overflow_item field.
8805
8806 Wed Jul 30 21:11:13 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
8807
8808         * gtk/gtktoolitem.h: make _gtk_tool_item_toolbar_reconfigured()
8809         an internal function
8810
8811         * gtk/gtktoolitem.h: remove unused declaration of
8812         _gtk_tool_item_get_drag_window().
8813
8814 Wed Jul 30 17:03:58 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
8815
8816         * gtk/gtktoolbutton.[ch]:
8817         (gtk_tool_button_new): swap icon_widget and label arguments to
8818         match BonoboUIToolbarButton.
8819
8820         * gtk/gtktoolbar.h: un-deprecate gtk_toolbar_{set|unset}_style().
8821
8822 2003-07-30  Matthias Clasen  <maclas@gmx.de>
8823
8824         * gtk/gtkwidget.c (gtk_widget_class_init): Some updates to the DND
8825         signal docs. 
8826
8827 2003-07-29  Tor Lillqvist  <tml@iki.fi>
8828
8829         Fix for #108007, #112402, #117042: There was confusion in
8830         gdk/win32 at various places whether a window position refers to
8831         the decoration position or the client area position. Also whether
8832         window size includes decorations or not.
8833         
8834         The correct interpretation apparently is that in GDK (like in
8835         X11), a top-level window position means the decoration's position,
8836         but size means the window's inner size (client area size). In the
8837         Win32 API, the window size usually includes the decorations,
8838         though.
8839         
8840         * gdk/win32/gdkevents-win32.c (decode_key_lparam): Move inside
8841         #ifdef G_ENABLE_DEBUG.
8842         (handle_configure_event): New function, generates GDK_CONFIGURE
8843         events from WM_SIZE and WM_MOVE messages. Even if no event is
8844         generated because of the event mask, still set the private
8845         position and size fields. Calculate position and size correctly.
8846         (gdk_event_translate): Call handle_configure_event().
8847
8848         * gdk/win32/gdkgeometry-win32.c: Cosmetics.
8849
8850         * gdk/win32/gdkwindow-win32.c: Use GDI_CALL() and API_CALL()
8851         macros. Cosmetic debugging output changes.
8852         (SafeAdjustWindowRectEx): Remove. If an application wants to
8853         locate a window outside of the screen, it's not GDK's business to
8854         prevent it. And anyway, with multiple monitors, negative
8855         coordinates are perfectly normal.
8856         (gdk_window_new): Adjust the window size for decorations after
8857         _gdk_window_init_position() has done its job. (But the big window
8858         code currently is presumably broken on Win32 anyway.)
8859         (gdk_window_move): The position passed in is supposed to be that
8860         of the window border, so don't need to adjust for decorations.
8861         (gdk_window_resize, gdk_window_move_resize): Simplify somewhat.
8862
8863 Tue Jul 29 13:55:44 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
8864
8865         * gtk/gtktoolbar.c (gtk_toolbar_set_style,
8866         gtk_toolbar_prepend_element, gtk_toolbar_append_element,
8867         gtk_toolbar_insert_space, gtk_toolbar_prepend_space,
8868         gtk_toolbar_append_space, gtk_toolbar_insert_item,
8869         gtk_toolbar_prepend_item, gtk_toolbar_append_item,
8870         gtk_toolbar_set_tooltips, gtk_toolbar_set_orientation,
8871         gtk_toolbar_new, gtk_toolbar_prepend_item):
8872
8873         Move documentation inline from template files.
8874
8875         * gtk/gtktoolbar.c (gtk_toolbar_insert_element,
8876         gtk_toolbar_insert_widget, gtk_toolbar_prepend_widget,
8877         gtk_toolbar_append_widget, gtk_toolbar_remove_space,
8878         gtk_toolbar_insert_stock, gtk_toolbar_unset_icon_size,
8879         gtk_toolbar_get_icon_size, gtk_toolbar_set_icon_size,
8880         gtk_toolbar_get_tooltips, gtk_toolbar_unset_style,
8881         gtk_toolbar_get_style, gtk_toolbar_get_orientation)
8882
8883         Copy documentation from stable that was added after the EggToolbar
8884         branched.
8885
8886         * gtk/gtktoolbar.h: deprecate gtk_toolbar_unset_icon_size()
8887
8888 Mon Jul 28 18:21:34 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
8889
8890         * gtk+/docs/: Commit autogenerated changes, so patches will make
8891         sense.
8892
8893 2003-07-27  Tor Lillqvist  <tml@iki.fi>
8894
8895         * gdk/win32/gdkevents-win32.c (build_key_event_state): On Win9x,
8896         the keyboard state returned by GetKeyboardState() doesn't
8897         distinguish between the left and right Control and Alt keys. Thus
8898         we cannot detect AltGr (which is supposed to be left Control +
8899         right Alt) the same way as on NT-based systems, but have to accept
8900         either Control + either Alt as AltGr.
8901
8902 2003-07-27  Matthias Clasen  <maclas@gmx.de>
8903
8904         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach):
8905         Fix function name in warning message.  (#118156, Tim-Philipp
8906         Mller)
8907
8908         * gtk/gtkcellrenderer.c (gtk_cell_renderer_get_property):
8909         is-expander and is-expanded are boolean properties, not ints.
8910         (#118359, Josh Parsons)
8911
8912 Sat Jul 26 15:21:27 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
8913
8914         * gtk/gtkimagemenuitem.c
8915         (gtk_image_menu_item_toggle_size_request): don't request
8916         toggle_space when the image width is 0.
8917
8918 2003-07-25  Tor Lillqvist  <tml@iki.fi>
8919
8920         * gdk/win32/gdkprivate-win32.h
8921         * gdk/win32/gdkglobals-win32.c: New flags _gdk_input_locale_is_ime
8922         and _gdk_keyboard_has_altgr.
8923         
8924         * gdk/win32/gdkevents-win32.c: Lots of changes. Most important
8925         ones detailled here.
8926
8927         Code that has been ifdeffed out for a long time removed. Remove
8928         some really old doc comments that were left behind for some public
8929         functions, the official ones are in the X11 backend anyway. Change
8930         GDK_WINDOW_OBJECT() calls to GdkWindowObject casts. Reformat
8931         multi-line boolean expressions to have the operators at ends of
8932         lines.
8933
8934         As mouse capture with SetCapture() indeed seems to work OK, no
8935         need to have the correspoinding macro USE_SETCAPTURE and ifdefs.
8936
8937         Ifdef out the gdk-ping-msg stuff. I don't remember why it was
8938         needed at some time, and things seem to work fine now without
8939         (knock on wood).
8940
8941         Ifdef out the search for some Latin locale keyboard layout being
8942         loaded. Not used currently, but might be needed after all, if we
8943         decide that we want to be able to generate ASCII control character
8944         events with a non-Latin keyboard.
8945
8946         (assign_object): New helper function, handles the g_object_ref()
8947         and unref() calls when assigning GObject pointers.
8948                 
8949         (generate_crossing_events): Also generate the GDK_NOTIFY_INTERIOR
8950         enter event when the pointer has moved to an ancestor window. Was
8951         left out by mistake.
8952
8953         (gdk_window_is_ancestor): Renamed from gdk_window_is_child().
8954
8955         (gdk_pointer_grab, gdk_pointer_ungrab): Implement the confine_to
8956         functionality, using ClipCursor().
8957                 
8958         (find_window_for_mouse_event): Splice part of code into new
8959         function find_real_window_for_grabbed_mouse_event().
8960
8961         (fixup_event, append_event, apply_filters): New functions, code
8962         refactored out from elsewhere.
8963
8964         (synthesize_enter_or_leave_event, synthesize_leave_event,
8965         synthesize_enter_event,
8966         synthesize_leave_events,synthesize_enter_events): Also take a
8967         GdkCrossingMode parameter, in preparation to generating
8968         GDK_CROSSING_GRAB and GDK_CROSSING_UNGRAB events.
8969
8970         (fixup_event, append_event, fill_key_event_string): New functions,
8971         code refactoring.
8972
8973         (vk_from_char, build_keypress_event, build_keyrelease_event):
8974         Removed as part of dropping WM_CHAR handling.
8975
8976         (build_key_event_state,gdk_event_translate): Call
8977         GetKeyboardState(), once, for each keyboard message, instead of
8978         several calls to GetKeyState() here and there.
8979
8980         (gdk_event_translate): Fix bugs #104516, #104662, #115902. While
8981         at it, do some major refactoring, and some fixes for potential
8982         problems noticed while going through the code.
8983
8984         Don't handle WM_CHAR at all. Only handle WM_KEYDOWN and
8985         WM_KEYUP. Don't need the state variables related to whether to
8986         wait for WM_CHAR or not, and whether the current key is
8987         AltGr. Remove lots of complexity. Thus don't need the
8988         use_ime_composition flag.
8989
8990         Not handling WM_CHAR means dead key handling will have to be taken
8991         care of by GTK, but that seems to work fine, so no worry.
8992
8993         Another side-effect is that Alt+keypad digits don't work any
8994         longer, but it's better to learn to use GTK's ISO14755 support is
8995         anyway.
8996
8997         Be more careful in checking whether AltGr is involved. Only
8998         attempt to handle it if the keyboard actually has it. And
8999         explicitly check for *left* Control plus *right* Alt being
9000         pressed. Still, allow (left) Alt and/or (right) Control with AltGr
9001         chars.
9002
9003         Handle keys using similar code as in the X11 backend. As we have
9004         built a keymap in gdkkeys-win32.c anyway, use it by calling
9005         gdk_keymap_translate_keyboard_state() to look up the keysym from
9006         the virtual key code and keyboard state. Build the key event
9007         string in exactly the same way as the X11 backend.
9008
9009         If an IME is being used, don't generate GDK events for keys
9010         between receiving WM_IME_STARTCOMPOSITION and
9011         WM_IME_ENDCOMPOSITION, as those keys are for the IME.
9012         
9013         For WM_IME_COMPOSITION, handle all the Unicode chars returned from
9014         the IME, not just the first one.
9015
9016         gdk_event_translate() is still quite complex, could split the
9017         message handler cases out into separate functions.
9018
9019         On mouse events, when the mouse is grabbed, use
9020         find_real_window_for_grabbed_mouse_event() in order to be able to
9021         generate correct crossing events.
9022         
9023         No longer take a pre-allocated GdkEvent as parameter. Instead,
9024         allocate events as needed and append them to the queue. (This is
9025         different from how gdk_event_translate() in the X11 backend
9026         works.) This change made the code much clearer, especially in the
9027         cases where we have to generate several GDK events for one Windows
9028         message.  Return FALSE if DefWindowProc() should be called, TRUE
9029         if not. If DefWindowProc() should not be called, also return the
9030         value to be returned from the window procedure.
9031
9032         (Previously, the interaction with gdk_event_translate()'s caller
9033         was much more complex, when we had to indicate whether the
9034         already-queued event should be left in the queue or removed, and
9035         in addition also had to indicate whether to call DefWindowProc()
9036         or not, and what value to return from the window procedure if
9037         not.)
9038
9039         Don't use a separate "private" variable required to be pointing to
9040         the GdkWindowObject of the "window" variable at all times. Just
9041         use casts, even if looks a bit uglier.
9042
9043         Notice destroyed windows as early as possible, and break out of
9044         the messsage switch.
9045
9046         Use _gdk_pointer_root as current_window when the pointer is
9047         outside GDK's top-level windows.
9048         
9049         On WM_INPUTLANGCHANGE, set _gdk_input_locale_is_ime as
9050         appropriate, based on ImmIsIME().
9051         
9052         (gdk_event_translate, gdk_event_send_client_message_for_display,
9053         gdk_screen_broadcast_client_message): Implement client messages.
9054         Use a registered Windows message to pass GDK client messages. Note
9055         that the amount of user data is restricted to four bytes, as it is
9056         carried in the LPARAM. (The WPARAM is used for the message type
9057         "atom".)
9058         
9059         (real_window_procedure): Adapt for new gdk_event_translate()
9060         interface.
9061
9062         * gdk/win32/gdkmain-win32.c (_gdk_windowing_init): Set
9063         _gdk_input_locale_is_ime initially.
9064
9065         * gdk/win32/gdkwindow-win32.c: Use g_object_ref()/unref() instead
9066         of g_colormap_ref()/unref().
9067
9068         (gdk_window_new): Made code a bit more like the X11 one, pretend
9069         to handle screens (although we just have one for now).
9070
9071         * gdk/x11/gdkevents-x11.c
9072         (gdk_event_send_client_message_for_display,
9073         gdk_screen_broadcast_client_message): Document the user data
9074         limitation on Win32.
9075
9076         * gdk/win32/gdkevents-win32.c (print_event): More complete enter
9077         and leave notify detail output.
9078
9079         * gdk/win32/gdkkeys-win32.c (update_keymap): Make dead keys
9080         visible to GDK and GTK. Store the corresponding GDK_dead_* keysym
9081         for those, so that the GtkIMContextCimple compose tables will
9082         work. Deduce if the keyboard layout has the AltGr key, and set the
9083         above flag accordingly.
9084
9085 2003-07-26  Matthias Clasen  <maclas@gmx.de>
9086
9087         * gtk/gtkwidget.c: Document DND signals.
9088
9089 2003-07-24  Matthias Clasen  <maclas@gmx.de>
9090
9091         * gtk/gtktextview.c (popup_targets_received): Make the "Input Methods"
9092         insensitive when editing isn't possible.  (#118150)
9093
9094 2003-07-23  Matthias Clasen  <maclas@gmx.de>
9095
9096         * gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue 
9097         spinbutton wrap.  (#118097, John Darrington)
9098
9099         * docs/faq/gtk-faq.sgml: Mention Xnest as a way to debug GTK+ apps. 
9100
9101 2003-07-20  Hans Breuer  <hans@breuer.org>
9102
9103         * makefile.msc : new file to build it all
9104         * Makefile.am : ... added to EXTRA_DIST
9105
9106         * gdk/makefile.msc gtk/stock-icons/makefile.msc 
9107           gtk/makefile.msc.in tests/makefile.msc : updated
9108
9109         * gdk/gdk.def gtk/gtk.def : export a bunch of new 
9110         functions
9111
9112         * gtk/gtkbbox.c : use g_return_val_if_fail() if
9113         there is a value to return
9114
9115         * gtk/gtkfontsel.c gtk/gtkiconfactory.c :
9116         static correctness
9117
9118         * gtk/gtkicontheme.c : ported to use GTimeVal instead of
9119         struct timeval and GTK_DATA_PREFIX instead of GTK_DATADIR
9120
9121         * gtk/gtkicontheme.c : use HAVE_LC_MESSAGES
9122
9123         * gtk/gtkimmulticontext.c : use gtkprivate.h
9124
9125         * gtk/stock-icons/stock_color_picker_25.png
9126           gtk/stock-icons/stock_jump_to_rtl_16.png
9127           gtk/stock-icons/stock_jump_to_rtl_24.png
9128           gtk/stock-icons/stock_redo_rtl_16.png
9129           gtk/stock-icons/stock_redo_rtl_24.png
9130           gtk/stock-icons/stock_undelete_rtl_16.png
9131           gtk/stock-icons/stock_undelete_rtl_24.png
9132           gtk/stock-icons/stock_undo_rtl_16.png :
9133           gtk/stock-icons/stock_undo_rtl_24.png :
9134         readded as binary
9135
9136 Sat Jul 19 22:39:24 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9137
9138         * gtk/gtktoolitem.c (gtk_tool_item_size_request): remove
9139         leftover request of {xy}thickness
9140
9141 Sat Jul 19 16:26:02 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9142
9143         * gtk/gtktoolbutton.c (gtk_tool_button_construct_contents): don't
9144         attempt to add a NULL icon to the box.
9145
9146 Sat Jul 19 12:13:20 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9147
9148         * gtk/gtknotebook.c (gtk_notebook_focus_in|out): only redraw tabs
9149         on focus in/out.
9150
9151 2003-07-19  Matthias Clasen  <maclas@gmx.de>
9152
9153         * gtk/gtkstock.h (GTK_STOCK_DIALOG_AUTHENTICATION): New stock id. 
9154         * gtk/gtkiconfactory.c (get_default_icons): Add
9155         stock_dialog_authentication_48.  (#65765) 
9156         * gtk/stock-icons/Makefile.am (VARIABLES2, IMAGES): Here too.
9157         * gtk/stock-icons/stock_dialog_authentication_48.png: New image.
9158
9159         * gtk/gtkbbox.h: 
9160         * gtk/gtkbbox.c (gtk_button_box_get_child_secondary): New
9161         function. (#64562) 
9162
9163 Sat Jul 19 00:18:40 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9164
9165         * gtk/gtkwindow.c (gtk_window_set_default_icon): Fix C99
9166         declaration
9167
9168         * gtk/gtkwidget.c (gtk_widget_queue_shallow_draw): new function
9169         (gtk_widget_real_focus_{in|out}_event): queue shallow draws
9170         instead of full draws.
9171
9172 2003-07-18  Matthias Clasen  <maclas@gmx.de>
9173
9174         * gtk/gtkwindow.c: Add properties decorated and gravity.  (#80234) 
9175
9176         * gtk/gtktextview.c (gtk_text_view_class_init): Add a new keybinding
9177         signal, move_viewport. 
9178         (gtk_text_view_move_viewport): New function which implements the
9179         move_viewport functionality. 
9180         (gtk_text_view_move_cursor_internal): If the cursor is not visible, move
9181         the viewport. (#78669) 
9182
9183         * gtk/gtkenums.h (GtkScrollStep): New enumeration, used for
9184         move_viewport argument. 
9185
9186         * gtk/gtkstatusbar.c (gtk_statusbar_class_init): Add a has_resize_grip
9187         property.  (#111779) 
9188
9189         * gtk/gtkwindow.h: 
9190         * gtk/gtkwindow.c (gtk_window_set_default_icon): New method.  (#95816)
9191
9192         * gtk/gtkmessagedialog.h:
9193         * gtk/gtkmessagedialog.c (gtk_message_dialog_add_buttons): New method.  
9194         (#65501, Sebastian Rittau)
9195
9196 Fri Jul 18 20:06:57 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9197
9198         * gtk/gtktextview.c (changed_handler): use
9199         gtk_widget_queue_resize_noredraw().
9200
9201 2003-07-16  Jody Goldberg <jody@gnome.org>
9202
9203         * gdk/x11/gdkwindow-x11.c (gdk_window_focus) : fix cut-n-paste-o
9204
9205 Fri Jul 18 19:55:50 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9206
9207         * gtk/gtkwidget.c (gtk_widget_queue_resize_no_redraw): Add this
9208         API. 
9209
9210 Fri Jul 18 18:43:01 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9211
9212         By popular request give toolbuttons a border.
9213         
9214         * gtk/gtktoolitem.c
9215         (gtk_tool_item_size_allocate):
9216         (gtk_tool_item_size_request): don't request and allocate a border
9217         around the child
9218
9219         * gtk/gtktoolbutton.c 
9220         (gtk_tool_button_size_allocate):
9221         (gtk_tool_button_size_request): remove these functions
9222
9223         * gtk/gtktoolbar.c 
9224         (gtk_toolbar_size_request):
9225         (gtk_toolbar_size_allocate): request and allocate a border if we
9226         have a shadow.
9227
9228 Thu Jul 17 19:24:51 2003  Kristian Rietveld  <kris@gtk.org>
9229
9230         Merged from stable.
9231
9232         Fixes issues pointed out by Morten Welinder in #115140.
9233
9234         * gtk/gtktreeview.c (gtk_tree_view_size_request): fix comment,
9235         (do_validate_rows): update validated_area with a logic OR instead
9236         of a bitwise OR,
9237         (validate_rows_handler): make the if statement match the one in
9238         validate_rows(), so we don't leak the timeout.
9239
9240 Thu Jul 17 19:12:02 2003  Kristian Rietveld  <kris@gtk.org>
9241
9242         Merged from stable.
9243
9244         * gtk/gtktreeview.c (gtk_tree_view_remove_widget): the treeview
9245         should only grab focus back if the "cell_editable" widget still
9246         has focus. (Fixes #110104, testcase provided by Marco Pesenti
9247         Gritti).
9248
9249 Thu Jul 17 19:06:34 2003  Kristian Rietveld  <kris@gtk.org>
9250
9251         Merged from stable.
9252
9253         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_realize_button):
9254         Don't set attr.event_mask twice, those things were meant to be
9255         ORred. (#115139, pointed out by Morten Welinder).
9256
9257 Thu Jul 17 16:11:21 2003  Kristian Rietveld  <kris@gtk.org>
9258
9259         Merged from stable.
9260
9261         * gtk/gtktreeview.c (gtk_tree_view_rows_reordered): stop editing
9262         if needed. (Fixes #115869, reported by Michael Natterer).
9263
9264 2003-07-15  Matthias Clasen  <maclas@gmx.de>
9265
9266         * gdk/x11/gdkcursor-x11.c (gdk_display_get_maximal_cursor_size):
9267         Fight against gtk-doc stupidity.
9268
9269 2003-07-13  Matthias Clasen  <maclas@gmx.de>
9270
9271         * gtk/gtkdnd.c (gtk_drag_begin): Rename parameter target_list back to 
9272         targets, to pacify gtk-doc.
9273
9274 Sun Jul 13 15:57:57 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9275
9276         * gtk/gtktoolbutton.c (gtk_tool_button_finalize): Fix leaks of
9277         label_text, label_widget and icon_widget. (#117312, 
9278         Christian Persch)
9279         
9280 Sun Jul 13 01:37:51 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9281
9282         * gtk/gtkmenu.c (gtk_menu_class_init): new properties
9283         "horizontal-offset" and "vertical-offset" that determines the
9284         position of the menu when it is a submenu. 
9285
9286         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): position
9287         submenus according to new vertical- and horizontal-offset
9288         properties.
9289
9290 Sat Jul 12 16:16:04 2003  Kristian Rietveld  <kris@gtk.org>
9291
9292         Merged from stable.
9293
9294         * gtk/gtktreeview.c (gtk_tree_view_drag_data_received): special
9295         case drags to "0", scroll to the top after dropping. (Fixes #94968,
9296         reported by Alp Toker).
9297
9298 Sat Jul 12 16:08:32 2003  Kristian Rietveld  <kris@gtk.org>
9299
9300         Merged from stable.
9301
9302         * demos/gtk-demo/editable_cells.c (cell_edited): fixup bad
9303         code (#115784, Owen Taylor).
9304
9305 Sat Jul 12 16:01:03 2003  Kristian Rietveld  <kris@gtk.org>
9306
9307         Merged from stable.
9308
9309         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property):
9310         free the old text and extra_attrs *after* we parsed the new
9311         markup string. (Fixes #114485, reported by Owen Taylor).
9312
9313 Sat Jul 12 15:51:33 2003  Kristian Rietveld  <kris@gtk.org>
9314
9315         Merged from stable.
9316
9317         Fixes #113904, testcase provided by Rene Seindal.
9318
9319         * gtk/gtktreeview.c (gtk_tree_view_button_press): set
9320         pressed_button to -1 when a row has been activated,
9321         (gtk_tree_view_motion_bin_window): only start a drag if there's
9322         a button being pressed.
9323
9324 Sat Jul 12 15:51:18 2003  Kristian Rietveld  <kris@gtk.org>
9325
9326         Merged from stable.
9327
9328         * gtk/gtktreeview.c (gtk_tree_view_real_collapse_row): use
9329         gdk_window_get_pointer instead of gdk_display_get_window_at_pointer
9330         to avoid a roundtrip (#110272, Owen Taylor).
9331
9332 Sat Jul 12 15:28:26 2003  Kristian Rietveld  <kris@gtk.org>
9333
9334         Merged from stable.
9335
9336         This patch really really fixes scrolling. Related bugs: #81627,
9337         testcase provided by Timo Sirainen, #111500, testcase provided by
9338         manu, #113241, reported by Pedro Gimeno/Michael Natterer.
9339
9340         * gtk/gtktreeview.c (validate_visible_area): scrolling to a dy
9341         which is equal to the lower border of the window means scrolling
9342         to an invisible row, always update the dy when scrolling to an
9343         invisible row, corrected area_above/below calculations for
9344         invisible rows, when walking the tree correct the size
9345         subtracted for invalidated rows, fix wrong logic in comment.
9346
9347 2003-07-11  Matthias Clasen  <maclas@gmx.de>
9348
9349         * gtk/gtkicontheme.c (pixbuf_supports_svg): Use g_strfreev() to free
9350         mime_types.  (#117219, Steve Chaplin)
9351
9352 Tue Jul  8 20:11:04 2003  Owen Taylor  <otaylor@redhat.com>
9353
9354         * gdk/x11/gdkevents-x11.c (get_real_window)
9355         gdk/x11/gdkinput-x11.c (_gdk_input_common_init)
9356         gdk/x11/gdkimage-x11.c (_gdk_windowing_image_init)
9357         gdk/x11/gdkprivate-x11.h (_gdk_windowing_image_init)
9358         Don't assume that all events start with XEventAny - Xkb events
9359         don't! (#105745). So, only do that for core events, and for
9360         non-core events, add a system for registering event types
9361         that start with XEventAny.
9362
9363         * gdk/x11/gdkevents-x11.c (gdk_event_translate):
9364         Check to see if the result of gdk_window_lookup_for_display()
9365         is actually a window.
9366
9367 Fri Jul 11 20:48:14 2003  Kristian Rietveld  <kris@gtk.org>
9368
9369         * gtk/gtktreemodel.c (gtk_tree_path_free): make the path != NULL
9370         check a silent assert, so it follows the g_free() behaviour.
9371
9372 2003-07-11  Matthias Clasen  <maclas@gmx.de>
9373
9374         * gtk/gtkstatusbar.c (gtk_statusbar_init): Center statusbar contents 
9375         vertically.  (#109823, Joe Shaw)
9376
9377 2003-07-11  Morten Welinder  <terra@gnome.org>
9378
9379         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixbuf): Fix memory
9380         access error.  (#69436)
9381
9382 Fri Jul 11 14:32:43 2003  Kristian Rietveld  <kris@gtk.org>
9383
9384         Landing GtkTreeModelFilter and the completion code. (Test program
9385         and documentation will follow next week).
9386
9387         * gtk/gtkcellayout.[ch], gtk/gtkentrycompletion.[ch],
9388         gtk/gtktreemodelfilter.[ch], gtk/gtkentryprivate.h: new files.
9389
9390         * gtkentry.[ch]: added gtk_entry_{get,set}_completion, wrote
9391         necessary code to hook up completion.
9392
9393         * gtktreeviewcolumn.c: made GtkTreeViewColumn implement the new
9394         GtkCellLayout interface.
9395
9396         * gtkmarshalers.list: added BOOLEAN:OBJECT,BOXED.
9397
9398         * gtk/gtk.h, gtk/Makefile.am, po/POTFILES.in: all updated for the new
9399         source files.
9400
9401 Wed Jul  9 19:48:26 2003  Kristian Rietveld  <kris@gtk.org>
9402
9403         Merge from stable.
9404
9405         * gdk/gdkdisplay.c (gdk_display_get_window_at_pointer): don't
9406         directly return from ->window_at_pointer, but set win_x and win_y
9407         first if needed. (Fixes #110166, reported by Arno Charlet).
9408
9409         * gdk/gdkwindow.c (gdk_window_get_composite_drawable): change
9410         function to accept GdkDrawables and not just GdkWindows. This was
9411         already done in some other functions a while back, but this patch
9412         got lost for some reason.
9413
9414 2003-07-09  Matthias Clasen  <maclas@gmx.de>
9415
9416         * gtk/gtkcontainer.c (gtk_container_focus_sort_tab): Consider the text
9417         direction when sorting children.  (#116540, Soeren Sandmann)
9418
9419 Tue Jul  8 17:36:21 2003  Owen Taylor  <otaylor@redhat.com>
9420
9421         * gdk/x11/gdkasync.[ch] gdk/gdkdnd-x11.c: 
9422         Change _gdk_x11_send_xevent_async() to 
9423         _gdk_x11_send_client_message_async() avoid using Xlib
9424         internals that are different on Solaris. 
9425         (#116917, Morten Welinder)
9426
9427 2003-07-08  Matthias Clasen  <maclas@gmx.de>
9428
9429         * gtk/gtkcontainer.c (gtk_container_remove): Doc addition.
9430         (#116501, Doug Quale)
9431
9432 Tue Jul  8 21:35:22 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9433
9434         * gtk/gtktoggletoolbutton.h: remove strange #define
9435         * gtk/gtktoolbutton.h: fix cut'n'paste error
9436         * gtk/gtktoolbutton.c (gtk_tool_button_init): use instance
9437         private data
9438         * gtk/gtktoolitem.c (gtk_tool_item_class_init): use instance
9439         private data instead of g_new0()
9440         * gtk/gtktoggletoolbutton.c (gtk_toggle_tool_button_init): use
9441         instance private data
9442
9443 Tue Jul  8 21:10:14 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9444
9445         * gtk/gtkbutton.c (gtk_button_realize): remove GDK_EXPOSURE_MASK
9446         for INPUT_ONLY window
9447         * gtk/gtkmenuitem.c (gtk_menu_item_realize): same
9448         * gtk/gtknotebook.c (gtk_notebook_realize): same
9449         * gtk/gtkexpander.c (gtk_expander_realize): same
9450         * gtk/gtkrange.c (gtk_range_realize): same
9451
9452         Fix #116303
9453
9454 Tue Jul  8 19:57:14 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9455
9456         * gtk/gtkstyle.c (gtk_default_draw_arrow): remove correction on x
9457         when detail is "menuitem". With the new menu look is isn't needed
9458         anymore.
9459
9460         * gtk/gtktoolitem.c (gtk_tool_item_toolbar_reconfigured): queue a
9461         resize here, so that tool items will get a chance to relayout
9462         themselves based on the toolbar configuration.
9463
9464         change DEFAULT_SPACE_SIZE to 4 instead of 5
9465
9466         * gtk/gtktoolbar.c 
9467         Get rid of "!GTK_BIN (item)->child means separator". Separators
9468         are widgets in their own right
9469
9470         change DEFAULT_SPACE_SIZE to 4 instead of 5
9471         
9472         (get_space_size): remove this function
9473         (toolbar_item_is_homogeneous): new function
9474
9475         * gtk/gtkseparatortoolitem.c
9476         (gtk_separator_tool_item_size_request): new function.
9477
9478 Tue Jul  8 14:10:35 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9479
9480         * gtk/gtktoggletoolbutton.h: use private data, add new
9481         internal function _gtk_toggle_tool_button_get_button()
9482
9483         * gtk/gtktoolbutton.h: move to private data
9484
9485         * gtk/gtkradiotoolbutton.c, gtk/gtktoolbutton.c: updates for new
9486         private data.
9487
9488 Tue Jul  8 12:50:20 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9489
9490         * gtk/gtktoolbutton.c (gtk_tool_button_get_icon_widget): fix a
9491         type check, (#116947, Krasimir Angelov)
9492
9493         * gtk/gtktoolbar.c: Use new GtkToolItem accessors.
9494         
9495         * gtk/gtktoolitem.[ch]: Use a private struct to hold the instance
9496         data. Not instance private data yet, because of bug 116921.
9497
9498         * gtk/gtktoolitem.h: new accessors:
9499                 gtk_tool_item_get_homogeneous ()
9500                 gtk_tool_item_get_expand ()
9501                 gtk_tool_item_get_pack_end ()
9502                 gtk_tool_item_get_use_drag_window ()
9503
9504 Mon Jul  7 16:50:32 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9505
9506         * gtk/gtkcellrenderertext.c
9507         (gtk_cell_renderer_text_class_init): remove accidentally committed
9508         debugging spew
9509
9510         * gtk/gtktoolbar.c
9511         (gtk_toolbar_paint_space_line): remove this function
9512         (gtk_toolbar_expose): always propagate expose, even if the item is
9513         a separator item
9514
9515         * gtk/gtkseparatortoolitem.c
9516         (gtk_separator_tool_item_expose): moved here from gtktoolbar.c
9517         (get_space_size): new function.
9518         (get_space_style): new function
9519
9520 Sun Jul  6 13:00:20 2003  Owen Taylor  <otaylor@redhat.com>
9521
9522         * gtk/gtkdnd.c (_gtk_drag_source_handle_event)
9523         * gtk/gtkdnd.c (gtk_drag_begin_internal):  Remove use
9524         of GDK_POINTER_MOTION_HINT_MASK.
9525
9526         * gtk/gtkdnd.c (gtk_drag_update_idle): Move updating
9527         of the drag into an idle as a superior form of 
9528         expose compression.
9529
9530         * gtk/gtkdnd.c (gtk_drag_begin_internal): Move default icon
9531         creation here, so that we have an icon at the start
9532         of the drag (e.g., when retrieving the window cache
9533         information.)
9534
9535 Sun Jul  6 17:21:23 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9536
9537         * docs/widget_geometry.txt: better drawing of GtkMenuItem
9538         * docs/widget_geometry.txt: add notes about GtkMenu
9539         * gtk/gtkstyle.c: remove leftover "#include "gtkhandlebox.h""
9540
9541 Sat Jul  5 10:34:00 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9542
9543         * gtk/gtkmenu.c: add vertical_padding style property.
9544         
9545         * gtk/gtkmenuitem.c: add style properties toggle_spacing,
9546         arrow_spacing and horizontal_padding. Also center separators and
9547         make them a bit taller.
9548
9549         * gtk/*menuitem.c: use new style properties.
9550         
9551         * docs/widget_geometry.txt: Add note about GtkMenuItem
9552
9553         * gtk/gtkstyle.c 
9554         (gtk_default_draw_vline, gtk_default_draw_hline):
9555         fix +/-1 errors. 
9556
9557         (gtk_default_draw_shadow): draw a black border around menus.
9558
9559         * gtk/gtkvseparator, gtk/gtkhseparator.c, gtk/gtkmenuitem.c: fix
9560         calls to gtk_paint_hline() and gtk_paint_vline() (they take x1,
9561         x2 and y1, y2 respectively, not x, width and y, height).
9562
9563 Sat Jul  5 09:55:38 2003  Owen Taylor  <otaylor@redhat.com>
9564
9565         * gdk/x11/gdkdnd-x11.c (precache_target_list): Lookup
9566         all the atoms in the target list at once.
9567
9568         * gdk/x11/gdkdnd-x11.c (gdk_drag_get_protocol_for_display):
9569         Local drag short-circuit.
9570
9571         * gdk/x11/gdkdnd-x11.c (gdk_drag_motion): For the
9572         local case, poke the actions in directly instead of
9573         going through xdnd_set_actions.
9574
9575         * gdk/x11/gdkdnd-x11.c (xdnd_read_actions): Short-circuit
9576         the local case.
9577
9578         * gdk/x11/gdkdnd-x11.c (xdnd_manage_source_filter): Don't
9579         XSelectInput()/add a filter if the drag is local.
9580
9581         * gdk/x11/gdkdnd-x11.c (gdk_drag_get_selection): 
9582         Simplify handling of "XdndSelection".
9583
9584         * gdk/x11/gdkevents-x11.c
9585         (gdk_event_send_client_message_to_all_recurse): Somehow,  
9586         a WM_STATE => _NET_WM_STATE change hand been made here.
9587
9588         * gdk/x11/gdkproperty-x11.c (_gdk_x11_precache_atoms): Free
9589         xatom_names, not atom_names.
9590
9591         * tests/testdnd.c (target_drag_motion): Make the trashcan
9592         open again. (Got lost in deprecation cleanup.)
9593
9594 Sat Jul  5 00:49:32 2003  Owen Taylor  <otaylor@redhat.com>
9595
9596         * gtk/gtkdnd.c (gtk_drag_begin): Move the grabs up
9597         earlier, so we don't get a big pile of uncompressed
9598         motion events before the grab takes effect.
9599
9600         * gtk/gtkdnd.c (gtk_drag_update_icon): Call 
9601         gdk_window_process_all_updates() so that the area
9602         we are dragging over gets a change to redraw.
9603
9604         * gtk/gtkdnd.c (_gtk_drag_dest_handle_event): Use 
9605         gdk_window_get_position(), not gdk_window_get_origin().
9606
9607         * gdk/x11/gdkwindow-x11.[ch] (gdk_window_have_shape_ext)
9608         gdkdisplay-x11.h: use XShapeQueryExtension to 
9609         avoid duplicate XQueryExtension when we actually
9610         use it. Remove unnecessary caching in GdkDisplayX11.
9611
9612 Fri Jul  4 23:49:22 2003  Owen Taylor  <otaylor@redhat.com>
9613
9614         * gdk/x11/gdkasync.[ch] (_gdk_x11_get_window_child_info): 
9615         Function to get a range of information about all the
9616         children of a window in a single pass.
9617
9618         * gdk/x11/gdkdnd-x11.c (get_client_window_at_coords_recurse)
9619         gdk/x11/gdkdnd-x11.c (gdk_window_cache_new): Use
9620         _gdk_x11_get_window_child_info() to greatly reduce
9621         the number of roundtrips.
9622
9623 Fri Jul  4 22:57:18 2003  Owen Taylor  <otaylor@redhat.com>
9624
9625         * gdk/x11/gdkasync.[ch] (_gdk_send_xevent_async): Add
9626         a function to XSendEvent() and call a calback on
9627         failure/success.
9628
9629         * gdk/x11/gdkdnd-x11.c (xdnd_send_xevent): Short-circuit
9630         messages to the same process, use _gdk_send_xevent_async().
9631
9632 Fri Jul  4 22:26:27 2003  Owen Taylor  <otaylor@redhat.com>
9633
9634         * gdk/x11/gdkwindow-x11.[ch] gdkevents-x11.c: Split
9635         toplevel-specific pieces of GdkWindowImplX11 into
9636         a separate GdkToplevelX11 structure.
9637
9638 Fri Jul  4 22:05:09 2003  Owen Taylor  <otaylor@redhat.com>
9639
9640         * gdk/x11/gdkasync.c (struct _SetInputFocusState): Fix
9641         some leftover fields.
9642
9643 Fri Jul  4 15:57:52 2003  Owen Taylor  <otaylor@redhat.com>
9644
9645         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter):
9646         Use asynchronously _gdk_x11_set_input_focus_safe
9647         to avoid having to trap errors and XSync().
9648
9649         * gdk/x11/gdkwindow-x11.c (gdk_window_focus): Use
9650         _gdk_x11_set_input_focus_safe() here as well.
9651
9652         * gdk/x11/gdkevents-x11.c (gdk_check_wm_state_changed):
9653         Rework handling of property notifies on _NET_WM_STATE
9654         so that we ignore _NET_WM_DESKTOP notifies unless we
9655         really care.
9656
9657         * gdk/x11/gdkimage-x11.c (gdk_image_check_xshm): Use
9658         XShmQueryExtension() rather than XQueryExtension() to
9659         avoid extra rountrip.
9660
9661         * gdk/x11/gdkwindow-x11.c (_gdk_windowing_window_init):
9662         Remove unused call to XGetWindowAttributes()
9663         
9664         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Remove
9665         unused call to XGetKeyboardControl().
9666
9667         * gdk/x11/gdkdisplay-x11.c gdk/gdk.def (gdk_display_flush):
9668         Add (#99571)
9669
9670         * gdk/win32/gdkevents-win32.c gdk/linux-fb/gdkevents-fb.c 
9671         No-op implementations of gdk_display_flush().
9672
9673         * gdk/gdkwindow.c (gdk_window_process_all_updates): Use
9674         gdk_display_flush() rather than gdk_flush() to avoid
9675         XSync().
9676         
9677         * gdk/x11/gdkwindow-x11.c (update_wm_hints)
9678         gdk/x11/gdkwindow-x11.h: Centralize all handling of WM_HINTS here
9679         so that we don't have to get the property back from the server.
9680
9681         * gdk/x11/gdkwindow-x11.c (show_window_internal): Store
9682         the serial of when we map a toplevel to allow optimizing
9683         out notifies on _NET_WM_STATE/_NET_WM_DESKTOP.
9684
9685         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Don't
9686         XTranslateCoordinates() for override-redirect windows.
9687
9688 Fri Jul  4 15:59:27 2003  Owen Taylor  <otaylor@redhat.com>
9689
9690         * gdk/x11/gdkwindow-x11.c (gdk_window_set_group): Remove comment
9691         about setting window group after the window is mapped from docs
9692         - nothing the ICCCM forbids that.
9693
9694         * gdk/x11/gdkcursor-x11.c (gdk_display_get_maximal_cursor_size):
9695         Fix g_return_val_if_fail() in void return function.
9696
9697         * configure.in: Fix misplaced comma that was resulting
9698         in XShm always being disabled.
9699
9700 Fri Jul  4 19:55:49 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9701
9702         * tests/stresstest-toolbar: remove this accidentally committed
9703         file.
9704         
9705         * tests/stresstest-toolbar.c: really add this new test
9706
9707 Fri Jul  4 19:06:31 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9708
9709         * tests/stresstest-toolbar.c: new test for removing items
9710         
9711         * tests/testtoolbar.c: add a popup menu
9712
9713         * gtk/gtkcontainer.c (gtk_container_remove): add hack to avoid
9714           assert widget->parent == container when the container is a
9715           toolbar.
9716
9717         * gtk/gtktoolbar.c (gtk_toolbar_remove_tool_item): Make much
9718         simpler. Also make correct.
9719
9720         * gtk/gtktoolbar.c (gtk_toolbar_button_press): make
9721         popup_context_menu a boolean handled signal.
9722
9723 2003-07-04  Tor Lillqvist  <tml@iki.fi>
9724
9725         * gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_polygon,
9726         gdk_win32_draw_segments, gdk_win32_draw_lines): We can calculate
9727         the width and height of the bounding rectangle only after the
9728         minumum x and y have been found, and need a separate loop for
9729         it. Thanks to Bruce Hochstetler for providing a sample program
9730         exhibiting the bug.
9731
9732 2003-07-03  Tor Lillqvist  <tml@iki.fi>
9733
9734         * gdk/gdk.def: Add gdk_string_to_compound_text_for_display.
9735         (#116537, Peter Zelezny)
9736
9737 Thu Jul  3 03:13:20 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9738
9739         * gtk/gtkpaned.c (gtk_paned_set_child_property): Insert cast to
9740         fix warning. Assign something to old_value to quiet gcc
9741
9742         * gtk/gtkcalendar.c 
9743         (start_spinning): gtk_timeout_add->g_timeout_add
9744
9745         * gtk/gtkicontheme.c 
9746         (theme_lookup_icon): Make it compile (remove double semicolon)
9747
9748         * gtk/gtktoolbutton.c
9749         (gtk_tool_button_class_init): Long comment about properties.
9750         (gtk_tool_button_class_init): Improve text for "use_underline"
9751         property
9752         (gtk_tool_button_create_menu_proxy): Fix up to use_mnemonic based
9753         on whether the passed-in label has use_mnemonic set
9754         (gtk_tool_button_create_menu_proxy): Split image cloning out in
9755         new function. Make that function also handle image with pixbuf
9756         storage.
9757         (gtk_tool_button_construct_contents): Use gtk_widget_destroy()
9758         instead of gtk_container_remove().
9759         (gtk_tool_button_construct_contents): Fix eliding bug
9760
9761         * gtk/gtktoolbar.c
9762         (gtk_toolbar_finalize): New function. Unref tooltips, pointed out
9763         by Morten Welinder
9764         (gtk_toolbar_button_press): Make popup_context_menu signal provide
9765         coordinates and button number
9766
9767         * tests/testtoolbar.c (main): Add new pixbuf toolbutton
9768
9769         * tests/apple-red.png: new file
9770
9771 Wed Jul  2 18:00:56 2003  Owen Taylor  <otaylor@redhat.com>
9772          
9773         * gtk/gtkicontheme.[ch]: Implement a loader for
9774         named themed icon based on from gnome-desktop library
9775         by Alex Larsson.
9776
9777         * gtk/gtkiconthemeparser.[ch]: .ini file parsing code
9778         from gnome-desktop.
9779
9780         * gtk/gtkiconfactory.[ch]: Add
9781         gtk_icon_source_set/get_icon_name() to allow stock icons
9782         to be based off of named theme icons.
9783
9784         * gtk/gtkiconfactory.c: Rework sources so that the source
9785         is *either* a pixbuf, or a filename, or an icon name,
9786         instead of the pixbuf/filename mix it was before. Put a
9787         workaround for get_pixbuf() so that it can return the
9788         filename pixbuf, e.g, for render_icon().
9789
9790         * gtk/gtkiconfactory.c: Make the default setup use
9791         themed icons, and add builtin icons to the default
9792         icon theme for all the standard pixbufs, so we
9793         don't rely on actually having an icon theme on disk.
9794
9795         * gtk/gtkrc.c: Add support for @"icon-name" to specify
9796         a themed icon for a stock icon source.
9797
9798         * tests/Makefile.am test/testicontheme.c: Add a test
9799         program from gnome-desktop.
9800
9801         * gdk/x11/gdkevents-x11.c gtk/gtksettings.c: Add
9802         Net/IconThemeName / gtk-icon-theme-name setting.
9803
9804         * gtk/gtkiconfactory.c (ensure_cache_up_to_date): Actually
9805         update the icon cache serial so we don't continually
9806         think we are out-of-date.
9807
9808         * gtk/gtkwidget.c: Fix a couple of references in doc comments 
9809         to ::direction_set that should have been to ::direction-changed
9810
9811 Wed Jul  2 14:45:41 2003  Owen Taylor  <otaylor@redhat.com>
9812
9813         * gtk/gtktoolbar.c (gtk_toolbar_realize): Attach the
9814         style to the widget.
9815
9816 Wed Jul  2 15:42:26 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9817
9818         * gtk/gtk.h: Add new toolbar headers
9819
9820         * tests/testtoolbar.c: new file
9821
9822         * tests/Makefile.am (noinst_PROGRAMS): Add testtoolbar.c
9823
9824         * gtk/gtkexpander.c (gtk_expander_class_init): Make it compile
9825
9826 Tue Jul  1 22:49:25 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9827
9828         * gtk/gtktoolbar.c:
9829         (gtk_toolbar_remove_tool_item): Fix bug where list is changed
9830         inside a for loop (pointed out by Morten Welinder).
9831         (gtk_toolbar_focus_home_or_end): Minor formatting change
9832
9833         Comments from Owen:
9834
9835         * gtk/gtktoolbutton.c: remove copy of elide_underscores(). Use
9836         gtk_toolbar_elide_underscores instead.
9837
9838         * gtk/gtktoolbar.c: rename signal from focus_ends to
9839         focus_home_or_end.
9840         (_gtk_toolbar_elide_underscores): export this as an internal
9841         function.
9842         (gtk_toolbar_move_focus): add comment explaining difference to
9843         gtk_toolbar_focus();
9844         (gtk_toolbar_list_children_in_focus_order): Make TAB_FORWARD and
9845         TAB_BACKWARD focus the right widgets in RTL mode
9846
9847         * gtk/gtktoolbutton.c (gtk_tool_button_new): Change to take
9848         "label" and "icon" parameters
9849
9850         * gtk/gtktoolbutton.[ch]: remove icon_set property.
9851
9852 2003-07-01  Matthias Clasen  <maclas@gmx.de>
9853
9854         * gtk/gtkspinbutton.c (gtk_spin_button_set_digits): Improve docs.
9855         (116364, Morten Welinder) 
9856
9857         * tests/testgtk.c: Use GtkFontButton and GtkColorButton to bring up the
9858         corresponding dialogs.
9859
9860         * gtk/Makefile.am (gtk_public_h_sources): Add gtkfontbutton.h,
9861         gtkcolorbutton.h.  
9862         (gtk_c_sources): Add gtkfontbutton.c, gtkcolorbutton.c. 
9863
9864         * gtk/gtkfontbutton.[hc]: New files containing a font picker widget. 
9865
9866         * gtk/gtkcolorbutton.[hc]: New files containing a color picker widget. 
9867
9868         * gtk/gtk.h: Include gtkexpander.h, gtkfontbutton.h, gtkcolorbutton.h.
9869
9870         * gtk/gtkexpander.c: Small additions to the docs. 
9871
9872 2003-07-01  Tor Lillqvist  <tml@iki.fi>
9873
9874         * gdk/win32/gdkwindow-win32.c (_gdk_windowing_window_get_pointer):
9875         WindowFromPoint() wants screen coordinates (#115422, Tim Evans).
9876
9877 2003-07-01  Matthias Clasen  <maclas@gmx.de>
9878
9879         * configure.in: Check for Xcursor.
9880         
9881         * gdk/x11/gdkcursor-x11.c:
9882         * gdk/gdkdisplay.h: 
9883         * gdk/gdkcursor.h: RGBA cursor support based on Xcursor. New functions:
9884         gdk_cursor_new_from_pixbuf(), gdk_display_supports_cursor_alpha(), 
9885         gdk_display_supports_cursor_color(),
9886         gdk_display_get_default_cursor_size() and 
9887         gdk_display_get_maximal_cursor_size().  (#69436)
9888
9889 2003-06-30  Tor Lillqvist  <tml@iki.fi>
9890
9891         * gdk/win32/gdkdnd-win32.c (find_window_enum_proc): New function,
9892         callback proc for EnumWindows().
9893         (gdk_drag_find_window_for_screen): Actually take the drag_window
9894         argument into account: Instead of using WindowFromPoint(), use
9895         EnumWindows(), to be able to skip the drag_window. (#116320, Tony
9896         M Brown, Herman Bloggs)
9897
9898         * gdk/win32/*.c: Replace gdk_drawable_ref()/unref() and
9899         gdk_window_ref()/unref() calls with g_object_ref()/unref().
9900         Consistently use %p format in debugging output of pointers and
9901         HANDLEs.
9902
9903 2003-06-30  Mark McLoughlin  <mark@skynet.ie>
9904
9905         * gtk/gtkexpander.h: kill some stray characters
9906         breaking the build.
9907
9908 2003-06-30  Mark McLoughlin  <mark@skynet.ie>
9909
9910         Add GtkExpander. See discussion in bug #60553.
9911
9912         * gtk/gtkexpander.[ch]: add.
9913         
9914         * gtk/Makefile.am: build gtk-expander.[ch].
9915         
9916         * docs/widget_geometry.txt: add info on the layout
9917         of GtkExpander.
9918
9919 Mon Jun 30 01:20:19 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9920
9921         * gtkradiotoolbutton.c:         new file
9922         * gtkradiotoolbutton.h:            "
9923         * gtktoggletoolbutton.c:           "
9924         * gtktoggletoolbutton.h:           "
9925         * gtktoolbutton.c:                 "
9926         * gtktoolbutton.h:                 "
9927         * gtktoolitem.c:                   "
9928         * gtktoolitem.h:                   "
9929         * gtktoolbar.c: many changes
9930         * gtktoolbar.h: many changes
9931         * gtkseparatortoolitem.c:       new file
9932         * gtkseparatortoolitem.h           "
9933
9934         New toolbar.
9935         
9936         - Items on a toolbar are now separate widgets, instances of a
9937           subclass of GtkToolItem.
9938
9939         - Items there aren't room for on the toolbar are unmapped, and an
9940           overflow menu with a proxy menu item is added instead.
9941
9942         - The toolbar is keyboard navigatable. Press TAB to focus the
9943           first item, then use arrow keys and Ctrl TAB to move around the
9944           toolbar. TAB moves focus out of the toolbar.
9945
9946         - Bascially all of the old toolbar API is deprecated in favor of
9947           new API in gtktoolbar.h, gtktoolitem.h, gtktoolbutton.h
9948
9949         - The toolbar is backwards compatible with the old toolbar.
9950
9951 2003-06-29  Matthias Clasen  <maclas@gmx.de>
9952
9953         * gtk/gtkwidget.c (gtk_widget_class_init): Remove a duplicate parameter
9954         from docs, some more formatting fixes. 
9955
9956 2003-06-28  Tor Lillqvist  <tml@iki.fi>
9957
9958         Fix for #111028, thanks to J. Ali Harlow, who writes:
9959         I found that the GdkPixmap->GdkImage reference really isn't
9960         important. It's only really there to have somewhere convenient to
9961         store the location of the pixel data in the pixmap and as an easy
9962         way of accessing the dimensions of that data. I have therefore put
9963         together a fix which removes this reference entirely which seems
9964         to solve the problem.
9965
9966         * gdk/win32/gdkpixmap-win32.h (struct _GdkPixmapImplWin32):
9967         Instead of a pointer to a GdkImage, keep a pointer to the pixels
9968         directly.
9969
9970         * gdk/win32/gdkimage-win32.c (_gdk_win32_setup_pixmap_image): Remove.
9971         (_gdk_win32_new_image): New function, replacing the above. Creates
9972         a GdkImage without any associated GdkPixmap.
9973         (gdk_image_new_bitmap, _gdk_image_new_for_depth): Use it instead.
9974
9975         * gdk/win32/gdkprivate-win32.h: Remove from here, too.
9976
9977         * gdk/win32/gdkcursor-win32.c (gdk_cursor_new_from_pixmap)
9978         * gdk/win32/gdkdrawable-win32.c (blit_from_pixmap)
9979         * gdk/win32/gdkgc-win32.c (_gdk_win32_bitmap_to_hrgn)
9980         * gdk/win32/gdkmain-win32.c (_gdk_win32_drawable_description):
9981         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_impl_win32_finalize,
9982         gdk_pixmap_new, gdk_bitmap_create_from_data, gdk_pixmap_foreign_new)
9983         Corresponding changes.
9984
9985 Thu Jun 26 21:41:16 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
9986
9987         * gtk/gtktreeviewcolumn.c
9988         (gtk_tree_view_column_cell_set_cell_data): only set "is_expander"
9989         and "is_expanded" if the new value is different fromt he old one.
9990
9991 Wed Jun 25 18:59:15 BST 2003  Tony Gale <gale@gtk.org>
9992
9993         * docs/faq/gtk-faq.sgml: Fix typos. Update
9994         thread example I missed yesterday.
9995
9996 2003-06-24  Matthias Clasen  <maclas@gmx.de>
9997
9998         * gtk/gtkspinbutton.c (gtk_spin_button_class_init): Add a blurb for
9999         shadow_type. 
10000
10001         * gtk/gtkwidget.c (gtk_widget_class_install_style_property_parser): 
10002         (gtk_widget_class_list_style_properties): Use same parameter names as in  
10003         header (to silence gtk-doc).
10004
10005         * gtk/gtkalignment.c (gtk_alignment_[gs]et_padding): Fix doc comments.
10006
10007 Tue Jun 24 20:00:45 BST 2003  Tony Gale <gale@gtk.org>
10008
10009         * docs/faq/gtk-faq.sgml: Thread support updates
10010         from Owen. Various suggestions from Steve Chaplin.
10011
10012 2003-03-24  Mohammad DAMT  <mdamt@bisnisweb.com>
10013
10014         * po/id.po: Updated Indonesian translation
10015
10016 2003-06-21  Tor Lillqvist  <tml@iki.fi>
10017
10018         * gdk/win32/gdkevents-win32.c (gdk_event_translate): When
10019         emulating X11's automatic grab on button down, pass owner_events
10020         as FALSE. According to the XLib spec, automatic grabs use True for
10021         owner_events when OwnerGrabButtonMask is selected, and I don't see
10022         the X11 backend doing that. (#82497, #91619, #92835, #107322, #110271)
10023         (find_window_for_pointer_event): Improve debugging output.
10024
10025 2003-06-17  Tor Lillqvist  <tml@iki.fi>
10026
10027         * gtk-zip.sh.in (DLLDIR): Look for DLLs also in the bin
10028         subdirectory, where libtool 1.5 installs them.
10029
10030         * README.win32: Point to FSF's binary Win32 distribution of
10031         gettext-runtime.
10032
10033 2003-06-17  Matthias Clasen  <maclas@gmx.de>
10034
10035         * acinclude.m4 (JH_PATH_XML_CATALOG, JH_CHECK_XML_CATALOG): New
10036         macros to check for XML catalog contents and path, borrowed from
10037         gtk-doc. 
10038         * configure.in: New option --enable-man to enable regeneration of
10039         man pages from Docbook, if the necessary tools are found.
10040
10041 2003-06-15  Matthias Clasen  <maclas@gmx.de>
10042
10043         * gtk/gtkcalendar.c (gtk_calendar_class_init): 
10044         * gtk/gtknotebook.c (gtk_notebook_class_init): 
10045         * gtk/gtkalignment.c (gtk_alignment_class_init): 
10046         * gtk/gtkpaned.c (gtk_paned_class_init): Document new properties
10047         as 2.4 additions.
10048
10049         * gtk/gtkwidget.c (gtk_widget_class_init): Move inline signal docs 
10050         to the proper place, immediately before the g_signal_new() call.
10051
10052         * gtk/gtktextiter.h: Make the flags-nature of GtkTextSearchFlags 
10053         more obvious.  (#115122, Jeff Franks)
10054
10055 2003-06-12  Anders Carlsson  <andersca@codefactory.se>
10056
10057         * gtk/gtkwidget.c: (event_window_is_still_viewable):
10058         Special case pixmaps. (#114880)
10059         
10060 2003-06-12  Matthias Clasen  <maclas@gmx.de>
10061
10062         * gtk/gtkwidget.c: Document child-notify and drag-data-received
10063         signals. Owen, we need to figure out where the best place for
10064         these comments in the source is. I currently put them in front of
10065         the signals enum.
10066
10067 2003-06-11  Matthias Clasen  <maclas@gmx.de>
10068
10069         * gtk/gtkdnd.c (gtk_drag_check_threshold): s/threshhold/threshold/.
10070
10071 Thu Jan 12 01:01:19 2003  Kristian Rietveld  <kris@gtk.org>
10072
10073         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
10074         silly typo fix. s/seperator/separator/. This gets rid of the
10075         assert spam when using TreeView.
10076
10077 Tue Jun 10 11:23:48 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
10078
10079         * modules/input/gtkimcontextxim.c (xim_instantiate_callback): New
10080         function for XIM instantiate callback.
10081         * modules/input/gtkimcontextxim.c (xim_info_try_im): New function
10082         where call to XOpenIM() or XRegisterIMInstantiateCallback() is
10083         actually made.
10084         * modules/input/gtkimcontextxim.c (xim_destroy_callback): New function
10085         for XIM's destroy callback.
10086         * modules/input/gtkimcontextxim.c (get_im): add a check if info->im 
10087         is set or not - if it's not set, call xim_info_try_im() to try to
10088         initiaize it.
10089         * modules/input/gtkimcontextxim.c (reinitialize_ic): reset
10090         filter_key_release flag of the context.
10091         * modules/input/gtkimcontextxim.c (get_ic_real): removed
10092         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_get_ic): move
10093         code from the removed get_ic_real().
10094
10095         For XIM instantiation, destruction and re-instantiation. With
10096         this, Gtk+ apps will be able to connect or reconnect to the XIM,
10097         when it starts after the apps, or when the XIM gets lost and recover.
10098         (#113099, #107782).
10099
10100 Mon Jun 10 01:12:31 2003  Kristian Rietveld  <kris@gtk.org>
10101
10102         Merged from stable.
10103
10104         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_get_size):
10105         check if width is !null, not *width. Doh.
10106
10107 Tue Jun 10 01:09:33 2003  Kristian Rietveld  <kris@gtk.org>
10108
10109         Merged from stable.
10110
10111         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
10112         Remove the weird dx logic, get all cell_area and background_area
10113         calculations right. Not sure what was up with it before. (Fixes
10114         #110989, testcase from Vasco Alexandre da Silva Costa).
10115
10116 Tue Jun 10 00:58:23 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
10117
10118         * tests/testgtk.c: Make it compile with C89 compilers
10119
10120 2003-06-10  Matthias Clasen  <maclas@gmx.de>
10121
10122         * gtk/gtktextview.c (gtk_text_view_class_init): Install boolean
10123         property "overwrite".
10124         (gtk_text_view_[gs]et_property): Handle "overwrite".
10125         * gtk/gtktextview.[hc] (gtk_text_view_[gs]et_overwrite): Getter
10126         and setter for "overwrite" property.  (#110241, Jeroen Zwartepoorte)
10127
10128 2003-06-09  Matthias Clasen  <maclas@gmx.de>
10129
10130         * gtk/gtkpaned.c (gtk_paned_class_init): Install boolean child
10131         properties "resize" and "shrink".
10132         (gtk_paned_[gs]et_child_property): Implementations of 
10133         GtkContainer::[gs]et_child_property.  
10134         * tests/testgtk.c (toggle_resize, toggle_shrink): Use the new
10135         paned child properties instead of remove/add hacks.  (#114667, 
10136         Soeren Sandmann) 
10137
10138 Mon Jun  9 16:18:11 2003  Owen Taylor  <otaylor@redhat.com>
10139
10140         * gtk/gtknotebook.c (gtk_notebook_button_press): Back
10141         out event->window test - it wasn't needed because
10142         of the call to get_widget_coordinates().
10143
10144         * gtk/gtknotebook.c (gtk_notebook_button_press): Remove
10145         call to gtk_widget_grab_focus() when not clicking on
10146         any tabs. (Real fix for #114534)
10147
10148 Sun Jun  8 22:03:09 2003  Owen Taylor  <otaylor@redhat.com>
10149
10150         * tests/testdnd.c: Use application/x-rootwindow-drop for
10151         root window drops. (#108670, Alex Larsson)
10152
10153         * gdk/x11/gdkdnd-x11.c (gdk_drag_motion) gtk/gtkdnd.c (gtk_drag_drop): 
10154         Accept either application/x-rootwin-drop (what GTK+ has always used)
10155         or application/x-rootwindow-drop (what the XDND standard specifies).
10156
10157 Fri Jun  6 11:07:33 2003  Owen Taylor  <otaylor@redhat.com>
10158
10159         * gtk/gtkwidget.c (event_window_still_viewable): 
10160         Before delivering an event to a widget, check that
10161         (if relevant), the event's window is still viewable.
10162         (#105642, Dennis Björklund)
10163
10164         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): 
10165         NULL out private->parent, since after destruction
10166         it might not be valid any more.
10167
10168         * gdk/gdkwindow.c (gdk_window_is_viewable): Fix some
10169         accesses before g_return_val_if_fail(). Treat 
10170         DESTROYED windows as unmapped.
10171
10172 Thu Jun  5 09:28:03 2003  Owen Taylor  <otaylor@redhat.com>
10173
10174         * gtk/gtkentry.c: Recompute unconditionally in
10175         gtk_entry_style_set, and in a new gtk_label_screen_changed().
10176         Protect the guts of recompute_idle_func() with
10177         gtk_widget_has_screen(). (#114040, Morten Welinder) 
10178         Fix FALSE/0 confusion.
10179         
10180 Sun Jun  8 18:27:14 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
10181
10182         * gdk/gdkpixbuf-drawable.c (G8fromRGB565): swap G and B.
10183         Fixes (#114669)
10184
10185 Sun Jun  8 11:27:29 2003  Owen Taylor  <otaylor@redhat.com>
10186
10187         * gtk/gtkviewport.c (viewport_set_adjustment): Fix bug with 
10188         set_adjustment (viewport, NULL);
10189
10190 2003-06-07  Matthias Clasen  <maclas@gmx.de>
10191
10192         * gtk/gtkiconfactory.c (get_default_icons): 
10193         * gtk/stock-icons/stock_{undo,redo,undelete,revert}_rtl_{16,24}.png:
10194         * gtk/stock-icons/Makefile.am: Add rtl variants of undo, redo,
10195         undelete and revert.  (#96633)
10196         
10197 Fri Jun  6 16:25:44 2003  Owen Taylor  <otaylor@redhat.com>
10198
10199         * gtk/gtkviewport.c: Many fixes, along with extensive cleanups and 
10200         refactoring of code to reduce duplication; fixes include:
10201
10202         - gtk_viewport_realize(): Position the window correct from adjustment 
10203         values. (#110737, Michael Natterer)
10204
10205         - Remove some division-by-zero checks in places where there is no 
10206         longer division. (#110737)
10207
10208         - gtk_viewport_class_init: Make the hadjustment/vadjustment properties 
10209         G_PARAM_CONSTRUCT, so that there will always be adjustments, even 
10210         if gtk_viewport_new isn't used (#101135, Thomas Leonard).
10211
10212         - Switch over to encapsulated lazy-creation for hadjustment/
10213         vadjustment; even with the CONSTRUCT property, we need this after
10214         destroy.
10215
10216         - When updating the adjustment, immediate set their values to
10217         match the the current range of the viewport, and update the 
10218         viewport position to match the value of the new adjustments. 
10219         (Part of #1165)
10220
10221 2003-06-06  Tor Lillqvist  <tml@iki.fi>
10222
10223         * gdk/win32/gdkprivate-win32.h: Fix typo.
10224
10225         * gdk/win32/gdkgc-win32.c (_gdk_win32_gc_new): Set
10226         graphics_exposures and subwindow_mode, too, even if they aren't
10227         currently used.
10228
10229 Fri Jun  6 23:38:23 2003  Kristian Rietveld  <kris@gtk.org>
10230
10231         Merged from stable.
10232
10233         * gtk/gtktreeview.c (do_expand_collapse),
10234         (expand_collapse_timeout), (cancel_arrow_animation): made
10235         expand_collapse_timeout a wrapper with locks around     
10236         do_expand_collapse, made cancel_arrow_animation use
10237         do_expand_collapse. Fixes threadlock. (Fixes #111286, patch from
10238         Peter Bloomfield).
10239
10240 Fri Jun  6 11:05:45 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
10241
10242         * modules/input/gtkimcontextxim.h (struct _GtkIMContextXIM):
10243         * modules/input/gtkimcontextxim.c (preedit_start_callback,
10244         preedit_draw_callback, preedit_done_callback): Add a 'finalizing' flag 
10245         to keep preedit-[start,changed,end] signals from being called during
10246         finalization (#111861).
10247
10248 2003-06-05  Noah Levitt  <nlevitt@columbia.edu>
10249
10250         * gtk/gtknotebook.c (gtk_notebook_button_press): Ignore button
10251         presses that are not on the tab (#114534).
10252
10253 Thu Jun  5 20:35:40 2003  Owen Taylor  <otaylor@redhat.com>
10254
10255         * demos/Makefile.am: Conditionalize dependencies for
10256         gdk-pixbuf-csource on cross-compilation (#112391, J. Ali Harlow). 
10257         Buildtest-inline-pixbufs.h in srcdir. Don't try to build 
10258         test-inline-pixbufs.h if we don't have libpng.
10259
10260         * gtk/stock-icons/Makefile.am (gtkstockpixbufs.h): 
10261         Add a dependency on gdk-pixbuf.loaders when not 
10262         cross-compiling, remove the dependency on gdk-pixbuf-csource
10263         when not cross compiling.
10264
10265 Thu Jun  5 20:12:51 2003  Owen Taylor  <otaylor@redhat.com>
10266
10267         * gtk/gtkwindow.c (gtk_window_get_default_size): Handle
10268         gtk_window_get_geometry_info() returning NULL.
10269         (#107311, John Finlay)
10270
10271 Thu Jun  5 19:24:33 2003  Owen Taylor  <otaylor@redhat.com>
10272
10273         * gtk/gtktoolbar.c (gtk_toolbar_expose): Subtract off
10274         twice the border width from the width/height, not
10275         1x the border width. (#106336, Rodney Dawes)
10276
10277 Thu Jun  5 15:33:38 2003  Owen Taylor  <otaylor@redhat.com>
10278  
10279         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
10280         If at the end of the buffer, move to the end iter -
10281         parallels behavior of move_iter_to_previous_line.
10282         (#81960, Padraig O'Briain)
10283  
10284 Thu Jun  5 16:12:54 2003  Owen Taylor  <otaylor@redhat.com>
10285
10286         #80023, Yao Zhang, TOKUNAGA Hiroyuki
10287
10288         * gtk/gtktextlayout.c (gtk_text_layout_get_cursor_locations):
10289         Account for the preedit cursor offset if the iter passed
10290         in is at the same place as the insertion cursor.
10291
10292         * gtk/gtktextview.c (gtk_text_view_get_cursor_location):
10293         Encapsulate getting the insertion cursor location.
10294
10295         * gtk/gtktextview.c (gtk_text_view_update_im_spot_location):
10296         Pass the real y/height to the IM context. Take 
10297         text_view->x/yoffset into account.
10298
10299 Thu Jun  5 16:52:54 2003  Owen Taylor  <otaylor@redhat.com>
10300
10301         * gtk/gtktextview.[ch]: Never scroll on focus in
10302         (#81893, Patch from Paolo Maggi)
10303
10304         * gtk/gtktextview.c (gtk_text_view_scroll_[h]pages): 
10305         Scroll to the current cursor location before handling
10306         the action, in case the user just tabbed in
10307         and the cursor is offscreen.
10308
10309 Thu Jun  5 17:20:40 2003  Owen Taylor  <otaylor@redhat.com>
10310          
10311          #107883, Gustavo Giráldez
10312
10313         * gtk/gtktextlayout.c (gtk_text_layout_emit_changed):
10314         Split out the case where we know we changed, and 
10315         already dealt with our cached line being invalidated
10316         from external calls to gtk_text_layout_changed.
10317
10318         * gtk/gtktextlayout.c (gtk_text_layout_changed):
10319         Check if the invalidate yrange intersects our
10320         cached line, and clear it if necessary.
10321
10322 2003-06-05  Tor Lillqvist  <tml@iki.fi>
10323
10324         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle global
10325         filters.
10326
10327 2003-06-05  Matthias Clasen  <maclas@gmx.de>
10328
10329         * gtk/gtktextview.c: Fix for #84668, reported by Torbjrn Andersson:
10330         (gtk_text_view_grab_notify): 
10331         (gtk_text_view_state_changed): Implement these
10332         to unobscure cursor when grab shadowed or insensitised.
10333         (gtk_text_view_unobscure_mouse_cursor): New function to undo the
10334         effect of gtk_text_view_obscure_mouse_cursor(). Code lifted from
10335         gtk_text_view_motion_event().
10336         (gtk_text_view_motion_event): Use gtk_text_view_obscure_mouse_cursor().
10337
10338         * gtk/gtktextview.c (select_all): New keybinding signal for
10339         (un)selecting the whole buffer. Bound to C-a/C-\.  (see #107889)
10340
10341         * gtk/gtkcalendar.c (calendar_timer): 
10342         (stop_spinning): Replace deprecated gtk_timeout_* functions by
10343         their GLib counterparts.  (#114429)
10344
10345         * gtk/gtktreestore.c (gtk_tree_store_new): 
10346         * gtk/gtkliststore.c (gtk_list_store_new): Document restriction on 
10347         types.
10348
10349 Wed Jun  4 19:42:17 2003  Owen Taylor  <otaylor@redhat.com>
10350
10351         * gdk/gdkpango.c (gdk_draw_layout_line_with_colors):
10352         When drawing underlines, join up adjacent runs
10353         where possible, so we don't get changes in 
10354         shaper/font/etc. breaking underlines. (#103662,
10355         Kang Jeong-Hee)
10356
10357 Wed Jun  4 19:22:58 2003  Jonathan Blandford  <jrb@redhat.com>
10358
10359         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_level_find_insert):
10360         Slightly modified patch from Owen Taylor <otaylor@redhat.com> to
10361         improve the speed of inserting rows into an already sorted list,
10362         #109292
10363
10364 Wed Jun  4 19:24:28 2003  Owen Taylor  <otaylor@redhat.com>
10365
10366         * gdk/x11/gdkgc-x11.c gdk/x11/gdkprivate-x11.h: Keep
10367         track of when we have a clip mask set for the GC,
10368         and when we unset it, or switch to a clip region,
10369         immediately call XSetClipMask (..., None) to avoid
10370         Xlib caching stale data. (#111806)
10371
10372         * gtk/gtktextdisplay.c: Don't set a clip mask
10373         when drawing alpha pixmaps; it isn't necessary any more.
10374         (#111806)
10375
10376 Wed Jun  4 18:27:44 2003  Owen Taylor  <otaylor@redhat.com>
10377
10378         * gtk/gtkcheckbutton.c (gtk_real_check_button_draw_indicator): 
10379         gtk/gtkradiobutton.c (gtk_radio_button_draw_indicator): 
10380         Use GTK_WIDGET_IS_SENSITIVE(), not GTK_WIDGET_SENSITIVE
10381         (#92548, Tim Evans)
10382
10383         * gtk/gtkcheckmenuitem.c (gtk_real_check_menu_item_draw_indicator)
10384         gtk/gtkradiomenuitem.c (gtk_radio_menu_item_draw_indicator): If
10385         Use state_type = STATE_INSENSITIVE for insensitive menu items.
10386
10387 Wed Jun  4 21:25:35 2003  Kristian Rietveld  <kris@gtk.org>
10388
10389         Merged from stable.
10390
10391         * gtk/gtktreeview.c (gtk_tree_view_drag_begin): use a silent
10392         assert for get_info. (reported by Michael Natterer),
10393         (gtk_tree_view_expand_all_emission_helper),
10394         (gtk_tree_view_expand_all_helper): emit row_expanded for all
10395         expanded rows during an _expand_all operation. (Fixes #111280,
10396         reported by Benjamin Bayart).
10397
10398 Tue Jun  3 18:32:30 2003  Owen Taylor  <otaylor@redhat.com>
10399
10400         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter): Don't
10401         respond to pings on a root window; prevents infinite
10402         loops if we are selecting for SubstructureNotify on the
10403         root window. (#111945, Sergey V. Udaltsov)
10404
10405 Tue Jun  3 17:39:16 2003  Owen Taylor  <otaylor@redhat.com>
10406
10407         #71597, reported by Morten Welinder
10408
10409         * gdk/gdkpixbuf-drawable.c (rgb888amsb): Fix and simplify
10410         (Patch from Christian Petig)
10411
10412         * gdk/gdkpixbuf-drawable.c (rgb{555,565}{a,}{msb,lsb}):
10413         Major rewrite of 555 and 565 conversion routines:
10414
10415         - Move all the bit shifting into a small block of macros,
10416           eliminating much duplication of complicated arithmetic.
10417         - Get rid of 2-pixels at a time code, which was buggy,
10418           hard to maintain, caused unaligned accesses, and
10419           probably didn't actually perform any better.
10420         - Simplify cases where different data types were
10421           used for the little and big endian cases, use
10422           GUINT16_SWAP_LE_BE() where appropriate.
10423                 
10424 Tue Jun  3 15:05:47 2003  Owen Taylor  <otaylor@redhat.com>
10425
10426         * gdk/x11/gdkdrawable-x11.c (convert_to_format): Remove
10427         bad optimization for src_rowstride == dest_stride.
10428         (Didn't consider the case where we were copying only
10429         partial widths of a wider source buffer)
10430         (#113034, reported by Hans Petter Jansson)
10431
10432 2003-06-03  Michael Natterer  <mitch@gimp.org>
10433
10434         * gdk/x11/gdkinput-x11.c (_gdk_input_common_find_events):
10435         reenabled button_release events for xinput devices. (#113948)
10436
10437 2003-06-03  Christian Rose  <menthos@menthos.com>
10438
10439         * configure.in: Added "li" to ALL_LINGUAS.
10440
10441 Mon Jun  2 18:58:54 2003  Owen Taylor  <otaylor@redhat.com>
10442
10443         * gtk/gtknotebook.c (gtk_notebook_size_allocate): Don't
10444         map the event window if the notebook isn't mapped. (#113980,
10445         Richard Reich)
10446
10447 2003-06-02  Sven Neumann  <sven@gimp.org>
10448
10449         * gtk/gtkprogress.c (gtk_progress_changed): added a missing cast.
10450
10451         * gdk/gdkrgb.c (gdk_rgb_try_colormap): removed an unused variable.
10452
10453 2003-06-01  Matthias Clasen  <maclas@gmx.de>
10454
10455         * gtk/gtkalignment.c (gtk_alignment_[gs]et_padding): Add 
10456         Since: 2.4 to the docs.
10457
10458         * gtk/gtkwindow.c (gtk_window_parse_geometry): Add some hints and
10459         an example to the docs.  (#98427)
10460
10461 2003-05-30  Murray Cumming  <murrayc@usa.net>
10462
10463         * gtk/gtkalignment.[h|c]: Added 4-sided padding as properties with
10464         gtk_alignment_get_padding() and gtk_aligment_set_padding(). This
10465         uses the new private data system - see g_type_class_add_private() in
10466         gtk_alignment_class_init() and the use of GTK_ALIGNMENT_GET_PRIVATE().
10467
10468 2003-05-30  Matthias Clasen  <maclas@gmx.de>
10469         
10470         * gtk/gtknotebook.c: Changed guint to GtkNotebookArrow in the
10471         signature of gtk_notebook_draw_arrow() for Solaris builds to go
10472         through.  (#114043, Anand Subramanian)
10473
10474 Thu May 29 18:30:35 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
10475
10476         * modules/input/imipa.c: 
10477         use GETTEXT_PACKAGE to get a translation for "ipa"(#113850).
10478
10479 Thu May 29 18:08:01 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
10480
10481         * gtk/gtkimmodule.c (_gtk_im_module_list):
10482         use GETTEXT_PACKAGE to get a translation for "Default"(#113850).
10483
10484 Thu May 29 09:34:05 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
10485
10486         * gtk/gtkimmodule.c (_gtk_im_module_list): make "Default"
10487         label of default input method localizable.
10488         * gtk/gtkimmulticontext.c (gtk_im_multicontext_append_menuitems): 
10489         use translations of input method context names
10490         * modules/input/imam-et.c, modules/input/imcyrillic-translit.c,
10491           modules/input/iminuktitut.c, modules/input/imthai-broken.c,
10492           modules/input/imti-er.c, modules/input/imti-et.c
10493           modules/input/imviqr.c, modules/input/imxim.c
10494         use GETTEXT_PACKAGE instead of "gtk+" for domain name.
10495         (#113850).
10496
10497 Thu May 29 18:23:01 2003  Kristian Rietveld  <kris@gtk.org>
10498
10499         Merged from stable.
10500
10501         * gtk/gtktreeview.c (gtk_tree_view_button_press): put the focus
10502         grab separate, the user might clear the tree in the focus-in
10503         callback. (Fixes #113086, testcase from Felipe Heidrich).
10504
10505 Thu May 29 18:06:26 2003  Kristian Rietveld  <kris@gtk.org>
10506
10507         Merged from stable.
10508
10509         * gtk/gtktreeview.c (gtk_tree_model_set_model): reset a bunch
10510         of row reference when we unset the model. Also reset
10511         dy and top_row_dy. (Fixes #109289, patch from Owen Taylor).
10512
10513 Thu May 29 17:12:19 2003  Kristian Rietveld  <kris@gtk.org>
10514
10515         Merged from stable.
10516
10517         * gtk/gtktreeview.c (gtk_tree_view_set_cursor_on_cell): cancel
10518         the current editing, if it exists. (Fixes #108956, reported by
10519         Michael Natterer).
10520
10521 Thu May 29 17:06:09 2003  Kristian Rietveld  <kris@gtk.org>
10522
10523         Merged from stable.
10524
10525         * gtk/gtktreeview.c (check_selection_helper): new function,
10526         (gtk_tree_view_row_deleted): traverse the tree from the
10527         deleted node to see whether the selection changed, instead of
10528         just checking this node. (Fixes #107400, reported by 'Duncan').
10529
10530 Thu May 29 16:31:34 2003  Kristian Rietveld  <kris@gtk.org>
10531
10532         Merged from stable.
10533
10534         * gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row),
10535         (gtk_tree_view_drag_begin): set the DnD icon in _drag_begin
10536         instead of _maybe_begin_dragging_row, so the icon can be
10537         overridden by apps. (Fixes #104374, patch from Daniel Elstner).
10538
10539 Thu May 29 16:14:04 2003  Kristian Rietveld  <kris@gtk.org>
10540
10541         Merged from stable.
10542
10543         * gtk/gtktreeview.c (gtk_tree_view_start_editing): correct
10544         cell_area x/width for the expander if needed. (Fixes #101748,
10545         reported by Dave Cook and Mariano Suarez-Alvarez).
10546
10547 Thu May 29 16:01:38 2003  Kristian Rietveld  <kris@gtk.org>
10548
10549         Merged from stable.
10550
10551         * gtk/gtktreeview.c (gtk_tree_view_real_set_cursor): check
10552         if tree/node are still the same after _internal_select_node.
10553         (Fixes #92256, reported by edscott).
10554
10555 Thu May 29 15:38:30 2003  Kristian Rietveld  <kris@gtk.org>
10556
10557         Fixes #75745, reported by Richard Hult. Merged from stable.
10558
10559         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): set/unset
10560         GTK_CELL_RENDERER_FOCUSED flag whether the current node is the
10561         cursor or not.
10562
10563         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
10564         if we are rendering a cursor row, and the cell the be
10565         processed has focus, then set the GTK_CELL_RENDERER_FOCUSED
10566         flag (else we unset it).
10567
10568 2003-05-27  Matthias Clasen  <maclas@gmx.de>
10569
10570         * gtk/gtkwindow-decorate.c: 
10571         * gtk/gtktreeprivate.h: 
10572         * gtk/gtkdnd.c: 
10573         * gdk/win32/gdkwindow-win32.h: 
10574         * gdk/linux-fb/gdkprivate-fb.h: 
10575         * gdk/linux-fb/gdkkeyboard-fb.c: Remove dubious bitfields of
10576         unspecified signedness.  (#112919, Morten Welinder)
10577
10578         * gtk/queryimmodules.c (escape_string): 
10579         * gtk/gtktextbtree.c (_gtk_text_btree_get_text): 
10580         * gtk/gtksettings.c (_gtk_settings_parse_convert): 
10581         * gtk/gtkrc.c (gtk_rc_parse_assignment): 
10582         * gtk/gtkinputdialog.c (gtk_input_dialog_set_key): 
10583         * gdk/x11/gdkdisplay-x11.c (escape_for_xmessage): Replace all 
10584         occurances of g_string_new ("") by g_string_new (NULL). (#106975,
10585         Morten Welinder) 
10586
10587 2003-05-27  Tor Lillqvist  <tml@iki.fi>
10588
10589         * gtk-zip.sh.in: Only include the Default and Emacs themes' gtkrc
10590         files. Include share/gtk-doc/{gdk-pixbuf,gdk,gtk}.
10591
10592         * gdk/Makefile.am: libgdk-win32-2.0.la depends on
10593         win32/libgdk-win32.la.
10594
10595         * gtk/gtk.def: Add gtk_tree_view_column_cell_get_position.
10596
10597 Sat May 24 22:19:13 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
10598
10599         * gtk/gtkscrollbar.c (gtk_scrollbar_class_init): Make the minimum
10600         scrollbar slider length 21 instead of 7.
10601
10602 2003-05-23  Matthias Clasen  <maclas@gmx.de>
10603
10604         * gtk/gtknotebook.c: Add support for up to four scroll
10605         arrows. Control their display by new style properties
10606         "has_forward_stepper", "has_backward_stepper",
10607         "has_secondary_forward_stepper" and
10608         has_secondary_backward_stepper". (#110540)
10609
10610         * gtk/gtknotebook.h (struct _GtkNotebook): Make in_child and
10611         click_child three bits wide, add
10612         has_{before,after}_{previous,next} fields.
10613
10614         * gtk/gtkcolorsel.c (gtk_color_selection_init): Update color on
10615         focus out of hex_entry.  (#112665)
10616         (hex_focus_out): New signal handler for focus out of hex entry.
10617
10618 Wed May 21 19:01:06 2003  Owen Taylor  <otaylor@redhat.com>
10619
10620         * gtk/gtkwidget.c (gtk_widget_realize): 
10621         g_return_if_fail() if
10622         GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget).
10623         (#107872, Christian Reis)
10624
10625 2003-05-22  Matthias Clasen  <maclas@gmx.de>
10626
10627         * gtk/gtkfilesel.c (gtk_file_selection_create_dir): 
10628         (gtk_file_selection_rename_file): Some keynav improvements for the
10629         "Rename File" and "Create Directory" subdialogs: Enter in entry
10630         activates default, default is "Create"/"Rename", Escape cancels
10631         dialog.  (#113110)
10632         (gtk_file_selection_set_filename): Add a hint about opening 
10633         directories.  (#113175)
10634
10635 2003-05-22  Matthias Clasen  <maclas@gmx.de>
10636
10637         * gdk/x11/gdkdrawable-x11.c (gdk_x11_drawable_update_xft_clip):
10638         Use XftDrawSetClipRectangles(), since we're inside HAVE_XFT2
10639         anyway.  (#113476)
10640
10641 Wed May 21 15:53:14 2003  Owen Taylor  <otaylor@redhat.com>
10642
10643         * gtk/gtkprogress.c (gtk_progress_set_format_string,
10644         gtk_progress_set_show_text): Always queue a resize ... 
10645         we rely on the size-allocate to do the update, plus a 
10646         different format can actually change our size requisition.
10647         (#111052, Vasco Alexandre da Silva Costa)
10648
10649         * gtk/gtkprogress.c (gtk_progress_changed): Track
10650         ::changed as well as ::value_changed, and queue a
10651         resize on ::changed when necessary.
10652
10653         * gtk/gtkprogress.c (gtk_progress_set_adjustment): 
10654         Call gtk_progress_changed() here to update or 
10655         queue a resize as necessary.
10656
10657 Wed May 21 14:06:13 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
10658
10659         * gtk/gtkimcontextsimple.c: added composing rules of
10660         Greek accented letters, patch by Vasilis Vasaitis (#107507)
10661
10662 Wed May 21 13:19:05 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
10663
10664         * gtk/gtkenums.h (enum GtkIMPreeditStyle, GtkIMStatusStyle): 
10665         * modules/input/gtkimcontextxim.c (preedit_style_change, status_style_change):
10666         gtk settings for XIMPreeditNone and XIMStatusNone. (#105909)
10667
10668 Wed May 21 12:10:25 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
10669
10670         * gtk/gtkimcontextsimple.c: 
10671         code that can check the compose table for ascending order,
10672         by Vasilis Vasaitis (#104862).
10673
10674 Wed May 21 12:52:01 2003  Owen Taylor  <otaylor@redhat.com>
10675
10676         * gtk/gtkkeyhash.[ch] (_gtk_key_hash_looku): We need 
10677         to pass the unmasked state to gdk_keymap_translate_keyboard_state() 
10678         to handle the case where a modifier not in the mask
10679         (like Num_Lock) changes the key value, so replace
10680         the masked state with a state/mask pair. (#106913,
10681         Olivier Ripoll)
10682
10683         * gtk/gtkwindow.c gtk/gtkbinding.c: Update to pass
10684         in state/mask pair to _gtk_key_hash_lookup()
10685
10686 Tue May 20 21:58:00 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
10687
10688         * modules/input/gtkimcontextxim.c (xim_info_display_closed):
10689         fix a memory leak, free input context list (#113259).
10690
10691 2003-05-21  Matthias Clasen  <maclas@gmx.de>
10692
10693         * configure.in (all_loaders): Add pcx.
10694
10695         * gtk/gtkcalendar.c: Make calendar controls spin.  (#112540)
10696
10697 Tue May 20 17:27:24 2003  Owen Taylor  <otaylor@redhat.com>
10698
10699         * gtk/gtkimmodule.c (gtk_im_module_init): Silently
10700         accept a missing gtk.immodules file, some people
10701         want to run without one. (#112406, patch from
10702         Arnaud Charlet)
10703
10704 Tue May 20 17:05:31 2003  Owen Taylor  <otaylor@redhat.com>
10705
10706         * gtk/gtkwindow.c (gtk_window_compute_hints): Fix 
10707         height/width confusion (#113370, Xan Lopez)
10708
10709 Tue May 20 15:48:45 2003  Owen Taylor  <otaylor@redhat.com>
10710
10711         * gdk/x11/gdkdnd-x11.c gdk/x11/gdkwindow-x11.c: Comprehensively
10712         zero all unused parts of client messages (Mainly Motif DND
10713         and EWMH). Also, fix a couple places where we were putting
10714         contents into Motif DND messages that didn't belong.
10715         (#113361, EWMH problem reported by Lubos Lunak)
10716
10717         * gtk/gtkselection.c (_gtk_selection_request): Handle the
10718         case where the property type for the multiple atoms is
10719         ATOM_PAIR by doing the conversions ourselve. This is
10720         needed for Xt inter-operation.
10721
10722 2003-05-19 Arafat Medini <lumina@silverpen.de>
10723
10724         * configure.in: Added ar to ALL_LINGUAS
10725
10726 2003-05-19  Matthias Clasen  <maclas@gmx.de>
10727
10728         * gtk/gtksettings.c (gtk_rc_property_parse_border,
10729         gtk_rc_property_parse_color, gtk_rc_property_parse_enum,
10730         gtk_rc_property_parse_flags, gtk_rc_property_parse_requisition):
10731         Add docs.
10732
10733         * gtk/gtkwidget.c (gtk_widget_class_install_style_property, 
10734         gtk_widget_class_install_style_property_parser): Add docs. 
10735
10736 2003-05-17  Matthias Clasen  <maclas@gmx.de>
10737
10738         * tests/prop-editor.c: Add navigation for object properties, so
10739         that you can easily edit the properties of the parent of a widget.
10740         (#113152)
10741
10742 Wed May 14 17:45:32 2003  Owen Taylor  <otaylor@redhat.com>
10743
10744         * gdk/gdkkeysyms.h gdk/gdkkeynames.c gdk/gdkkeyuni.c:
10745         Patch from Vasilis Vasaitis to fix Greek_IOTAdi[a]eresis 
10746         inconsistency and leave the old name as an aliass (#104873)
10747
10748 Wed May 14 16:40:09 2003  Owen Taylor  <otaylor@redhat.com>
10749
10750         * gtk/gtkframe.c (gtk_frame_set_label_widget): Patch
10751         from Charles Schmidt to add missing notify (#108305)
10752
10753 Wed May 14 16:00:51 2003  Owen Taylor  <otaylor@redhat.com>
10754  
10755         * gdk/x11/gdkgc-x11.c: Remove unecessary g_return_if_fail().
10756         (#105500, Morten Welinder.)
10757  
10758 Wed May 14 09:05:11 2003   Hidetoshi Tajima <hidetoshi.tajima@sun.com>
10759
10760         * modules/input/gtkimcontextxim.c (get_ic_real): use type of guint32
10761         instead of gumake for XNFilterEvents event mask(#110493).
10762
10763 2003-05-11  Anders Carlsson  <andersca@codefactory.se>
10764
10765         * gtk/gtkdnd.c (gtk_drag_source_unset_icon): Don't cast a gchar to
10766         a GObject. (#112762)
10767
10768 2003-05-08  Sven Neumann  <sven@gimp.org>
10769
10770         * configure.in: set the HAVE_X11R6 automake conditional to false
10771         if not compiling for X11.
10772
10773 2003-05-08  Matthias Clasen  <maclas@gmx.de>
10774
10775         * gtk/gtkcalendar.[ch] (gtk_calendar_set_display_options): 
10776         (gtk_calendar_get_display_options): New functions.
10777         (gtk_calendar_display_options): Depreate.  (#64567)
10778         (gtk_calendar_class_init): Add boolean properties for the display
10779         options.  (#50949)
10780
10781 Tue May  6 16:50:52 2003  Owen Taylor  <otaylor@redhat.com>
10782
10783         Patch from James Henstridge to update to automake-1.7
10784         (#109542)
10785  
10786         * autogen.sh: update to call newer tools.
10787  
10788         * configure.in: various updates, to use M4 macros to put
10789         variables that change each release at the top.
10790         Use AC_HELP_STRING to format help strings.
10791         Use AC_CONFIG_COMMANDS to generate gdkconfig.h.
10792  
10793         * Makefile.am: require Automake 1.7.  Remove gdk-2.0.pc and
10794         gtk+-2.0.pc on uninstall.  Pass --enable-gtk-doc to configure
10795         during distcheck.
10796  
10797         * docs/reference/*/Makefile.am: simplify to use the gtk-doc.make
10798         makefile fragment.
10799  
10800         * */Makefile.am: don't use STRIP_BEGIN/STRIP_END.
10801         Use BUILT_SOURCES where appropriate.
10802         Build generated files in builddir rather than srcdir.
10803         Fix uninstall and distclean targets to satisfy distcheck.
10804
10805         ===
10806
10807         * gdk/*/Makefile.am: Remove the hacks to get gdkenumtypes.h
10808         built first, since we are now using BUILT_SOURCES.
10809
10810         * gdk/Makefile.am: Remove an outdated comment about gdk_headers.
10811
10812         * demos/gtk-demo/Makefile.am: Fix srcdir != buildd problem
10813         with geninclude.pl.
10814
10815         * configure.in: Update versions to 2.3.0.
10816  
10817 2003-05-06  Tor Lillqvist  <tml@iki.fi>
10818
10819         Fix for #110165 (thanks to Arnaud Charlet):
10820         
10821         * gdk/win32/gdkevents-win32.c (build_keypress_event,
10822         build_keyrelease_event): For unshifted control char, use
10823         lowercase ASCII keyval.
10824         (gdk_event_translate): Similarily, when handling WM_SYSKEYDOWN and
10825         UP (i.e. Alt-something), if it's an unshifted ASCII letter, use
10826         lowercase keyval. Use build_key_event_state() here, too, instead
10827         of minor code duplication.
10828
10829 2003-05-06  Matthias Clasen  <maclas@gmx.de>
10830
10831         * tests/testmultidisplay.c: Don't include strings.h, it's not
10832         needed anymore.  (#112388)
10833
10834         * examples/menu/itemfactory.c: 
10835         * docs/tutorial/gtk-tut.sgml: Remove an unneeded include from the
10836         itemfactory example.
10837
10838 2003-05-05  Matthias Clasen  <maclas@gmx.de>
10839
10840         * gtk/gtkdnd.c (gtk_drag_source_set_icon_stock):  Actually set the
10841         icon type to the stock icon type.  (#111735, Dave Bordoley)
10842
10843 2003-05-05  Christian Rose  <menthos@menthos.com>
10844
10845         * configure.in: Added sr and sr@Latn to ALL_LINGUAS.
10846         Removed sp, it's replaced by sr@Latn.
10847
10848 Wed Apr 30 22:09:11 BST 2003  Tony Gale <gale@gtk.org>
10849
10850         * docs/faq/gtk-faq.sgml: GTK+ 2.x updates, mainly from
10851         Gonzalo Odiard
10852
10853 Mon Apr 28 17:54:39 2003  Jonathan Blandford  <jrb@redhat.com>
10854
10855         * gtk/gtktreeview.c (gtk_tree_view_destroy): destroy the search
10856         data iff the destroy func isn't NULL.
10857
10858 Thu Apr 24 19:12:05 2003  Owen Taylor  <otaylor@redhat.com>
10859
10860         * autogen.sh (have_libtool): Accept libtool-1.5. (#111480)
10861
10862 2003-04-23  Abel Cheung  <maddog@linux.org.hk>
10863
10864         * configure.in: Added "am" "mk" "ta" to ALL_LINGUAS.
10865
10866 Tue Apr 22 15:33:51 2003  Owen Taylor  <otaylor@redhat.com>
10867
10868         * gtk/gtkfilesel.c (open_new_dir): Fix capitalization
10869         of UTF-8. (#106419, Roozbeh Pournader)
10870
10871 Tue Apr 22 15:17:25 2003  Owen Taylor  <otaylor@redhat.com>
10872
10873         * configure.in: Only check for XFT2 if we found pango-xft
10874         (#105692, Jon Nall)
10875
10876 Tue Apr 22 15:12:19 2003  Owen Taylor  <otaylor@redhat.com>
10877
10878         * gtk/gtkwidget.c (gtk_widget_class_init): Fix PROP_HAS_FOCUS/
10879         PROP_IS_FOCUS confusion. (#111333, Jody Goldberg)
10880
10881 Tue Apr 22 19:43:01 BST 2003  Tony Gale <gale@gtk.org>
10882
10883         * docs/faq/gtk-faq.sgml: add note about version converage.
10884
10885 Mon Apr 21 19:02:16 2003  Owen Taylor  <otaylor@redhat.com>
10886
10887         * gtk/gtksocket.c (activate_key): Fix prototype for
10888         activate_key. (#108927, Jason D. Hildebrand)
10889
10890 Mon Apr 21 18:42:51 2003  Owen Taylor  <otaylor@redhat.com>
10891
10892         * demos/gtk-demo/Makefile.am demos/gtk-demo/geninclude.pl:
10893         Remove geninclude.pl from CVS and don't dist it either,
10894         it is generated. (#108970, Rich Kinder)
10895
10896 Mon Apr 21 18:35:48 2003  Owen Taylor  <otaylor@redhat.com>
10897
10898         * gtk/gtkobject.h: Remove a couple of obsolete comments,
10899         fix another comment. (#109737, Britton Kerin)
10900
10901 Mon Apr 21 18:29:03 2003  Owen Taylor  <otaylor@redhat.com>
10902
10903         * gtk/gtkiconfactory.c (gtk_icon_set_unref): Free
10904         the source list, not just it's contents (Patch
10905         from Charles Kerr, #108243)
10906
10907 Mon Apr 21 18:13:46 2003  Owen Taylor  <otaylor@redhat.com>
10908
10909         * gdk/x11/gdkdnd-x11.c (gdk_window_cache_filter): Patch
10910         from Alex Larsson fixing problem with restacking during
10911         DND. (#108671)
10912
10913 Mon Apr 21 15:07:29 2003  Owen Taylor  <otaylor@redhat.com>
10914
10915         * gdk/x11/gdkdisplay-x11.c (gdk_display_keyboard/pointer_ungrab):
10916         Calling XFlush() after ungrabbing, to avoid problems if
10917         the app subsequently blocks on a long-running operation.
10918         (#106520, reported by Rajkumar Siva)
10919
10920 Fri Apr 18 17:42:45 2003  Owen Taylor  <otaylor@redhat.com>
10921
10922         * gdk/x11/gdkwindow-x11.c (set_initial_hints): Add
10923         SKIP_TASKBAR/SKIP_PAGER to set of properties we
10924         might set on map. (#110019, problem reported
10925         by Loban Rahman)
10926
10927 Fri Apr 18 17:14:33 2003  Owen Taylor  <otaylor@redhat.com>
10928
10929         * gdk/gdkevents.c (gdk_event_copy): Fix for the
10930         case when gdk_event_copy() is called on a non-allocated
10931         event. (#109716, reported by Rich Burridge)
10932
10933 Fri Apr 18 16:57:44 2003  Owen Taylor  <otaylor@redhat.com>
10934
10935         * gdk/x11/gdkdrawable-x11.c (draw_with_images/pixmaps):
10936         Fix pointer arithmetic on 'void *'. (#108322)
10937
10938 Fri Apr 18 16:31:49 2003  Owen Taylor  <otaylor@redhat.com>
10939
10940         * configure.in gdk/x11/gdkdisplay-x11.c modules/input/Makefile.am:
10941         Check for XAddConnectionWatch()/X11R6, and if found, disable XIM and
10942         use of XAddConnectionWatch. Remove --enable-xim config option.
10943         Should fix building on X11R6 (#110523, Albert Chin)
10944
10945 Fri Apr 18 15:56:46 2003  Owen Taylor  <otaylor@redhat.com>
10946
10947         * gdk/x11/gdkdisplay-x11.[ch] gdk/x11/gdkdrawable-x11.[ch]:
10948         Patch from Morten Welinder to catch Sun servers with a 
10949         broken implementation of the RENDER extension. (#108309)
10950
10951 Fri Apr 18 15:30:38 2003  Owen Taylor  <otaylor@redhat.com>
10952
10953         * gdk/x11/gdkwindow-x11.c (set_text_property): Use
10954         gdk_free_compound_text(), not g_free(). (#107643,
10955         Michael Zucchi)
10956
10957 Fri Apr 18 15:11:50 2003  Owen Taylor  <otaylor@redhat.com>
10958
10959         * gdk/x11/gdkdisplay-x11.c (_gdk_display_x11_get_type)
10960         gdk/x11/gdkscreen-x11.c (_gdk_screen_x11_get_type): Fix
10961         wrong use of base_finalize. (#105126, Sven Neumann)
10962
10963 Fri Apr 18 15:06:00 2003  Owen Taylor  <otaylor@redhat.com>
10964
10965         * gdk/gdkwindow.c (gdk_window_constrain_size): Fix
10966         '/' vs. '*' problem in aspect ration computations. (#108237)
10967
10968 Fri Apr 18 14:15:09 2003  Owen Taylor  <otaylor@redhat.com>
10969
10970         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): 
10971         * gdk/x11/gdkevents-x11.c (gdk_event_translate): You
10972         don't get a XkbMapNotify event if you get a XkbNewKeyboardNotify 
10973         event, so select for both. (#108406, Egmont Koblinger)
10974
10975 Thu Apr 17 09:57:44 2003  Jonathan Blandford  <jrb@gnome.org>
10976
10977         * gtk/gtktreeview.c (validate_visible_area): remove infinite loop
10978         caused by not clearing the scroll_to_path.
10979
10980 2003-04-16  Matthias Clasen  <maclas@gmx.de>
10981
10982         * gtk/gtkstyle.c: Doc additions and fixes.
10983
10984         * gtk/gtktreeviewcolumn.c
10985         (_gtk_tree_view_column_get_neighbor_sizes): Doc fixes.
10986
10987 2003-04-14  Michael Natterer  <mitch@gimp.org>
10988
10989         * gtk/gtkliststore.c (gtk_list_store_move): added checks to ensure
10990         that the iter is not reordered to its own position. Prevents model
10991         corruption for the case that the store contains only a single item
10992         (fixes bug #108387).
10993
10994         Unrelated:
10995
10996         * gtk/gtkliststore.c (gtk_list_store_insert): g_list_alloc() the
10997         new list element later so we don't leak it if we decide to return
10998         early.
10999
11000         * gtk/gtktreeselection.c (_gtk_tree_selection_internal_select_node):
11001         set selection->tree_view->priv->anchor to NULL after freeing it.
11002
11003 2003-04-13  Matthias Clasen  <maclas@gmx.de>
11004
11005         * gtk/gtktreeviewcolumn.c
11006         (gtk_tree_view_column_cell_get_position): Document. 
11007
11008         * gtk/gtktextbuffer.c (gtk_text_buffer_select_range): 
11009         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_[sg]et_expand): 
11010         * gtk/gtkbutton.c (gtk_button_[sg]et_focus_on_click): Document
11011         these as 2.4 additions.
11012
11013 2003-04-09  Matthias Clasen  <maclas@gmx.de>
11014
11015         * INSTALL.in: Fix the real thing.
11016
11017         * INSTALL: Typo fix.
11018
11019 Mon Apr  7 19:43:15 2003  Owen Taylor  <otaylor@redhat.com>
11020
11021         * gdk/x11/gdkdisplay-x11.c (gdk_x11_display_ungrab): Flush
11022         after ungrabbing the server.
11023  
11024         * gdk/x11/gdkimage-x11.c: Remove some no-longer-needed
11025         calls to XFlush().
11026
11027         * gdk/x11/gdkwindow-x11.c (_gdk_windowing_window_at_pointer):
11028         Use gdk_x11_display_grab/ungrab.
11029
11030         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Initialize
11031         use_xshm to TRUE so SHM gets used when present.
11032  
11033 2003-04-07  Matthias Clasen  <maclas@gmx.de>
11034
11035         * gtk/gtktextlayout.c (set_para_values): 
11036         * gtk/gtkenums.h (GtkWrapMode): Add GTK_WRAP_WORD_CHAR.  (#110086,
11037         David Brigada)
11038
11039         * gtk/gtkcelleditable.c, gtk/gtkfixed.c, gtk/gtktreemodel.c,
11040         gtk/gtktreeselection.c, gtk/gtktreeview.c: Fix numerous
11041         misspellings of possessive "its".  (#110027, Doug Quale)
11042
11043 2003-04-03  Matthias Clasen  <maclas@gmx.de>
11044
11045         * demos/gtk-demo/main.c (demo_find_file): Only use files from the
11046         current directory if it looks like the srcdir.  (#109357)
11047
11048 Wed Apr  2 23:02:26 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
11049
11050         * gtk/gtkbutton.[ch] (gtk_button_class_init): add property
11051         focus_on_click
11052
11053         * gtk/gtkwindow.c (gtk_window_focus): make arrow keyboard
11054         navigation not wrap around.
11055
11056 2003-04-02  Matthias Clasen  <maclas@gmx.de>
11057
11058         * gtk/gtkprogress.c (gtk_progress_get_percentage_from_value):
11059         Return 0 if lower == upper.  (#109155)
11060         (gtk_progress_get_current_percentage): Use
11061         gtk_progress_get_percentage_from_value().
11062
11063 2003-04-01  Matthias Clasen  <maclas@gmx.de>
11064
11065         * gtk/gtkimcontext.c (gtk_im_context_focus_in): Fix docs.
11066         (#109510, Noah Levitt)
11067
11068 Mon Mar 31 13:52:13 2003  Jonathan Blandford  <jrb@redhat.com>
11069
11070         * gtk/gtkrbtree.c (_gtk_rbtree_reorder): null initialize reorder's
11071         members so Purify won't complain.
11072
11073         * gtk/gtkliststore.c (gtk_list_store_sort): ditto.
11074
11075 2003-03-31  Matthias Clasen  <maclas@gmx.de>
11076
11077         * gtk/gtkwindow.c: Add a new property, role, corresponding to 
11078         gtk_window_[gs]et_role().  (#93904)
11079
11080 Sun Mar 30 03:57:42 2003  Jonathan Blandford  <jrb@gnome.org>
11081
11082         * gtk/gtktreeselection.c (gtk_tree_selection_get_selected_rows):
11083         fix crash.  Patch from Markus Lausser <sgop@users.sourceforge.net>
11084
11085 2003-03-29  Matthias Clasen  <maclas@gmx.de>
11086
11087         * gtk/gtkoptionmenu.c (gtk_option_menu_remove_contents): Set state
11088         of labels back to normal before reparenting back.  (#102387)
11089
11090         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): Set
11091         a default window title to match the GtkFontSelectionDialog behavior.
11092  
11093         (gtk_color_selection_dialog_new): Don't call
11094         gtk_window_set_title() if title is NULL.  (bug #101975, Daniel Elstner)
11095
11096 2003-03-29  Matthias Clasen  <maclas@gmx.de>
11097
11098         Fix for bug #78499:
11099         
11100         * gtk/gtkentry.h (struct _GtkEntry): Add flags select_words and
11101         select_lines. 
11102
11103         * gtk/gtkentry.c (gtk_entry_button_press): Set select_words and
11104         select_lines on double/triple click.
11105
11106         * gtk/gtkentry.c (gtk_entry_motion_notify): Implement
11107         select-by-words and select-by-lines behaviour.
11108
11109         Fixes for bug #56248:
11110         
11111         * gtk/gtknotebook.c (stop_scrolling): New function to remove the
11112         timer and queue a redraw. 
11113         (gtk_notebook_grab_notify): 
11114         (gtk_notebook_state_changed): New functions to call stop_scrolling() 
11115         if necessary.   
11116         (gtk_notebook_button_release): Use stop_scrolling().
11117         (gtk_notebook_draw_arrow): Fix drawing of insensitive arrows.
11118
11119         * gtk/gtkrange.c (stop_scrolling): New function to remove the
11120         grab, remove the timer and queue a redraw.
11121         (gtk_range_grab_notify): 
11122         (gtk_range_state_changed): New functions to call stop_scrolling() 
11123         if necessary.   
11124         (gtk_range_button_release): Use stop_scrolling().
11125
11126         * gtk/gtkspinbutton.c (gtk_spin_button_grab_notify): 
11127         (gtk_spin_button_state_changed): Redraw after stop_spinning.
11128         (gtk_spin_button_stop_spinning): Reset click_child to correct the
11129         drawing of the arrows.
11130         (gtk_spin_button_button_release): Use a local copy of click_child,
11131         since stop_spinning() resets it.
11132
11133         * gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and
11134         C-A-PgDown as alternatives to the A-less variants. (This slipped
11135         in accidentally some time ago).  (#97860)
11136
11137 2003-03-26  Sven Neumann  <sven@gimp.org>
11138
11139         * gtk/gtktreeview.c: rewrote the function that does node and arrow
11140         prelighting, queue all redraws from here (Fixes bug #108792).
11141
11142 2003-03-20  Richard Kinder <r_kinder@yahoo.com>
11143
11144         * demos/testpixbuf.c (update_timeout): set error to NULL, not FALSE.
11145         Fixes bug #108778.
11146
11147 2003-03-20  Guntupalli Karunakar <karunakar@freedomink.org>
11148
11149         * configure.in: Added "ml" in ALL_LINGUAS
11150
11151 Sat Mar 15 18:49:27 2003  Manish Singh  <yosh@gimp.org>
11152
11153         * gtk/gtkradiomenuitem.h: use GTK_DISABLE_DEPRECATED instead of
11154         G_DISABLE_DEPRECATED.
11155
11156 2003-03-14  Tor Lillqvist  <tml@iki.fi>
11157
11158         * gdk/win32/gdkevents-win32.c: Use the signed GET_X_LPARAM() and
11159         GET_Y_LPARAM() to extract x and y coordinates from an LPARAM or
11160         DWORD, and not the unsigned HIWORD() and LOWORD(). Systems with
11161         multiple monitors can have negative coordinates on some of the
11162         monitors. (partial fix for #99496, Arnaud Charlet)
11163
11164 2003-03-15  Matthias Clasen  <maclas@gmx.de>
11165
11166         * gtk/gtktextview.c: Add a "buffer" property.  (#108353) 
11167
11168 2003-03-13  Sven Neumann  <sven@gimp.org>
11169
11170         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_set_property):
11171         removed redundant calls to g_object_notify().
11172         (gtk_cell_renderer_pixbuf_get_size): removed redundant casts, see
11173         bug #108236.
11174
11175         * gtk/gtktextiter.c (_gtk_text_iter_get_segment_char)
11176         (_gtk_text_iter_get_segment_byte): return 0, not NULL (these
11177         functions return an integer value).
11178
11179 2003-03-13  Tor Lillqvist  <tml@iki.fi>
11180
11181         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
11182         WM_MOUSEMOVE, the test whether we have actually moved (and thus
11183         shouldn't generate an GDK event) moved after the call to
11184         propagate() and translate_mouse_coords(). Otherwise we were
11185         testing wrong values. (#108115, Allin Cottrell)
11186         (gdk_event_translate): On WM_?BUTTONUP, set current_{x,y} the same
11187         way as in WM_?BUTTONDOWN and WM_MOUSEMOVE.
11188
11189         * gdk/win32/gdkevents-win32.c (gdk_pointer_grab): if a grab cursor
11190         is used, must copy the HCURSOR with CopyCursor(), as it is OK to
11191         destroy the GdkCursor after calling gdk_pointer_grab(). Set the
11192         cursor right away with SetCursor(), as we won't get any
11193         WM_SETCURSOR messages while the mouse is captured. 
11194         (gdk_display_pointer_ungrab): Correspondingly, destroy the copy
11195         with DestroyCursor() when no longer used. (#108114, Allin Cottrell)
11196
11197         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
11198         WM_SYSCHAR, return FALSE from the window procedure to prevent the
11199         DefWindowProc from being called. Otherwise Windows would beep,
11200         thinking you are tring to access a (nonexistent) menu when you
11201         press Alt-something. Don't do this for Alt-Space,
11202         though. (#107454, Martyn Russell)
11203
11204         * gdk/win32/gdkcursor-win32.c: Minor spacing and debug print fixes.
11205
11206 Tue Mar 11 12:01:07 2003  Jonathan Blandford  <jrb@gnome.org>
11207
11208         * gtk/gtktreeview.c (gtk_tree_view_class_init): Ctrl/Shift
11209         [left/right] expands/collapses the tree, #108092
11210
11211 2003-03-09  Tor Lillqvist  <tml@iki.fi>
11212
11213         * gdk/win32/gdkdrawable-win32.c (draw_segments): Don't try to
11214         compensate for LineTo() not drawing the end pixel. It causes more
11215         harm than benefits, see bug #81895.
11216
11217 2003-03-08  Matthias Clasen  <maclas@gmx.de>
11218
11219         Bug #107664 continued:
11220
11221         * gdk/x11/gdkinputprivate.h: 
11222         * gdk/x11/gdkinput-none.c (_gdk_input_window_none_event): Remove. 
11223         (_gdk_input_other_event): Return gboolean.
11224         * gdk/x11/gdkinput-xfree.c (_gdk_input_window_none_event): Remove. 
11225         (_gdk_input_other_event): Return gboolean.
11226         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event): Return gboolean.
11227
11228         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Make return_val
11229         gboolean, remove pointless call to _gdk_input_window_none_event.
11230
11231         * gdk/win32/gdkinput-win32.[hc] (_gdk_input_other_event): Return gboolean.
11232         (_gdk_input_window_none_event): Remove.
11233
11234         * gtk/gtktextiter.c (_gtk_text_iter_get_indexable_segment): 
11235         (_gtk_text_iter_get_any_segment): 
11236         (_gtk_text_iter_get_segment_byte): 
11237         (_gtk_text_iter_get_segment_char): 
11238         (_gtk_text_iter_get_text_line): 
11239         (_gtk_text_iter_get_btree): Fix 0/NULL confusion.
11240         * gdk/x11/gdkdnd-x11.c (motif_target_table_check): Return gint.
11241         * gdk/win32/gdkfont-win32.c (gdk_font_equal): 
11242         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_get_deskrelative_origin): 
11243         (gdk_window_get_origin): 
11244         * gdk/linux-fb/gdkcolor-fb.c (gdk_colors_alloc): Fix 0/FALSE confusion. 
11245
11246 2003-03-06  Matthias Clasen  <maclas@gmx.de>
11247
11248         * gdk/gdkrgb.c (gdk_rgb_try_colormap): Return gboolean, not gint.
11249         (#107664, Morten Welinder)
11250
11251         * gdk/x11/gdkwindow-x11.c (gdk_window_get_deskrelative_origin): 
11252         * gdk/x11/gdkfont-x11.c (gdk_font_equal): 
11253         * gdk/x11/gdkdnd-x11.c (gdk_drag_get_protocol_for_display): 
11254         Fix TRUE/1 and FALSE/0 confusion.  (#107664, Morten Welinder)
11255
11256         * gtk/gtktextmark.c (gtk_text_mark_get_buffer): 
11257         * gtk/gtkeditable.c (gtk_editable_get_chars): 
11258         * gtk/gtkctree.c (gtk_ctree_find_node_ptr): 
11259         * demos/gtk-demo/main.c (demo_find_file): Fix NULL/FALSE confusion
11260         (#107648, Morten Welinder)Fix NULL/FALSE confusion
11261         (#107648, Morten Welinder)
11262
11263 2003-03-04  Matthias Clasen  <maclas@gmx.de>
11264
11265         * gtk/gtkobject.h: Add deprecation guards for gtk_object_new ().
11266
11267 Sun Mar  2 23:35:57 2003  Jonathan Blandford  <jrb@gnome.org>
11268
11269         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_get_size):
11270         handle rtl code.  Thanks to Matthias Clasen for an initial patch
11271         to handle the RTL code.
11272
11273         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_get_size): ditto
11274
11275         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_size): ditto
11276
11277         * gtk/gtktreeview.c: (invalidate_column),
11278         (invalidate_last_column),
11279         (gtk_tree_view_get_real_requested_width_from_column),
11280         (gtk_tree_view_size_allocate_columns),
11281         (gtk_tree_view_size_allocate), (gtk_tree_view_button_press),
11282         (gtk_tree_view_button_release_drag_column),
11283         (gtk_tree_view_update_current_reorder),
11284         (gtk_tree_view_motion_drag_column), (gtk_tree_view_bin_expose),
11285         (gtk_tree_view_key_press), (gtk_tree_view_header_focus),
11286         (gtk_tree_view_get_background_xrange),
11287         (gtk_tree_view_get_arrow_xrange),
11288         (gtk_tree_view_is_expander_column),
11289         (gtk_tree_view_set_column_drag_info),
11290         (gtk_tree_view_move_cursor_left_right):
11291         Add RTL support.
11292
11293         * gtk/gtktreeviewcolumn.h (struct _GtkTreeViewColumn): add an
11294         expand flag.
11295
11296         * gtk/gtktreeviewcolumn.c:
11297         (gtk_tree_view_column_class_init),
11298         (gtk_tree_view_column_set_property),
11299         (gtk_tree_view_column_get_property),
11300         (gtk_tree_view_column_set_expand),
11301         (gtk_tree_view_column_get_expand),
11302         (gtk_tree_view_column_cell_process_action):
11303         Add support for expand flag.  Thanks to Kristian Rietveld for an
11304         initial patch for this.
11305
11306 Fri Feb 28 02:06:17 2003  Jonathan Blandford  <jrb@gnome.org>
11307
11308
11309 2003-03-02  Tor Lillqvist  <tml@iki.fi>
11310
11311         * gdk/gdk.def
11312         * gtk/gtk.def: Add a bunch of missing entries. Noticed by Cedric
11313         Gustin.
11314
11315 2003-03-01  Matthias Clasen  <maclas@gmx.de>
11316
11317         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_vadjustment): 
11318         (gtk_scrolled_window_set_hadjustment): Replace uses of
11319         gtk_object_new by g_object_new.
11320
11321 Thu Feb 27 17:44:24 2003  Manish Singh  <yosh@gimp.org>
11322
11323         * demos/gtk-demo/main.c
11324         * demos/gtk-demo/tree_store.c
11325         * gdk/x11/gdkscreen-x11.c
11326         * gtk/gtkcellrenderertoggle.c
11327         * gtk/gtkcolorsel.c
11328         * gtk/gtkdnd.c
11329         * gtk/gtkeditable.c
11330         * gtk/gtkentry.c
11331         * gtk/gtkmenu.c
11332         * gtk/gtkmenubar.c
11333         * gtk/gtkmenuitem.c
11334         * gtk/gtkmenushell.c
11335         * gtk/gtkrc.c
11336         * gtk/gtksettings.c
11337         * gtk/gtkstyle.c
11338         * gtk/gtktextbuffer.c
11339         * gtk/gtktextview.c
11340         * gtk/gtktreeviewcolumn.c
11341         * tests/testgtk.c
11342         * tests/testtext.c
11343         * tests/testtreeedit.c
11344         * tests/testtreefocus.c
11345         * tests/testtreeview.c: remove unnecessary G_OBJECT() casts.
11346
11347 Tue Feb 25 21:55:17 2003  Jonathan Blandford  <jrb@redhat.com>
11348
11349         * gtk/gtkoptionmenu.c (gtk_option_menu_position): account for RTL
11350         code.
11351
11352 2003-02-24  Sven Neumann  <sven@gimp.org>
11353
11354         * gtk/gtkmain.c (gtk_get_default_language): fixed documentation.
11355
11356 2003-02-21  Tomas Ogren  <stric@ing.umu.se>
11357
11358         * docs/reference/gtk/tmpl/gtktreemodel.sgml: Fix typos in an example
11359
11360 2003-02-20  Matthias Clasen  <maclas@gmx.de>
11361
11362         * gtk/gtktextbtree.c (_gtk_text_line_previous_could_contain_tag): 
11363         Check if line_ancestor_parent is NULL.  (#102711, Manuel Clos)
11364
11365         * gtk/gtktextview.c (gtk_text_view_scroll_to_iter): 
11366         (gtk_text_view_update_adjustments): Make sure cursor stays visible
11367         during horizontal scrolling.  (#75270)
11368
11369 2003-02-19  Matthias Clasen  <maclas@gmx.de>
11370
11371         * tests/testdnd.c: Replace gtk_timeout_* by their GLib
11372         counterparts. (#106532)
11373
11374         * gdk/gdkkeys.c (gdk_keymap_class_init): Associate the
11375         keys_changed virtual function with the keys_changed signal.
11376         (#106512, Jeff Franks)
11377
11378 2003-02-15  Larry Ewing  <lewing@ximian.com>
11379
11380         * gdk/gdkevents.c (gdk_event_copy): copy the event axes as well.
11381
11382 2003-02-17  Mohammad DAMT  <mdamt@bisnisweb.com>
11383
11384         * po/id.po: Added Indonesian translation
11385         * configure.in: Added "id" to ALL_LINGUAS
11386
11387 2003-02-14  Matthias Clasen  <maclas@gmx.de>
11388
11389         * gtk/gtktextview.c (popup_targets_received): Remove bogus casts.
11390
11391 2003-02-12  Christian Rose  <menthos@menthos.com>
11392
11393         * configure.in: Added "yi" to ALL_LINGUAS.
11394
11395 2003-02-12  Matthias Clasen  <maclas@gmx.de>
11396
11397         Fix for #82734 and #78216:
11398         
11399         * gtk/gtktextview.c (delete_cb): 
11400         (select_all_cb): New callbacks for context menu items.
11401         (popup_targets_received): Add "Delete" and "Select All" to context
11402         menu, mnemonics and title caps for all items.
11403
11404         * gtk/gtkentry.c (gtk_entry_delete_cb): New callback for "Delete"
11405         context menu item.
11406         (popup_targets_received): Add "Delete" to context menu, mnemonics
11407         and title caps for all items.
11408
11409 2003-02-09  Tor Lillqvist  <tml@iki.fi>
11410
11411         * gtk/gtkfilesel.c (win32_gtk_add_drives_to_dir_list): Use
11412         GetDriveType() to recognize removable drives (in order to avoid
11413         hanging if trying to access an empty floppy drive), instead of
11414         hardcoding A: and B: (#105654).
11415
11416 2003-02-09  Matthias Clasen  <maclas@gmx.de>
11417
11418         * gtk/gtkwidget.c (gtk_widget_set_name): Add note about periods in 
11419         names.  (#57680)
11420
11421 2003-02-09  Christian Rose  <menthos@menthos.com>
11422
11423         * configure.in: Removed "en@IPA.po" from ALL_LINGUAS.
11424
11425 Fri Feb  7 04:49:46 2003  Tim Janik  <timj@gtk.org>
11426
11427         * gtk/gtkobject.c: remove quark_user_data usage in
11428         gtk_object_{g|s}et_user_data(). fixes get_user_data()
11429         returning NULL for user_data set through property interface.
11430
11431         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): don't put out
11432         warnings if a pixbuf couldn't be retrieved, since (a) this doesn't
11433         need to be a programming error (in case of loaded data), (b) it breaks
11434         with 2.0 behaviour where extra magic could be used to create empty
11435         images. don't attempt to retrieve pixbufs from NULL extra_data.
11436
11437 2003-02-06  Matthias Clasen  <maclas@gmx.de>
11438
11439         * gdk/x11/gdkvisual-x11.c (gdk_visual_get_best_with_depth): Return
11440         a GdkVisual *, not a GdkVisual **.  (#105243)
11441
11442         * gtk/gtkclist.c: 
11443         * gtk/gtkctree.c: 
11444         * gtk/gtkcontainer.c: 
11445         * gtk/gtkdnd.c: 
11446         * gtk/gtkentry.c: 
11447         * gtk/gtklist.c:
11448         * gtk/gtkmenu.c:
11449         * gtk/gtkmenuitem.c:
11450         * gtk/gtknotebook.c:
11451         * gtk/gtkselection.c:
11452         * gtk/gtkspinbutton.c:
11453         * gtk/gtktext.c:
11454         * gtk/gtktextview.c:
11455         * gtk/gtktooltips.c:
11456         * gtk/gtktreeview.c:
11457         * gtk/gtkwindow.c: Replace uses of gtk_timeout_* and gtk_idle_* by
11458         their non-deprecated GLib counterparts.
11459         
11460         * gtk/gtkmain.h: Fully deprecate gtk_timeout_* and gtk_idle_*.
11461         
11462 Sun Feb  2 16:45:57 GMT 2003  Tony Gale <gale@gtk.org>
11463
11464         * docs/tutorial/gtk-tut.sgml: cleanups from
11465         Sebastian Rittau (#104832)
11466
11467 2003-02-01  Tor Lillqvist  <tml@iki.fi>
11468
11469         Merge from stable:
11470
11471         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_foreign_new_for_display,
11472         gdk_pixmap_lookup, gdk_pixmap_lookup_for_display): Implement.
11473         (#104108, Naofumi Yasufuku)
11474
11475         * gdk/gdk.def: Export the above. Export
11476         gdk_screen_get_system_visual, noticed by Ed Woods.
11477
11478 Fri Jan 31 17:45:22 2003  Manish Singh  <yosh@gimp.org>
11479
11480         * demos/pixbuf-demo.c
11481         * demos/testpixbuf.c
11482         * demos/gtk-demo/pixbufs.c: remove deprecated gtk_timeout_* usage.
11483
11484 Fri Jan 31 17:33:00 2003  Manish Singh  <yosh@gimp.org>
11485                                                                                 
11486         * gtk/gtknotebook.c (gtk_notebook_remove_tab_label): set_state
11487         on the tab_label before unparenting it, in case the unparent
11488         drops the refcount to 0.
11489
11490 2003-02-01  Matthias Clasen  <maclas@gmx.de>
11491
11492         * gtk/gtkiconfactory.h: Use GDK_MULTIHEAD_SAFE like all other gtk
11493         headers. Sorry about gtk_selection_clear, Yosh.
11494
11495 Thu Jan 30 17:16:05 2003  Manish Singh  <yosh@gimp.org>
11496
11497         * gtk/gtkselection.h: declare gtk_selection_clear in GTK_COMPILATION
11498         too, for gtkwidget.c. Remember people, when introducing new
11499         deprecations, make sure internal code isn't using it, or if so,
11500         reorganize appropriately like I've done in other places.
11501
11502         * tests/testtext.c: don't use deprecated gtk_timeout_* stuff.
11503
11504 2003-01-31  Matthias Clasen  <maclas@gmx.de>
11505
11506         * gtk/gtkselection.h: 
11507         * gtk/gtkselection.c (gtk_selection_clear): Deprecate.  (#85683)
11508
11509         * gdk/gdkpixbuf.h: 
11510         * gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): 
11511         (gdk_pixbuf_render_to_drawable_alpha): Deprecate.  (#60582)
11512
11513         * gtk/gtkcolorsel.h:
11514         * gtk/gtkcolorsel.c (gtk_color_selection_set_change_palette_hook):
11515         Deprecate.  (#98167)
11516
11517         * gtk/gtkpaned.h: Deprecate gtk_paned_computed_position(). (#97077)
11518
11519         * gtk/gtkmain.h: Deprecate the gtk_timeout_*, gtk_idle_*
11520         and gtk_input_* functions.  (#71596)
11521         
11522         * gtk/gtkentry.c (gtk_entry_move_cursor): 
11523         * gtk/gtklabel.c (gtk_label_move_cursor): Handle
11524         GTK_MOVEMENT_HORIZONTAL_PAGES in switches.
11525
11526         * gdk/gdk.h: Deprecate gdk_wcstombs() and gdk_mbstowcs().  (#79803)
11527
11528         * gtk/gtkitemfactory.h: 
11529         * gtk/gtkitemfactory.c (gtk_item_factory_add_foreign): Deprecate. 
11530         (#69244)
11531
11532 Thu Jan 30 23:48:30 2003  Kristian Rietveld  <kris@gtk.org>
11533
11534         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_count_special_cell):
11535         only count the special cell if it is also visible,
11536         (_gtk_tree_view_column_get_neighbor_sizes): only take the width into
11537         account from visible cells,
11538         (gtk_tree_view_column_cell_get_position): likewise, (Reported and
11539         testcase provided by Vasco Alexandre da Silva Costa, via IRC,
11540         tracking bug was #104563).
11541         
11542 Thu Jan 30 23:46:15 2003  Kristian Rietveld  <kris@gtk.org>
11543
11544         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
11545         subtract expander space and focus line space from the extra space
11546         we are about the allocate. (Fixes #104635).
11547
11548 Thu Jan 30 23:42:03 2003  Kristian Rietveld  <kris@gtk.org>
11549
11550         * gtk/gtkstyle.c (apply_affine_on_point): fix rouding error
11551         (Fixes #96242, patch from Soeren Sandmann).
11552
11553 Thu Jan 30 16:54:29 2003  Owen Taylor  <otaylor@redhat.com>
11554
11555         * gtk/gtknotebook.c: Patch from Soeren Sandmann
11556         to update the states of the tab label child
11557         widgets to match the state of the tabs. 
11558         (#93389, Reported by Tommi Komulainen)
11559
11560 Thu Jan 30 16:30:54 2003  Owen Taylor  <otaylor@redhat.com>
11561
11562         * Makefile.am (EXTRA_DIST): Remove gtk+.spec.in from
11563         EXTRA_DIST, and from dist rules. (#102231)
11564
11565 2003-01-30  Daniel Elstner  <daniel.elstner@gmx.net>
11566
11567         * gtk/gtktoolbar.c (set_child_packing_and_visibility): New helper
11568         function that sets the icon's and label's packing options and
11569         visibility based on toolbar->style.
11570
11571         (gtk_toolbar_internal_insert_element):
11572         (gtk_real_toolbar_style_changed): Make use of
11573         set_child_packing_and_visibility() to clean up the code and get
11574         the packing right for icon-only/text-only toolbars. (#104679)
11575
11576         (get_first_child): Remove, and use gtk_bin_get_child() instead.
11577
11578 2003-01-30  Matthias Clasen  <maclas@gmx.de>
11579
11580         * gtk/gtktextview.c: Replace PAGE_HORIZONTALLY_HACK_VALUE by
11581         GTK_MOVEMENT_HORIZONTAL_PAGES.  (#68947)
11582
11583         * gtk/gtkenums.h: Add GTK_MOVEMENT_HORIZONTAL_PAGES to GtkMovementStep.
11584         
11585 Thu Jan 30 16:01:29 2003  Owen Taylor  <otaylor@redhat.com>
11586
11587         * gdk/gdkrgb.c (gdk_rgb_try_colormap): Remove the 
11588         attempt-to-allocate then free code. To handle multiple
11589         people allocating colors at the same time, we need
11590         to just go ahead and try. (#102213, Shivram U)
11591         
11592 2003-01-30  Daniel Elstner  <daniel.elstner@gmx.net>
11593
11594         * gtk/gtkcolorsel.c (palette_paint): Explicitely draw an opaque
11595         rectangle using the background color rather than relying on
11596         gdk_window_clear_area(), so that the palette works properly with
11597         pixmap themes. (#101732)
11598
11599         * demos/gtk-demo/colorsel.c: Install an "expose_event" handler
11600         to fill the drawing area in the background color.
11601
11602 Wed Jan 29 14:11:21 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
11603
11604         * modules/input/gtkimcontextxim.c (choose_better_style): fix a memory
11605         initialization error for selecting input style (#103549).
11606
11607 Wed Jan 29 17:02:41 2003  Owen Taylor  <otaylor@redhat.com>
11608
11609         * gdk/gdkkeyuni.c (get_decimal_char): Make the 
11610         translation of GDK_KP_Decimal dependent on LC_NUMERIC.
11611         (#101225)
11612
11613 Wed Jan 29 15:43:56 2003  Owen Taylor  <otaylor@redhat.com>
11614
11615         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current):
11616         Make up from the menu bar go to the end of the submenu.
11617         (#96114, Ian Peters.)
11618
11619         * gtk/gtkmenuitem.c (gtk_menu_item_mnemonic_activate): 
11620         Only do the select-but-not-activate stuff if the
11621         menu is already active. Otherwise, just activate.
11622         (#101690, Arvind Samptur)
11623
11624 Tue Jan 28 15:18:24 2003  Owen Taylor  <otaylor@redhat.com>
11625
11626         * autogen.sh (have_automake): Fix version in complaint
11627         message about automake. (#104366, Rich Burridge)
11628
11629 Mon Jan 27 16:38:13 2003  Owen Taylor  <otaylor@redhat.com>
11630
11631         * configure.in: Remove SOEXT stuff; it doesn't work portably.
11632
11633 Mon Jan 27 22:45:15 2003  Kristian Rietveld  <kris@gtk.org>
11634
11635         * gtk/gtktreestore.c (gtk_tree_store_move): don't handle b if
11636         we appended/prepended, send the rows_reordered signal to the 
11637         correct level ... (Reported by Matthew Tuck).
11638
11639 Mon Jan 27 22:43:11 2003  Kristian Rietveld  <kris@gtk.org>
11640
11641         * gtk/gtktreestore.c (gtk_tree_store_sort_helper): don't just bail
11642         out if the level only has one item, recurse over the child if there
11643         is one. (Fixes #100458, reported by Gaël Le Mignot).
11644
11645 Mon Jan 27 22:41:26 2003  Kristian Rietveld  <kris@gtk.org>
11646
11647         * gtk/gtktreeview.c (gtk_tree_view_set_model),
11648         (gtk_tree_view_search_equal_func): make TreeView search handle
11649         all types which are transformable by GValue. (Fixes #99803, reported
11650         by Muktha Narayan).
11651
11652 Mon Jan 27 22:39:25 2003  Kristian Rietveld  <kris@gtk.org>
11653
11654         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_sort_column_id):
11655         *really* handle unsetting the ID. Slightly modified patch from
11656         Soeren Sandmann. Fixes #87556, reported by Jarek Dukat.
11657
11658 Mon Jan 27 22:33:43 2003  Kristian Rietveld  <kris@gtk.org>
11659
11660         Fixes the total GtkTreeSortable mess, and #83195, reported by
11661         Jarek Dukat
11662
11663         * gtk/gtktreestore.c (gtk_tree_store_get_sort_column_id),
11664         (gtk_tree_store_set_sort_column_id), (gtk_tree_store_set_sort_func),
11665         (gtk_tree_store_set_default_sort_func): use the constant
11666         GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID instead of -1, make functions
11667         work as advertised by the documentation.
11668
11669         * gtk/gtklistore.c (gtk_list_store_get_sort_column_id),
11670         (gtk_list_store_set_sort_column_id), (gtk_list_store_set_sort_func),
11671         (gtk_list_store_set_default_sort_func): likewise.
11672
11673         * gtk/gtktreemodelsort.c (gtk_tree_model_set_sort_column_id),
11674         (gtk_tree_model_set_sort_func),
11675         (gtk_tree_model_sort_set_default_sort_func): make functions work
11676         as advertised by the documentation.
11677
11678 Mon Jan 27 22:31:56 2003  Kristian Rietveld  <kris@gtk.org>
11679
11680         * gtk/gtktreeview.c (gtk_tree_view_button_press): update focus_column
11681         before we decide if we edit. (fixes #100973, reported by Dave Cook).
11682
11683 Mon Jan 27 22:29:30 2003  Kristian Rietveld  <kris@gtk.org>
11684
11685         Bug report and test case from Paolo Maggi via IRC.
11686
11687         * gtk/gtkliststore.c (gtk_list_store_swap): update tail if needed,
11688         (gtk_list_store_move): update tail if needed.
11689
11690 Mon Jan 27 16:19:59 2003  Owen Taylor  <otaylor@redhat.com>
11691
11692         * gtk/gtksocket.c (gtk_socket_filter_func): event->any.window
11693         might be NULL. Use gtk_widget_get_display (widget) 
11694         (#102860, Thomas Leonard)
11695
11696 Mon Jan 27 15:58:31 2003  Owen Taylor  <otaylor@redhat.com>
11697
11698         * configure.in: Fix --without-modules/--disable-modules
11699         confusion that was causing --disable-modules not to work.
11700         (#102865, Akira Tagoh)
11701
11702         * configure.in: Fix problem with plain --with-xinput
11703         (#104266, Akira Tagoh)
11704
11705 2003-01-24  Sebastian Rittau  <srittau@jroger.in-berlin.de>
11706
11707         * docs/tutorial/gtk-tut.sgml: Fix a few typos, introduced by my last
11708         patch.
11709
11710 Fri Jan 24 17:06:41 GMT 2003  Tony Gale <gale@gtk.org>
11711
11712         * docs/tutorial/gtk-tut.sgml: Remove duplicate copy of tictactoe.h
11713
11714 Thu Jan 23 21:15:29 GMT 2003  Tony Gale <gale@gtk.org>
11715
11716         * docs/faq/gtk-faq.sgml: Learn to spell Library
11717
11718 Thu Jan 23 20:56:56 GMT 2003  Tony Gale <gale@gtk.org>
11719         * Sebastian Rittau  <srittau@jroger.in-berlin.de>:
11720
11721            docs/tutorial/gtk-tut.sgml: Adopted chapter 21.3 "Creating a
11722            Composite widget" to modern standards. (I.e. use gobject instead of
11723            glib, derive from GtkTable instead of GtkVBox.) Bugzilla #103869.
11724
11725         * docs/tutorial/gtk-tut.sgml, examples/tictactoe: Fixup tic-tac-toe
11726         code in Appendix C to reflect above changes.
11727
11728         * examples/rangewidgets/rangewidgets.c: From Roger Leigh
11729         auto resize on page size change
11730
11731 2003-01-23  Daniel Elstner  <daniel.elstner@gmx.net>
11732
11733         * gtk/gtktoolbar.c (gtk_toolbar_hide_all): Override hide_all
11734         in addition to show_all in order to keep them symmetric. (#102201)
11735
11736 Wed Jan 22 14:18:46 2003  Manish Singh  <yosh@gimp.org>
11737
11738         * gdk/x11/gdkevents-x11.c (translate_key_event): add a "return" at
11739         the end of the function, so there is a statement following the "out"
11740         label in all cases (fixes #101961)
11741
11742 2003-01-22  Christian Rose  <menthos@menthos.com>
11743
11744         * configure.in: Added "mn" to ALL_LINGUAS.
11745
11746 Wed Jan 15 17:02:18 2003  Owen Taylor  <otaylor@redhat.com>
11747  
11748         * gtk/gtktextlayout.c (gtk_text_layout_validate_yrange):
11749         Fix off-by-one error on the backward iteration loop,
11750         that was causing the wrong range to be redrawn.
11751         (at least part of #72734)
11752         
11753 2003-01-21  Matthias Clasen  <maclas@gmx.de>
11754
11755         * gtk/gtktextview.c (gtk_text_view_size_allocate): Adjust the
11756         vadjustment value after changing its bounds.  (fixes #101963 and 
11757         #73562)
11758
11759         * gtk/gtkcolorsel.c (hex_changed): Fix clamping to [0,1] to avoid 
11760         unnecessary roundtrip failures.  (#93500)
11761
11762 2003-01-19  Tor Lillqvist  <tml@iki.fi>
11763
11764         Merge from stable:
11765         
11766         Fix for #103614 and some other problems with GtkFileSelection on
11767         Windows:
11768                 
11769         * gtk/fnmatch.c (get_char): Need to use g_unichar_tolower(), not
11770         g_ascii_tolower(). Windows file names are case-insensitive for all
11771         Unicode letters.
11772
11773         * gtk/gtkfilesel.c: Instead of checking for G_OS_WIN32 or
11774         G_WITH_CYGWIN, check G_PLATFORM_WIN32. Move inclusion of gtkintl.h
11775         earlier, as it includes config.h unconditionally, and gtkprivate.h
11776         redefines GTK_LOCALEDIR.
11777         (struct _CompletionDirSent): Ifdef out the fields not used on
11778         Windows.
11779         (compare_utf8_filenames, compare_sys_filenames): Need different
11780         comparison implementation for UTF-8 file names and system locale
11781         file names on Win32. Cannot simply use g_ascii_strcasecmp(), but
11782         need to casefold all Unicode letters.
11783         (cmpl_completion_matches, open_dir, correct_parent): Ifdef out
11784         variables not used on Win32 to avoid warnings about unused
11785         variables.
11786         (open_ref_dir): Use g_path_skip_root() to skip past potential
11787         drive letter in front of the leading (back)slash.
11788         (open_new_dir): Ifdef out use of CompletionDirSent fields not
11789         there on Win32.
11790         (correct_parent): Bypass inode check also on Cygwin.
11791
11792         Fix bug noticed by Alex Shaduri: Tooltips and other
11793         GDK_WINDOW_TEMP windows were activated. This looked very odd, and
11794         was a regression from earlier versions.
11795         
11796         * gdk/win32/gdkwindow-win32.c (show_window_internal): Fine-tune
11797         behaviour. Don't ever activate GDK_WINDOW_TEMP windows.
11798         (gdk_window_move, gdk_window_resize): Add debug logging.
11799
11800         * gdk/win32/gdkevents-win32.c (gdk_event_translate): When we get a
11801         WM_SIZE message for a non-visible (withdrawn) window, don't clear
11802         the GDK_WINDOW_STATE_WITHDRAWN bit. The window is still withdrawn
11803         even if its size changes.
11804
11805 2003-01-16  Matthias Clasen  <maclas@gmx.de>
11806
11807         * gtk/gtktextlayout.c (gtk_text_layout_get_cursor_locations): Typo fixes.
11808         (totally_invisible_line): Fix an incorrect optimization which
11809         caused invisible paragraphs to be occasionally misrendered.
11810
11811 Wed Jan 15 15:55:47 2003  Owen Taylor  <otaylor@redhat.com>
11812
11813         * gtk/gtksettings.c: Set the double click speed from
11814         XSETTINGS when creating a new GtkSettings object
11815         as well as when getting a notify. (#103601, reported
11816         by Louis Garcia)
11817
11818 Wed Jan 15 14:56:09 2003  Owen Taylor  <otaylor@redhat.com>
11819  
11820         * gtk/gtknotebook.c (gtk_notebook_size_allocate): 
11821         Show/hide the notebook event window as necessary,
11822         we weren't previously keeping the visibility updated
11823         properly.  (#103599)
11824  
11825 2003-01-15  Matthias Clasen  <maclas@gmx.de>
11826
11827         * examples/menu/itemfactory.c: 
11828         * docs/tutorial/gtk-tut.sgml: Add a <StockItem> to the itemfactory
11829         example.  (#103211)
11830
11831 2002-12-29  Murray Cumming  <murrayc@usa.net>
11832
11833         Fixes #102168.
11834
11835         * gtk/gtkliststore.c, gtktreednd.c, gtktreestore.c:
11836         Actually implement the GtkTreeDragSource::row_draggable virtual 
11837         function in GtkListStore and GtkTreeStore instead of just checking 
11838         whether it's implemented at all. This means that DnD isn't broken by
11839         gtkmm's virtual function wrappers. The alternative would be to
11840         hard-code the TRUE return value into gtkmm's wrappers, but that's 
11841         part of GTK+'s implementation, not it's API.
11842
11843 Tue Jan 14 23:42:29 2003  Kristian Rietveld  <kris@gtk.org>
11844
11845         * gtk/gtktreeview.c: fix compiler warning.
11846
11847 Tue Jan 14 23:29:00 2003  Kristian Rietveld  <kris@gtk.org>
11848
11849         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
11850         make sure exposed pixbufs are clipped to the exposed area before
11851         drawing, which is a slight speedup. (#102379, patch from Soeren
11852         Sandmann).
11853
11854 Tue Jan 14 23:26:41 2003  Kristian Rietveld  <kris@gtk.org>
11855
11856         * gtk/gtktreeview.c (validate_visible_area): silly typo fix,
11857         only free scroll_to_path when the complete tree has been validated.
11858         This makes sure that we scrolled to the correct path.
11859
11860 Tue Jan 14 23:25:32 2003  Kristian Rietveld  <kris@gtk.org>
11861
11862         * gtk/gtktreeview.c (gtk_tree_view_style_set): update the
11863         background of widget->window and bin->window. (Fixes #96650, reported
11864         by Dave Camp).
11865
11866 Tue Jan 14 23:24:02 2003  Kristian Rietveld  <kris@gtk.org>
11867
11868         * gtk/gtktreeview.c (gtk_tree_view_clamp_node_visible): process
11869         updates before scrolling, avoiding a "selection streak". (Fixes
11870         #101235, patch from Soeren Sandmann).
11871
11872 Tue Jan 14 23:22:13 2003  Kristian Rietveld  <kris@gtk.org>
11873
11874         * gtk/gtktreeview.c (validate_visible_area): actually put values
11875         in the requisition using gtk_widget_size_request. (Fixes #100172,
11876         reported by Kjartan Maraas).
11877
11878 Tue Jan 14 23:19:45 2003  Kristian Rietveld  <kris@gtk.org>
11879
11880         * gtk/gtktreeview.c (gtk_tree_view_rows_reordered): cancel the
11881         arrow animation timeout before we actually reorder the rbtree. If
11882         we don't do this we can get stuck arrows,
11883         (cancel_arrow_animation): new function. (Fixes #93629, part 2,
11884         reported and testcase provided by Hans Petter Jansson).
11885
11886 Tue Jan 14 23:18:21 2003  Kristian Rietveld  <kris@gtk.org>
11887
11888         * gtk/gtktreeselection.c (gtk_tree_selection_real_modify_range):
11889         anchor_path should be start_path, not end_path. (Fixes #102618,
11890         patch from Carlos Garnacho Parro).
11891
11892 Tue Jan 14 23:16:15 2003  Kristian Rietveld  <kris@gtk.org>
11893
11894         * gtk/gtkliststore.c (gtk_list_store_move): also update the tail,
11895         only correct new_pos if we don't move to the head/tail.
11896
11897 Tue Jan 14 23:11:55 2003  Kristian Rietveld  <kris@gtk.org>
11898
11899         * gtk/gtktreestore.c (gtk_tree_store_swap): take the path from
11900         the parent_iter if depth >= 1, so we send the reordered signal to
11901         the correct level, remove debugging printfs which I forgot the remove
11902         earlier (2.2.0 shipped with this, oops). (Fixes #103198, Reported and
11903         testcase provided by Matthew Tuck).
11904
11905 Tue Jan 14 20:58:44 2003  Kristian Rietveld  <kris@gtk.org>
11906
11907         * gtk/gtktreeview.c (invalite_last_column): split out actual column
11908         invalidation into invalidate_column(),
11909         (gtk_tree_view_size_allocate_columns): invalidate column if the
11910         new width is larger than the old width.
11911         (fixes #102890, reported by Alex Duggan).
11912
11913 2003-01-14  Matthias Clasen  <maclas@gmx.de>
11914
11915         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): Skip
11916         invisible chars for GTK_MOVEMENT_LOGICAL_POSITIONS and
11917         GTK_MOVEMENT_WORDS.
11918
11919         * gtk/gtktextiter.c,
11920         gtk/gtktextiter.h: Add some variant movement functions which
11921         skip invisible chars, and do some cleanups.
11922
11923 2003-01-12  Tor Lillqvist  <tml@iki.fi>
11924
11925         Merge from stable:
11926                 
11927         * gtk/gtkmain.c: Move inclusion of config.h and gtkintl.h earlier,
11928         as gtkprivate.h redefines GTK_LOCALEDIR on Win32, for run-time
11929         lookup.
11930
11931         * gdk/Makefile.am (libgdk_win32_2_0_la_DEPENDENCIES): Depend on
11932         gdk.def.
11933
11934         * gdk/gdk.def
11935         * gtk/gtk.def: Add some missing entries. Thanks to Kenichi SUTO.
11936
11937         * gtk-zip.sh.in (DEVZIP): Add bin/{gtk-query-immodules-2.0,
11938         gtk-demo}.exe and share/gtk-2.0.
11939
11940         * gdk/win32/gdkwindow-win32.c (gdk_window_set_skip_taskbar_hint):
11941         Implement by setting or clearing the WS_EX_TOOLWINDOW extended
11942         window style.
11943         (gdk_window_set_type_hint): Add all cases to the switch (not all
11944         do anything, though). Handle GDK_WINDOW_TYPE_HINT_TOOLBAR by
11945         calling gdk_window_set_skip_taskbar_hint(). This means that GTK
11946         won't know that the skip_taskbar hint is on for the window, is
11947         this bad?
11948
11949 Wed Jan  8 18:43:03 2003  Manish Singh  <yosh@gimp.org>
11950
11951         * gdk/x11/gdkdisplay-x11.c: #include <stdlib.h> for putenv,
11952         <string.h> for strlen.
11953
11954         * gdk/x11/gdkscreen-x11.c: #include <stdlib.h> for getenv,
11955         <string.h> for strrchr.
11956
11957         * tests/testgtk.c (create_saved_position): "x" and "y" properties
11958         for widgets no longer exist, use gtk_window_move instead.
11959
11960         * test/testtextbuffer.c (check_get_set_text): cast strlen to
11961         int for g_error.
11962
11963 2003-01-08  Matthias Clasen  <maclas@gmx.de>
11964
11965         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix display of
11966         the selection in the presence of invisible segments.
11967
11968 2003-01-07  Matthias Clasen  <maclas@gmx.de>
11969
11970         * gtk/gtktextview.c (gtk_text_view_class_init): Bind C-/ and C-\
11971         to "select all" and "unselect all".  (#102065)
11972
11973         * gtk/gtktextview.h (struct _GtkTextView): Add a comment that
11974         the just_selected_element is unused.
11975
11976         * gtk/gtktextview.c (extend_selection): New helper function to
11977         find the range that should be added to the selection. 
11978         (selection_motion_event_handler): 
11979         (gtk_text_view_start_selection_drag): 
11980         (gtk_text_view_end_selection_drag): 
11981         (selection_motion_event_handler): 
11982         (selection_scan_timeout): Support select-by-words/lines.
11983         (gtk_text_view_button_press_event): Start a selection drag on
11984         double/triple clicks.  (#78499)
11985
11986 2003-01-06  Matthias Clasen  <maclas@gmx.de>
11987
11988         Implement a utility function proposed in #102534:
11989         
11990         * gtk/gtktextbtree.h: 
11991         * gtk/gtktextbtree.c (_gtk_text_btree_select_range): New function.
11992         (_gtk_text_btree_place_cursor): Now a simple wrapper around
11993         _gtk_text_btree_select_range().   
11994
11995         * gtk/gtktextbuffer.h: 
11996         * gtk/gtktextbuffer.c (gtk_text_buffer_select_range): New function.
11997         (gtk_text_buffer_place_cursor): Now a simple wrapper around
11998         gtk_text_buffer_select_range(). 
11999
12000 2003-01-05  Havoc Pennington  <hp@pobox.com>
12001
12002         * configure.in: fix a stray bracket that was breaking the build
12003
12004 2003-01-05  Tor Lillqvist  <tml@iki.fi>
12005
12006         * gtk-zip.sh.in: Use correct DLL and import library names, with
12007         GTK_API_VERSION in name, not GTK_MAJOR_VERSION.GTK_MINOR_VERSION.
12008         (DEVZIP): Add gdk-pixbuf-query-loaders.exe.
12009
12010         * configure.in: Improve check for dimm.h.
12011
12012         * configure.in: Set SOEXT to 'so' on Unix, 'dll' on Win32. Used in
12013         gdk-pixbuf/Makefile.am.
12014
12015         * gdk-pixbuf/makefile.mingw.in
12016         * gdk-pixbuf/pixops/makefile.mingw.in
12017         * gdk/makefile.mingw.in
12018         * gdk/win32/makefile.mingw.in
12019         * gtk/makefile.mingw.in: Remove. Not maintained anyway.
12020
12021         * gdk-pixbuf/Makefile.am
12022         * gdk-pixbuf/pixops/Makefile.am
12023         * gdk/Makefile.am
12024         * gdk/win32/Makefile.am
12025         * gtk/Makefile.am
12026         * configure.in: Remove makefile.mingw{,.in} from here, too.
12027         
12028         * README.win32: Updates. Don't mention the now removed
12029         makefile.mingw files.
12030
12031         * gdk/gdk.def
12032         * gtk/gtk.def: Add a couple of missing entries.
12033
12034         * gdk/gdkkeynames.c: Include <string.h> for strcmp() and memcpy().
12035
12036         * gdk/win32/gdkevents-win32.c: Move dimm.h header clash workaround
12037         earlier.
12038
12039         * gdk/win32/rc/Makefile.am: Add hack to help
12040         build/win32/lt-compile-resource decide which kind of libtool
12041         object file to produce.
12042
12043 2003-01-05  Matthias Clasen  <maclas@gmx.de>
12044
12045         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): Make
12046         C-Down step through the sequence of paragraph ends (old behaviour
12047         included paragraph starts).  (#80340, patch by Narayana Pattipati)
12048
12049         * gtk/gtktextiter.c (_gtk_text_btree_get_iter_at_first_toggle):
12050         Check for a tag toggle at the start iterator before calling
12051         gtk_text_iter_forward_to_tag_toggle().  (#102090, patch by Daniel 
12052         Elstner)
12053
12054 2003-01-04  Matthias Clasen  <maclas@gmx.de>
12055
12056         * gtk/gtkfilesel.h (struct _GtkFileSelection): Add /*< public >*/
12057         and /*< private >*/ as appropriate.  (#97211)
12058
12059 2003-01-04  Tor Lillqvist  <tml@iki.fi>
12060
12061         * Makefile.am (EXTRA_DIST): Don't distribute gtk-zip.sh, but do
12062         distribute gtk-zip.sh.in.
12063
12064         * gtk-zip.sh.in (DEVZIP): Add gdk-pixbuf-csource.exe and .1.
12065
12066 2003-01-03  Havoc Pennington  <hp@pobox.com>
12067
12068         * docs/Makefile.am (EXTRA_DIST): put it in EXTRA_DIST
12069
12070         * docs/text_widget_internals.txt: add a file documenting some of
12071         the text widget internals
12072
12073 2003-01-02  Matthias Clasen  <maclas@gmx.de>
12074
12075         * gtk/gtkwindow.c (gtk_window_get_focus): Document that it may
12076         return NULL.  (#102069)
12077
12078 2003-01-01  Matthias Clasen  <maclas@gmx.de>
12079
12080         * gtk/fnmatch.c (FNMATCH_TEST_CASES): #undef, since having
12081         a main() in the library is obviously bad. 
12082
12083 2002-12-27  Matthias Clasen  <maclas@gmx.de>
12084
12085         * gtk/gtktextview.c (gtk_text_view_drag_data_received): Place the
12086         cursor at drop point.  (#72384)
12087         (gtk_text_view_size_allocate): Update the horizontal adjustment
12088         value.  (#75694)
12089
12090 2002-12-25  Matthias Clasen  <maclas@gmx.de>
12091
12092         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix highlighting of
12093         selection wrt. to empty lines.  (#90435, #90582, #91619)
12094
12095         * gtk/gtktextview.c (gtk_text_view_preedit_changed_handler):
12096         Keep the cursor on screen.  (#96929)
12097
12098 2002-12-24  Matthias Clasen  <maclas@gmx.de>
12099
12100         * gtk/gtktextbuffer.c (paste_from_buffer): 
12101         (clipboard_text_received): Let the user action span the insertion
12102         and the deletion of the old selection.  (#82844)
12103
12104 2002-12-23  Matthias Clasen  <maclas@gmx.de>
12105
12106         * gtk/gtktextiter.c (gtk_text_iter_backward_sentence_starts):
12107         Don't call gtk_text_iter_backward_sentence_start() if
12108         count is zero.  (#99115)
12109
12110         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): Call
12111         move_cursor() even if the cursor hasn't moved, since it has the
12112         side effect of canceling the selection.  (#81395, #98537, #98333)
12113
12114 2002-12-22  Matthias Clasen  <maclas@gmx.de>
12115
12116         * gtk/gtktextlayout.c (add_preedit_attrs): Don't add attributes
12117         with empty ranges.  (fixes #101564 and #80637)
12118
12119 2002-12-21  Tor Lillqvist  <tml@iki.fi>
12120
12121         * gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
12122         sets the window style and extended window style, and adjusts the
12123         width and height to take the window decorations into account
12124         earlier. The adjusted width and height used to be ignored. Remove
12125         the local x, y, width and height variables, no need to further
12126         confuse the code by having local copies. (Partial fix, I hope, for
12127         #101588)
12128
12129         (gdk_window_move): When moving top-level windows, take title bar
12130         and border width into account, offsetting the coordinates before
12131         calling SetWindowPos().
12132
12133         (gdk_window_set_decorations, gdk_window_set_functions):
12134         Reimplement, taking into account the peculiar semantics of
12135         GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
12136
12137         (gdk_window_get_decorations): Implement. (#98981)
12138         
12139         (gdk_window_set_type_hint): When setting
12140         GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
12141         (#79036)
12142
12143         * gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
12144
12145 2002-12-21  Matthias Clasen  <maclas@gmx.de>
12146
12147         * gtk/gtktextview.c (gtk_text_view_set_background): New static
12148         function to set the background of all windows.
12149         (gtk_text_view_style_set): Use gtk_text_view_set_background().
12150         (gtk_text_view_state_changed): New function; change background
12151         according to state.  (#88126)
12152
12153 2002-12-21  Havoc Pennington  <hp@pobox.com>
12154
12155         * gtk/gtktextview.c (gtk_text_view_move_visually): fix the documentation
12156