]> Pileus Git - ~andy/gtk/blob - ChangeLog
Merged the federico-filename-entry branch, to fix bug #136541. Combined
[~andy/gtk] / ChangeLog
1 2006-05-03  Federico Mena Quintero  <federico@novell.com>
2
3         Merged the federico-filename-entry branch, to fix bug #136541.
4         Combined ChangeLogs:
5
6         2006-04-17  Federico Mena Quintero  <federico@novell.com>
7
8         * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
9         Oops, we *do* need to check that we are in OPEN mode before
10         selecting the first row in the file list.  See
11         https://bugzilla.novell.com/show_bug.cgi?id=166906
12         (gtk_file_chooser_default_get_paths): If we are in the case for
13         the file list, and the list has no selected rows, jump to the case
14         for the filename entry.  This is so that
15
16                1. The user types a filename in the SAVE filename entry
17                   ("foo.txt").
18
19                2. He then double-clicks on a folder ("bar") in the file
20                   list.
21
22         will yield the expected "bar/foo.txt" selection.
23
24         2006-03-29  Federico Mena Quintero  <federico@novell.com>
25
26         * gtk/gtkpathbar.c (gtk_path_bar_init): Reduce the inter-button
27         spacing to 0.
28
29         * gtk/gtkfilechooserdefault.c (browse_widgets_create): Make the
30         location label bold.
31
32         2006-03-29  Federico Mena Quintero  <federico@novell.com>
33
34         * gtk/gtkfilechooserdefault.c (location_mode_set): Just change the
35         location_mode field if we are in SAVE/CREATE_FOLDER modes.
36         (gtk_file_chooser_default_get_paths): Get the path based on the
37         currently focused widget, or the last-focused widget.  This is
38         what we should have been doing in the beginning, but it worked out
39         fine because we didn't have the possibility of a filename entry in
40         OPEN mode.
41         (gtk_file_chooser_default_should_respond): Handle the case where
42         the last focused widget is the location_entry.
43
44         2006-03-28  Federico Mena Quintero  <federico@novell.com>
45
46         * gtk/gtkfilechoosersettings.[ch]: New files with a simple
47         framework for saving/loading settings from the file chooser in
48         $XDG_CONFIG_HOME/gtk-2.0/gtkfilechooser.
49
50         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_unmap):
51         Save the current settings.
52         (settings_save): New helper function.  We save the location_mode
53         and show_hidden flags.
54         (gtk_file_chooser_default_map): Load the settings.
55         (settings_load): New helper function.
56
57         * gtk/gtkfilechooserentry.c
58         (_gtk_file_chooser_entry_set_file_part): Oops, don't modify
59         in_change.  Our handlers are what set the file_part, so they
60         *must* be run when we modify the text.
61
62         2006-03-27  Federico Mena Quintero  <federico@novell.com>
63
64         * gtk/gtkfilechooserprivate.h (struct _GtkFileChooserDefault):
65         Removed the save_file_name_entry.  We'll make this be the same as
66         the location_entry widget.
67         (struct _GtkFileChooserDefault): Leave only location_button,
68         location_entry_box, location_label, location_entry.  We'll use a
69         single toggle button for the location entry, which will appear
70         below the path bar.
71         (struct _GtkFileChooserDefault): Added a
72         processing_pending_selections flag.
73
74         * gtk/gtkfilechooserdefault.c (save_widgets_create): Destroy the
75         old location_entry if necessary, and hide the location toggle
76         widgets.
77         (update_chooser_entry): In multiple selection mode, just clear the
78         location_entry.
79         (check_save_entry): Allow running in OPEN or SELECT_FOLDER modes
80         if we are in LOCATION_MODE_FILENAME_ENTRY.
81         (gtk_file_chooser_default_should_respond): Switch to a folder if
82         the location_entry contains a folder name in OPEN and SAVE mode,
83         not just SAVE mode.  If the entry doesn't contain a folder name,
84         but is otherwise well-formed, and we are in OPEN mode, return that
85         we should respond with that filename.
86         (gtk_file_chooser_default_initial_focus): Focus the location_entry
87         if appropriate.
88         (browse_widgets_create): Create the location_entry_box and the
89         location_label here.
90         (update_appearance): Call location_mode_set() when switching back
91         to OPEN/SELECT_FOLDER mode.  Hide the location_button when
92         switching to SAVE/CREATE_FOLDER mode.
93         (pending_select_paths_process): Turn the
94         processing_pending_selections flag on and off around changes to
95         the current selection.  Don't special-case OPEN mode anymore,
96         since the new flag will take care of things in
97         update_chooser_entry().
98         (update_chooser_entry): Don't do anything if
99         processing_pending_selections is TRUE.  This keeps the entry from
100         being polluted when changing folders.
101         (location_popup_handler): In OPEN/SELECT_FOLDER modes, toggle
102         between the path bar and the entry.  In SAVE/CREATE_FOLDER modes, simply focus the
103         location_entry.
104         (update_from_entry): Removed.
105         (location_entry_create): Removed.
106         (open_location_cb): Removed.
107         (file_list_build_popup_menu): Don't add an "Open _Location" menu item.
108         (location_entry_set_initial_text): Don't do anything if
109         current_folder is NULL.
110
111         * gtk/gtkfilechooserentry.c
112         (_gtk_file_chooser_entry_set_file_part): Turn in_change on and off
113         around the call to gtk_entry_set_text().  This makes completion
114         not happen when the caller has explicitly set a name.
115
116         2006-03-24  Federico Mena Quintero  <federico@novell.com>
117
118         * gtk/gtkfilechooserprivate.h (struct _GtkFileChooserDefault):
119         Added fields location_mode_box, location_pathbar_radio,
120         location_filename_radio, location_widget_box, location_label,
121         location_entry.  The radio buttons will switch between the pathbar
122         and the location entry; the other boxes are for layout purposes.
123         (enum LocationMode): New enum.
124         (struct _GtkFileChooserDefault): Added a location_mode field.
125
126         * gtk/gtkfilechooserdefault.c (browse_widgets_create): Create the
127         location radio buttons to switch between the pathbar and the
128         location entry.  Pack the browse_path_bar in the new
129         location_widget_box instead of a generic hbox.
130         (location_buttons_create): New function.
131         (gtk_file_chooser_default_init): Initialize impl->location_mode.
132         (location_switch_to_path_bar): New function.
133         (location_switch_to_filename_entry): New function.
134
135         * gtk/gtkfilechooserbutton.c (model_add_special): The display_name
136         should not be const.
137
138 2006-05-03  Matthias Clasen  <mclasen@redhat.com>
139
140         * gtk/gtkprintunixdialog.c: Replace the xpm collate icons
141         by cairo drawing that respects themes.
142
143         * gdk/quartz/Makefile.am (libgdk_quartz_la_SOURCES): Add
144         missing files.  (#340533, Ludovic Rousseau)
145
146         * gtk/gtkprintunixdialog.c (draw_page_cb): Don't leak the
147         cairo context here.  (#340522, Christian Persch)
148
149         * gtk/gtkprintoperation-unix.c (unix_finish_send): Don't
150         use gtk_dialog_run for the error dialog, and improve the
151         dialog in other ways.  (#340510, Christian Persch)
152
153         * gtk/gtkpagesetupunixdialog.c: Beautify the custom
154         paper size dialog.  (#339590, patch by Christian Persch)
155         
156         * gtk/gtkaccessible.c:
157         * gtk/gtkclipboard.c:
158         * gtk/gtkfilefilter.c:
159         * gtk/gtkimmodule.c:
160         * gtk/gtkmenubar.c: More G_DEFINE_TYPE conversion.
161
162         * gtk/gtkwidget.c: Make GtkWidget abstract again.
163
164 2006-05-02  Matthias Clasen  <mclasen@redhat.com>
165
166         * gtk/*.c: Use G_DEFINE_TYPE and g_type_register_static_simple()
167         where applicable, for ~5000 lines of code reduction. This also
168         reduces the size of the data section by ~9k. The overall library
169         sizes shrinks a bit less, since the text section gets a bit
170         larger.
171
172 2006-05-02  Kristian Rietveld  <kris@imendio.com>
173
174         * gtk/gtktreeview.c (gtk_tree_view_row_inserted): set tmpnode to
175         the return value of the _gtk_rbtree_insert* functions, since that
176         is the node we really want to check for visibilty.
177
178 2006-05-02  Matthias Clasen  <mclasen@redhat.com>
179
180         * gtk/gtkprinter.[hc]: Don't use virtual as a parameter name.
181         (#340394, Christian Persch)
182
183 2006-05-02  Christian Persch  <chpe@cvs.gnome.org>
184
185         * gtk/gtkpagesetupunixdialog.c:
186         * gtk/gtkprintcontext.c: 
187         * gtk/gtkprinter.c:
188         * gtk/gtkprinteroptionwidget.c:
189         * gtk/gtkprintjob.c:
190         * gtk/gtkprintoperation-unix.c:
191         * gtk/gtkprintoperation.c:
192         * gtk/gtkprintunixdialog.c: Use a priv variable when accessing priv
193           multiple times in the same function. Bug #340288.
194
195 2006-05-02  Michael Natterer  <mitch@imendio.com>
196
197         * gtk/gtklabel.c (gtk_label_set_line_wrap): added note about the
198         inablity to do height-for-width text layout and suggest to use
199         gtk_widget_set_size_request() for getting a label that wraps at
200         some specific position.
201
202 2006-05-02  Kristian Rietveld  <kris@imendio.com>
203
204         * ChangeLog.gtk-async-file-chooser: added ChangeLog entries from
205         the kris-async-branch.
206
207         * Makefile.am: updated EXTRA_DIST
208
209 2006-05-02  Alexander Larsson  <alexl@redhat.com>
210
211         * ChangeLog.gtk-printing: 
212         * Makefile.am (EXTRA_DIST):
213         Add ChangeLog.gtk-printing
214
215 2006-05-01  Matthias Clasen  <mclasen@localhost.localdomain>
216
217         * NEWS: Updates
218
219 2006-05-02  Kristian Rietveld  <kris@imendio.com>
220
221
222         * configure.in: Up ABI version to 2.10.0 (by Matthias' request).
223
224 2006-05-01  Kristian Rietveld  <kris@imendio.com>
225
226         Merge of the GTK+ asynchronous file chooser branch.  Please see
227         the kris-asynch-branch for more detailed ChangeLog entries.
228
229         * configure.in: increase binary version to 2.9.0.
230
231         * gtk/gtk.symbols:
232         * gtk/gtkfilechooser.c:
233         * gtk/gtkfilechooserbutton.c:
234         * gtk/gtkfilechooserdefault.c:
235         * gtk/gtkfilechooserdialog.c:
236         * gtk/gtkfilechooserembed.c:
237         * gtk/gtkfilechooserembed.h:
238         * gtk/gtkfilechooserentry.c:
239         * gtk/gtkfilechooserentry.h:
240         * gtk/gtkfilechooserprivate.h:
241         * gtk/gtkfilesystem.c:
242         * gtk/gtkfilesystem.h:
243         * gtk/gtkfilesystemmodel.c:
244         * gtk/gtkfilesystemmodel.h:
245         * gtk/gtkfilesystemunix.c:
246         * gtk/gtkpathbar.c:
247         * gtk/gtkpathbar.h:
248         Merge from kris-async-branch.
249
250 2006-05-01  Matthias Clasen  <mclasen@redhat.com>
251
252         * NEWS: Updates
253
254 2006-04-30  Matthias Clasen  <mclasen@redhat.com>
255
256         * gtk/gtktreemodel.c (gtk_tree_model_base_init): Document
257         GtkTreeModel signals.
258
259 2006-04-19  Michael Emmel  <mike.emmel@gmail.com>
260
261         * gdk/directfb/gdkdrawable-directfb.c: removed all subtracting one on
262         clipping
263
264 2006-04-30  Kristian Rietveld  <kris@imendio.com>
265
266         Fix for #340200, spotted by Torsten Schoenfeld.
267
268         * gtk/gtktreeview.c (gtk_tree_view_get_cell_area): fix up logic
269         calculating the level indentation,
270         (gtk_tree_view_start_editing): remove code calculating the
271         level indentation, since _get_cell_area() takes care of this for us.
272
273 2006-04-30  Matthias Clasen  <mclasen@redhat.com>
274
275         Fix problems with setting symbolic colors from rc files.
276         (#338345, Benjamin Berg)
277         
278         * gtk/gtkrc.c (gtk_rc_settings_changed, gtk_rc_font_name_changed) 
279         (gtk_rc_color_hash_changed, gtk_rc_reparse_all_for_settings): Don't
280         freeze notification for settings changes while parsing; instead
281         manually avoid recursion, and update the color hashes.
282
283 2006-04-30  Matthias Clasen  <mclasen@redhat.com>
284
285         * gtk/gtksettings.c (gtk_settings_class_init): Change the default
286         value of the gtk-color-scheme setting to "".
287
288         * gtk/gtkprinteroption.c: 
289         * gtk/gtkprinteroptionwidget.c: 
290         * gtk/gtkprintunixdialog.c: Improve the print dialog layout,
291         mark some more strings for translation.  (#340139, Christian Persch)
292
293         * gtk/gtkstatusicon.c (gtk_status_icon_class_init): Fix the definition
294         of the ::size-changed signal, and improve its documentation.
295         (#340112, Christian Persch)
296
297 2006-04-29  Behdad Esfahbod  <behdad@gnome.org>
298
299         * gtk/gtkwidget.c (gtk_widget_create_pango_layout)
300         (gtk_widget_get/create_pango_context): Change colormap to font map in
301         docs. (#340093)
302
303 2006-04-29  Matthias Clasen  <mclasen@redhat.com>
304
305         * gtk/gtk.symbols: 
306         * gtk/gtkstatusicon.h: 
307         * gtk/gtkstatusicon.c (gtk_status_icon_position_menu): Add a menu
308         position function for use with popups on status icons.  (#334573, 
309         Christian Persch)
310
311         * gtk/gtkwidget.c (gtk_widget_is_composited): Fix a C99ism.  (#340055,
312         Kazuki Iwamoto)
313
314 2006-04-28  Matthias Clasen  <mclasen@redhat.com>
315
316         * gtk/gtkcellrenderertext.c (get_size): Use _static variants when
317         copying and merging short-lived Pango layouts. (#340033, Morten Welinder)
318
319 2006-04-28  Behdad Esfahbod  <behdad@gnome.org>
320
321         * gtk/gtkwidget.c (gtk_widget_create_pango_layout): Fix typo in
322         docs. (#340063)
323
324 2006-04-28  Matthias Clasen  <mclasen@redhat.com>
325
326         * gtk/gtktreeview.c (gtk_tree_view_drag_begin): Don't force
327         the standard DND icon if the user has a custom DND source.  
328         (#339522, Joe Wreschnig)
329
330 2006-04-28  Michael Natterer  <mitch@imendio.com>
331
332         * gtk/gtktextbuffer.c (create_clipboard_contents_buffer): keep a
333         reference to the source buffer while the clipboard contents buffer
334         exists, because it is needed for serializing the contents buffer.
335         Makes copying from the contents buffer possible even after the
336         resp. text view is destroyed (for example when there is a
337         clipboard manager running on app exit) (bug #339195).
338
339 2006-04-27  Behdad Esfahbod  <behdad@gnome.org>
340
341         * gdk/gdkpango.c (gdk_pango_renderer_draw_glyphs): Cast to double
342         before dividing by PANGO_SCALE. (#334582)
343
344 2006-04-27  Matthias Clasen  <mclasen@redhat.com>
345
346         * gtk/gtkentry.c (popup_position_func): Improve positioning
347         of the menu when popped up by keynav.  (#334987, Christian
348         Persch)
349
350         * gtk/gtkdnd.c (gtk_drag_set_icon_window): Handle the case
351         of being called after the drag is cancelled.  (#339224, 
352         Benjamin Otte)
353
354         * gdk/x11/gdkscreen-x11.c (_gdk_x11_screen_process_owner_change):
355         Use XFixes only if it is available.  (#339839, Marko Anastasov)
356
357 2006-04-26  Federico Mena Quintero  <federico@novell.com>
358
359         * gtk/gtkdialog.c (gtk_dialog_close): Don't make this conditional
360         on having a GTK_RESPONSE_CANCEL button -> end the idiocy.  Fixes
361         bug #101293.
362
363 2006-04-26  Kristian Rietveld  <kris@imendio.com>
364
365         * gtk/gtktreeview.c (node_is_visible): new function,
366         (validate_visible_area): when a node is validated, only queue a
367         redraw for that node, not for the entire widget (a redraw for the
368         entire widget is only needed when the sizes change, and
369         _queue_resize() will take care of that),
370         (do_validate_rows): do not queue a redraw, redraws are only needed
371         for changes in the visible area and validate_visible_area() takes
372         care of that,
373         (gtk_tree_view_row_inserted): for fixed height mode, only queue
374         a resize and redraw if the node is visible, else no redraw is needed.
375
376 2006-04-26  Kristian Rietveld  <kris@imendio.com>
377
378         If this new "row-ending-details" property is turned on, more
379         detailed "details" will be passed to the theme engine for drawing
380         the background, drop indicator and focus rectangle.  Requirement is
381         that the theme engine supports these details. (#333760).
382
383         * gtk/gtktreeview.c (gtk_tree_view_class_init): add row-ending-details
384         style property,
385         (gtk_tree_view_bin_expose): pass more detailed detail to
386         gtk_paint_flat_box() if the property is turned on,
387         (gtk_tree_view_bin_expose): likewise for the drop indicator,
388         (gtk_tree_view_bin_expose): likewise for the focus rectangle.
389
390 2006-04-26  Kristian Rietveld  <kris@imendio.com>
391
392         New "show-expanders" and "level-indentation" properties, which can
393         be used for customizing the tree view.  (For example to do
394         grouping as demonstrated in the test application).
395         Discussion in #80869.
396
397         * gtk/gtktreeprivate.h: add level_indentation field.
398
399         * gtk/gtktreeview.c (gtk_tree_view_class_init),
400         (gtk_tree_view_init), (gtk_tree_view_set_property),
401         (gtk_tree_view_get_property): add the properties to the object,
402         (gtk_tree_view_button_press), (do_prelight),
403         (gtk_tree_view_bin_expose), (validate_row),
404         (gtk_tree_view_discover_dirty_iter), (gtk_tree_view_get_cell_area),
405         (gtk_tree_view_create_row_drag_icon): take the new properties
406         into account,
407         (gtk_tree_view_start_editing): fix cell placement code.
408
409         * tests/testgrouping.c: new test application, showing how to
410         implement grouping.
411
412         * tests/Makefile.am: updated.
413
414 2006-04-25  Matthias Clasen  <mclasen@redhat.com>
415
416         * gdk/gdk.symbols: Add gdk_screen_is_composited
417
418         * gtk/gtkprintjob.c (gtk_print_job_set_source_file): Add docs.
419
420         * gtk/gtkprintoperation.c: Add docs.
421
422 Tue Apr 25 10:25:28 2006  Søren Sandmann  <sandmann@redhat.com>
423
424         * tests/testgtk.c (create_alpha_window): Create 'composited' label.
425
426         * tests/testgtk.c (on_composited_changed): New function, change
427         the label to say whether the screen is composited or not.
428
429         * gtk/gtkwindow.c (gtk_window_on_composited_changed): When
430         composited status change, invalidate the window and propagate the signal;.
431
432         * gtk/gtkwindow.c (gtk_window_map): Set the appropriate type hint
433         if reset_type_hint is TRUE.
434
435         * gtk/gtkwindow.c (gtk_window_set_type_hint): If hint is one of
436         the old hints, store a shadow copy in the public window->type_hint
437         bitfield, otherwise set this field to normal. Set the private
438         field to the type hint.
439
440         * gtk/gtkwindow.c (gtk_window_init): Initialize priv->type_hint. 
441
442         * gtk/gtkwindow.c (struct _GtkWindowPrivate): New field
443         "reset_type_hint" indicating whether the type hint needs to be
444         reset. New field type_hint containing a GdkWindowTypeHint.
445
446         * gtk/gtkwidget.c (propagate_composited_changed): New function to
447         propagate changes in composited status.
448         (gtk_widget_class_init): Add composited_changed signal.
449         
450         * gtk/gtkwidget.h (struct _GtkWidgetClass): New signal composited-changed.
451
452         * gtk/gtkwidget.c (gtk_widget_is_composited): New function.
453
454         * gtk/gtktooltips.c (gtk_tooltips_draw_tips): Set transient for.
455
456         * gtk/gtktooltips.c (gtk_tooltips_force_window): Set the type hint
457
458         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Compute whether
459         the item belongs to a menubar. Set the type_hint appropriately
460         depending on the outcome.
461
462         * gtk/gtkmenu.c (gtk_menu_position): Set the default type hint here.
463
464         * gtk/gtkmenu.c (gtk_menu_attach_to_widget): connect to hierarchy
465         changed on the attach widget.
466
467         * gtk/gtkmenu.c (attach_widget_hierarchy_changed): New function to
468         set the transient_for property for menus.
469
470         * gtk/gtkdnd.c (set_icon_stock_pixbuf): Set the appropriate type hint.
471
472         * gtk/gtkcombo.c (gtk_combo_popup_list): Make the popup window
473         transient for the toplevel.
474
475         * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Set
476         transient-for, for the popup window.
477
478         * gdk/x11/gdkwindow-x11.c (gdk_window_get_type_hint): Support for
479         new window types.
480
481         * gdk/x11/gdkwindow-x11.c (gdk_window_set_type_hint): Add support
482         for new window types.
483
484         * gdk/x11/gdkscreen-x11.c (_gdk_x11_screen_process_owner_change):
485         New function called whenever the compositing manager comes and goes.
486
487         * gdk/x11/gdkscreen-x11.c (gdk_screen_is_composited): New function.
488
489         * gdk/x11/gdkscreen-x11.c
490         (_gdk_x11_screen_request_cm_notification, make_cm_atom,
491         check_is_composited): New functions
492
493         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Call
494         _gdk_x11_screen_process_owner_change when an
495         XFixesSelectionNotifyEvent is received.
496
497         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Call
498         _gdk_x11_screen_request_cm_notification() on all screens.
499
500         * gdk/quartz/gdkscreen-quartz.c (gdk_screen_is_composited): Dummy
501         implementation. 
502
503         * gdk/gdkscreen.c (gdk_screen_class_init): New signal,
504         'composited-changed'.
505
506         * gdk/gdkwindow.h: Add new EWMH window types.
507
508         * gdk/win32/gdkscreen-win32.c (gdk_screen_is_composited) 
509
510 2006-04-25  Matthias Clasen  <mclasen@redhat.com>
511         
512         * modules/printbackends/cups/gtkprintbackendcups.c: 
513         Add some more translatable PPD option names.
514
515 2006-04-24  Matthias Clasen  <mclasen@redhat.com>
516
517         * po/POTFILES.in:
518         * po-properties/POTFILES.in: Updates
519
520         * gtk/paper_names.c: Declare PaperInfo here.
521
522         * gtk/gen-paper-names.c: Add a prefix to gettext msgids.
523
524         * gtk/paper_names_offsets.c: Regenerated.
525         
526         * gtk/gtkpapersize.c (gtk_paper_size_get_display_name):
527         Use g_strip_context() to strip the prefix.
528
529 2006-04-24  Matthias Clasen  <mclasen@redhat.com>
530         
531         * gtk/gtkfontbutton.c: Small doc fixes.
532
533         * gtk/gtkprintunixdialog.h: 
534         * gtk/gtkpagesetupunixdialog.h: Fix includes (#338665)
535
536         * gtk/gtkprintsettings.h (GtkPageRange): Declare in a way grokked by gtk-doc.
537
538         * gdk/gdkregion-generic.c: Documentation fixes.
539
540         * gdk/directfb/gdkmain-directfb.c: Make the comment not look like
541         a doc comment.
542
543         * gtk/gtkprintunixdialog.c: Add docs.
544
545         * gtk/gtkstatusicon.c (gtk_status_icon_get_visible): Typo fix.
546
547 2006-04-24  Alexander Larsson  <alexl@redhat.com>
548
549         * gtk/gtkprinter.c:
550         Don't ref the backend since the backend owns the printer.
551
552 2006-04-24  Alexander Larsson  <alexl@redhat.com>
553
554         * gtk/gtkpagesetupunixdialog.c (update_combo_sensitivity_from_printers):
555         Remove spew.
556
557 2006-04-24  Alexander Larsson  <alexl@redhat.com>
558
559         * gtk/gtkprintunixdialog.c (create_page_setup_page):
560         Even/Odd Pages -> Even/Odd Sheets
561
562 2006-04-24  Matthias Clasen  <mclasen@redhat.com>
563
564         * gtk/gtk.symbols:
565         * gtk/gtkprintoperation.c (gtk_print_operation_run_async): Refactor the
566         gtk_print_operation_run() code and add an _async version.
567
568         * gtk/gtkprintoperation-private.h:
569         * gtk/gtkprintoperation-unix.c
570         (_gtk_print_operation_platform_backend_run_dialog_async)
571         (gtk_print_run_page_setup_dialog_async): Variants of the run functions
572         which don't call gtk_dialog_run(), but only show the dialog and return,
573         and handle the response in a signal handler.
574
575         * gtk/gtkprintoperation-win32.c (gtk_print_run_page_setup_dialog_async) 
576         (_gtk_print_operation_platform_backend_run_dialog_async): Implement these 
577         by calling the sync versions.
578
579         * gtk/gtkprintoperation-unix.c: Cleanups.
580
581         * gtk/gtkpagesetupunixdialog.c (gtk_page_setup_unix_dialog_get_page_setup):
582         Remove redundant code.
583
584         * gtk/Makefile.am: Install gtkprintjob.h as Unix-specific print API.
585
586         * gtk/gtkprintoperation-unix.c (gtk_print_run_page_setup_dialog): 
587         Return a copy of the original page setup if the dialog was canceled.
588
589 2006-04-24  Alexander Larsson  <alexl@redhat.com>
590
591         * gtk/gtkprintjob.h:
592         Declare GtkPrintJob.
593         
594         * gtk/gtkprintunixdialog.c: (gtk_print_unix_dialog_get_settings):
595         Change g_return_if_fail to g_return_val_if_fail.
596
597 2006-04-24  Alexander Larsson  <alexl@redhat.com>
598
599         * configure.in:
600         Check for cairo-pdf.h.
601         Check for cairo-ps.h on non-win32.
602
603 2006-04-24  Matthias Clasen  <mclasen@redhat.com>
604
605         * gtk/gtkclipboard.h: 
606         * gtk/gtkprinter.c: 
607         * gtk/gtkprintsettings.h: 
608         * gtk/gtkprintsettings.c: Match parameter names with the headers.
609
610         * gtk/gtkprintoperation-unix.c (gtk_print_run_page_setup_dialog): 
611         Add docs.
612
613         * gtk/gtktextbufferrichtext.c (gtk_text_buffer_deserialize): 
614         * gtk/gtkstatusicon.c (gtk_status_icon_get_storage_type): 
615         * gtk/gtktreeview.c (gtk_tree_view_set_search_position_func): 
616         * gtk/gtktreeview.c (gtk_tree_view_get_headers_clickable): 
617         * gtk/gtkcellrendererspin.c (gtk_cell_renderer_spin_new): 
618         * gtk/gtkmenu.c (gtk_menu_get_for_attach_widget): Fix the docs.
619
620         * gtk/gtkprinter.h: Don't declare GtkPrintJob here.
621         * gtk/gtkprinter-private.h: Instead include gtkprintjob.h.
622
623 2006-04-23  Matthias Clasen  <mclasen@redhat.com>
624
625         * gtk/gtkprinter-private.h: 
626         * gtk/gtkprintbackend.h: 
627         * gtk/gtkprinter.[hc]: 
628         * gtk/gtkprintjob.[hc]: Use g types, add documentation, and some
629         stylistic fixups.
630
631         * gtk/gtkaboutdialog.c (activate_url): Avoid a compiler warning.
632
633         * gtk/gtkpapersize.[hc]: Use g types, add documentation.
634
635         * gtk/gtkprintunixdialog.c (gtk_print_unix_dialog_get_settings): 
636         Use g_return_val_if_fail in non-void functions.
637
638         * gtk/Makefile.am: Add gtkprintutils.[hc]
639
640         * gtk/gtkprintutils.[hc]: New files, move the unit conversion
641         functions here.
642
643         * gtk/gtkpagesetupunixdialog.c: 
644         * gtk/gtkprintsettings.c: 
645         * gtk/gtkpagesetup.c: 
646         * gtk/gtkpapersize.c: Replace all static copies of to_mm/from_mm
647         by the copies in gtkprintutils.c.
648
649         * gtk/gtkpagesetup.[hc]: Use g types, add documentation.
650
651         * gtk/gtkprintsettings.c: More documentation
652
653 2006-04-22  Tor Lillqvist  <tml@novell.com>
654
655         * gtk/Makefile.am (gtk_private_h_sources): Small workaround for
656         weird bug in some versions of Automake at least on Windows.
657
658 2006-04-21  Alexander Larsson  <alexl@redhat.com>
659
660         Merge the gtk-printing branch.
661         For more detailed ChangeLog entries, see the ChangeLog.gtk-printing.
662         
663         * .cvsignore:
664         * Makefile.am:
665         * configure.in:
666         * docs/tools/widgets.c:
667         * gtk+-unix-print-2.0.pc.in:
668         * gtk/Makefile.am:
669         * gtk/gen-paper-names.c:
670         * gtk/gtk.h:
671         * gtk/gtk.symbols:
672         * gtk/gtkenums.h:
673         * gtk/gtkiconfactory.c:
674         * gtk/gtkmarshalers.list:
675         * gtk/gtkpagesetup.[ch]:
676         * gtk/gtkpagesetupunixdialog.[ch]:
677         * gtk/gtkpapersize.[ch]:
678         * gtk/gtkprint-win32.[ch]:
679         * gtk/gtkprintbackend.[ch]:
680         * gtk/gtkprintcontext.[ch]:
681         * gtk/gtkprinter-private.h:
682         * gtk/gtkprinter.[ch]:
683         * gtk/gtkprinteroption.[ch]:
684         * gtk/gtkprinteroptionset.[ch]:
685         * gtk/gtkprinteroptionwidget.[ch]:
686         * gtk/gtkprintjob.[ch]:
687         * gtk/gtkprintoperation-private.h:
688         * gtk/gtkprintoperation-unix.c:
689         * gtk/gtkprintoperation-win32.c:
690         * gtk/gtkprintoperation.[ch]:
691         * gtk/gtkprintsettings.[ch]:
692         * gtk/gtkprintunixdialog.[ch]:
693         * gtk/paper_names.c:
694         * gtk/paper_names_offsets.c:
695         Platform independent printing API and implementations
696         for unix and windows.
697
698         * gtk/gtkstock.h:
699         * gtk/stock-icons/24/gtk-orientation-landscape.png:
700         * gtk/stock-icons/24/gtk-orientation-portrait.png:
701         * gtk/stock-icons/24/gtk-orientation-reverse-landscape.png:
702         Add stock icons for page orientation.
703         
704         * modules/Makefile.am:
705         * modules/printbackends/Makefile.am:
706         * modules/printbackends/cups/Makefile.am:
707         * modules/printbackends/cups/gtkcupsutils.[ch]:
708         * modules/printbackends/cups/gtkprintbackendcups.[ch]:
709         * modules/printbackends/cups/gtkprintercups.[ch]:
710
711         Cups printing backend for unix.
712         
713         * modules/printbackends/lpr/Makefile.am:
714         * modules/printbackends/lpr/gtkprintbackendlpr.[ch]:
715         lpr printing backend for unix.
716         
717         * modules/printbackends/pdf/Makefile.am:
718         * modules/printbackends/pdf/gtkprintbackendpdf.[ch]:
719         print-to-pdf printing backend for unix.
720         
721         * tests/.cvsignore:
722         * tests/Makefile.am:
723         * tests/print-editor.c:
724         Test application for printing.
725
726         * gdk/gdk.symbols:
727         * gdk/win32/gdkevents-win32.c:
728         * gdk/win32/gdkwin32.h:
729         Add gdk_win32_set_modal_dialog_libgtk_only so that we can pump the
730         mainloop while displaying a win32 common dialog.
731
732         * gdk/directfb/Makefile.am:
733         Whitespace cleanup.
734         
735 2006-04-20  Paolo Borelli  <pborelli@katamail.com>
736
737         * gtk/gtkcombobox.c: plug small leak (#339132)
738         * tests/testcombo.c: ditto
739
740 2006-04-19  Michael Emmel  <mike.emmel@gmail.com>
741
742         * gdk/directfb/gdkdrawable-directfb.c: fixed off by one error in
743         clip patch from (#330824)
744
745 2006-04-19  Murray Cumming  <murrayc@murrayc.com>
746
747         * gtk/gtkfilechooserbutton.c: _GtkFileChooserButtonPrivate:
748         Added has_title flag so we can remember whether a title has 
749         been set.
750         (gtk_file_chooser_button_constructor): If no title has been
751         set then set it to the default title. This means that the 
752         default title will be used if the dialog was instantiated with 
753         g_object_new(), without using the gtk_file_chooser_button_new() 
754         convenience function. This helps language bindings.
755         (gtk_file_chooser_button_set_property): Set has_title when 
756         setting the title.
757
758 2006-04-19  Tor Lillqvist  <tml@novell.com>
759
760         * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_NUMPAD[0-9]
761         to GDK_KP_[0-9]. (#337562)
762
763 2006-04-18  Matthias Clasen  <mclasen@redhat.com>
764
765         * gtk/gtkrc.c: Allocate pixmap_path dynamically, rather than
766         using a fixed array of size 128.
767
768         * gtk/gtkiconcache.c: Apply a patch by Paolo Borelli to factor
769         out a strip_suffix() function and save some memory.  (#338307)
770
771 2006-04-18  Carlos Garnacho  <carlosg@gnome.org>
772
773         * gtk/gtknotebook.c (gtk_notebook_pages_allocate): removed wrong
774         condition check that caused tab labels not to be drawn under certain
775         circumstances. Bug #338734.
776
777 2006-04-17  Kjartan Maraas  <kmaraas@gnome.org>
778
779         * configure.in: Remove obsolete entry for no_NO
780         * po-properties/no.po: And the translation
781         * po/no.po: And the translation.
782
783 2006-04-17  Matthias Clasen  <mclasen@redhat.com>
784
785         * demos/gtk-demo/colorsel.c (expose_event_callback): Small formatting
786         fix.
787
788 2006-04-17  Christian Persch  <chpe@cvs.gnome.org>
789
790         * gtk/gtkdnd.c: (gtk_drag_dest_set), (gtk_drag_dest_set_proxy): Fix
791         UMR in gtk_drag_dest_motion. Bug #338725.
792
793 2006-04-17  Matthias Clasen  <mclasen@redhat.com>
794
795         * gtk/gtksettings.c (gtk_settings_class_init): 
796         * gtk/gtkentry.c (gtk_entry_class_init): Fix typos
797         in property blurbs.  (#338772, Clytie Siddall)
798
799 2006-04-16  Richard Hult  <richard@imendio.com>
800
801         * gdk/quartz/gdkdrawable-quartz.c: (gdk_quartz_draw_drawable): Add check 
802         for source being a window.
803
804         * gdk/quartz/gdkwindow-quartz.c: (_gdk_windowing_window_get_pointer):
805         Don't assert on window not being the root window.
806
807 2006-04-16  Richard Hult  <richard@imendio.com>
808
809         * gdk/quartz/gdkdrawable-quartz.c: Remove leading cairo/ in include.
810
811 2006-04-16  Matthias Clasen <mclasen@redhat.com>
812
813         * gdk/x11/gdkwindow-x11.c (set_initial_hints ): Avoid a
814         possible array overrun.  (Coverity)
815
816         * gtk/gtkcalendar.c (gtk_calendar_key_press): Avoid a
817         possible array overrun.  (Coverity)
818
819         * gtk/gtktextbuffer.c (_gtk_text_buffer_remove_all_tags):
820         Avoid a NULL dereference.  (Coverity)
821
822 2006-04-15  Matthias Clasen <mclasen@redhat.com>
823
824         * gtk/gtkrecentmanager.c: Make filename_warning() static,
825         and use caseless matching when looking for file:/.  
826         (#336772, Morten Welinder)
827
828 2006-04-13  Anders Carlsson  <andersca@imendio.com>
829
830         * gdk/quartz/gdkevents-quartz.c:
831         (synthesize_enter_event):
832         (synthesize_leave_event):
833         (synthesize_crossing_events):
834         Take grabs into account.
835
836         (find_window_for_event):
837         Only return grabbed window when owner_events is FALSE.
838
839 2006-04-13  Matthias Clasen  <mclasen@redhat.com>
840
841         * gtk/gtktreeview.c (gtk_tree_view_header_focus): Reorganize slightly
842         to avoid a possible NULL dereference.  (Coverity)
843
844 2006-04-12  Matthias Clasen  <mclasen@redhat.com>
845
846         * gtk/gtktreeview.c (gtk_tree_view_get_arrow_xrange): Don't
847         allow passing NULL for x1 or x2, adjust callers.
848
849         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_get_neighbor_sizes): 
850         Reorganize to avoid a possible NULL pointer dereference.  (Coverity)
851
852         * gtk/gtknotebook.c (gtk_notebook_page_allocate): Reorganize
853         to avoid a possible NULL dereference.  (Coverity)
854
855         * gdk/x11/gdkimage-x11.c (gdk_image_new_bitmap): Handle
856         closed displays correctly.  (Coverity)
857
858         * contrib/gdk-pixbuf-xlib/Makefile.am:
859         * modules/engines/pixbuf/Makefile.am
860         * gdk-pixbuf/Makefile.am: Build fixes for Cygwin.  (#338262)
861
862         * gdk/x11/gdkselection-x11.c (make_list): Make this work
863         for list == NULL.  (Coverity)
864
865         * gdk/x11/gdkkeys-x11.c (gdk_keymap_get_entries_for_keycode): 
866         Rearrange the code a bit.
867
868         * gtk/gtktextlayout.c (gtk_text_layout_validate_yrange): 
869         Handle _gtk_text_line_get_data() returning NULL in all
870         cases.  (Coverity)
871
872         * gtk/gtkuimanager.c: Make find_menu_position and
873         find_toolbar_position void.  (#338100)
874
875 2006-04-12  Anders Carlsson  <andersca@imendio.com>
876
877         * gdk/quartz/gdkkeys-quartz.c:
878         Handle page up and page down.
879
880 2006-04-12  Anders Carlsson  <andersca@imendio.com>
881
882         * gdk/quartz/gdkdrawable-quartz.c:
883         (_gdk_quartz_drawable_release_context):
884         Don't flush if we're inside a begin_paint/end_paint pair.
885         
886         * gdk/quartz/gdkwindow-quartz.c:
887         (gdk_window_impl_quartz_end_paint):
888         Free clip region here.
889
890 2006-04-12  Matthias Clasen  <mclasen@redhat.com>
891
892         * gtk/gtkuimanager.c (start_element_handler): Don't pass
893         a negative value as string length to get_child_node().  (Coverity)
894
895         * gtk/gtkicontheme.c (insert_theme): Handle dirs == NULL
896         gracefully.  (Coverity)
897
898         * gtk/gtknotebook.c (gtk_notebook_remove): Silently do nothing
899         if the widget is not a child.  (Coverity)
900
901 2006-04-11  Matthias Clasen  <mclasen@redhat.com>
902
903         * gdk/x11/gdkkeys-x11.c (get_xkb): Return early in error
904         cases.  (Coverity)
905
906         * gtk/gtktextview.c (selection_motion_event_handler): Remove
907         some unused variables.
908
909         * gtk/gtktreeview.c ((gtk_tree_view_search_position_func): Apply
910         a patch from David Trowbridge to improve the positioning of the
911         search popup.  (#338047)
912
913 2006-04-11  Emmanuele Bassi  <ebassi@cvs.gnome.org>
914
915         * gtk/gtkrecentmanager.c (gtk_recent_manager_init)
916         (gtk_recent_manager_new): Remove the unneeded setting of the
917         storage file inside the constructor. (Murray Cumming)
918         (build_recent_items_list): Reset the dirty bit when done rebuilding
919         the list from the storage file.
920
921 2006-04-11  Matthias Clasen  <mclasen@redhat.com>
922
923         * gtk/gtkscale.c (gtk_scale_get_layout_offsets): Silence
924         compiler warnings.
925
926         * gtk/gtkinputdialog.c (gtk_input_dialog_set_mapping_mode): Don't
927         dereference info before checking it for NULL.  (Coverity)
928
929 2006-04-11  Anders Carlsson  <andersca@mac.imendio.com>
930
931         * gdk/quartz/GdkQuartzView.c:
932         (-[GdkQuartzView drawRect:]):
933         * gdk/quartz/gdkdrawable-quartz.c:
934         (gdk_quartz_ref_cairo_surface):
935         (_gdk_quartz_drawable_get_context):
936         (_gdk_quartz_drawable_release_context):
937         * gdk/quartz/gdkwindow-quartz.c:
938         (gdk_window_impl_quartz_finalize):
939         (gdk_window_impl_quartz_class_init):
940         (gdk_window_impl_quartz_begin_paint_region):
941         (gdk_window_impl_quartz_end_paint):
942         (gdk_window_impl_quartz_invalidate_maybe_recurse):
943         (gdk_window_impl_quartz_process_updates):
944         (gdk_window_impl_quartz_paintable_init):
945         (_gdk_window_impl_quartz_get_type):
946         * gdk/quartz/gdkwindow-quartz.h:
947         Have GdkWindowImplQuartz implement GdkPaintable.
948
949 2006-04-10  Michael Natterer  <mitch@imendio.com>
950
951         * gtk/gtktextbufferrichtext.c (gtk_text_buffer_deserialize):
952         pasted rich text should not be affected by tags that are active at
953         the insertion point. Therefore, remove and remember all active
954         tags, and re-apply them left and right of the inserted text after
955         pasting. Fixes bug #337653.
956
957 2006-04-11  Anders Carlsson  <andersca@imendio.com>
958
959         * gdk/gdkinternals.h:
960         * gdk/gdkwindow.c:
961         (_gdk_paintable_get_type):
962         (gdk_window_begin_paint_region):
963         (gdk_window_end_paint):
964         (gdk_window_process_updates):
965         (gdk_window_invalidate_maybe_recurse):
966         Add new GdkPaintable interface which implementation objects can 
967         implement in order to override gdk painting functions.
968
969 2006-04-10 Vladimer Sichinava  <vlsichinava@gmail.com>
970
971         * configure.in: Added "ka" (Georgian) to ALL_LINGUAS
972
973 2006-04-07  Hans Breuer  <hans@breuer.org>
974
975         * gtk/makefile.msc.in tests/makefile.msc : updated
976
977 2006-04-06  Tor Lillqvist  <tml@novell.com>
978
979         Correct the appearance of non-square icons and cursors: pad them
980         to square so that Windows won't stretch them.
981
982         * gdk/win32/gdkcursor-win32.c (create_alpha_bitmap)
983         (create_color_bitmap): Always create square bitmaps, take only
984         side length as argument.
985         (pixbuf_to_hbitmaps_alpha_winxp, pixbuf_to_hbitmaps_normal):
986         Corresponding changes.
987
988 2006-04-05  Matthias Clasen  <mclasen@redhat.com>
989
990         * gtk/gtktextview.c (text_window_realize): Lower the window, to
991         prevent late-constructed text windows from covering child 
992         widgets.  (#336796, Yevgen Muntyan)
993
994         * gtk/gtkmain.c (gtk_grab_add, gtk_grab_remove, gtk_grab_notify) 
995         (gtk_grab_notify_foreach): Rework the code which emits ::grab-notify
996         signals to ensure that we emit enough signals. Also optimize the
997         code to not do unnecessary tree walking.
998
999         * gtk/gtkwidget.c (gtk_widget_class_init): Document ::grab-notify.
1000
1001 2006-04-05  Paolo Borelli  <pborelli@katamail.com>
1002
1003         * gtk/gtktextiter.c (gtk_text_iter_ends_line): handle the case of \r
1004         and \n split across lines. Bug #337022.
1005         * tests/testtextbuffer.c: add unit test.
1006
1007 Tue Apr  4 12:25:36 2006  Søren Sandmann  <sandmann@redhat.com>
1008
1009         * gdk/x11/gdkimage-x11.c (gdk_image_class_init): Add "_private" to
1010         make it build.
1011
1012 2006-04-04  Matthias Clasen  <mclasen@redhat.com>
1013
1014         * gdk/gdkdisplay.c: 
1015         * gdk/gdkdisplaymanager.c:
1016         * gdk/gdkdraw.c:
1017         * gdk/gdkkeys.c:
1018         * gdk/gdkpixmap.c:
1019         * gdk/gdkscreen.c:
1020         * gdk/gdkwindow.c:
1021         * gdk/x11/gdkcolor-x11.c:
1022         * gdk/x11/gdkdisplay-x11.c:
1023         * gdk/x11/gdkdnd-x11.c:
1024         * gdk/x11/gdkdrawable-x11.c:
1025         * gdk/x11/gdkgc-x11.c:
1026         * gdk/x11/gdkimage-x11.c:
1027         * gdk/x11/gdkinput.c:
1028         * gdk/x11/gdkpixmap-x11.c:
1029         * gdk/x11/gdkscreen-x11.c:
1030         * gdk/x11/gdkwindow-x11.c: Use G_DEFINE_TYPE.
1031
1032         * gdk/x11/gdkcolor-x11.c: 
1033         * gdk/x11/gdkdnd-x11.c:
1034         * gdk/x11/gdkimage-x11.c: Use instance private data.
1035
1036 2006-04-03  Matthias Clasen  <mclasen@redhat.com>
1037
1038         * gdk/gdkrgb.c: Get rid of a duplicate copy of the visual names.
1039
1040         * gtk/gtkmain.c: Make gtk_args const.
1041
1042         * gtk/gtkicontheme.c (pixbuf_supports_svg): Save one static.
1043
1044         * gtk/gtkrecentchooser.c (gtk_recent_chooser_error_quark):
1045         * gtk/gtkrecentmanager.c (gtk_recent_manager_error_quark):
1046         * gtk/gtkfilechooser.c (gtk_file_chooser_error_quark):
1047         * gtk/gtkfilesystem.c (gtk_file_system_error_quark):
1048         * gtk/gtkicontheme.c (gtk_icon_theme_error_quark): No point
1049         in making the error path fast by caching quarks. 
1050
1051         * gtk/gtkfilesel.c (no_stat_dirs): Avoid relocation.
1052
1053         * gdk/gdk.c: Here too.
1054
1055         * gdk/gdkinternals.h: 
1056         * gdk/x11/gdkmain-x11.c: 
1057         * gdk/win32/gdkmain-win32.c: 
1058         * gdk/directfb/gdkdisplay-directfb.c: 
1059         * gdk/quartz/gdkmain-quartz.c: Make _gdk_windowing_args const.
1060
1061         * gdk/win32/gdkpixmap-win32.c: Include gdkscreen.h  (#337032,
1062          Kazuki IWAMOTO)
1063
1064         * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Mention
1065         that %NULL is allowed.  (#336937, Christian Neumair)
1066
1067         * gtk/gtkmain.c: Get rid of an unnecessary static variable.
1068
1069         * gtk/gtktextlayout.c: Fix a warning.
1070         
1071         * gtk/gtktextsegment.h: 
1072         * gtk/gtktextsegment.c: 
1073         * gtk/gtktextchild.c:
1074         * gtk/gtktextbtree.c:
1075         * gtk/gtktextmark.c: 
1076         * gtk/gtktexttypes.h: Make the segment class pointers const.
1077
1078         * gtk/gtktextbufferserialize.c: Make parser struct const.
1079         
1080         * gtk/gtkuimanager.c: Make parser struct const.
1081
1082         * gtk/gtklinkbutton.c: Make the default colors const.
1083
1084         * gtk/gtkuimanager.c: Avoid relocations. 
1085
1086         * gtk/gtkxembed.c (_gtk_xembed_message_name): Reduce size of static
1087         buffer.
1088
1089         * gtk/gtktext.c (gtk_text_key_press): Avoid relocations.
1090
1091         * gtk/gtkrc.c (gtk_rc_add_initial_default_files) 
1092         (gtk_rc_add_default_file): Allocate the gtk_rc_default_files array
1093         dynamically.
1094
1095 2006-04-02  Matthias Clasen  <mclasen@redhat.com>
1096
1097         * gtk/gtkrc.c: Avoid relocations for the array of symbol names. 
1098
1099         * gtk/gtkruler.c: Remove unused strings from the ruler_metrics 
1100         structs, to avoid relocations.  (#336917, Stephane Chauveau)
1101
1102 2006-04-02  Emmanuele Bassi  <ebassi@cvs.gnome.org>
1103
1104         * gtk/gtkrecentmanager.c (gtk_recent_manager_set_filename): Build
1105         the items list after setting the storage file.
1106
1107         * gtk/gtkrecentmanager.c (display_closed): Use the right string
1108         for unsetting the default manager object from the screen.       
1109
1110 2006-04-01  Behdad Esfahbod  <behdad@gnome.org>
1111
1112         * gtk/gtkfilesel.c (gtk_file_selection_get_filename): Oops. (#336784)
1113
1114 2006-04-01  Behdad Esfahbod  <behdad@gnome.org>
1115
1116         * gtk/gtkfilesel.c (gtk_file_selection_get_filename): Use a GString
1117         instead of static buffer to reduce .bss by 8kb. (#336784)
1118
1119 2006-04-01  Dom Lachowicz <cinamod@hotmail.com>
1120
1121         * modules/engines/ms-windows/msw_style.c (draw_hline): Emulate WinXP's
1122         drawing of menu separators
1123         
1124 2006-03-31  Behdad Esfahbod  <behdad@gnome.org>
1125
1126         * gtk/gtkrecentmanager.c: Convert filenames to UTF-8 before printing
1127         them out in warning messages. (#336770, Morten Welinder)
1128
1129 2006-03-31  Behdad Esfahbod  <behdad@gnome.org>
1130
1131         * gtk/gtkrecentmanager.c (gtk_recent_info_last_application): Update
1132         last_stamp inside the look. (#336771, Morten Welinder)
1133
1134 2006-03-31  Behdad Esfahbod  <behdad@gnome.org>
1135
1136         * gtk/gtkrecentchoosermenu.c (gtk_recent_chooser_menu_get_property):
1137         Add missing break. (#336769, Morten Welinder)
1138
1139 2006-03-31  Behdad Esfahbod  <behdad@gnome.org>
1140
1141         * gtk/gtkfilesystem.c (gtk_file_system_get_bookmark_label):
1142         * gtk/gtklinkbutton.c (gtk_link_button_new_with_label): Return NULL
1143         instead of FALSE in g_return_val_if_fail in a pointer-returning
1144         function. (#336764, Morten Welinder)
1145
1146 2006-04-01  Gora Mohanty  <gmohanty@cvs.gnome.org>
1147
1148         * configure.in: Added 'or' (Oriya) to ALL_LINGUAS.
1149
1150 2006-03-31  Matthias Clasen  <mclasen@redhat.com>
1151
1152         * gtk/gtkrecentmanager.c (gtk_recent_info_get_age): Don't
1153         assert that the age is positive.  (#336773, Morten Welinder)
1154
1155 2006-03-31  Matthias Clasen  <mclasen@redhat.com>
1156
1157         * gtk/gtkicontheme.c (load_icon_data): Don't leak the keyfile 
1158         parser in the error case. 
1159         
1160         * gtk/gtkicontheme.c (load_icon_data, free_unthemed_icon) 
1161         (icon_data_free, load_themes):
1162         * gtk/gtkiconcache.c (_gtk_icon_cache_get_icon_data): Use the slice
1163         allocator for GtkIconData and UnthemedIcon structs.
1164
1165 2006-03-30  Behdad Esfahbod  <behdad@gnome.org>
1166
1167         * gtk/gtkcalendar.c: Fix translation comments for localizable
1168         digit formats. (fixes bug #336650)
1169
1170 2006-03-30  Matthias Clasen  <mclasen@redhat.com>
1171
1172         * gtk/gtkrecentmanager.h (struct _GtkRecentData): Fix the doc
1173         comment format.
1174
1175         * gtk/gtkrecentmanager.c (gtk_recent_manager_has_item) 
1176         (gtk_recent_manager_purge_items, gtk_recent_manager_lookup_item) 
1177         (gtk_recent_manager_get_limit, gtk_recent_manager_add_full) 
1178         (gtk_recent_manager_get_items, gtk_recent_manager_remove_item): 
1179
1180         * gtk/gtkrecentfilter.c (gtk_recent_filter_add_age): 
1181         * gtk/gtkrecentchooser.c (gtk_recent_chooser_set_show_numbers) 
1182         (gtk_recent_chooser_set_sort_func): 
1183         * gtk/gtknotebook.h (gtk_notebook_set_tab_detachable): Sync
1184         parameter names between .c and .h files to help gtk-doc.
1185
1186         * gdk/gdkregion-generic.c (gdk_region_get_clipbox): Reword
1187         docs to help gtk-doc.
1188
1189         * docs/tools/widgets.c (get_all_widgets): Add 
1190         GtkRecentChooserDialog.
1191
1192         * gtk/gtkdnd.c (gtk_drag_get_icon): Make sure to get an
1193         icon window when constructing the fallback_icon. This
1194         fixes a crash when dragging icons between screens in
1195         nautilus.  (#325751, Hylke van der Schaaf)
1196
1197 2006-03-30  Michael Emmel  <mike.emmel@gmail.com>
1198
1199         * gdk/directfb/gdkpixmap-directfb.c implement
1200             (gdk_pixmap_foreign_new_for_screen)
1201
1202 2006-03-30  Emmanuele Bassi  <ebassi@cvs.gnome.org>
1203
1204         Add documentation for the GtkLinkButton (#336592)
1205
1206         * docs/reference/tmpl/gtklinkbutton.sgml: Add description
1207         of the GtkLinkButton.
1208
1209         * docs/reference/gtk/migrating-GtkLinkButton.sgml: Guidelines
1210         for migrating code from GnomeHRef to the GtkLinkButton.
1211
1212         * docs/reference/gtk/gtk-docs.sgml:
1213         * docs/reference/gtk/Makefile.am: Build glue for the porting
1214         guide.
1215
1216 2006-03-29  Matthias Clasen <mclasen@redhat.com>
1217
1218         * gdk/gdk.symbols:
1219         * gdk/gdkpixmap.h:
1220         * gdk/win32/gdkpixmap-win32.c:
1221         * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_foreign_new_for_screen):
1222         New function to allow wrapping a native pixmap without
1223         a server roundtrip.  (#334954, David Baron) 
1224
1225         * gtk/gtk.symbols:
1226         * gtk/gtkrecent*.c: Fix some symbol aliasing glitches.
1227
1228 2006-03-29  Emmanuele Bassi  <ebassi@cvs.gnome.org>
1229
1230         * gtk/gtkrecentchoosermenu.c: Make gtkalias.h the last included file.
1231
1232 2006-03-29  Emmanuele Bassi  <ebassi@cvs.gnome.org>
1233
1234         * gtk/gtk.symbols: Fix a typo that broke aliasing rules.
1235
1236 2006-03-29  Richard Hult  <richard@imendio.com>
1237
1238         * gdk/quartz/gdkproperty-quartz.c: Add missing CLIPBOARD atom.
1239
1240 2006-03-29  Emmanuele Bassi  <ebassi@cvs.gnome.org>
1241
1242         * docs/reference/gtk/migrating-GtkRecentChooser.sgml: Add a migration
1243         guide for porting to the new GtkRecent stuff from the old EggRecent
1244         code.
1245
1246         * docs/reference/gtk/tmpl/gtkrecentchooser.sgml:
1247         * docs/reference/gtk/tmpl/gtkrecentchooserdialog.sgml:
1248         * docs/reference/gtk/tmpl/gtkrecentchoosermenu.sgml:
1249         * docs/reference/gtk/tmpl/gtkrecentchooserwidget.sgml:
1250         * docs/reference/gtk/tmpl/gtkrecentfilter.sgml:
1251         * docs/reference/gtk/tmpl/gtkrecentmanager.sgml: Add template files
1252         for the reference guide.
1253
1254         * docs/reference/gtk/gtk-docs.sgml:
1255         * docs/reference/gtk/gtk-sections.txt:
1256         * docs/reference/gtk/Makefile.am: Build glue for add GtkRecent to
1257         the reference guide.
1258
1259 2006-03-29  Emmanuele Bassi  <ebassi@cvs.gnome.org>
1260
1261         * tests/Makefile.am:
1262         * tests/testrecentchooser.c: Add a test suite for GtkRecentChooser.
1263
1264 2006-03-29  Emmanuele Bassi  <ebassi@cvs.gnome.org>
1265
1266         Import GtkRecent* from libegg.
1267
1268         * gtk/gtkrecentmanager.[ch]: Add GtkRecentManager, an object
1269         for managing a list of recently used resources.
1270
1271         * gtk/gtkrecentchooser.[ch]:
1272         * gtk/gtkrecentchooserdefault.[ch]:
1273         * gtk/gtkrecentchooserdialog.[ch]:
1274         * gtk/gtkrecentchoosermenu.[ch]:
1275         * gtk/gtkrecentchooserprivate.h:
1276         * gtk/gtkrecentchooserutils.[ch]:
1277         * gtk/gtkrecentchooserwidget.[ch]: Add GtkRecentChooser, a
1278         GTypeInterface for widgets implementing viewers for recently
1279         used resources.
1280
1281         * gtk/gtkrecentfilter.[ch]: GtkRecentFilter, a filter object
1282         for GtkRecentChooser implementations.
1283
1284         * gtk/gtk.h:
1285         * gtk/gtk.symbols:
1286         * gtk/Makefile.am: Build glue for GtkRecent*.
1287
1288 2006-03-29  Matthias Clasen  <mclasen@redhat.com>
1289
1290         * gtk/gtknotebook.c (gtk_notebook_real_insert_page): Emit
1291         page-added before switch-page.  (#335691, Christian Persch)
1292
1293 2006-03-29  Matthias Clasen  <mclasen@redhat.com>
1294
1295         * gtk/gtkfilechooserdefault.c (queue_edited_idle): Handle
1296         double queuing, rather than asserting that it does not 
1297         happen.  (#330617)
1298
1299 2006-03-28  Matthias Clasen  <mclasen@redhat.com>       
1300
1301         * gtk/gtknotebook.c (gtk_notebook_set_tab_detachable): Fix
1302         docs syntax, also commit a patch from #335707 to improve
1303         notebook DND with window widgets.
1304
1305         * gtk/gtktextview.c (gtk_text_view_start_selection_drag): 
1306         (selection_motion_event_handler): Fix drag-selection after
1307         double-click.  (#323862, Benjamin Berg)
1308
1309         * gtk/gtktextview.c (get_iter_at_pointer): Factor this out
1310         into a function and use it in move_mark_to_pointer_and_scroll,
1311         drag_scan_timeout and selection_motion_event_handler.
1312         (Paolo Borelli)
1313
1314 2006-03-28  Matthias Clasen  <mclasen@redhat.com>
1315
1316         * gtk/gtktextview.c (gtk_text_view_do_popup) 
1317         (gtk_text_view_grab_notify): Move the call to 
1318         gtk_text_view_end_selection_drag() from gtk_text_view_do_popup
1319         to gtk_text_view_grab_notify, so that it works not only
1320         for the text views own popup, but also for other ways in which
1321         we might become grab-shadowed during a selection drag.
1322         (#74620, Li Yuan)
1323
1324 2006-03-28  Sven Herzberg  <herzi@gnome-de.org>
1325
1326         reviewed by: Tim Janik
1327         
1328         * gtk/gtkpixmap.c: (gtk_pixmap_set): only check for equal colormaps if
1329         the new pixmap is not NULL; fixes a warning when gtk_pixmap_set is
1330         called from gtk_pixmap_finalize (bug 336254)
1331
1332 2006-03-27  Anders Carlsson  <andersca@imendio.com>
1333
1334         * gdk/quartz/gdkevents-quartz.c:
1335         (select_thread_func):
1336         (got_fd_activity):
1337         (poll_func):
1338         (gdk_event_translate):
1339         Make the poll func work with real file descriptors.
1340         We do this by creating a thread which calls poll and then
1341         signals the main thread using a run loop source.
1342         
1343         * gtk/gtkclipboard-quartz.c:        
1344         (-[GtkClipboardOwner pasteboard:provideDataForType:]):
1345         Remove debugging output
1346
1347 2006-03-27  Matthias Clasen  <mclasen@redhat.com>
1348
1349         * gtk/gtkmnemonichash.c (_gtk_mnemonic_hash_activate): Check that 
1350         the widget is viewable.  (#336200, Bastian Nocera)
1351
1352 2006-03-27  Michael Natterer  <mitch@imendio.com>
1353
1354         * gtk/gtkmenu.c (gtk_menu_scroll_by): bail out if there is no need
1355         for scrolling (more obvious than adding additional conditions to
1356         the scroll offset calculation). Fixes bug #335912.
1357
1358 2006-03-27  Anders Carlsson  <andersca@imendio.com>
1359
1360         * gtk/Makefile.am:
1361         Add -xobjective-c to cflags.
1362         (#335956, Lllian Angel)
1363         
1364         * gtk/gtkdnd-quartz.c:
1365         (gtk_drag_dest_set_track_motion):
1366         (gtk_drag_dest_get_track_motion):
1367         Add stubs for new functions.
1368         (#335955, Lillian Angel)
1369         
1370 2006-03-27  Richard Hult  <richard@imendio.com>
1371
1372         * gdk/quartz: Add more stubs.
1373
1374 2006-03-27  Michael Natterer  <mitch@imendio.com>
1375
1376         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_property):
1377         add missing ')'.
1378
1379 2006-03-26  Matthias Clasen  <mclasen@redhat.com>
1380
1381         * gtk/Makefile.am: Fix a srcdir != builddir build problem.
1382         (#335915, Yevgen Muntyan)
1383
1384         * gtk/gtktextbuffer.c (gtk_text_buffer_get_property):
1385         * gtk/gtksettings.c (gtk_settings_get_property):
1386         * gtk/gtkuimanager.c (gtk_ui_manager_get_property): Fix leaks.
1387
1388         * gtk/gtktexttag.c (gtk_text_tag_get_property):
1389         * gtk/gtkcellrenderertext.c (gtk_cell_render_text_get_property):
1390         Avoid an unnecessary strdup.  (#336013)
1391
1392 2006-03-24  Matthias Clasen  <mclasen@redhat.com>
1393
1394         * gtk/gtktextview.c (gtk_text_view_value_changed): Don't call
1395         gdk_window_invalidate_rect() on unrealized widgets.  (#335717,
1396         Nicolas Setton)
1397
1398 Fri Mar 24 14:53:20 2006  Tim Janik  <timj@imendio.com>
1399
1400         * gtk/gtktreemodel.h: 
1401         * gtk/gtktextbtree.h: back out G_GNUC_WARN_UNUSED_RESULT on iterator
1402         functions which turned out to cause too much trouble.
1403
1404 2006-03-23  Matthias Clasen  <mclasen@redhat.com>
1405
1406         * AUTHORS: small update
1407
1408 2006-03-23  Matthias Clasen  <mclasen@redhat.com>
1409
1410         Support subclasses in RC files.  (#142417, Todd Berman, patch
1411         based on a patch by Benjamin Berg)
1412         
1413         * gtk/gtkrc.h: 
1414         * gtk/gtkrc.c: Support <classname> elements in widget_class paths 
1415         in rc files which match any classes derived from named class.
1416
1417         (_gtk_rc_init): Use the new syntax in the default rc string.
1418
1419         * gtk/gtkbindings.c: Support the new syntax for bindings too.
1420         
1421         * tests/testrc.c: Tests for widget_class path matching
1422
1423 2006-03-23  Carlos Garnacho  <carlosg@gnome.org>
1424
1425         * gtk/gtkdnd.c (gtk_drag_dest_motion): make sure that gdk_drag_event()
1426         is called when track_motion is TRUE to receive drag_motion and
1427         drag_leave events properly.
1428
1429 2006-03-22  Matthias Clasen  <mclasen@redhat.com>
1430
1431         * gtk/gtknotebook.c (gtk_notebook_remove): Emit the ::page-removed
1432         signal after removing the page.  (#335238, Christian Persch)
1433
1434 2006-03-22  Carlos Garnacho  <carlosg@gnome.org>
1435
1436         * gtk/gtkexpander.c: Make it to expand when hovering during DnD
1437
1438 2006-03-22  Matthias Clasen  <mclasen@redhat.com>
1439
1440         Improved DND support for GtkNotebook  (#332991, Carlos Garnacho)
1441         
1442         * gtk/gtk.symbols: 
1443         * gtk/gtkdnd.h: 
1444         * gtk/gtkdnd.c: Add a track_motion flag on GtkDragDest
1445         with getter and setter, for cases where the drag destination
1446         is interested in drag motion events independent of targets.
1447
1448         * gtk/gtksettings.c (gtk_settings_class_init): Add a setting
1449         for the timeout used when expanding during DND.
1450
1451         * gtk/gtknotebook.c: Use the track_motion flag to switch
1452         notebook tabs when hovering over tabs during DND.
1453         
1454 2006-03-22  Matthias Clasen  <mclasen@redhat.com>
1455
1456         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Use fg_gc to
1457         draw the inter-row drop highlight. Also draw the line all the 
1458         way across, and flip it in RTL mode. (#334906, Ian McDonald)
1459
1460 2006-03-22  Johan Dahlin  <jdahlin@async.com.br>
1461
1462         * tests/testtreeview.c: Add a column that demonstrates how to use
1463         the new spinbutton cellrenderer.
1464
1465 2006-03-22  Matthias Clasen  <mclasen@redhat.com>
1466
1467         * tests/prop-editor.c: 
1468         * tests/testtreeview.c: Remove pointless includes of config.h,
1469         to make it easier compilable against system GTK+.
1470
1471 2006-03-22  Michael Natterer  <mitch@imendio.com>
1472
1473         * gtk/gtkentry.c: renamed last-char-timeout to
1474         password-hint-timeout and store all its data in a struct attached
1475         as QData.
1476
1477         * gtk/gtkcellrendererspin.c: fix typo in #include.
1478
1479 2006-03-22  Carlos Garnacho  <carlosg@gnome.org>
1480
1481         * gtk/gtknotebook.c: send a GtkWidget** instead of a GtkNotebookPage*
1482         when doing tabs DnD, this allows DnD interaction with other widgets,
1483         added some docs for this too.
1484         * tests/testnotebookdnd.c: add some code to test it.
1485
1486 2006-03-22  Matthias Clasen  <mclasen@redhat.com>
1487
1488         * gtk/gtk.symbols: 
1489         * gtk/gtkcellrendererspin.h:
1490         * gtk/gtkcellrendererspin.c: Add a cell renderer which 
1491         uses a spinbutton to edit the value of a cell. (#156023,
1492         Daniel Kasak, Lorenzo Gil Sanchez, Carlos Garnacho)
1493
1494         * gtk/gtk.h: 
1495         * gtk/Makefile.am: Glue it in.
1496
1497 2006-03-21  Matthias Clasen  <mclasen@redhat.com>
1498
1499         * tests/testtreeview.c (drag_begin_cb): Test setting up
1500         drag icons for tree dnd.
1501
1502 2006-03-22  Michael Natterer  <mitch@imendio.com>
1503
1504         * gtk/gtkentry.c: applied modified patch from maemo-gtk which
1505         allows the most recently entered character in a hidden entry to be
1506         shown for a configurable period of time. Fixes bug #334560.
1507
1508 2006-03-22  Michael Natterer  <mitch@imendio.com>
1509
1510         * gtk/gtktextbuffer.h (enum GtkTextBufferTargetInfo): count down
1511         from G_MAXUINT to avoid clashes with application-added DND
1512         targets.
1513
1514         * gtk/gtktextview.c (gtk_text_view_init): set an empty
1515         GtkTargetList on the drag_dest so it is not NULL when a derived
1516         class' init() function is called.
1517
1518         (gtk_text_view_target_list_notify): copy the text buffer's paste
1519         targets into the view's destinstion target list (preserving
1520         application-added DND targets), instead of replacing the view's
1521         target list. Fixes bug #334399.
1522
1523 2006-03-21  Anders Carlsson  <andersca@imendio.com>
1524
1525         * gtk/Makefile.am:
1526         Add new files.
1527         
1528         * gtk/gtkclipboard-quartz.c: Added.
1529         * gtk/gtkdnd-quartz.c: Added.
1530         * gtk/gtkquartz.c: Added.
1531         * gtk/gtkquartz.h: Added.
1532         Add dnd and clipboard implementations.
1533
1534 2006-03-21  Michael Natterer  <mitch@imendio.com>
1535
1536         * gdk/quartz/Makefile.am: removing trailing \ fixes the build.
1537
1538 2006-03-21  Anders Carlsson  <andersca@imendio.com>
1539
1540         * gdk/quartz/gdkgeometry-quartz.c:
1541         (gdk_window_scroll):
1542         Implement gdk_window_scroll.
1543
1544 2006-03-21  Anders Carlsson  <andersca@imendio.com>
1545
1546         * gdk/quartz/GdkQuartzWindow.c:
1547         (drag_operation_to_drag_action):
1548         (drag_action_to_drag_operation):
1549         (update_context_from_dragging_info):
1550         (-[GdkQuartzWindow draggingEntered:]):
1551         (-[GdkQuartzWindow draggingEnded:]):
1552         (-[GdkQuartzWindow draggingExited:]):
1553         (-[GdkQuartzWindow draggingUpdated:]):
1554         (-[GdkQuartzWindow performDragOperation:]):
1555         (-[GdkQuartzWindow wantsPeriodicDraggingUpdates]):
1556         (-[GdkQuartzWindow draggedImage:endedAt:operation:]):
1557         * gdk/quartz/gdkdnd-quartz.c:
1558         (gdk_drag_context_finalize):
1559         (gdk_drag_context_init):
1560         (gdk_drag_context_class_init):
1561         (gdk_drag_begin):
1562         (gdk_drag_status):
1563         Add the GDK part of the DND implementation.
1564
1565         * gdk/quartz/Makefile.am:
1566         Add some missing headers.
1567         
1568         * gdk/quartz/gdkdrawable-quartz.h:
1569         * gdk/quartz/gdkprivate-quartz.h:
1570         * gdk/quartz/gdkquartz.h:
1571         * gdk/quartz/gdkwindow-quartz.c:
1572         (gdk_quartz_window_get_nsview):
1573         New function, for use by the GTK part of the DND implementation
1574
1575 2006-03-21  Anders Carlsson  <andersca@imendio.com>
1576
1577         * gdk/quartz/gdkdrawable-quartz.c:
1578         (gdk_quartz_ref_cairo_surface):
1579         (gdk_quartz_draw_rectangle):
1580         (gdk_quartz_draw_arc):
1581         (gdk_quartz_draw_polygon):
1582         (gdk_quartz_draw_drawable):
1583         (gdk_quartz_draw_segments):
1584         (gdk_quartz_draw_lines):
1585         (gdk_quartz_draw_pixbuf):
1586         (gdk_quartz_draw_image):
1587         (_gdk_quartz_drawable_get_context):
1588         * gdk/quartz/gdkdrawable-quartz.h:
1589         Offset coordinates by 0.5 pixels to get consistant results for both
1590         image contexts and screen contexts.
1591
1592 2006-03-21  Anders Carlsson  <andersca@imendio.com>
1593
1594         * gdk/quartz/GdkQuartzWindow.c 
1595         ([GdkQuartzWindow -windowDidMove:]): Synthesize GDK_CONFIGURE events
1596         when the window position changes.
1597
1598 2006-03-20  Matthias Clasen  <mclasen@redhat.com>
1599
1600         * gtk/gtkdnd.c (gtk_drag_get_cursor): Remove an unused variable.
1601
1602         * gtk/gtknotebook.c (gtk_notebook_remove_tab_label): Don't leave
1603         page->tab_label dangling.
1604         (gtk_notebook_real_remove): Use GTK_IN_DESTRUCTION to determine
1605         if we are being called during destruction of the notebook, rather
1606         than maintaining that information as a passed-in parameter.
1607         (gtk_notebook_destroy): Leave the removal of the children
1608         to the container destroy method.  (#319032, Yevgen Muntyan)
1609
1610 2006-03-20  Matthias Clasen  <mclasen@redhat.com>
1611
1612         * gtk/gtkcombobox.c (gtk_combo_box_remove): Use the existing
1613         GTK_IN_DESTRUCTION flag, rather than roll our own.
1614
1615 2006-03-20  Matthias Clasen  <mclasen@redhat.com>
1616         
1617         * gtk/gtk.symbols: 
1618         * gtk/gtkscrolledwindow.h: 
1619         * gtk/gtkscrolledwindow.c: Add a window-placement-set property
1620         and a gtk-scrolled-window-placement setting.  (#157025, Christian
1621         Neumair)
1622
1623 2006-03-20  Matthias Clasen  <mclasen@redhat.com>
1624
1625         * gtk/gtkmain.c (gtk_get_option_group): Make sure gettext
1626         is initialized before using it.  (#335129, Christian Persch)
1627
1628 2006-03-19  Matthias Clasen  <mclasen@redhat.com>
1629
1630         * MAINTAINERS: Add this, at the request of the GNOME sysadmin team.
1631
1632         * AUTHORS: Updates, typo fix
1633
1634         * gtk/gtkiconview.c (gtk_icon_view_set_cursor): Document that
1635         @cell must be one of the renderers of the icon view, warn if 
1636         it is not, and ignore @start_editing if @cell is not set.
1637         (#335001, Emmanuel Rodriguez)
1638
1639 2006-03-16  Matthias Clasen  <mclasen@redhat.com>
1640
1641         * configure.in: Add a missing comma.  (#334774, Peter Breitenlohner)
1642
1643         * gtk/gtkactiongroup.c (gtk_action_group_add_actions_full) 
1644         (gtk_action_group_add_toggle_actions_full) 
1645         (gtk_action_group_add_radio_actions_full): Check for a stock 
1646         icon, not a stock item, when deciding whether to use stock-id 
1647         or icon-name.  (#334760, Jody Goldberg)
1648
1649         * gtk/gtkimage.c (gtk_image_clear): Update the size of the image, 
1650         by swapping the implementations of gtk_image_clear and
1651         gtk_image_reset.  (#334657)
1652
1653         * README.in: Add a note about GtkNotebook signals.
1654
1655 2006-03-15  Matthias Clasen  <mclasen@redhat.com>
1656
1657         * gtk/gtkcombobox.c (gtk_combo_box_list_button_released) 
1658         (gtk_combo_box_list_key_press): Popdown the list before changing
1659         the active iter, otherwise people will be surprised by the
1660         grabs that are still in place when their ::changed handler
1661         runs. 
1662
1663 2006-03-15  Dom Lachowicz <cinamod@hotmail.com>
1664
1665         * modules/engines/ms-windows/msw_style.c: Override style->realize/
1666         style->unrealize, so that GTK+ doesn't automatically attempt to apply
1667         shading to the GC colors, causing a mismatch with the Win32 native
1668         colors. Problem found by (and suggested solution by) "Cosmic Integer"
1669
1670         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Make expander-size
1671         a bit closer to Microsoft's values (bug 325699, Brad Taylor)
1672         
1673 2006-03-14  Matthias Clasen  <mclasen@redhat.com>
1674
1675         * tests/testcellrenderertext.c: Add test cases for alignment.
1676
1677         * gtk/gtkcellrenderertext.c: Add an alignment property,
1678         and fix some cases where ellipsize_set was being used to
1679         mean "we're ellipsizing" even when ellipsize was set to NONE.  
1680         (#318761, Ross Burton)
1681
1682         * gtk/gtkimcontextsimple.c: Make return and release work again
1683         to commit a hex sequence. Additionally, make escape reset the
1684         im context when in a hex sequence.  (#334423, Behdad Esfahbod)
1685
1686 2006-03-13  Matthias Clasen  <mclasen@redhat.com>
1687
1688         Make actions work with named icons.  (#323484, Jorn Baayen)
1689         
1690         * gtk/gtkactiongroup.c: If the stock-id field of a GtkActionEntry
1691         does not contain a registered stock id, interpret it as an
1692         icon name.
1693
1694         * gtk/gtkaction.c: Add an icon-name property to actions and
1695         use it for icons if a stock-id is not specified.
1696
1697 2006-03-12  Matthias Clasen  <mclasen@redhat.com>
1698
1699         * gtk/gtkwindow.c (gtk_window_compute_configure_request): Don't
1700         for the creation of geometry info here.  (#114533)
1701
1702 2006-03-11  Tor Lillqvist  <tml@novell.com>
1703
1704         * gdk/win32/gdkdrawable-win32.c (draw_polygon): Use Polygon() for
1705         outlined polygons, too. Same idea as in draw_rectangle(): Set pen
1706         to NULL_PEN if drawing a filled polygon, set brush to HOLLOW_BRUSH
1707         if drawing a polygon outline. (#332662)
1708         (gdk_win32_draw_polygon): Corresponding simplification: no need to
1709         add an extra final copy of the starting point.
1710
1711 2006-03-11  Dom Lachowicz <cinamod@hotmail.com>
1712
1713         * modules/engines/ms-windows: Speed up the Windows theme
1714         considerably (#163724, John Ehresman)
1715         Be more careful about setting Pango font descriptions (#333372)
1716         
1717 2006-03-11  Matthias Clasen  <mclasen@redhat.com>
1718
1719         * gtk/gtkrange.c (gtk_range_key_press): Allow to cancel 
1720         a drag with ESC.  (#58389, Søren Sandmann)
1721
1722 2006-03-10  Matthias Clasen  <mclasen@redhat.com>
1723
1724         * gtk/gtkrange.c: Add a style property ::activate_slider that
1725         allows themes to draw the slider active while dragged.  (#311992,
1726         Benjamin Berg)
1727
1728         * gtk/gtkcolorsel.c (gtk_color_selection_init): Fix two labels.
1729
1730         * gtk-engine-check-abi.sh: Add a script to check that theme
1731         engines don't export any extra functions. 
1732
1733 2006-03-10  Matthias Clasen  <mclasen@redhat.com>
1734
1735         * gtk/gtkcolorsel.c (gtk_color_selection_init): Avoid a mnemonic
1736         conflict.  (#163850, Dennis Cranston)
1737
1738         * gtk/gtkaboutdialog.c (gtk_show_about_dialog): Make the behaviour
1739         of the about dialog consistent with other dialogs in gtk. If the
1740         dialog is constructed with gtk_about_dialog_new(), the creator
1741         is reponsible for handling the response by hiding or closing the
1742         dialog. gtk_show_about_dialog() handles it by hiding the dialog.
1743         (#333360, Daniel Drake)
1744
1745         * README.in: Mention this change.
1746
1747 2006-03-10  Matthias Clasen  <mclasen@redhat.com>
1748
1749         Apply a patch from Dennis Cranston to make dialogs more
1750         consistent  (#163850)
1751         
1752         * gtk/gtkcolorsel.c (make_label_spinbutton): Left-align labels.
1753         
1754         * gtk/gtkfontsel.c (gtk_font_selection_init): 
1755         * gtk/gtkfontsel.c (gtk_font_selection_dialog_init): 
1756         * gtk/gtkcolorsel.c (gtk_color_selection_init): 
1757         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): 
1758         * gtk/gtkinputdialog.c (gtk_input_dialog_init): Update the layout
1759         of the dialog to follow HIG recommendations. Also update labels.
1760
1761         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): HIG-compatible 
1762         spacing.
1763         (gtk_message_dialog_font_size_change): Merged into 
1764          gtk_message_dialog_style_set.
1765
1766 2006-03-10  Matthias Clasen  <mclasen@redhat.com>
1767
1768         * gtk/gtkstyle.c: Remove g_return_if_fail() checks
1769         from static functions.
1770
1771 2006-03-10  Federico Mena Quintero  <federico@novell.com>
1772
1773         Make Shift-P and Shift-N activate typeahead in GtkTreeView
1774         (i.e. they are just normal capital letters).  Fixes bug #334098.
1775
1776         * gtk/gtktreeview.c (gtk_tree_view_add_move_binding): Add an
1777         "add_shifted_binding" argument which determines whether we'll add
1778         the same binding with GDK_SHIFT_MASK.
1779         (gtk_tree_view_class_init): Use add_shifted_binding=FALSE for GDK_p
1780         and GDK_n; use TRUE for all the rest.
1781
1782 2006-03-10  Michael Natterer  <mitch@imendio.com>
1783
1784         * gtk/gtkentry.[ch]: applied refactored patch from maemo-gtk that
1785         replaces the INNER_BORDER define by an "inner-border" style
1786         property of type GtkBorder. Additionally, add an "inner-border"
1787         object property plus API which allows to override any theme
1788         border, to allow pixel-perfect positioning of entries for inline
1789         editing. Fixes bug #333922.
1790
1791         * gtk/gtk.symbols: add the new public functions.
1792
1793 2006-03-09  Matthias Clasen  <mclasen@redhat.com>
1794
1795         * gtk/gtkcombobox.c (gtk_combo_box_class_init): Replace the
1796         popup-show and popup-hide signals with a readonly popup-shown
1797         property.  (#162531, Christian Persch)
1798
1799 2006-03-09  Ross Burton  <ross@openedhand.com>
1800
1801         * gtk/gtkwidget.c:
1802         * gtk/gtkrange.c:
1803         * gtk/gtktogglebutton.c:
1804         Turn off prelighting when gtk-touchscreen-mode is enabled (#135666)
1805
1806 Thu Mar  9 14:29:43 2006  Tim Janik  <timj@gtk.org>
1807
1808         * gtk/gtkobject.c (gtk_object_init): move the floating flag from
1809         the GInitiallyUnowned bit to GTK_FLOATING. fixes tests/floatingcheck.
1810         kudos to mitch for debugging this.
1811
1812 2006-03-09  Matthias Clasen <mclasen@redhat.com>
1813
1814         * Makefile.am: Add ChangeLog.pre-2.8 to EXTRA_DIST.
1815
1816 2006-03-09  Tor Lillqvist  <tml@novell.com>
1817
1818         * gtk/gtk.symbols: No gtk_tray_icon_get_type on Win32.
1819
1820 2006-03-08  Carlos Garnacho  <carlosg@gnome.org>
1821
1822         Rename ::tab-added and ::tab-removed signals to ::page-added and
1823         ::page-removed for not conflicting with other tab reordering
1824         implementations. Fixes bug #333743.
1825
1826         Also rename ::tab-reordered to ::page-reordered, and emit it in
1827         gtk_notebook_reorder_child () to make it behave consistently with the
1828         other two signals.
1829
1830         * gtk/gtknotebook.c (gtk_notebook_class_init): rename signals.
1831         (gtk_notebook_reorder_tab)
1832         (gtk_notebook_button_release)
1833         (gtk_notebook_remove)
1834         (gtk_notebook_real_insert_page): emit respectively renamed signals
1835         (gtk_notebook_reorder_child): also emit ::page-reordered here
1836
1837         * tests/testnotebookdnd.c: use renamed signals
1838
1839 2006-03-08  Michael Natterer  <mitch@imendio.com>
1840
1841         * gdk/gdkscreen.h
1842         * gdk/x11/gdkscreen-x11.c
1843         * gdk/gdk.symbols: added gdk_screen_get_active_window() and
1844         gdk_screen_get_window_stack() (patch from maemo-gtk).
1845         Fixes bug #320881.
1846
1847         * gdk/directfb/gdkscreen-directfb.c
1848         * gdk/quartz/gdkscreen-quartz.c
1849         * gdk/win32/gdkscreen-win32.c: added the functions as stubs.
1850
1851 2006-03-08  Michael Natterer  <mitch@imendio.com>
1852
1853         * tests/prop-editor.c (unichar_changed): zero-initialize the
1854         GValue before calling g_value_init().
1855
1856 2006-03-08  Michael Natterer  <mitch@imendio.com>
1857
1858         * gtk/gtkentry.c (gtk_entry_adjust_scroll): make sure that the
1859         text_area_width is always >= 0. Fixes bug #316712 (Dan Winship).
1860
1861 2006-03-07  Federico Mena Quintero  <federico@novell.com>
1862
1863         Cancel drags when the grabs get broken.  Fixes bug #333056:
1864
1865         * gtk/gtkdnd.c (gtk_drag_selection_received): The time argument is
1866         a guint, not guint32.
1867         (gtk_drag_source_event_cb): Return gboolean, not gint.
1868         (gtk_drag_anim_timeout): Likewise.
1869         (gtk_drag_motion_cb): Likewise.
1870         (gtk_drag_key_cb): Likewise.
1871         (gtk_drag_button_release_cb): Likewise.
1872         (gtk_drag_abort_timeout): Likewise.
1873         (gtk_drag_begin_internal): Connect to "grab-broken-event" on the
1874         ipc_widget.
1875         (gtk_drag_source_info_destroy): Disconnect from the
1876         "grab-broken-event" callback.
1877         (gtk_drag_end): Likewise.
1878         (gtk_drag_grab_broken_event_cb): New callback.  We cancel the drag
1879         if the grab was broken and not regrabbed by the DnD code.
1880
1881 2006-03-07  Federico Mena Quintero  <federico@novell.com>
1882
1883         * gtk/gtkfilechooserdefault.c (shortcuts_button_press_event_cb):
1884         Hack to let the treeview's button-press-event handler run before
1885         ours.  This lets the selection be updated before we pop up a
1886         context menu.
1887
1888 Tue Mar  7 17:16:34 2006  Tim Janik  <timj@gtk.org>
1889
1890         * configure.in: depend on glib-2.10.1.
1891
1892         * gtk/gtkobject.c: fixed up messing with non-GtkObject floating flags.
1893         this requires glib-2.10.1.
1894
1895 2006-03-07  Michael Natterer  <mitch@imendio.com>
1896
1897         Add infrastructure for copy/paste and DND of rich text for
1898         GtkTextBuffer. Fixes bug #324177.
1899
1900         * gtk/gtktextbufferrichtext.[ch]: new files implementing a
1901         per-buffer registry of rich text formats.
1902
1903         * gtk/gtk.h: #include gtktextbufferrichtext.h
1904
1905         * gtk/gtktextbufferserialize.[ch]: new files implementing an
1906         internal serialization format that can handle all of a text
1907         buffer's tags and pixbufs. It's not useful for anything except
1908         tranfer between instances of GtkTextBuffer (Anders Carlsson).
1909
1910         * gtk/Makefile.am: build the new files.
1911
1912         * gtk/gtkclipboard.[ch]: added convenience APIs for rich text,
1913         just as they exist for plain text and pixbufs.
1914
1915         * gtk/gtkselection.[ch]: added rich text convenience APIs here
1916         too.  Return the target list from gtk_target_list_ref(). Register
1917         GtkTargetList as boxed type. Added
1918         gtk_target_table_new_from_list() and gtk_target_table_free(),
1919         which make converting between GtkTargetList and arrays of
1920         GtkTargetEntry considerably easier.
1921
1922         * gtk/gtktextutil.[ch]: added _gtk_text_util_create_rich_drag_icon()
1923         which creates a fancy rich text icon (Matthias Clasen).
1924
1925         * gtk/gtktextbuffer.[ch]: use all the new stuff above and
1926         implement copy and paste of rich text. Added APIs for getting the
1927         target lists used for copy and paste. Added public enum
1928         GtkTextBufferTargetInfo which contains the "info" IDs associated
1929         with the entries of the target lists.
1930
1931         * gtk/gtktextview.c: use the new rich text APIs and
1932         GtkTextBuffer's new target list API to enable DND of rich text
1933         chunks.
1934
1935         * gtk/gtk.symbols: export all the new symbols added.
1936
1937         * tests/testtext.c: added rich text testing stuff.
1938
1939 2006-03-06  Matthias Clasen  <mclasen@redhat.com>
1940
1941         * gtk/gtktextview.c (text_window_invalidate_cursors): Take
1942         cursor width into account when calculating the area to 
1943         be invalidated.  (#333377, #323401 Steve Frécinaux)
1944
1945         * gtk/gtkmain.c (post_parse_hook): Set error when returning
1946         FALSE.  (#333268, Paolo Maggi, Christian Persch)
1947         
1948         * gtk/gtkpixmap.c (gtk_pixmap_set): Check that the pixmap
1949         has the right depth.  (#333363, Ed Catmur)
1950
1951 2006-03-05  Matthias Clasen  <mclasen@redhat.com>
1952
1953         * gtk/gtkiconview.c (adjust_wrap_width): Apply some
1954         arbitrary lower limit for the guessed wrap width. (#332466,
1955         Donald Straney)
1956
1957 2006-03-05  Matthias Clasen  <mclasen@redhat.com>
1958
1959         Fix handling of image-only buttons.  (#332985, Kalle 
1960         Vahlmann, #333555)
1961         
1962         * gtk/gtkbutton.c (gtk_button_construct_child): Don't
1963         return early if there an image to show.
1964         (show_image): Always return TRUE if there is no text.
1965
1966 2006-03-04  Matthias Clasen  <mclasen@redhat.com>
1967
1968         * gdk/x11/gdkinput-x11 (gdk_input_translate_coordinates):
1969         Adjust the handling of min values for the x and y axes of 
1970         extended input devices  (#324562, #142536, Denis Auroux and 
1971         Robert Ã–gren)
1972
1973         * gtk/gtkexpander.c (gtk_expander_paint_focus): Position
1974         the focus rectangle correctly in RTL mode.  (#333291,
1975         Benjamin Berg)
1976
1977 2006-03-03  Tor Lillqvist  <tml@novell.com>
1978
1979         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_commit_char)
1980         (gtk_im_context_simple_reset): Avoid emitting superfluous
1981         preedit_changed signals. Thanks to Matthias. (#319407)
1982
1983 2006-03-03  Michael Natterer  <mitch@imendio.com>
1984
1985         Applied modified patch from maemo-gtk which makes separators more
1986         themeable. Fixes bug #332022.
1987
1988         * gtk/gtkwidget.c: added style properties "wide-separators",
1989         "separator-width" and "separator-height".
1990
1991         * gtk/gtkhseparator.c
1992         * gtk/gtkvseparator.c
1993         * gtk/gtkmenuitem.c
1994         * gtk/gtktoolbar.c: honor the new settings and paint separators
1995         using gtk_paint_box() if wide-separators is true.
1996
1997 2006-03-02  Dom Lachowicz <cinamod@hotmail.com>
1998
1999         * modules/engines/ms-windows/msw_style.c: Fix combobox theming
2000         regression noted in bug 321301
2001         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Ditto
2002         
2003 2006-03-02  Matthias Clasen  <mclasen@redhat.com>
2004
2005         * gtk/gtkiconview.c (gtk_icon_view_layout) 
2006         (gtk_icon_view_row_inserted, gtk_icon_view_scroll_to_path): 
2007         Make scroll_to_path work for newly inserted items, by delaying
2008         the scroll until layout is done.  (#332923, Cory Dodt)
2009
2010         * gtk/gtkcolorbutton.c (render): Use GTK_WIDGET_IS_SENSITIVE,
2011         not GTK_WIDGET_SENSITIVE.  (#333133, Christian Persch)
2012
2013 2006-03-02  Ross Burton  <ross@openedhand.com>
2014
2015         * gtk/gtktooltips.c:
2016         Disable tooltips if gtk-touchscreen-mode is activated (#315112).
2017
2018 2006-03-01  Kristian Rietveld  <kris@imendio.com>
2019
2020         * gtk/gtktreeselection.c (row_is_selectable): rename to
2021         _gtk_tree_selection_row_is_selectable and export internally,
2022         (gtk_tree_selection_real_select_node): changed so it is always
2023         possible to unselect insensitive nodes, changed the logic a bit to
2024         be more clear.
2025
2026         * gtk/gtktreeprivate.h: add _gtk_tree_selection_row_is_selectable.
2027
2028         * gtk/gtktreeview.c (gtk_tree_view_row_changed): Unselect a row if
2029         it became insensitive.
2030
2031 2006-02-27  Federico Mena Quintero  <federico@novell.com>
2032
2033         * gtk/gtkfontsel.c (gtk_font_selection_set_font_name): Check that
2034         the fontsel has a screen assigned before doing anything.  This
2035         will at least warn the caller of what is wrong, since we only
2036         populate the family_list until we get a screen.  Also, put the
2037         reference docs here.  Fixes bug #332756.
2038         (gtk_font_selection_dialog_get_font_name): Document this here.
2039         (gtk_font_selection_get_font_name): Document this here; mention
2040         that the font names get normalized, so the result of this function
2041         may not be the same as what you set with
2042         gtk_font_selection_set_font_name().
2043
2044 2006-02-27  Matthias Clasen  <mclasen@redhat.com>
2045
2046         * gtk/gtk.symbols:
2047         * gtk/gtktrayicon-x11.c: Fix symbol lists for make check.
2048
2049 2006-02-27  Michael Natterer  <mitch@imendio.com>
2050
2051         * gdk/x11/gdksettings.c: map "gtk-touchscreen-mode" to the
2052         "Gtk/TouchscreenMode" XSettings property, remove trailing
2053         whitespace.
2054
2055         * gdk/x11/checksettings.c: #include <string.h> and sprinkled some
2056         newlines.
2057
2058 Mon Feb 27 14:52:50 2006  Tim Janik  <timj@imendio.com>
2059
2060         * gdkevents-x11.c:
2061         * gdksettings.c: moved and renamed the gdk_settings_names and 
2062         gdk_settings_map.
2063
2064         * gdk/x11/checksettings.c: test program for the gdk_settings_map array.
2065
2066         * gdk/x11/Makefile.am: run checksettings as part of make check.
2067
2068 2006-02-27  Matthias Clasen  <mclasen@redhat.com>
2069
2070         * gtk/gtkdnd.c (gtk_drag_get_cursor): Comment out some unused
2071         code, and fix the reference point of composited drag cursors.
2072         (#320132, Christian Neumair)
2073
2074 Sun Feb 26 10:24:10 PST 2006  Michael Emmel  <mike.emmel@gmail.com>
2075         
2076         *gdk/directfb/README
2077         Updated README to remove old build instructions
2078
2079 Sat Feb 25 10:35:23 PST 2006  Michael Emmel  <mike.emmel@gmail.com>
2080         
2081         *gdk/directfb/gdkdisplay-directfb.c
2082         *gdk/directfb/gdkwindow-directfb.c
2083         Added stubs for shape window functions to fix compile problems
2084
2085 2006-02-24  Federico Mena Quintero  <federico@novell.com>
2086
2087         * gtk/gtkfilechooserdefault.c (shortcuts_list_create): Make the
2088         column header visible, and make it be "_Places".  Changed the
2089         accessible object name to Places as well.  Fixes bug #331306.
2090         (file_pane_create): Do not create the path bar and "create folder"
2091         button here...
2092         (browse_widgets_create): ... but create them here instead.  This
2093         moves the path bar to be above both the hpaned, giving it the full
2094         width of the dialog.  Fixes bug #327733.
2095
2096 Thu Feb 23 13:28:21 2006  Tim Janik  <timj@imendio.com>
2097
2098         * gdk/x11/gdkim-x11.c (_gdk_x11_initialize_locale): remove unconditional
2099         warnings about missing X locale support. Gdk properly handles this
2100         situation anyway.
2101
2102 Fri Feb 17 14:20:29 2006  Tim Janik  <timj@imendio.com>
2103
2104         * gtk/gtktreemodel.h: 
2105         * gtk/gtktextbtree.h: added G_GNUC_WARN_UNUSED_RESULT warnings for
2106         iterator functions, to avoid invalid iterators go unnoticed,
2107         suggested by Markku Vire <markku.vire@movial.fi>.
2108
2109 2006-02-23  Matthias Clasen  <mclasen@redhat.com>
2110
2111         * tests/Makefile.am: 
2112         * tests/testnotebookdnd.c: Add notebook DND tests.
2113
2114         * gtk/gtknotebook.h: Add a reorder_tab keynav signal and an
2115         insert_page vfunc to GtkNotebook.
2116
2117         * gtk/gtk.symbols:
2118         * gtk/gtknotebook.c: Support notebook DND. New API includes
2119         gtk_notebook_set_window_creation_hook, 
2120         gtk_notebook_[gs]et_group_id,
2121         gtk_notebook_[gs]et_tab_reorderable, 
2122         gtk_notebook_[gs]et_tab_detachable (#73240, Carlos Garnacho)
2123
2124 2006-02-23  Matthias Clasen  <mclasen@redhat.com>
2125
2126         * gtk/gtktextiter.c: Fix macro declaration
2127
2128         * gtk/gtkaboutdialog.c: Remove an accidentally included function.
2129
2130 2006-02-22  Matthias Clasen  <mclasen@redhat.com>
2131
2132         * gtk/gtktextbtree.c: 
2133         * gtk/gtktextiter.c: Minor optimizations.  (#332059, Arnaud Charlet)
2134
2135         * gtk/gtkradiobutton.c (gtk_radio_button_clicked): Emit notify::active
2136         here, when changing the value of this property.  (#331651)
2137
2138         * gtk/gtknotebook.c: Apply a patch by Paolo Borelli to
2139         make the tab menu keynavigatable.  (#331440)
2140
2141 2006-02-22  Matthias Clasen  <mclasen@redhat.com>
2142
2143         * gtk/gtkaboutdialog.c: Change Close buttons to GTK_RESPONSE_CANCEL
2144         so Escape works. (#331940, Daniel Drake)
2145
2146 2006-02-22  Michael Natterer  <mitch@imendio.com>
2147
2148         * gtk/gtksettings.c: added boolean property gtk-touchscreen-mode,
2149         which essentially means "there are no motion notify events", so
2150         widgets can't use the pointer hovering them for anything.
2151
2152         * gtk/gtkmenu.c: if gtk-touchscreen-mode is TRUE, scroll menus
2153         when clicking the scroll arrows, since hovering goes undetected.
2154         Fixes bug #323028.
2155
2156         Added boolean style property "double-arrows" which always makes
2157         both scroll arrows visible when the menu is too long.
2158         For pushed-in popup menus, both arrows are always shown
2159         (regardless of double-arrows), in order to fix user confusion
2160         about the blank area. Fixes bug #129463.
2161
2162 2006-02-21  Kristian Rietveld  <kris@imendio.com>
2163
2164         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered):
2165         Make sure we always update the virtual root, also when ->priv->root
2166         is still NULL.  (Markku Vire)
2167
2168 2006-02-21  Anders Carlsson  <andersca@imendio.com>
2169
2170         * gdk/quartz/gdkselection-quartz.c:
2171         (make_list):
2172         (gdk_text_property_to_utf8_list_for_display):
2173         Add these from the win32 backend.
2174
2175 2006-02-20  Matthias Clasen  <mclasen@redhat.com>
2176
2177         * gtk/gtknotebook.c: Properly update internal state
2178         when child visibility changes.  (#331785, Sebastien Bacher)
2179
2180         * gdk/gdkgc.c (_gdk_gc_update_context): Obtain the
2181         background color from the gc when it is needed.  (#331820)
2182
2183 2006-02-19  Matthias Clasen  <mclasen@redhat.com>
2184
2185         * gdk/gdkgc.c (_gdk_gc_update_context): Add a gc_changed
2186         argument, and avoid setting the clip region if the gc
2187         has not changed. 
2188
2189         * gdk/gdkgc.c: Update all callers.
2190
2191         * gdk/gdkpango.c (get_cairo_context): Avoid updating the
2192         context if nothing changed.
2193
2194 2006-02-20  Anders Carlsson  <andersca@imendio.com>
2195
2196         * gdk/quartz/gdkdisplay-quartz.c:
2197         (gdk_display_supports_shapes):
2198         (gdk_display_supports_input_shapes):
2199         * gdk/quartz/gdkwindow-quartz.c:
2200         (gdk_display_warp_pointer):
2201         (gdk_window_input_shape_combine_mask):
2202         (gdk_window_input_shape_combine_region):
2203         (gdk_window_set_child_input_shapes):
2204         (gdk_window_set_accept_focus):
2205         (gdk_window_merge_child_input_shapes):
2206         Add stubs for input shape functions.
2207
2208 2006-02-20  Anders Carlsson  <andersca@imendio.com>
2209
2210         * gdk/quartz/gdkevents-quartz.c:
2211         (get_keyboard_modifiers_from_nsevent):
2212         Fix typo so ctrl gets passed on to the gdk event.
2213         
2214         * gdk/quartz/gdkproperty-quartz.c:
2215         (gdk_atom_name):
2216         g_strdup the atom name.
2217
2218 2006-02-20  Tor Lillqvist  <tml@novell.com>
2219
2220         * gdk/win32/gdkdisplay-win32.c (gdk_display_supports_shapes):
2221         New function, return TRUE.
2222         (gdk_display_supports_input_shapes): New function, return FALSE.
2223
2224         * gdk/win32/gdkwindow-win32.c (do_shape_combine_region): New
2225         function. Factor out code from gdk_window_shape_combine_mask().
2226         (gdk_window_shape_combine_region): Actually do something. Convert
2227         region to a HRGN and call do_shape_combine_region().
2228         (gdk_window_input_shape_combine_mask)
2229         (gdk_window_input_shape_combine_region)
2230         (gdk_window_set_child_input_shapes)
2231         (gdk_window_merge_child_input_shapes): New functions, dummy
2232         implementations.
2233
2234 2006-02-20  Michael Natterer  <mitch@imendio.com>
2235
2236         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): adding boolean
2237         have_shapes and have_input_shapes members fixes the build.
2238
2239 2006-02-20  Tor Lillqvist  <tml@novell.com>
2240
2241         * gdk/win32/gdkfont-win32.c: Replace all calls to g_strcasecmp()
2242         with g_ascii_strcasecmp().
2243
2244 2006-02-19  Matthias Clasen  <mclasen@redhat.com>
2245
2246         Support input shapes:  (#331070)
2247         
2248         * gdk/gdk.symbols: 
2249         * gdk/gdkdisplay.h: 
2250         * gdk/gdkwindow.h: 
2251         * gdk/x11/gdkdisplay-x11.c (gdk_display_supports_shapes) 
2252         (gdk_display_supports_input_shapes): Functions to determine
2253         if a display supports shaped windows or input shapes.
2254
2255         * gdk/x11/gdkwindow-x11.c (gdk_window_input_shape_combine_region): 
2256         (gdk_window_input_shape_combine_mask): 
2257         (gdk_window_set_child_input_shapes): 
2258         (gdk_window_merge_child_input_shapes): Input shape versions
2259         of the window shape API.
2260
2261         * gtk/gtk.symbols: 
2262         * gtk/gtkwidget.h: 
2263         * gtk/gtkwidget.c (gtk_widget_input_shape_combine_mask): 
2264         New function to set an input shape on a widget.
2265
2266 2006-02-19  Matthias Clasen  <mclasen@redhat.com>
2267
2268         * gtk/gtklinkbutton.c (gtk_link_button_class_init): Fix
2269         a cast.
2270
2271 2006-02-17  Matthias Clasen  <mclasen@redhat.com>
2272
2273         DND keynav support:
2274         
2275         * gtk/gtkdnd.c (gtk_drag_update_idle): Protect against 
2276         info->last_event being NULL.
2277         (gtk_drag_key_cb): Handle arrow keys to move the drag icon
2278         and space or enter to drop.
2279
2280 2006-02-17  Matthias Clasen  <mclasen@redhat.com>
2281
2282         * gdk/gdkregion-generic.c (gdk_region_union_with_rect):
2283         Be robust and reject rectangles with negative width or
2284         height.  (#331467, Benjamin Berg)
2285
2286
2287 2006-02-17  Kristian Rietveld  <kris@imendio.com>
2288
2289         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered):
2290         Only update the virtual root if the child path is an ancestor
2291         of the virtual root.  (Patch from Markku Vire).
2292
2293 2006-02-16  Federico Mena Quintero  <federico@novell.com>
2294
2295         * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_map): Call
2296         ::initial_focus() on the child before calling ::map() on our
2297         parent class.  This will prevent the shortcuts treeview from
2298         highlighting its first row as a result of getting assigned focus
2299         by gtk_dialog_map().
2300
2301 2006-02-14  Matthias Clasen  <mclasen@redhat.com>
2302
2303         * gtk/gtkwidget.c (gtk_widget_send_expose): Remove redundant
2304         check.  Pointed out by Bodo-Merle Sandor.
2305
2306         * gtk/gtkcolorbutton.c (gtk_color_button_[un]realize):
2307         Remove unnecessary checks.  
2308
2309 2006-02-12  Matthias Clasen  <mclasen@redhat.com>
2310
2311         * gtk/gtkicontheme.c (gtk_icon_theme_list_icons): Give working
2312         examples in the docs.  (#330944, John Spray)
2313
2314 2006-02-10  Matthias Clasen  <mclasen@redhat.com>
2315         
2316         * gtk/gtkiconview.c (gtk_icon_view_get_item_at_coords): Fix
2317         row_spacing/column_spacing confusion.  (#330732, Donald Straney)
2318
2319 2006-02-10  Matthias Clasen  <mclasen@redhat.com>
2320
2321         * gtk/gtkstyle.c: Add some docs. (#330073, Mart Raudsepp)
2322
2323         * gtk/gtkentrycompletion.c (gtk_entry_completion_match_selected): 
2324         Guard against NULL.  (#330177, Raphael Slinckx)
2325
2326 2006-02-10  Murray Cumming  <murrayc@murrayc.com>
2327
2328         * docs/reference/gtk/tmpl/gtkcomboboxentry.sgml: Mention that 
2329         the changed signal is emitted when typing - not just when 
2330         selecting from the list. Suggest use of GtkEntry::action to 
2331         etect end of typing.
2332          gtk/gtkcombobox.c: (gtk_combo_box_class_init): changed signal 
2333         ocumentation: Mention that the GtkComboBoxEntry emits it when 
2334         he users types, not just when he selects from the list.
2335
2336 2006-02-10  Murray Cumming  <murrayc@murrayc.com
2337
2338         * gtk/gtkassistant.h: Correct the declaration of the prepare 
2339         default signal handler to match its registration and use.
2340
2341 2006-02-09  Ross Burton  <ross@burtonini.com>
2342
2343         * gtk/gtkfontbutton.c:
2344         Work out the font size in floating point, and display the font
2345         size with %g instead of %d (#317590)
2346
2347 2006-02-09  Tor Lillqvist  <tml@novell.com>
2348
2349         * gdk/win32/gdkevents-win32.c (gdk_event_translate)
2350         <WM_MOUSELEAVE>: If we don't know where we went, and have
2351         generated a leave event, set current_window to the root
2352         window. This assures we will generate proper enter and leave
2353         events for popup windows. (#325521)
2354
2355 2006-02-08  John Ehresman  <jpe@wingware.com>
2356
2357         * gdk/win32/gdkevents-win32.c (gdk_event_translate)
2358         <WM_MOUSEACTIVATE>
2359         * gdk/win32/gdkwindow-win32.c (show_window_internal)
2360         (gdk_window_raise): Call SetWindowPos() instead of
2361         SetForegroundWindow() or BringWindowToTop() if the window
2362         shouldn't accept focus. (#327375)
2363         
2364 2006-02-08  John Ehresman  <jpe@wingware.com>
2365
2366         * gdk/win32/gdkwindow-win32.c: Let gdk_window_set_decorations()
2367         take precedence over anything derived from hints. Restructure
2368         related code and logic, add some new helper functions. (#327217)
2369
2370 2006-02-08  Matthias Clasen  <mclasen@redhat.com>
2371
2372         * gtk/gtkfilechooserbutton.c: Don't put relevant callss
2373         in g_assert().  (#329876, Kristian Rietveld)
2374
2375 2006-02-08  Tor Lillqvist  <tml@novell.com>
2376
2377         * gdk/win32/gdkevents-win32.c (gdk_pointer_grab)
2378         (gdk_display_pointer_ungrab, gdk_keyboard_grab)
2379         (gdk_display_keyboard_ungrab): Consistenly use assign_object()
2380         when assigning GdkWindow pointers so that the ref counting doesn't
2381         get off whack.
2382
2383         (handle_stuff_while_moving_or_resizing): Don't use deprecated API.
2384
2385         (gdk_event_translate) <WM_MOUSEMOVE>: When the pointer is grabbed
2386         with owner_events FALSE, generate enter and leave events only for
2387         the grab window. (#321054)
2388
2389 2006-02-08  Kristian Rietveld  <kris@imendio.com>
2390
2391         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_ref_path),
2392         (gtk_tree_model_filter_unref_path): free temporary paths after
2393         usage (patch from maemo-gtk),
2394         (gtk_tree_model_filter_clear_cache): fix little typo in the docs
2395         (patch from maemo-gtk).
2396
2397         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_deleted): remove
2398         stale FIXME.
2399
2400 2006-02-08  Matthias Clasen  <mclasen@redhat.com>
2401
2402         * gtk/gtkfilesystem.c (gtk_file_info_copy): Copy the display_key
2403         as well.  (#330389, Markku Vire)
2404
2405 2006-02-08  Tor Lillqvist  <tml@novell.com>
2406
2407         * gtk-zip.sh.in: Drop the timestamp from the zipfile names.
2408
2409 2006-02-07  Sven Neumann  <sven@gimp.org>
2410
2411         * gdk/directfb/AUTHORS: updated mine and Dok's email address.
2412
2413 2006-02-06  Kristian Rietveld  <kris@gtk.org>
2414
2415         * gtk/gtktreeview.c (gtk_tree_view_get_search_entry): fix compiler
2416         warning.
2417
2418 2006-02-05  Dom Lachowicz <cinamod@hotmail.com>
2419
2420         * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Bug #330022
2421         Wrong pixel values are computed when color = 0xFF and alpha = 0xFF
2422         
2423 2006-02-04  Michael Emmel  <mike.emmel@gmail.com>
2424         Added new directfb backend located in gdk/directfb
2425         plus patches to compile new backend
2426         compile with --with-gdktarget=directfb
2427
2428 2006-02-03  Federico Mena Quintero  <federico@ximian.com>
2429
2430         Work around https://bugs.freedesktop.org/show_bug.cgi?id=4320,
2431         which used to be our own
2432         http://bugzilla.gnome.org/show_bug.cgi?id=314616.  If one uses a
2433         pixmap for a pattern in Cairo, and sets the pattern to
2434         CAIRO_EXTEND_REPEAT; and if the destination surface is also a
2435         pixmap, Cairo does a slow copy instead of using XCopyArea().  So,
2436         we use the same code that we used in GTK+ 2.6 (pre-cairo), by
2437         filling the double-buffer pixmap with a tiled GC and
2438         XFillRectangle().
2439
2440         * gdk/gdkwindow.c (BackingRectMethod): New structure with a
2441         cairo_t and a GdkGC field.  Depending on which of these fields
2442         gets filled in, we'll use Cairo or GDK to clear the double-buffer
2443         pixmap when painting a window.
2444         (setup_backing_rect_method): Fill a BackingRectMethod as
2445         appropriate, depending on the window's configuration and our
2446         knowledge of whether Cairo is fast or slow when doing repeating
2447         patterns.
2448         (gdk_window_clear_backing_rect): Call
2449         setup_backing_rect_method().  Depending on what it returns, use
2450         Cairo to clear the double-buffer pixmap, or plain GDK.
2451
2452 2006-02-03  Matthias Clasen  <mclasen@redhat.com>
2453
2454         * gtk/gtklabel.c (get_layout_location): Fix handling
2455         of padding in RTL.  (#329099, Hooman Mesgary) 
2456
2457 2006-02-02  Matthias Clasen  <mclasen@redhat.com>
2458
2459         * gdk/x11/gdkdnd-x11.c (_gdk_drag_get_protocol_for_display):
2460         Make drops on the root window work again.  (#145243, Andrew S. Dixon)
2461
2462 2006-02-01  Matthias Clasen  <mclasen@redhat.com>
2463
2464         * gtk/gtkwidget.c (gtk_widget_class_init): Wrap dnd signal
2465         docs to 80 columns.
2466
2467 2006-01-31  Matthias Clasen  <mclasen@redhat.com>
2468
2469         * autogen.sh: Touch README and INSTALL here to pacify 
2470         automake.  (#329124, Kjartan Maraas, Tim Janik)
2471
2472 2006-01-31  Matthias Clasen  <mclasen@redhat.com>
2473
2474         * gtk/gtk.symbols:
2475         * gtk/gtkassistant.h: 
2476         * gtk/gtkassistant.c: Actually implement visibility handling,
2477         and add gtk_assistant_update_buttons_state.
2478
2479         * tests/testassistant.c: Test visibility handling.
2480
2481 2006-01-31  Kristian Rietveld  <kris@imendio.com>
2482
2483         * gtk/gtkstyle.c (gtk_default_draw_flat_box): Add support for row
2484         hinting for the selected state.
2485
2486 2006-01-30  Matthias Clasen  <mclasen@redhat.com>
2487
2488         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
2489         Make sure the tree view is realized, since we grab the
2490         focus to it.  (#329144, Wouter Bolsterlee)
2491
2492         * gtk/gtkspinbutton.h: 
2493         * gtk/gtkspinbutton.c: Add a wrapped signal.  (#322933,
2494         Carlos Garnacho Parro)
2495
2496         * gtk/gtkassistant.c: More generous spacing. (#328082,
2497         Christian Persch, patch by Carlos Garnacho)
2498         
2499         * gtk/gtktoggletoolbutton.c (gtk_toggle_tool_button_set_property): 
2500         Use the setter for active.  (#329208, Guillaume Cottenceau)
2501
2502         * docs/tools/widgets.c (get_all_widgets): Add GtkLinkButton
2503
2504         * gtk/gtkassistant.c (gtk_assistant_init): Move the
2505         last button to the left where it does not affect
2506         the positioning of forward/back.
2507
2508 2006-01-29  Matthias Clasen  <mclasen@redhat.com>
2509
2510         More GtkAssistant work, by Carlos Garnacho.
2511         
2512         * tests/testassistant.c: Additions.
2513
2514         * gtk/gtkassistant.c: Handle page visibility, other 
2515         small fixes.
2516
2517         * docs/tools/widgets.c: Add GtkAssistant.
2518
2519 2006-01-28  Behdad Esfahbod  <behdad@gnome.org>
2520
2521         * configure.in: If major.minor of required and available glib versions
2522         are the same, add -DG_DISABLE_DEPRECATED to GLIB_CFLAGS. (bug #328617)
2523
2524         * */Makefile.am: Remove hardcoded -DG_DISABLE_DEPRECATED.
2525
2526 2006-01-28  Dom Lachowicz <cinamod@hotmail.com>
2527
2528         * modules/engines/ms-windows/msw-style.c: Re-sync with gtk-wimp
2529         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Ditto
2530         
2531 2006-01-28  Matthias Clasen  <mclasen@redhat.com>
2532
2533         * gtk/gtk.symbols: 
2534         * gtk/gtklinkbutton.h: 
2535         * gtk/gtklinkbutton.c: Allow to set a global hook function
2536         thats called whenever a link button is clicked.
2537
2538         More work on GtkAssistant by Carlos Garnacho:
2539         
2540         * demos/gtk-demo/Makefile.am: 
2541         * demos/gtk-demo/assistant.c: Add a  GtkAssistant demo.
2542
2543         * gtk/gtkassistant.c: Handle focus, several small fixes to the
2544         flow computations.
2545
2546 2006-01-27  Federico Mena Quintero  <federico@ximian.com>
2547
2548         Fixes bug #328820:
2549
2550         * gtk/gtkfilechooserdefault.c
2551         (gtk_file_chooser_default_class_init): Make GDK_KP_Divide pop up
2552         the location dialog populated to "/".
2553         (tree_view_keybinding_cb): Likewise.
2554         (trap_activate_cb): Likewise.
2555
2556 2006-01-25  Behdad Esfahbod  <behdad@gnome.org>
2557
2558         * gtk/gtkcalendar.c (gtk_calendar_size_request): Use translated format
2559         strings for L10n in size calculation too.
2560
2561         * gtk/gtkcalendar.c (calendar_paint_week_numbers): Expand buffer to
2562         accomodate localized digits.
2563
2564 2006-01-26  Matthias Clasen  <mclasen@redhat.com>
2565
2566         * tests/prop-editor.c: Introspect child properties. too.
2567
2568 2006-01-25  Behdad Esfahbod  <behdad@gnome.org>
2569
2570         * gtk/gtkcalendar.c (calendar_paint_week_numbers, calendar_paint_day):
2571         Use contexed translated strings calendar:week:digits|%d and
2572         calendar:day:digits|%d to let translators choose localized digits for
2573         week and day numbers. (bug #317171, Hamed Malek)
2574
2575 2006-01-25  Behdad Esfahbod  <behdad@gnome.org>
2576
2577         * gtk/gtklabel.c (get_layout_location): Use logical extents of the
2578         layout instead of ink extents.  According to Pango docs, that's what
2579         should be used for placement.  Moreover, simply use
2580         pango_layout_get_pixel_size instead of getting the extents and
2581         dividing ourselves.
2582
2583 2006-01-25  Matthias Clasen  <mclasen@redhat.com>
2584
2585         * gtk/gtkentrycompletion.c: 
2586         * gtk/gtkentry.c: Be more careful when blocking signals. 
2587
2588         * gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): Only
2589         set the cursor size if it is != 0.
2590
2591         * gtk/gtksettings.c (gtk_settings_class_init): Change the default value
2592         of gtk-cursor-theme-size to 0, meaning "use default".
2593
2594 2006-01-24  Kristian Rietveld  <kris@gtk.org>
2595
2596         #322591, Jonathan Blandford.
2597
2598         * gtk/gtktreeview.[ch] (gtk_tree_view_get_search_entry),
2599         (gtk_tree_view_set_search_entry),
2600         (gtk_tree_view_get_search_position_func),
2601         (gtk_tree_view_set_search_position_func): New functions,
2602         and small adaptions to the tree view code to allow for setting
2603         the entry and search position function.
2604
2605         * gtk/gtktreeprivate.h: Removed GtkTreeViewSearchDialogPositionFunc
2606         typedef, which is now in gtktreeview.h as
2607         GtkTreeViewSearchPositionFunc.  Add/update fields.
2608
2609         * gtk/gtk.symbols: Add new functions.
2610
2611         * tests/testtreesort.c: Add a little test for _set_search_entry().
2612
2613 2006-01-23  Matthias Clasen  <mclasen@redhat.com>
2614
2615         Add GtkLinkButton, a port of GnomeHRef.  (#314808, Emmanuele Bassi)
2616         
2617         * gtk/gtklinkbutton.h: 
2618         * gtk/gtklinkbutton.c: New files.
2619
2620         * gtk/gtk.h:
2621         * gtk/gtk.symbols: 
2622         * gtk/Makefile.am: Glue.
2623
2624         * gtk/gtkaboutdialog.c: Use GtkLinkButton.
2625         
2626         * gtk/gtkwidget.c: Add link-color and visited-link-color style
2627         properties.  (#113649, Leena Gunda)
2628
2629         * gtk/gtkaboutdialog.c: Use the new style properties here instead
2630         of the about dialogs own link-color property. 
2631
2632 2006-01-23  Kristian Rietveld  <kris@gtk.org>
2633
2634         * gtk/gtktreemodel.c (gtk_tree_model_base_init): don't copy
2635         tree paths when emitting signals. (#325041, Matthias Clasen).
2636
2637 2006-01-23  Behdad Esfahbod  <behdad@gnome.org>
2638
2639         * gtk/gtklabel.c (get_layout_location): Fix misalignment of RTL
2640         text in ellipsized GtkLabel: use layout width if set, otherwise
2641         fallback to ink extents width. (#322042)
2642
2643 2006-01-23  Matthias Clasen  <mclasen@redhat.com>
2644
2645         * gtk/gtkassistant.c (compute_last_button_state): Only show the
2646         last button if we can jump to the end. 
2647         (gtk_assistant_init): Make the spacing and button order more
2648         HIG compliant.
2649
2650         Fix drawing issues in progress bars.  (#328081, Christian Persch)
2651         
2652         * gtk/gtkprogressbar.c (gtk_progress_bar_size_request): Always
2653         request enough space. 
2654         (gtk_progress_bar_paint_activity) 
2655         (gtk_progress_bar_paint_continuous) 
2656         (gtk_progress_bar_paint_discrete): Clip when drawing the bar.
2657
2658 2006-01-23  Michael Natterer  <mitch@imendio.com>
2659
2660         * gtk/gtkcolorbutton.c: move destruction of the private GdkGC
2661         from finalize() to unrealize(). Fixes BadMatch on display change
2662         (bug #85715).
2663
2664 2006-01-22  Kristian Rietveld  <kris@gtk.org>
2665
2666         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Revert previous
2667         commit after more searching in the bugzilla archives (see #309221).
2668
2669 2006-01-22  Kristian Rietveld  <kris@gtk.org>
2670
2671         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Remove second call
2672         to gtk_tree_view_column_cell_set_cell_data, since we also set the
2673         cell data before iterating over the columns for exposure. (Fixes
2674         #322471, Duncan Coutts).
2675
2676 2006-01-21  Matthias Clasen  <mclasen@redhat.com>
2677
2678         * tests/testassistant.c: Add some tests for GtkAssistant
2679
2680         * tests/Makefile.am: Glue
2681
2682 2006-01-20  Matthias Clasen  <mclasen@redhat.com>
2683
2684         * gtk/gtkassistant.c: Fix the docs to reflect the actual signal
2685         signatures.
2686
2687         * gtk/gtktextview.c (gtk_text_view_set_virtual_cursor_pos): Don't
2688         crash if layout is NULL.  (#327934, Christian Kirbach)
2689
2690 2006-01-20  Dan Winship  <danw@novell.com>
2691
2692         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_class_init,
2693         tree_view_keybinding_cb, trap_activate_cb): On "unix", pop up the
2694         "Open Location" window on "~" as well as "/". #153213
2695         (location_entry_create): Fix this so autocompletion still works
2696         correctly in that case.
2697
2698 2006-01-19  Matthias Clasen  <mclasen@redhat.com>
2699
2700         * configure.in: Explicitly link against Xrender.  
2701         (#327538, Christophe Belle)
2702         
2703         * gdk/x11/gdkprivate-x11.h (XID_FONT_BIT): 
2704         * gdk/x11/gdkfont-x11.c: 
2705         * gdk/x11/gdkxid.c: Use an unused high bit in the
2706         XID to mark fonts in the global xid hash table.
2707
2708         * gdk/x11/gdkcursor-x11.c (update_cursor): Skip fonts
2709         when iterating over the xid hash table, since calling
2710         GDK_IS_WINDOW () on an GdkFont can cause a segfault.
2711         (#327751, Ryan Lovett)
2712
2713 2006-01-19  Matthias Clasen  <mclasen@redhat.com>
2714         
2715         * gtk/gtkassistant.[hc]: Use a priv pointer for
2716         cheap access to the priv struct.  (#327725, Christian
2717         Persch)
2718
2719         * gtk/gtkassistant.h: Fix line endings.
2720
2721 2006-01-18  Matthias Clasen  <mclasen@redhat.com>
2722
2723         * gtk/gtkassistant.[hc]: Add GtkAssistant, a widget to
2724         construct multi-step wizards.  (#115348, Martyn Russell, 
2725         Matthias Clasen, Carlos Garnacho Parro)
2726
2727         * gtk/gtk.symbols:
2728         * gtk/Makefile.am: 
2729         * gtk/gtk.h: Necessary glue.
2730
2731 2006-01-18  Anders Carlsson  <andersca@imendio.com>
2732
2733         * gdk/quartz/gdkevents-quartz.c:
2734         (get_mm_from_pixels):
2735         (gdk_screen_get_width_mm):
2736         (gdk_screen_get_height_mm):
2737         Implement these functions.
2738         (#327228, Thomas Broyer).
2739
2740 2006-01-18  Anders Carlsson  <andersca@imendio.com>
2741
2742         * gdk/quartz/gdkdrawable-quartz.c:
2743         (gdk_quartz_draw_polygon):
2744         (gdk_quartz_draw_lines):
2745         Implement these functions.
2746         (#327226, Thomas Broyer)
2747         
2748 2006-01-18  Anders Carlsson  <andersca@imendio.com>
2749
2750         * gdk/quartz/gdkkeys-quartz.c:
2751         (maybe_update_keymap):
2752         Support non-MacRoman keyboard layouts.
2753         (#322585, Wolfgang Thaller)
2754         
2755 2006-01-18  Anders Carlsson  <andersca@imendio.com>
2756
2757         * gdk/quartz/gdkmain-quartz.c:
2758         (_gdk_windowing_init):
2759         Make the process a foreground application.
2760         (#322481, Wolfgang Thaller)
2761         
2762 2006-01-18  Matthias Clasen  <mclasen@redhat.com>
2763
2764         * gtk/gtkrbtree.c: 
2765         * gtk/gtktreemodel.c: Fix several g_new() calls which
2766         were using extra indirections or pointless casts.  
2767         (#327423, Morten Welinder)
2768
2769 Tue Jan 17 19:27:59 2006  Tim Janik  <timj@imendio.com>
2770
2771         * gtk/gtkprogress.c: fix adopted from maemo-gtk.
2772         gtk_progress_create_pixmap(): clear out the newly created offscreen 
2773         pixmap, so themes making use of transparency don't draw onto garbage.
2774
2775 2006-01-17  Michael Natterer  <mitch@imendio.com>
2776
2777         * gtk/gtkbutton.c: remove the "child-spacing" style property again
2778         and add "inner-border" instead. That's far more flexible and
2779         "child-spacing" was a bad name anyway.
2780
2781 2006-01-17  Michael Natterer  <mitch@imendio.com>
2782
2783         * configure.in (ALL_LINGUAS): remove "ang" again until all po
2784         files are there.
2785
2786 2006-01-16  Abel Cheung  <maddog@linuxhall.org>
2787
2788         * configure.in: Added "ang" "zh_HK" to ALL_LINGUAS.
2789
2790 2006-01-16  Matthias Clasen  <mclasen@redhat.com>
2791
2792         * README.in: Mention new pixbuf engine features.
2793
2794         * gtk/gtk.symbols: 
2795         * gtk/gtkradioaction.[hc]: Add a current-value property and a
2796         setter for it.  (#322735, Jorn Baayen)
2797         
2798 2006-01-16  Michael Natterer  <mitch@imendio.com>
2799
2800         * gtk/gtkbutton.c: applied patch from maemo-gtk which adds a
2801         child-spacing style property. Fixes bug #327202.
2802
2803 2006-01-16  Anders Carlsson  <andersca@imendio.com>
2804
2805         * gdk/quartz/gdkdisplay-quartz.c:
2806         * gdk/quartz/gdkevents-quartz.c:
2807         (gdk_keyboard_grab):
2808         (gdk_display_keyboard_ungrab):
2809         (gdk_keyboard_grab_info_libgtk_only):
2810         (find_window_for_event):
2811         Implement keyboard grabs.
2812         
2813         (_gdk_quartz_send_map_events):
2814         * gdk/quartz/gdkmain-quartz.c:
2815         * gdk/quartz/gdkprivate-quartz.h:
2816         New function that synthesizes map events.
2817         
2818         * gdk/quartz/gdkwindow-quartz.c:
2819         (_gdk_windowing_window_init):
2820         The root window is always visible.
2821         
2822         (all_parents_shown):
2823         (show_window_internal):
2824         Send map events.
2825         
2826         (gdk_window_hide):
2827         Ungrab keyboard and pointer
2828
2829 2006-01-15  Kristian Rietveld  <kris@gtk.org>
2830
2831         Fixes #324099, Tommi Komulainen.
2832
2833         * gtk/gtktreestore.[ch] (gtk_tree_store_insert_with_values),
2834         (gtk_tree_store_insert_with_valuesv): new functions, analog to
2835         those found in GtkListStore.
2836
2837         * gtk/gtktreestore.c (gtk_tree_store_real_set_value),
2838         (gtk_tree_store_set_valist), (gtk_tree_store_set_valist_internal),
2839         (gtk_tree_store_sort_iter_changed): refactored.
2840
2841         * gtk/gtk.symbols: updated.
2842
2843         * tests/treestoretest.c: added a test for this new functionality.
2844
2845 2006-01-14  Matthias Clasen  <mclasen@redhat.com>
2846
2847         * gtk/gtkentry.c (gtk_entry_drag_data_received): Remove 
2848         an unused variable.
2849
2850         * gtk/gtkiconfactory.c (get_default_icons): Register RTL 
2851         versions of the indent and unindent icons.  (#326857,
2852         Itai Bar-Haim)
2853
2854         * gtk/Makefile.am (STOCK_ICONS): And add them here.
2855
2856         Fix a crash with combo boxes in RESIZE_IMMEDIATE
2857         containers.  (#326806, Sebastian Bacher)
2858         
2859         * gtk/gtkcombobox.c (gtk_combo_box_size_allocate) 
2860         (gtk_combo_box_size_request): Don't call 
2861         gtk_combo_box_check_appearance() from here, as that 
2862         can lead to recursion. 
2863         (gtk_combo_box_init): Instead, call it here.
2864
2865 2006-01-14  Kristian Rietveld  <kris@gtk.org>
2866
2867         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_iter_children): fix
2868         a typo which caused this whole thing to not function ...
2869
2870 2006-01-14  Kristian Rietveld  <kris@gtk.org>
2871
2872         * gtk/gtktreeview.c (gtk_tree_view_size_allocate),
2873         (validate_visible_area): fixup adjustments and top_row if the
2874         current dy + page_size exceeds the new tree view height. (Fixes
2875         #316689, reported by Chris Lord).
2876
2877 2006-01-13  Matthias Clasen  <mclasen@redhat.com>
2878
2879         * */abicheck.sh: Make this work on more platforms.
2880
2881 2006-01-13  Kristian Rietveld  <kris@imendio.com>
2882
2883         * tests/testtreefocus.c (set_indicator_size), (main): add a little
2884         test for the newly introduced indicator-size property.
2885
2886 2006-01-13  Kristian Rietveld  <kris@imendio.com>
2887
2888         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_init):
2889         initialize the inconsistent field in the private structure,
2890         (gtk_cell_renderer_toggle_class_init),
2891         (gtk_cell_renderer_toggle_{set,get}_property),
2892         (gtk_cell_renderer_toggle_get_size): introduce a indicator-size
2893         property.
2894
2895 2006-01-13  Michael Natterer  <mitch@imendio.com>
2896
2897         * gtk/gtktreeview.c (gtk_tree_view_real_expand_row)
2898         (gtk_tree_view_real_collapse_row): don't animate the expander
2899         arrows if gtk-enable-animations is FALSE (bug #142582).
2900
2901 2006-01-12  Matthias Clasen  <mclasen@redhat.com>
2902
2903         * gtk/gtknotebook.c: Replace hardcoded values for tab-overlap and
2904         tab-curvature with style properties.  (#325282, Alexander Nedotsukov)
2905
2906         * gtk/gtktextview.c (gtk_text_view_commit_text) 
2907         (gtk_text_view_delete_from_cursor, gtk_text_view_backspace): 
2908         Reset the virtual cursor position.  (#326003, Evert Verhellen)
2909
2910         * gtk/gtkwidget.c (gtk_widget_set_app_paintable): Add some docs
2911         about RGBA windows. (#326486, Benjamin Otte)
2912
2913 2006-01-12  Michael Natterer  <mitch@imendio.com>
2914
2915         * gdk/gdkimage.c (scratch_image_info_for_depth): connect to the
2916         display's "closed" signal and free the cached scratch images upon
2917         display closing (bug #85715).
2918
2919 2006-01-12  Michael Natterer  <mitch@imendio.com>
2920
2921         * gtk/gtkexpander.c (gtk_expander_set_expanded): skip the
2922         animation if the gtk-enable-animations setting is FALSE
2923         (bug #142582).
2924
2925 2006-01-11  Matthias Clasen  <mclasen@redhat.com>
2926
2927         * gtk/gtklabel.c: Fix a C99ism (#326658, Kazuki Iwamoto)
2928
2929 2006-01-11  Matthias Clasen  <mclasen@redhat.com>
2930
2931         * gtk/gtklabel.c: Add some notify batching, always
2932         emit notify after setting the new value.
2933
2934         * gtk/gtkmessagedialog.c: Add properties.  (#311254,
2935         Johan Dahlin)
2936         (gtk_message_dialog_new): Remove some redundant code, pointed
2937         out by Gustavo Carneiro.
2938
2939         * gdk/x11/gdkwindow-x11.c (create_moveresize_window): Clean
2940         up properly if the grab fails.
2941         (finish_drag): Don't leak a reference to moveresize_window
2942         here.
2943
2944 2006-01-11  Matthias Clasen  <mclasen@redhat.com>
2945
2946         * gdk/x11/gdkevents-x11.c: Fix string offsets.
2947
2948         Allow falling back to another icon theme before 
2949         hicolor.   (#325546, Rodney Dawes)
2950         
2951         * gtk/gtksettings.c: Add a gtk-fallback-icon-theme setting.
2952
2953         * gdk/x11/gdkevents-x11.c: Map it to the XSetting Net/FallbackIconTheme.
2954         
2955         * gtk/gtkicontheme.c: Consult the fallback icon theme before
2956         looking in hicolor. 
2957
2958 2006-01-10  Matthias Clasen  <mclasen@redhat.com>
2959
2960         * tests/testgtk.c: Add an expander example.
2961
2962         * gtk/gtkcalendar.c (gtk_calendar_focus_out): Queue a draw
2963         when losing the focus.  (#326064, Andrew Conkling)
2964
2965         * gtk/gtkimmulticontext.c: 
2966         * gtk/gtkhsv.c: 
2967         * gtk/gtkhandlebox.c: Convert to use instance private data.
2968
2969         * gtk/gtk.h: Remove duplicate include.  (#326429, 
2970         Benoît Carpentier)
2971
2972         * gtk/gtkpaned.c: Convert to use instance private data.
2973
2974 2006-01-10  Michael Natterer  <mitch@imendio.com>
2975
2976         * gdk/gdkpango.c (on_renderer_display_closed): disconnect from the
2977         right object ("closed" is emitted by the display, not the screen).
2978         (bug #85715)
2979
2980 2006-01-10  Anders Carlsson  <andersca@imendio.com>
2981
2982         * gdk/quartz/gdkproperty-quartz.c:
2983         (ensure_atom_tables):
2984         (intern_atom_internal):
2985         (gdk_atom_intern):
2986         (gdk_atom_intern_static_string):
2987         (gdk_atom_name):
2988         Implement local-only atoms.
2989
2990 2006-01-09  Matthias Clasen  <mclasen@redhat.com>
2991
2992         * gdk/gdkgc.c (gc_get_foreground): Correct a warning.
2993         (#326341, Benoît Carpentier)
2994
2995         * gtk/gtk.symbols:
2996         * gtk/gtkwindow.h:
2997         * gtk/gtkwindow.c (gtk_window_get_group): Make this function
2998         public API.  (#307099, Todd Berman)
2999
3000         * gtk/gtkmenu.c: 
3001         * gtk/gtkmain.c: 
3002         * gtk/gtkentrycompletion.c: 
3003         * gtk/gtkcombo.c: 
3004         * gtk/gtkcombobox.c: Update all callers.
3005
3006         * gtk/gtkentry.c (paste_received):  Make GtkEntryCompletion
3007         complete on pastes at the end.  (#165714, Christian Neumair)
3008
3009         * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup): 
3010         Prevent the first row being focused on map.  (#137351,
3011         Niklas Knutsson)
3012
3013 2006-01-09  Johan Dahlin  <jdahlin@async.com.br>
3014
3015         * gtk/gtk.symbols:
3016         * gtk/gtkeditable.h:
3017         * gtk/gtksizegroup.c: (gtk_size_group_get_widgets):
3018         * gtk/gtksizegroup.h:
3019         (struct _GtkSizeGroup): 
3020
3021         Add gtk_size_group_get_widgets, fixes #326324.
3022         Also mark all fields of GtkSizeGroup as private
3023
3024 2006-01-09  Matthias Clasen  <mclasen@redhat.com>
3025
3026         * gtk/gtktextlayout.c (gtk_text_layout_finalize): Don't
3027         leak preedit_string and preedit_attrs.  (#322332, Paolo
3028         Borelli)
3029
3030         * gtk/gtk.symbols:
3031         * gtk/gtkaction.h: 
3032         * gtk/gtkaction.c (gtk_widget_get_action): New function to
3033         get the action for a proxy.  (#326288)
3034
3035         * gtk/gtkaction.c: Go back to the old key for attaching the
3036         action to the proxy.  (#326288, Diego González)
3037
3038 2006-01-08  Matthias Clasen  <mclasen@redhat.com>
3039
3040         * gtk/gtkactiongroup.c (dgettext_swapped): Don't translate
3041         empty strings.  (#326200, Christian Stimming)
3042
3043 2006-01-08  Matthias Clasen  <mclasen@redhat.com>
3044
3045         * gtk/gtkentry.[hc]: 
3046         * gtk/gtklabel.[hc]: Shrink the private structs of these a bit.
3047
3048         * gtk/gtklabel.c (get_layout_location): Fix label alignment 
3049         when width-chars is set.  (#326098, Benjamin Otte)
3050
3051         * gdk/gdkregion-generic.c (miRegionCopy): Fix this for the 
3052         single-rectangle case.  (#326127, Benjamin Berg)
3053         (gdk_region_copy): Use miRegionCopy() here.
3054
3055 2006-01-07  Matthias Clasen  <mclasen@redhat.com>
3056
3057         Fix actiongroup-action interaction that relied on 
3058         actions connecting to notify on themselves:
3059         
3060         * gtk/gtkaction.[hc]: Factor out the code updating the
3061         visibility/sensitivity of proxies into _gtk_action_sync_visible()
3062         and _gtk_action_sync_sensible().
3063
3064         * gtk/gtkactiongroup.c: Call the new functions when the
3065         group visibility/sensitivity changes. 
3066
3067 2006-01-06  Matthias Clasen  <mclasen@redhat.com>
3068
3069         * gtk/gtkactiongroup.c (gtk_action_group_set_sensitive) 
3070         (gtk_action_group_set_visible): Add missing property change
3071         notification.
3072
3073 2006-01-06  Matthias Clasen  <mclasen@redhat.com>
3074
3075         * gtk/gtkfilechooserbutton.c (model_add_special): Just use the
3076         directory name for the home dir.  (#325817, Federico Mena Quintero)
3077         
3078         * gtk/gtktexttag.c (gtk_text_attributes_new): Initialize editable 
3079         to TRUE. 
3080         (gtk_text_tag_class_init): The default value for the direction 
3081         property is GTK_TEXT_DIR_NONE. Add notes about the initial values 
3082         of the font and language properties.
3083
3084         * gtk/gtktoolbutton.c (gtk_tool_button_class_init): Make clicked
3085         an action signal.  (#325782, Martyn Russell)
3086
3087         * gtk/gtkviewport.c (viewport_set_adjustment): Disconnect from
3088         the old adjustments signals.  (#325869, Jorn Baayen)
3089
3090 2006-01-06  Hans Breuer  <hans@breuer.org>
3091
3092         * tests/makefile.msc : added a bunch of tests
3093         * tests/testcellrenderertext.c : use g_snprintf()
3094         * tests/testfilechooserbutton.c : don't include unistd.h twice.
3095         Removed the unconditional one and added direct.h for G_OS_WIN32
3096         
3097 2006-01-05  Hans Breuer  <hans@breuer.org>
3098
3099         * gdk/makefile.msc : also recurse into win32 for ::clean
3100         * gtk/makefile.msc.in : create gtkbuiltincache.h (most code
3101         to simulate links) and file renames
3102
3103 2006-01-05  Johan Dahlin  <jdahlin@async.com.br>
3104
3105         * gtk/gtkprogressbar.c: Set minimum for activity-step property to 0
3106         instead of -G_MAXUINT.
3107         
3108 2006-01-05  Matthias Clasen  <mclasen@redhat.com>
3109
3110         * gtk/gtkwindow.c: Only connect to the event if we have
3111         a frame, since the handler is only relevant in that case.
3112
3113         * gtk/gtkaction.c (connect_proxy, disconnect_proxy): 
3114         Use a weak reference rather than the destroy signal to track 
3115         proxies going away.
3116
3117         * gtk/gtkbindings.c (binding_signal_new): Revert the last change.
3118
3119         * gtk/gtkaction.c (gtk_action_sync_property): 
3120         (gtk_action_sync_stock_id): Removed.
3121
3122 2006-01-05  Rodrigo Moya <rodrigo@novell.com>
3123
3124         * gtk/gtkbindings.c (binding_signal_new): allocate correct amount for
3125         signal and arguments.
3126
3127 2006-01-05  Matthias Clasen  <mclasen@redhat.com>
3128
3129         * gtk/gtklabel.c (gtk_label_grab_focus): Don't return a value from
3130         a void function.
3131
3132 2006-01-04  Matthias Clasen  <mclasen@redhat.com>
3133
3134         * gtk/gtkbindings.h (struct _GtkBindingSignal): Revert questionable
3135         changes.
3136         
3137         * gtk/gtkbindings.c: Use the slice allocator and allocate signal
3138         and arguments in one block.
3139
3140         * gtk/gtkuimanager.c (gtk_ui_manager_get_toplevels): Don't return
3141         a list of NULLs.  (#325723, Steve Chaplin)
3142
3143 2006-01-04  Rodrigo Moya <rodrigo@novell.com>
3144
3145         * gtk/gtkbindings.c (binding_signal_new): guard against multiplying
3146         by -1 (when n_args is 0).
3147
3148 2006-01-04  Michael Natterer  <mitch@imendio.com>
3149
3150         * gtk/gtkmenutoolbutton.c
3151         (gtk_menu_tool_button_set_menu)
3152         (gtk_menu_tool_button_destroy): use gtk_menu_attach_to_widget()
3153         and gtk_menu_detach() instead of reffing/unreffing the menu
3154         manually. Also fixes brokenness on screen change (bug #85715).
3155
3156 2006-01-04  Matthias Clasen  <mclasen@redhat.com>
3157
3158         * gtk/gtkaccelmap.c: 
3159         * gtk/gtkactiongroup.c: 
3160         * gtk/gtkdialog.c: 
3161         * gtk/gtkfilesystemunix.c: 
3162         * gtk/gtkgc.c: 
3163         * gtk/gtkkeyhash.c: 
3164         * gtk/gtkplug.c: 
3165         * gtk/gtktextiter.c: 
3166         * gtk/gtktextlayout.c: 
3167         * gtk/gtkuimanager.c: 
3168         * gtk/gtkwidget.c: 
3169         * gtk/gtkwindow.c: 
3170         * gtk/gtkxembed.c: Use the slice allocator for many small 
3171         allocations.
3172
3173         * gtk/gtkcolorsel.c: 
3174         * gtk/gtktreeview.c: Use IPN.
3175
3176         * gtk/gtkwidget.c: Remove an unused field from the AccelPath 
3177         struct.
3178
3179 2006-01-04  Tor Lillqvist  <tml@novell.com>
3180
3181         * gtk-zip.sh.in: Include also the gtk20-properties message catalogs.
3182
3183 2006-01-03  Matthias Clasen  <mclasen@redhat.com>
3184         
3185         * gtk/gtkdnd.c: Make it compile
3186
3187         * gtk/gtkdnd.c (gtk_drag_begin_internal): Call gtk_drag_update
3188         for non-motion events.  (#325443, Peter Harvey)
3189
3190         * gtk/gtkaction.c: Avoid connecting to notify on our own
3191         properties. 
3192
3193 2006-01-02  Matthias Clasen  <mclasen@redhat.com>
3194
3195         * gtk/gtkentry.c (gtk_entry_delete_from_cursor): When deleting
3196         words, delete preceding whitespace as well.  (#325358,  Akkana Peck)
3197
3198 2006-01-02  Anders Carlsson  <andersca@imendio.com>
3199
3200         * gdk/quartz/GdkQuartzWindow.c:
3201         (-[GdkQuartzWindow canBecomeMainWindow]):
3202         (-[GdkQuartzWindow canBecomeKeyWindow]):
3203         Have these return TRUE
3204         
3205         * gdk/quartz/gdkevents-quartz.c:
3206         (pointer_grab_internal):
3207         Remove FIXME
3208         
3209         (find_child_window_by_point_helper):
3210         Fix bug in offset calculation
3211         
3212         (find_window_for_event):
3213         Use grab window toplevel when a grab is in effect
3214         
3215         (gdk_event_translate):
3216         Don't call _gdk_event_button_generate on mouse up
3217         
3218         * gdk/quartz/gdkgc-quartz.c:
3219         (_gdk_quartz_gc_new):
3220         Fix indentation
3221         
3222         * gdk/quartz/gdkwindow-quartz.c:
3223         (gdk_window_new):
3224         Make TEMP windows borderless
3225         
3226         (gdk_window_hide):
3227         Hide window
3228         
3229         (gdk_window_get_origin):
3230         Implement
3231         
3232 2006-01-02  Tor Lillqvist  <tml@novell.com>
3233
3234         * gdk/win32/gdkwindow-win32.c
3235         (gdk_window_impl_win32_get_visible_region): Make identical to the
3236         X11 implementation. (#322264, John Ehresman)
3237
3238         * gdk/win32/gdkgeometry-win32.c (gdk_window_scroll): Get the
3239         invalidated region from ScrollWindowEx() instead of an incorrect
3240         attempt to calculate it ourselves. Fix by John Ehresman. (#323666)
3241
3242         * gdkevents-win32.c: Make _gdk_win32_hrgn_to_region() non-static.
3243
3244         * gdkprivate-win32.h: Declare it.
3245
3246 2005-12-31  Matthias Clasen  <mclasen@redhat.com>
3247
3248         * gtk/gtkaction.c: 
3249         * gtk/gtkentry.c: Connect to notify instead of multiple
3250         detailed signals.
3251
3252 2005-12-30  Matthias Clasen  <mclasen@redhat.com>
3253
3254         * gdk/gdk.symbols: 
3255         * gdk/gdkcairo.h: 
3256         * gdk/gdkcairo.c: Add gdk_cairo_set_source_pixmap.  (#318805,
3257         Alexander Larsson)
3258
3259         * gdk/gdkdisplaymanager.c (gdk_display_manager_set_property): Call
3260         gdk_display_manager_set_default_display() to change the default
3261         display.  (#153623, Stefan Kost)
3262
3263         * gtk/gtkmessagedialog.c (gtk_message_dialog_init):
3264          (setup_type): Alert dialogs should not have titles and should 
3265         not be displayed in the taskbar.  (#310443, Carlos Garnacho Parro,
3266         Dennis Cranston)
3267
3268 2005-12-29  Matthias Clasen  <mclasen@redhat.com>
3269
3270         * gtk/gtkliststore.c: 
3271         * gtk/gtktreestore.c: Always call the get_path and get_iter
3272         implementations directly, rather than the current mixture whith
3273         some calls going through the GtkTreeModel interface.
3274
3275         * gtk/gtktreemodelsort.c: 
3276         * gtk/gtkliststore.c: 
3277         * gtk/gtktreestore.c: Remove excessive g_return_if_fail() checks
3278         in static functions.
3279         
3280         * gtk/gtktreedatalist.c: Use the slice allocater for 
3281         GtkTreeDataSortHeader.
3282
3283         * gtk/gtktreedatalist.h: 
3284         * gtk/gtktreedatalist.c (_gtk_tree_data_list_set_header): New function.
3285
3286         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_sort_func): 
3287         * gtk/gtkliststore.c (gtk_list_store_set_sort_func): 
3288         * gtk/gtktreestore.c (gtk_tree_store_set_sort_func): Use it here.
3289
3290 2005-12-27  Matthias Clasen  <mclasen@redhat.com>
3291
3292         * gtk/gtkbindings.h (GtkBindingSignal): 
3293         * gtk/gtkbindings.c (binding_signal_new): Make the
3294         args a flexible array inside the struct, and allocate them
3295         together.
3296
3297 Wed Dec 28 00:45:46 2005  Tim Janik  <timj@gtk.org>
3298
3299         * gtk/gtkctree.c (row_delete): delete GtkCTreeRow as GtkCTreeRow, not
3300         clist rows which crashes in gslice later on.
3301
3302 2005-12-27  Federico Mena Quintero  <federico@ximian.com>
3303
3304         * gtk/gtkfilefilter.c (gtk_file_filter_filter): In the case for
3305         FILTER_RULE_PIXBUF_FORMATS, check that filter_info->mime_type is
3306         not NULL.  Fixes bug #317687.
3307
3308 2005-12-27  Matthias Clasen  <mclasen@redhat.com>
3309
3310         * gdk/x11/gdkevents-x11.c (check_transform): Fix a typo.
3311         (gdk_screen_get_setting): Avoid relocations for the settings
3312         map.
3313
3314         * gdk/x11/gdkproperty-x11.c: Avoid relocations for the list
3315         of standard atoms.
3316
3317         * gtk/gtkbindings.c (gtk_binding_set_new): Avoid copying
3318         the set_name by interning it.
3319
3320 2005-12-26  Matthias Clasen  <mclasen@redhat.com>
3321
3322         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Precache atoms
3323         before calling gdk_window_new().
3324
3325         * gtk/gtktextbtree.c: Use the slice allocator for some other small
3326         auxiliary structures as well.
3327
3328         * gtk/gtkimcontext.c (gtk_im_context_filter_keypress): Clarify
3329         docs.  (#324996)
3330
3331         * gtk/gtktextbtree.c (gtk_text_btree_get_tag_info) 
3332         (gtk_text_btree_remove_tag_info): Use the slice allocator for 
3333         tag info.
3334
3335         * README.in: Mention the stripping of (_F) suffixes.
3336
3337         * gtk/gtktoolbar.c (_gtk_toolbar_elide_underscores): Strip a suffix of 
3338         the form "(_<single character>)", since this is the preferred way
3339         for some languages to indicate accelerators.  (#323956, Yang Hong)
3340
3341         * gtk/gtklabel.c (gtk_label_class_init): Add a gtk-label-select-on-focus
3342         setting.
3343         (gtk_label_grab_focus): And use it here to select the contents of
3344         the label when appropriate.
3345         (gtk_label_class_init): Use the same keybindings for select all/
3346         unselect all as GtkEntry and GtkTextView.
3347
3348         * gtk/gtkdialog.c (gtk_dialog_map): When looking for the initial
3349         focus, avoid leaving a selection in a label.
3350
3351 2005-12-25  Matthias Clasen  <mclasen@redhat.com>
3352
3353         * gtk/gtkwindow.c: Documentation fixes.  (#324815, 
3354         Ross Burton)
3355
3356         * configure.in: Require GLib 2.9.2
3357
3358 2005-12-24  Matthias Clasen  <mclasen@redhat.com>
3359
3360         * gdk/gdkregion-generic.c: 
3361         * gdk/gdkpolyreg-generic.c: 
3362         * gdk/gdkregion.h: 
3363         * gdk/gdkrectangle.c: Inline docs, use g_assert(), avoid 
3364         extra allocation for rectangular regions.
3365
3366 Thu Dec 22 18:53:14 2005  Tim Janik  <timj@gtk.org>
3367
3368         * gtk/gtkobject.[hc]: renamed GUnowned to GInitiallyUnowned.
3369
3370 Thu Dec 22 17:55:11 2005  Tim Janik  <timj@gtk.org>
3371
3372         * gtk/gtkobject.h: parent type fixups in structure declarations.
3373
3374 Thu Dec 22 16:01:27 2005  Tim Janik  <timj@imendio.com>
3375
3376         * gtk/gtkobject.c: derive GtkObject from GUnowned,
3377         so it initially has a floating reference count.
3378         gtk_object_class_init(): installa floating flag handler with
3379         libgobject, so for GtkObjects the flag is stored as GTK_FLOATING
3380         in the ->flags member.
3381
3382         * tests/floatingtest.c: test floating flag uses.
3383
3384 2005-12-21  Matthias Clasen  <mclasen@redhat.com>
3385
3386         * gdk/gdkregion-generic.c: Use the slice allocator
3387         for regions. Still todo: avoid extra allocations for
3388         the single-rectangle case.
3389
3390         * gtk/gtksettings.c (gtk_settings_class_init): Update
3391         class_n_properties after installing color-hash, since
3392         other classes install settings, too.
3393
3394         * gtk/gtkctree.c: 
3395         * gtk/gtkclist.c: Fix some mistakes in the conversion
3396         from mem chunks to slice allocator.
3397
3398         * gtk/gtkiconview.c (adjust_wrap_width): Adjust the 
3399         wrap-width also if an explicit item width is set.  
3400         (#322475, Alex Graveley)
3401         
3402 2005-12-20  Matthias Clasen  <mclasen@redhat.com>
3403
3404         * gtk/gtkiconview.c (gtk_icon_view_button_press): Reset 
3405         pressed_button to -1 after handling a double click, so that
3406         motion events occurring between here and the release event
3407         don't trigger DND.  (#324588, Dave Andreoli)
3408
3409 2005-12-19  Matthias Clasen  <mclasen@redhat.com>
3410
3411         * gtk/gtkcellrenderer.c: 
3412         * gtk/gtkselection.c: 
3413         * gtk/gtkcalendar.c: 
3414         * gtk/gtkitemfactory.c: 
3415         * gdk/gtkcombo.c: 
3416         * gdk/gdkpixbuf-render.c: Documentation updates
3417
3418         * gtk/gtktreemodel.c: 
3419         * gtk/gtkplug.c: 
3420         * gtk/gtkwindow.c: Documentation fixes.
3421
3422 2005-12-19  Michael Natterer  <mitch@imendio.com>
3423
3424         * gtk/gtkentry.c: implement boolean property "truncate-multiline"
3425         which, when enabled, truncates multi-line pastes or drops to their
3426         first line. Fixes bug #322252.
3427
3428         * gtk/gtkfilechooserentry.c (gtk_file_chooser_entry_init): enable
3429         truncate-multiline here.
3430
3431 2005-12-17  Matthias Clasen  <mclasen@redhat.com>
3432
3433         * gtk/gtksettings.c (get_color_hash): Don't crash if
3434         there is no color scheme.  (#324429, Diego Gonzalez)
3435
3436 2005-12-16  Matthias Clasen  <mclasen@redhat.com>
3437
3438         * gtk/gtkfilesystem.c (gtk_file_system_module_load): 
3439         * gtk/gtkimmodule.c (gtk_im_module_load): 
3440         * gtk/gtkthemes.c (gtk_theme_engine_load): 
3441         * gtk/gtkmodules.c (find_module): Use G_MODULE_BIND_LAZY when
3442         opening modules.
3443
3444         * gtk/gtksettings.[hc]: Rework the way the color scheme setting
3445         is inherited. Now the overriding is done on a per-color basis,
3446         rather than for the setting as a whole. This has the effect
3447         that themes can declare defaults for all the symbolic colors they
3448         use by specifying a value for the gtk-color-scheme setting in 
3449         their rc file, while still allowing the XSetting to override
3450         "standard" symbolic colors. The hash table is now available
3451         through the color-hash property.
3452         
3453         * gtk/gtkrc.c: Use the new color-hash property.
3454         
3455 2005-12-14  Matthias Clasen  <mclasen@redhat.com>
3456
3457         * gtk/gtkcontainer.c (_gtk_container_focus_sort): Skip unrealized
3458         children when doing focus sorting.  (#323995, Dan Winship)
3459
3460 2005-12-14  Rodney Dawes  <dobey@novell.com>
3461
3462         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_volume_render_icon):
3463         Default to "drive-harddisk" and then fall back to gnome-dev-harddisk
3464         (get_icon_for_mime_type): Look up the mime type icons according to the
3465         Icon Naming Specification and then fall back to the gnome-mime- prefix
3466         for the mime type icons
3467
3468         Fixes #323655
3469         
3470 2005-12-14  Matthias Clasen  <mclasen@redhat.com>
3471
3472         * gtk/gtkdnd.c (gtk_drag_set_icon_name): Warn if the icon
3473         cannot be loaded.  (#323504, Kjartan Maraas)
3474
3475         * gtk/gtktreeview.c (gtk_tree_view_class_init): Add docs 
3476         for the row-activated signal.  (#324044, Davyd Madeley)
3477
3478 2005-12-14  Michael Natterer  <mitch@imendio.com>
3479
3480         * tests/test-images/valid_jpeg_progressive_test: new test image.
3481
3482 Tue Dec 13 09:47:20 2005  Tim Janik  <timj@gtk.org>
3483
3484         * README.in: added a link to the floating reference docs in the
3485         2.10 release NEWS section.
3486
3487 2005-12-12  Matthias Clasen  <mclasen@redhat.com>
3488
3489         * gtk/gtktextiter.c (gtk_text_iter_set_visible_line_index): 
3490         Speed this function up, using the fact that visibility is 
3491         constant across segments. (#321548, Paolo Borelli)
3492
3493         * gtk/gtktextbtree.c (_gtk_text_line_char_to_byte_offsets): 
3494         * gtk/gtktextiter.c (gtk_text_iter_backward_chars): Speed up
3495         stepping backwards.  (#320638, Larry Ewing, Paolo Borelli)
3496
3497         * gtk/gtkicontheme.c (ensure_valid_themes): Only broadcast
3498         _GTK_LOAD_ICONTHEMES if we detect a real theme change, not
3499         upon initial theme load.  (#323876, Peter Lund)
3500
3501         * gtk/gtkstatusicon.c (gtk_status_icon_class_init): Register
3502         the size-changed signal correctly.  (#323848, Murray Cumming)
3503
3504         * gtk/gtkmarshalers.list: Add necessary marshaller.
3505
3506         * gtk/gtktextview.c (gtk_text_view_get_border_window_size): Don't
3507         fall thru to the wrong window types.  (#323843)
3508
3509         Make the gtk-color-scheme setting work.
3510         
3511         * gtk/gtksettings.h: 
3512         * gtk/gtksettings.c (_gtk_settings_get_color_hash): Add a getter
3513         that takes care of initializing the color hash if it is not 
3514         already there.  
3515
3516         * gtk/gtkrc.c (gtk_rc_color_scheme_changed, gtk_rc_context_get): 
3517         And use it here.        
3518
3519 2005-12-10  Matthias Clasen  <mclasen@redhat.com>
3520
3521         * gdk/gdk.c (gdk_parse_args): Warn if parsing fails,
3522         not if it succeeds. 
3523
3524 2005-12-09  Matthias Clasen  <mclasen@redhat.com>
3525
3526         * gtk/gtkselection.c (gtk_selection_data_get_uris): Don't
3527         leak list[0].  (#323629, Markku Vire)
3528
3529         * gtk/gtktextbuffer.c (paste_from_buffer): Unref the buffer
3530         when freeing the RequestData.  (#323577)
3531
3532 2005-12-07  Matthias Clasen  <mclasen@redhat.com>
3533
3534         * demos/gtk-demo/iconview_edit.c (set_cell_color): Don't
3535         leak text.
3536
3537         * gtk/gtktoolbutton.c (clone_image_menu_size): Fix a 
3538         variable name clash.  (#323475, Ross Burton)
3539
3540 2005-12-07  Ross Burton  <ross@burtonini.com>
3541
3542         * docs/reference/gtk/tmpl/gtkenums.sgml:
3543         * gtk/gtktoolbutton.c:
3544         If the toolbar mode is ICONS and there is no icon set then show
3545         the label, and vice versa (#322019)
3546
3547 2005-12-07  Matthias Clasen  <mclasen@redhat.com>
3548
3549         * gtk/gtktoolbutton.c (clone_image_menu_size): Fix a 
3550         variable name clash.  (#323475, Ross Burton)
3551
3552         * gtk/gtktreeview.c (gtk_tree_view_key_press): Use the correct
3553         window when synthesizing the key event.  (#323077,
3554         Sadrul Habib Chowdhury)
3555         
3556         (gtk_tree_view_search_key_press_event): Also listen for
3557         GDK_ISO_Left_Tab.  (#323077, Sadrul Habib Chowdhury)
3558
3559         * gtk/gtktextview.c (gtk_text_view_preedit_changed_handler): 
3560         Only scroll if we have focus.  (#316310, Paolo Borelli)
3561
3562         * gtk/gtkfilesystemunix.c (cb_fill_in_mime_type): Fix a C99ism,
3563         spotted by Crispin Flowerday.
3564
3565 2005-12-06  Behdad Esfahbod  <behdad@gnome.org>
3566
3567         * gtk/gtksettings.c (settings_update_font_options): Turn metrics
3568         hinting on (part of #307196)
3569
3570 2005-12-06  Matthias Clasen  <mclasen@redhat.com>
3571
3572         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_reset): Don't
3573         commit from reset, it upstets GtkTextView.
3574
3575         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): Be more
3576         careful when turning blinking on and off.
3577         (gtk_text_view_focus_out_event): Make the cursor really invisible
3578         when the focus goes away.  (#323087, Sadrul Habib Chowdhury)
3579         (cursor_blinks): Check the gtk-cursor-blink setting first.
3580
3581         * gtk/gtktreeview.c (gtk_tree_view_key_press): Fix refcounting
3582         issues with new_event and its window.
3583
3584         * gtk/gtkmenu.c (gtk_menu_attach_to_widget): Accept NULL
3585         as a detach func.  (#323386, Jorn Baayen)
3586
3587         * gtk/gtkcalendar.c: Avoid conflict with win32 headers in
3588         the libdate routines.  (#323045, Kazuki Iwamoto)
3589
3590         * gdk/gdk.c (gdk_parse_args): 
3591         * gtk/gtkmain.c (gtk_parse_args): Don't ignore errors
3592         from g_option_context_parse(). 
3593
3594 Tue Dec  6 11:37:59 2005  Tim Janik  <timj@gtk.org>
3595
3596         * gdk/gdkevents.c (gdk_event_new): fix missing hash table 
3597         initialization.
3598
3599 Tue Dec  6 10:32:17 2005  Tim Janik  <timj@gtk.org>
3600
3601         * gtk/gtkstatusbar.c: ported memchunk uses to g_slice, so the code
3602         compiles again.
3603
3604 2005-12-05  Federico Mena Quintero  <federico@ximian.com>
3605
3606         * gtk/gtkfilechooserdefault.c (trap_activate_cb): "event->state &
3607         modifiers", not "event->state && modifiers".  Patch by Sadrul
3608         Habib Chowdhury <imadil@gmail.com>.  Fixes bug #323073.
3609
3610 2005-12-05  Matthias Clasen  <mclasen@redhat.com>
3611
3612         * gtk/gtkwidget.c: 
3613         * gtk/gtkuimanager.c: 
3614         * gtk/gtktreedatalist.c: 
3615         * gtk/gtktext.c: 
3616         * gtk/gtkmain.c: 
3617         * gtk/gtkitemfactory.c: 
3618         * gtk/gtkseparator.[hc]:
3619         * gtk/gtkclist.[hc]: 
3620         * gtk/gtkctree.c:
3621         * gtk/gtkgc.c: Use g_slice instead of mem chunks.
3622
3623 2005-12-05  Michael Natterer  <mitch@imendio.com>
3624
3625         * gdk/x11/gdkevents-x11.c: map the new GtkSettings properties
3626         "timeout-initial", "timeout-repeat", "color-scheme" and
3627         "enable-animations" to X settings.
3628
3629 2005-12-05  Matthias Clasen  <mclasen@redhat.com>
3630
3631         * gdk/gdkevents.c: 
3632         * gdk/gdkcolor.c: Use g_slice instead of mem chunks.
3633
3634         * gtk/gtktreeview.c (gtk_tree_view_key_press): Free new_event
3635         after sending it to the search entry.  (#323209, Crispin Flowerday)
3636
3637         * README.in: Add a note about GTK_FLOATING.
3638
3639         * gtk/gtkobject.h (GTK_OBJECT_FLOATING): Use g_object_is_floating.
3640
3641 2005-12-02  Matthias Clasen  <mclasen@redhat.com>
3642
3643         * gtk/gtktoolbutton.c (clone_image_menu_size): Don't leak
3644         a pixbuf.  (#323024, Paolo Borelli)
3645
3646 2005-12-02  Matthias Clasen  <mclasen@redhat.com>
3647
3648         * gtk/gtkfilesystemunix.c (get_icon_for_mime_type): Don't crash
3649         if mime_type is NULL.  (#322998, Sadrul Habib Chowdhury)
3650
3651 2005-12-02  Michael Natterer  <mitch@imendio.com>
3652
3653         * gtk/gtkmenu.c: applied modified patch from maemo-gtk which
3654         adds a "horizontal-padding" style property. Fixes bug #323036.
3655
3656 2005-12-01  Michael Natterer  <mitch@imendio.com>
3657
3658         Merged modified patch from maemo-gtk that allows to disable
3659         toolbar animations. Addresses bug #142582.
3660
3661         * gtk/gtksettings.c: added boolean property "gtk-enable-animations".
3662         (patch from Christian Neumair)
3663
3664         * gtk/gtktoolbar.c: don't animate toolbar changes if the settings
3665         property is FALSE. Replaced the individual "notify::foo"
3666         connections to GtkSettings by a single "notify" callback and
3667         dispatch internally.
3668
3669 2005-12-01  Michael Natterer  <mitch@imendio.com>
3670
3671         * gtk/gtkmenu.c (gtk_menu_class_init): removed redundant
3672         assignment of widget_class->motion_notify_event
3673
3674 2005-11-29  Matthias Clasen  <mclasen@redhat.com>
3675
3676         * gtk/gtktoggleaction.c (gtk_toggle_action_class_init): Add 
3677         an active property.  (#322673, Jorn Baayen)
3678
3679         Properly handle model changes in GtkTreeSelection: (#322569,
3680         Milosz Derezynski)
3681         
3682         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach): 
3683         Get a reference to the model, and stop the iteration if the model
3684         of the treeview is changed on the way.
3685
3686         * gtk/gtktreeprivate.h: 
3687         * gtk/gtktreeselection.c (_gtk_tree_selection_emit_changed): New 
3688         private function to emit the GtkTreeSelection::changed signal.
3689
3690         * gtk/gtktreeview.c (gtk_tree_view_set_model): Call 
3691         _gtk_tree_selection_emit_changed() when the model changes.
3692
3693 2005-11-28  Federico Mena Quintero  <federico@ximian.com>
3694
3695         Fixes the critical warnings from bug #317999, thus fixing the bug
3696         completely:
3697
3698         * gtk/gtkfilechooserdefault.c
3699         (gtk_file_chooser_default_get_paths): In SELECT_FOLDER mode,
3700         use _gtk_file_chooser_get_current_folder_path() instead of fetching the
3701         impl->current_folder directly.  The latter may be null if we are
3702         in RELOAD_NONE state.
3703
3704 2005-11-28  Federico Mena Quintero  <federico@ximian.com>
3705
3706         Fix bug #321560, based on a patch by Bogdan Nicula (bogdanni@hotmail.com):
3707
3708         * gtk/gtkfilechooserdefault.c (up_folder_handler): Don't add the
3709         current_folder to the pending select paths here; the path bar will
3710         give it to us now.
3711         (path_bar_clicked): Add the child_path to the pending select paths
3712         here.
3713         (show_and_select_paths): Don't filter out folders.
3714         (show_and_select_paths): Don't take separate arguments for
3715         only_one_path and multiple paths.
3716
3717         * tests/autotestfilechooser.c (test_folder_switch_and_filters):
3718         New test about preserving the filters when we change folders.
3719
3720 2005-11-28  Matthias Clasen  <mclasen@redhat.com>
3721
3722         * gtk/gtkscale.c (_gtk_scale_format_value): Insert an LRM, to prevent
3723         -20 to come out as 20- in RTL locales.  (#322571, Tze'ela Hebron)
3724
3725         * gtk/gtkaction.c (gtk_action_sync_button_stock_id) 
3726         (connect_proxy): Buttons use the label property for stock ids.  (#322565,
3727         Milosz Derezynski)
3728
3729         * gtk/gtkiconview.c (update_text_cell, update_pixbuf_cell): Correctly
3730         handle the cell list and indices into it.  (#321856)
3731
3732 2005-11-28  Matthias Clasen  <mclasen@redhat.com>
3733
3734         * gtk/gtktooltips.c (gtk_tooltips_timeout): Set timer_tag to 0 when
3735         the timeout is done.  (#322291, Jean-Yves Lefort)
3736
3737 2005-11-28  Matthias Clasen  <mclasen@redhat.com>
3738
3739         * gtk/gtkfilechooserdefault.c (shortcuts_key_press_event_cb): Make
3740         F2 work for renaming bookmarks.  (#320822, Jaap A. Haitsma, patch
3741         by Paolo Borelli)
3742
3743 2005-11-28  Tor Lillqvist  <tml@novell.com>
3744
3745         * gdk/win32/gdkwindow-win32.c (gdk_window_set_urgency_hint):
3746         Implement the conditional use of FlashWindowEx() properly for MSVC
3747         compilations. The code was confusingly assuming that if compiled
3748         with a "new" compiler, it will only be run on "new" Windows
3749         versions. We want it to run on "old" versions, too, even if
3750         compiled with a "new" compiler. There are two orthogonal issues:
3751         whether the compiler defines the necessary API in its headers, and
3752         whether it is present at run-time. (#318077)
3753
3754         * gtk/gtkcalendar.c (gtk_calendar_init): Use GetLocaleInfo() on
3755         Windows to get the localized weekday and month names. strftime()
3756         in the Microsoft C library returns strings in the default codepage
3757         for the locale of the process, not the system codepage. Thus
3758         g_locale_to_utf8() isn't useable on the return value from
3759         strftime(). (#322603)
3760
3761 2005-11-27  Matthias Clasen  <mclasen@redhat.com>
3762
3763         * gtk/gtkmessagedialog.c (gtk_message_dialog_new_with_markup): 
3764         Fix an example.  (#322493, Elie De Brauwer)
3765         
3766         Fix two memory handling problems in GtkTreeView: (#322350, 
3767         Søren Sandmann)
3768         
3769         * gtk/gtktreeview.c (gtk_tree_view_destroy) 
3770         (gtk_tree_view_set_model): Remove all references to nodes in
3771         the old model.
3772         (gtk_tree_view_real_collapse_row): Unmark expanded_collapsed_node
3773         before removing the children.
3774
3775         * gtk/gtkcolorbutton.c (gtk_color_button_init): Don't leak a 
3776         PangoLayout here.  (#322505, Paolo Borelli)
3777
3778 2005-11-27  Tor Lillqvist  <tml@novell.com>
3779
3780         Once again rework Win32 window decoration code. Doesn't break
3781         #104514. The dialogs in gtk-demo now have the same decorations and
3782         behaviour as on X11. Tried to fix #322516 but it seems very hard
3783         to make the trivial sample program there behave as expected. OTOH,
3784         simply moving the gtk_window_decorate() call in the #322516 sample
3785         program after the call to gtk_widget_show() helps...
3786             
3787         * gdk/win32/gdkwindow-win32.c (set_or_clear_style_bits): Revert to
3788         the correct semantics. Each call to gdk_window_set_decorations()
3789         which calls this function is supposed to affect all decorations.
3790
3791         (decorate_based_on_hints): New function, looks at both geometry
3792         hints and type hint and sets window decorations based on
3793         that. Consolidate code from gdk_window_set_geometry_hints() and
3794         gdk_window_set_type_hint() here.
3795
3796         (gdk_window_set_geometry_hints, gdk_window_set_type_hint): Call
3797         decorate_based_on_hints().
3798
3799 2005-11-25  Dom Lachowicz <cinamod@hotmail.com>
3800
3801         * modules/engines/ms-windows/*.[ch]: Merge with gtk-wimp's CVS.
3802         Includes improved menu icon spacing, [+]/[-] expander drawing,
3803         status-bar gippie drawing, and notebook tab drawing.
3804         
3805 2005-11-24  Michael Natterer  <mitch@imendio.com>
3806
3807         * gtk/gtktoolbar.h (struct _GtkToolbar): changed two private guint
3808         that used to hold signal handler IDs to two guint of padding.
3809
3810         * gtk/gtktoolbar.c (struct _GtkToolbarPrivate): added them as
3811         gulong here.
3812
3813         (gtk_toolbar_screen_changed): changed accordingly.
3814
3815 Wed Nov 23 18:55:47 2005  Tim Janik  <timj@imendio.com>
3816
3817         * gtk/gtkobject.[hc]: deprecated floating/sink API and implemented it
3818         in terms of the GObject floating/sink API.
3819
3820         * gtk/gtkaboutdialog.c:
3821         * gtk/gtkaction.c:
3822         * gtk/gtkcellview.c:
3823         * gtk/gtkclist.c:
3824         * gtk/gtkcolorsel.c:
3825         * gtk/gtkcombobox.c:
3826         * gtk/gtkfilechooserdefault.c:
3827         * gtk/gtkiconview.c:
3828         * gtk/gtkinvisible.c:
3829         * gtk/gtkitemfactory.c:
3830         * gtk/gtklayout.c:
3831         * gtk/gtkmenu.c:
3832         * gtk/gtkmenutoolbutton.c:
3833         * gtk/gtknotebook.c:
3834         * gtk/gtkprogress.c:
3835         * gtk/gtkrange.c:
3836         * gtk/gtkspinbutton.c:
3837         * gtk/gtkstatusicon.c:
3838         * gtk/gtktext.c:
3839         * gtk/gtktextview.c:
3840         * gtk/gtktoolbar.c:
3841         * gtk/gtktoolbutton.c:
3842         * gtk/gtktoolitem.c:
3843         * gtk/gtktreeitem.c:
3844         * gtk/gtktreeview.c:
3845         * gtk/gtktreeviewcolumn.c:
3846         * gtk/gtkuimanager.c:
3847         * gtk/gtkviewport.c:
3848         * gtk/gtkwidget.c:
3849         * gtk/gtkwindow.c:
3850         ported to use GObject's g_object_ref_sink().
3851
3852         * gtk/gtkcolorsel.c:
3853         * gtk/gtkfilechooserdefault.c:
3854         * gtk/gtkaboutdialog.c:
3855         fixed compiler warnings.
3856
3857 2005-11-23  Matthias Clasen  <mclasen@redhat.com>
3858
3859         * gtk/gtksettings.c (gtk_settings_class_init): Add some docs
3860         about gtk-color-scheme.
3861
3862 2005-11-23  Behdad Esfahbod  <behdad@gnome.org>
3863
3864         * configure.in (enable_explicit_deps): Fix typo when checking
3865         libtool config deplibs_check_method. Moreover, enable explicit
3866         deps if we get anything other than pass_all from libtool. (part of
3867         #318750)
3868
3869 2005-11-23  Matthias Clasen  <mclasen@redhat.com>
3870
3871         * gtk/updateiconcache.c (write_csource): Don't create a big
3872         string, since Visual C++ doesn't like strings longer than 64k. 
3873         (#322238, Kazuki IWAMOTO
3874
3875         * gtk/gtkentry.c: Include gtkimcontextsimple.h  (#322235,
3876         Kazuki IWAMOTO)
3877
3878 2005-11-23  Michael Natterer  <mitch@imendio.com>
3879
3880         * gtk/gtkrc.c (gtk_rc_reset_widgets): don't leak all toplevel
3881         windows on other screens (correctly remove all temporary
3882         references).
3883
3884 2005-11-23  Michael Natterer  <mitch@imendio.com>
3885
3886         Added symbolic themable colors. Patch is a merged version of
3887         proposals from Matthias and maemo-gtk. Fixes bug #114355.
3888
3889         * configure.in: require glib >= 2.9.1 for refcountable hashtables.
3890
3891         * gtk/gtksettings.c: added property "color-scheme" which is a
3892         string defining colors like "foreground:black\nbackground:grey".
3893         Automatically provide a name->GdkColor hash table mapping for the
3894         color scheme.
3895
3896         * gtk/gtkrc.[ch]: added list of color hashes that works like the
3897         list of icon factories. Append the color scheme hash from
3898         GtkSettings if it exists. Extended gtkrc syntax to allow defining
3899         and referencing of logical colors. Also allow to modulate colors
3900         in gtkrc by using arbitrary expressions of mix(), shade(),
3901         lighter() and darker(). Added internal function
3902         _gtk_rc_style_get_color_hashes().
3903
3904         * gtk/gtkstyle.[ch]: keep a private list of color hashes around.
3905         Get the list from _gtk_rc_style_get_color_hashes(). Export
3906         internal function _gtk_style_shade() (used by above color
3907         expressions). Added public API gtk_style_lookup_color() which
3908         looks up a logical color by name.
3909
3910         * gtk/gtk.symbols: add gtk_style_lookup_color
3911
3912         * tests/testgtkrc: use symbolic colors for making
3913         the scrollbars red.
3914
3915 2005-11-22  Michael Natterer  <mitch@imendio.com>
3916
3917         Made button-press timeouts which work like key repeat timeouts
3918         configurable. Addresses bug #142582:
3919
3920         * gtk/gtksettings.c: added properties "gtk-timeout-initial" and
3921         "gtk-timeout-repeat" which defalt to 200/20 (ms).
3922
3923         Use the values from GtkSettings instead of hardcoding them
3924         (the repeat value is either taken as-is for fast repeat or
3925         multiplied by 5 for slow repeat). Changed all places to use these
3926         two standard initial/repeat timings:
3927
3928         * gtk/gtkcalendar.c (unchanged 200/20)
3929         * gtk/gtknotebook.c (unchanged 200/100)
3930         * gtk/gtkpathbar.c (changed from 300/150 to 200/100)
3931         * gtk/gtkrange.c (changed from 250/100 to 200/100)
3932         * gtk/gtkspinbutton.c (unchanged 200/20)
3933
3934 2005-11-21  Anders Carlsson  <andersca@imendio.com>
3935
3936         * configure.in:
3937         * gtk/Makefile.am:
3938         * gdk/Makefile.am:
3939         * gdk/quartz/*:
3940         Add quartz backend.
3941         
3942         * docs/tools/Makefile.am:
3943         Only build docshooter when the X11 backend is used.
3944         
3945         * gtk/gtkplug-stub.c:
3946         Include gtkplug.h here.
3947         
3948         * gtk/gtksocket-stub.c:
3949         Include gtksocket.h here.
3950         
3951 2005-11-21  Matthias Clasen  <mclasen@redhat.com>
3952
3953         * gtk/gtkinputdialog.c: Convert GtkInputDialog to 
3954         g_type_class_add_private.
3955
3956         * gtk/gtksocket.c: Convert GtkSocket to g_type_class_add_private.
3957
3958         * gtk/gtkmenu.c: Convert GtkMenu to g_type_class_add_private.
3959
3960         * gtk/gtk.symbols:
3961         * gtk/gtkcombobox.[hc]: Add a tearoff-title property,
3962         with getter and setter.  (#316482, Olexiy Avramchenko)
3963
3964         * tests/testcombo.c (main): Test gtk_combo_box_set_title
3965
3966         * gtk/gtkpathbar.c: Merge remaining fixes from the 2.8 branch,
3967         pointed out by Michael Natterer.
3968
3969         Fix for bug #321542, Benedikt Meurer:
3970         
3971         * gtk/gtkcombobox.c (gtk_combo_box_set_active_internal):
3972         Emit notify::active.
3973         
3974         (gtk_combo_box_child_show, gtk_combo_box_child_hide): Use
3975         g_signal_emit, not g_signal_emit_by_name.
3976
3977 2005-11-18  Matthias Clasen  <mclasen@redhat.com>
3978
3979         Fix crashes in connection with pathbar scrolling (#321560,
3980         Bogdan Nicula)
3981         
3982         * gtk/gtkpathbar.c (gtk_path_bar_update_slider_buttons): 
3983         Stop scrolling when desensitising slider buttons.
3984         (gtk_path_bar_scroll_timeout, gtk_path_bar_slider_button_press): 
3985         And use it here.  
3986
3987         * gtk/gtkpathbar.h (struct _GtkPathBar): Add a separate
3988         scrolling_down flag.
3989
3990 2005-11-18  Matthias Clasen  <mclasen@redhat.com>
3991
3992         * gtk/gtkpathbar.c (button_clicked_cb): Fix a C99ism.
3993         (#321777, Jens Granseuer)
3994
3995         * gtk/gtkaction.c (disconnect_proxy): Disconnect the
3996         sync callback for the visibility property.  (#321761,
3997         Philip Langdale)
3998
3999         Turn off input methods in invisible entries, since
4000         they are confusing.  (#317002, James Su)
4001         
4002         * gtk/gtkentry.c (gtk_entry_set_visibility): Toggle input
4003         methods if visibility changes.
4004         (popup_targets_received): Don't show the input method
4005         menu if the entry is invisible.  
4006
4007 2005-11-17  Matthias Clasen  <mclasen@redhat.com>
4008
4009         * README.in: Add a note about range arrow sensitivity.
4010
4011         * perf/treeview.c: const correctness fixes
4012         found by Arjan van de Ven and gcc.
4013
4014 2005-11-16  Michael Natterer  <mitch@imendio.com>
4015
4016         * gtk/gtkimage.c (animation_timeout): call
4017         gtk_window_process_updates() so the animation keeps running even
4018         if the main loop is busy with sources that eat a lot of cpu with
4019         high priority. Fixes bug #321444.
4020
4021         (gtk_image_new_from_animation): document the fact that the
4022         animation will stop running if the main loop is busy with sources
4023         that have priorities higher than G_PRIORITY_DEFAULT.
4024
4025         * tests/testimage.c: added test case that shows an animation even
4026         though a cpu-eating idle function is running.
4027
4028 2005-11-16  Michael Natterer  <mitch@imendio.com>
4029
4030         * gdk/x11/gdkevents-x11.c (_gdk_events_uninit): new internal
4031         function which destroys the display's event source. Also removes
4032         the source from the global display_sources list and unrefs it.
4033
4034         * gdk/x11/gdkprivate-x11.h: declare the function.
4035
4036         * gdk/x11/gdkdisplay-x11.c (gdk_display_x11_dispose): call it
4037         instead of half-destroying the source here.
4038
4039 2005-11-15  Matthias Clasen  <mclasen@redhat.com>
4040
4041         * gtk/gtktreestore.c (gtk_tree_store_move): Fix a memory
4042         leak.  (#321032, Peter Zelezny)
4043
4044 2005-11-15  Michael Natterer  <mitch@imendio.com>
4045
4046         * gdk/x11/gdkdisplay-x11.c (gdk_display_x11_finalize): destroy
4047         display->xid_ht as late as possible (right before XCloseDisplay)
4048         because it still needs to be around when the display's screens are
4049         finalized. (#85715)
4050
4051 2005-11-14  Matthias Clasen  <mclasen@redhat.com>
4052
4053         * gtk/gtkselection.c (gtk_selection_data_set_uris): Don't
4054         leak result.  (#321441, Tommi Komulainen)
4055
4056 2005-11-14  Matthias Clasen  <mclasen@redhat.com>
4057
4058         * gtk/gtkicontheme.c (gtk_icon_theme_get_icon_sizes):
4059         Don't crash if there is no builtin icon.
4060
4061 2005-11-14  Michael Natterer  <mitch@imendio.com>
4062
4063         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_set_property):
4064         removed redundant calls to g_object_notify().
4065
4066 2005-11-13  Matthias Clasen  <mclasen@redhat.com>
4067
4068         * gdk/gdkcolor.c (gdk_color_parse): Documentation 
4069         improvements.  (#321338)
4070
4071         * gtk/gtktextiter.c (gtk_text_iter_forward_search): Make
4072         limit an inclusive boundary.  (#321299)
4073
4074 2005-11-12  Michael Natterer  <mitch@imendio.com>
4075
4076         * gtk/Makefile.am: fixed icon rules so gtkbuiltincache.h is only
4077         rebuilt if needed.
4078
4079 2005-11-12  Dom Lachowicz <cinamod@hotmail.com>
4080
4081         * modules/engines/ms-windows/msw_style.c: Bug #313627. Make win32 
4082         theme's handling of toolbars, handleboxes, and menubars more in-line
4083         with Microsoft's IE style.
4084         * modules/engines/ms-windows/*.c: Indentation cleanups
4085         
4086 2005-11-12  Matthias Clasen  <mclasen@redhat.com>
4087
4088         Make builtin icons work in gtk_window_set_icon_name() 
4089         (#321046, Maxim Udushlivy)
4090
4091         * gtk/gtkicontheme.c (insert_theme): Always insert the default
4092         theme.
4093         (ensure_valid_themes): Call _gtk_icon_theme_ensure_builtin_cache()
4094         from here.
4095         (theme_lookup_icon, find_builtin_icon): ...and not from here.
4096         (gtk_icon_theme_lookup_icon): Remove an unncessary assert.
4097         (gtk_icon_theme_get_icon_sizes): Also check builtin icons.
4098
4099 2005-11-12  Tor Lillqvist  <tml@novell.com>
4100
4101         * gtk/gtkfilesystemwin32.c (filename_get_info): Don't hide
4102         dotfiles, no such convention on Win32. Just hide files with the
4103         hidden attribute. (#314627)
4104
4105 2005-11-11  Federico Mena Quintero  <federico@ximian.com>
4106
4107         * gtk/gtkfilechooserdefault.c (shortcuts_insert_path): Do not
4108         check whether the path is a folder.  It is useful to bookmark
4109         files as well (e.g. todo.txt), and this will also help
4110         performance.
4111         (shortcuts_add_bookmark_from_path): Likewise.
4112         (shortcuts_activate_iter): Change folders or select files, as
4113         appropriate.
4114
4115 2005-11-11  Federico Mena Quintero  <federico@ximian.com>
4116
4117         * tests/autotestfilechooser.c (main): Use
4118         g_log_set_default_handler() instead of explicitly setting a
4119         handler for each domain.
4120
4121         * gtk/gtkfilechooserdefault.c (shortcuts_add_volumes): Only get
4122         the base path of the volume if it is mounted.
4123
4124 2005-11-11  Michael Natterer  <mitch@imendio.com>
4125
4126         Added per-stepper API for GtkRange's stepper sensitivity as
4127         discussed in bug #321056:
4128
4129         * gtk/gtkenums.h: added GtkSensitivityType which can be
4130         { AUTO, ON, OFF }.
4131
4132         * gtk/gtkrange.[ch]: added properties "lower-stepper-sensitivity"
4133         and "upper-stepper-sensitivity" and public getters/setters for
4134         them. Changed stepper drawing to honor the new properties.
4135
4136         * gtk/gtk.symbols: added the new symbols.
4137
4138 2005-11-10  Matthias Clasen  <mclasen@redhat.com>
4139
4140         * gtk/gtkcombobox.c: Add show-popup and hide-popup signals and
4141         emit them when the popup is shown or hidden.  (#162531, Tommi
4142         Komulainen)
4143
4144         * tests/testcombo.c: Add an example of popuplating a combobox
4145         on click.
4146
4147         * gtk/gtktreeview.c (gtk_tree_view_motion_resize_column): Another
4148         erroneous semicolon.
4149
4150         * gdk/x11/gdkcolor-x11.c (gdkx_colormap_get): Remove an erroneous
4151         semicolon. 
4152
4153         Don't corrupt odd keymaps (#316638, Kean Johnston)
4154         
4155         * gdk/x11/gdkkeys-x11.c (set_symbol): Auxiliary function to
4156         handle frobbing keymaps with odd numbers of syms/code.
4157         
4158         * gdk/x11/gdkkeys-x11.c (update_keymaps): Use set_symbol() to 
4159         frob the keymap.
4160
4161         Improve navigation to parent folders.  (#318444, Andrei Yurkevich)
4162         
4163         * gtk/gtkpathbar.[hc]: Add a child_path argument to
4164         the path_clicked signal.
4165         * gtk/gtkfilechooserdefault.c (path_bar_clicked): Select the
4166         child_path, if it is provided.
4167         * gtk/marshalers.list (path_bar_clicked): Add the necessary
4168         glue.
4169
4170         * gtk/gtkmenu.c: Fix some compiler warnings. (#321141,
4171         Kjartan Maraas)
4172         
4173         * gtk/gtk.symbols: 
4174         * gtk/gtktreeview.h: 
4175         * gtk/gtktreeview.c: Implement a getter for headers-clickable.
4176         (#163851, Richard Hult)
4177
4178 2005-11-10  Michael Natterer  <mitch@imendio.com>
4179
4180         Applied patch from maemo-gtk that addresses many issues wrt
4181         display migration and display closing (bug #85715).
4182
4183         * gdk/gdkdisplay.c (gdk_display_dispose): don't just set the
4184         default display to NULL when it's closed. Instead set the most
4185         recently opened display as new default (if one exists).
4186
4187         * gdk/gdkpango.c (on_renderer_display_closed): fixed signature
4188         of this callback.
4189
4190         * gdk/gdkscreen.c (gdk_screen_dispose): check if the GCs still
4191         exist before unrefing them.
4192
4193         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): if the screen
4194         is closed, allow destruction of the root window.
4195
4196         * gdk/x11/gdkdisplay-x11.c: moved some stuff from finalize() to
4197         dispose(), free stuff that was leaked before.
4198
4199         * gdk/x11/gdkevents-x11.c (_gdk_x11_events_uninit_screen): check if
4200         the xsettings_client still exists before destroying it.
4201
4202         * gdk/x11/gdkkeys-x11.c: added finalization and free the allocated
4203         X resources.
4204
4205         * gdk/x11/gdkpixmap-x11.c: moved stuff from finalize() to new
4206         dispose() implementation.
4207
4208         * gdk/x11/gdkscreen-x11.c: moved stuff from finalize() to
4209         dispose() and check if it still exists before unrefing it. Set
4210         their pointers to NULL/None *after* upchaining in dispose(),
4211         because X11 implementations of members of the parent class still
4212         need them for their own destruction.
4213
4214         * gdk/x11/gdkvisual-x11.c: removed finalize() implementation which
4215         was g_error()ing when finalizing a visual.
4216
4217         * gtk/gtkclipboard.c (gtk_clipboard_finalize): don't use
4218         get_clipboard_widget() because it would create the widget if it
4219         doesn't exist. Use g_object_get_data() directly instead.
4220
4221         * gtk/gtktextdisplay.c (on_renderer_display_closed): fixed signature
4222         of this callback.
4223
4224 2005-11-10  Simos Xenitellis  <simos@gnome.org>
4225
4226         * configure.in: Added Tatar (tt) to ALL_LINGUAS.
4227
4228 Wed Nov  9 16:29:42 2005  Tim Janik  <timj@imendio.com>
4229
4230         * gtk/gtkrange.c: patch from maemo-gtk that changes GtkRange
4231         to render its arrows insensitive when the adjustment is in
4232         its min or max position. this makes range arrow behaviour 
4233         consistent with spin button behaviour. (#321056)
4234
4235 2005-11-09  Tor Lillqvist  <tml@novell.com>
4236
4237         * gdk/gdkinternals.h
4238         * gdk/gdk.c (gdk_debug_keys[]): Add new GDK_DEBUG_DRAW flag to
4239         the GdkDebugFlag enum.
4240
4241         * gdk/win32/gdkdrawable-win32.c: Use DRAW to trigger GDK_NOTEs in
4242         this file instead of MISC. Now asking for MISC will give mainly
4243         window manipulation debugging output with the Win32 backend.
4244
4245 2005-11-09  Tor Lillqvist  <tml@novell.com>
4246
4247         * gdk/win32/gdkwindow-win32.c: Remove unnecessary includes.
4248
4249         (_gdk_win32_get_adjusted_client_rect): Remove this two-line
4250         function which was used only in one place.
4251
4252         (get_outer_rect): Use _gdk_win32_adjust_client_rect().
4253
4254         (gdk_window_set_geometry_hints): If we have identical minimum and
4255         maximum size hints, remove the resize and maximize
4256         decorations/functions. (#104514)
4257
4258         If we have a maximum size hint, remove the maximize
4259         decoration/function but ensure the resize decoration/function is
4260         available. Otherwise ensure both resize and maximize
4261         decorations/functions are there.
4262
4263         (set_or_clear_style_bits): Factored out common code from
4264         gdk_window_set_decorations() and gdk_window_set_functions(). 
4265
4266         Hack the window style setting once more: Only touch the window
4267         style bits corresponding to the GdkWMDecoration or GdkWMFunction
4268         parameter bitmasks. Hopefully this finally is the correct thing to
4269         do. We used to clear all other bits than those that were being
4270         set, or set all other bits than those that were being cleared.
4271
4272         Take into account that adding or removing decorations leaves the
4273         window's outer size unchanged, i.e., the client area's size and
4274         position change. This is apparently not what we want, so change
4275         also the window's (outer) position and size appropriately so that
4276         the client area's position and size stay constant.
4277
4278         gtk-demo's color selector dialog is now non-resizable like on X11
4279         (I tested with metacity in GNOME). Torn off menus are shrinkable
4280         vertically but have a maximum size, and are not maximizable or
4281         minimizable, like on X11.
4282
4283         (gdk_window_set_decorations, gdk_window_set_functions): Let
4284         set_or_clear_decorations() do most of the job.
4285
4286         * gdk/win32/gdkprivate-win32.h: Remove declaration of
4287         _gdk_win32_get_adjusted_client_rect().
4288
4289 2005-11-09  Tor Lillqvist  <tml@novell.com>
4290
4291         * gdk/win32/gdkwindow-win32.h (struct _GdkWindowImplWin32)
4292         * gdk/win32/gdkwindow-win32.c (gdk_window_impl_win32_init,
4293         gdk_window_get_type_hint, gdk_window_get_type_hint): Store the
4294         type hint. Implement gdk_window_get_type_hint() by just returning
4295         the hint stored.
4296
4297 2005-11-09  Tor Lillqvist  <tml@novell.com>
4298
4299         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints):
4300         Remove code that has been permanently ifdeffed out for two years.
4301
4302 2005-11-08  Matthias Clasen  <mclasen@redhat.com>
4303
4304         * gdk/gdkgc.c (gdk_gc_finalize): Unref tile and stipple when
4305         finalizing a gc.  (#320789, Nickolay V. Shmyrev)
4306
4307         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Ignore
4308         icons if they would make the request large enough to cause
4309         Xlib to loose the connection.  (#320909, Claudio Saavedra)
4310
4311 2005-11-08  Michael Natterer  <mitch@imendio.com>
4312
4313         * gdk/gdk.symbols
4314         * gdk/gdkwindow.h
4315         * gdk/x11/gdkwindow-x11.c: added gdk_window_get_type_hint() (patch
4316         extracted from maemo-gtk). Fixes bug #320872.
4317
4318 2005-11-07  Matthias Clasen  <mclasen@redhat.com>
4319
4320         * gtk/gtkfilechooserdefault.c (shortcuts_reorder): Don't
4321         looks the bookmark label when reordering.  (#320720, Jeremy Cook)
4322
4323         * gtk/gtkpathbar.[hc]: Set focus-on-click to FALSE for all buttons.
4324         Don't grab focus when a slider button is pressed, instead, use
4325         a bit in the pathbar struct to determine whether to scroll up
4326         or down.  (#314486, Carlos Garnacho)
4327
4328         * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup): 
4329         Don't popup the completions if the focus has already been
4330         moved somewhere else.  (#319914, Christian Persch)
4331
4332         * gtk/gtktoolitem.c (_gtk_tool_item_toolbar_reconfigured): 
4333         Raise the drag_window after reconfiguring the 
4334         toolbar.  (#320803, Christian Persch)
4335
4336         * gtk/gtk.symbols: 
4337         * gtk/gtkfilechooserbutton.h: 
4338         * gtk/gtkfilechooserbutton.c: Add a focus-on-click property
4339         with setter and getter.  (#318945, Christian Persch)
4340         
4341 Mon Nov  7 16:15:16 2005  Tim Janik  <timj@imendio.com>
4342
4343         * configure.in: fixed missing $X_CFLAGS setup in case x11.pc is present.
4344
4345 2005-11-07  Matthias Clasen  <mclasen@redhat.com>
4346
4347         * configure.in: Adjust to the stock icon changes.
4348         
4349 2005-11-07  Tor Lillqvist  <tml@novell.com>
4350
4351         * gdk/win32/gdkcursor-win32.c (pixbuf_to_hbitmaps_normal):
4352         Correct the calculation of maskstride. (#320152, Peter Zelezny)
4353         
4354 2005-11-06  Michael Natterer  <mitch@imendio.com>
4355
4356         * gtk/Makefile.am (icons): fixed rule to actually create the
4357         symlinks, erroring out if anything goes wrong.
4358
4359 2005-11-06  Tor Lillqvist  <tml@novell.com>
4360
4361         * gtk/updateiconcache.c (build_cache): Can't rename a file if the
4362         target exists on Win32. First rename the target temporarily, then
4363         if the renaming of the source to target fails, restore the
4364         original name for the target.
4365
4366         * gtk/Makefile.am: Use EXEEXT in the dependency on gtk-update-icon-cache.
4367
4368 2005-11-06  Tor Lillqvist  <tml@novell.com>
4369
4370         (pixbuf_to_hbitmaps_alpha_winxp): Use an 1-bit mask bitmap,
4371         like pixbuf_to_hbitmaps_normal().
4372         (_gdk_win32_pixbuf_to_hicon_supports_alpha): Check
4373         G_WIN32_IS_NT_BASED() first, so we can pretend being on Win9x by
4374         setting the G_WIN32_PRETEND_WIN9X environment variable.
4375         
4376 2005-11-06  Tor Lillqvist  <tml@novell.com>
4377
4378         Make icon masks work on Win98 (#320152, Peter Zelezny)
4379
4380         * gdk/win32/gdkcursor-win32.c (create_color_bitmap): Take also a
4381         parameter for the depth of the bitmap, so that this function can
4382         be used to create 1-bit bitmaps, too.
4383         (pixbuf_to_hbitmaps_normal): Create an 1-bit bitmap for the mask,
4384         and initialize it properly.
4385
4386 2005-11-04  Matthias Clasen  <mclasen@redhat.com>
4387
4388         Store builtin stock icons in an icon cache, instead of
4389         populating a hash table with pixbufs at startup, to save both
4390         memory and startup time.
4391
4392         * gtk/stock-icons/*: Reorganize the icons in a directory structure
4393         suitable for gtk-update-icon-cache, and rename them to match the
4394         stock ids.
4395
4396         * gtk/gtkiconcache.[hc]: Support non-mmapped icon caches, and
4397         add _gtk_icon_cache_has_icon_in_directory().
4398
4399         * gtk/updateiconcache.c: Support a --source <VARIABLE> argument
4400         to store the contents of the icon cache in a C header.
4401
4402         * gtk/gtkbuiltincache.h: Generated private header which contains 
4403         the icon cache for the builtin icons.
4404
4405         * gtk/gtkicontheme.c: Create a GtkIconCache for the builtin
4406         icons, and use that in addition to the hash table whenever
4407         builtin icons are searched.
4408
4409         * gtk/gtkiconfactory.c: Add GTK_ICON_SOURCE_STATIC_ICON_NAME and
4410         use it for static stock ids. 
4411         (get_default_icons): Don't add the builtin
4412         icons to the icon theme, just register the stock ids.
4413         (render_fallback_image): Take the fallback image out of the
4414         builtin icon cache.
4415         
4416         * gtk/Makefile.am: Remove stock-icons from SUBDIRS and add 
4417         the necessary machinery to rebuild gtkbuiltincache.h.
4418
4419 2005-11-04  Michael Natterer  <mitch@imendio.com>
4420
4421         * gtk/gtkrc.c (gtk_rc_reparse_all_for_settings): applied patch
4422         from maemo-gtk that changes the mtime check for rc files from
4423         '>' to '!=', otherwise theme changes go unnoticed when turning
4424         back the clock (Tommi Komulainen).
4425
4426 2005-11-04  Tor Lillqvist  <tml@novell.com>
4427
4428         * gtk/gtkstatusicon.c (gtk_status_icon_set_tooltip): Plug memory
4429         leak on Win32.
4430
4431 2005-11-03  Tor Lillqvist  <tml@novell.com>
4432
4433         * gdk/win32/gdkcursor-win32.c: As there is only one GdkDisplay in
4434         the Win32 backend, check that GdkDisplay* parameters are equal to
4435         _gdk_display instead of using the unnecessarily general
4436         GDK_IS_DISPLAY().
4437
4438         (pixbuf_to_hbitmaps_alpha_winxp): Rename the variables for the
4439         color bitmap to have "color" in their name, for similarity with
4440         pixbuf_to_hbitmaps_normal(). Create a color bitmap for the mask,
4441         too, instead of creating a b&w bitmap with CreateBitmap(). Set up
4442         the mask bitmap's contents, ones for those pixels in the color
4443         bitmap where the alpha is zero, zero for other pixels. We used to
4444         use an uninitialized mask bitmap! This meant that icons and
4445         cursors created presumably worked more or less by accident.
4446         Totally blank icons with zero alpha everywhere (as used by
4447         gtktrayicon.c) definitely did not work as expected.
4448
4449         * gtk/Makefile.am: Include gtkstatusicon.c on all platforms.
4450
4451         * gtk/gtkstatusicon.c: Implement for Win32. Use code from
4452         gtktrayicon-win32.c as applicable. (gtktrayicon-win32.c is not
4453         necessary and can be removed from CVS. It has never been mentioned
4454         in gtk/Makefile.am.) No tray icon widget, GtkImage or GtkTooltips
4455         are used on Win32. One label widget is used (but never shown) as
4456         gtk_widget_render_icon() needs a widget.
4457
4458         Ifdefs used as necessary in several places. It might be cleaner to
4459         split out the backend-specific parts to separate files, or at
4460         least collect them into separate blocks in the file.
4461
4462         (wndproc): New function. Window procedure to monitor mouse events
4463         in the system tray icon. Call gtk_status_icon_button_press() as
4464         needed.
4465         (create_tray_observer): New function. Creates a hidden window that
4466         only serves as a tray icon message observer.
4467
4468         * tests/teststatusicon.c (icon_activated): Position the dialog
4469         with GTK_WIN_POS_CENTER.
4470         (do_quit): New function, hide and unref the GtkStatusIcon, and
4471         call gtk_main_quit().
4472         (popup_menu): Add a Quit menu item that calls do_quit().
4473         
4474 2005-11-02  Tor Lillqvist  <tml@novell.com>
4475
4476         * gdk/win32/gdkcolor-win32.c
4477         * gdk/win32/gdkscreen-win32.c
4478         * gdk/win32/gdkwindow-win32.c: Whitespace consistency
4479         fixes. Remove superfluous test for GdkWindow* parameters being
4480         non-NULL. Testing GDK_IS_WINDOW() is enough. As there is only one
4481         GdkScreen and one GdkDisplay in the Win32 backend, use those
4482         variables instead of the getter functions. For GdkDisplay* and
4483         GdkScreen* parameters, check that they are equal to the
4484         corresponding singleton variables instead of the more general
4485         GDK_IS_DISPLAY() or GDK_IS_SCREEN().
4486
4487 2005-11-02  Matthias Clasen  <mclasen@redhat.com>
4488
4489         * gtk/gtktextview.c: Remove some g_return_if_fail() from
4490         static functions, replace some others by g_assert().
4491         
4492         * gtk/gtktextview.c (selection_motion_event_handler) 
4493         (gtk_text_view_start_selection_drag): Keep track of the original
4494         selection boundaries during a drag selection, in order to correctly
4495         decide when to extend or shrink the selection.  (#320167,
4496         reported by Arvind S N, patch by Paolo Borelli)
4497
4498         * gtk/gtktextbtree.c (_gtk_text_line_char_to_byte_offsets): 
4499         * gtk/gtktextiter.c (gtk_text_iter_backward_chars): Replace
4500         manual offset calculations by g_utf8_offset_to_pointer().
4501         (#320360, Paolo Borelli)
4502
4503 Tue Nov  1 16:18:24 2005  Tim Janik  <timj@imendio.com>
4504
4505         * gtk/gtkrbtree.[hc]: get rid of GAllocator usage, allocate and free 
4506         nodes via the g_slice_*() API.
4507         _gtk_rbtree_new(): fixed wrong node allocation via g_new().
4508
4509 2005-11-01  Tor Lillqvist  <tml@novell.com>
4510
4511         * gdk/win32/gdkprivate-win32.h
4512         * gdk/win32/gdkglobals-win32.c
4513         * gdk/win32/gdkmain-win32.c (_gdk_windowing_init): Add more
4514         pre-interned GdkAtoms and pre-registered clipboard formats. Sort
4515         their declarations, definitions and assignments into a more
4516         logical and consistent order.
4517
4518         * gdk/win32/gdkmain-win32.c (_gdk_win32_cf_to_string): Include the
4519         CF_ prefix for the predefined clipboard format names. Put quotes
4520         around registered format names to distinguish them.
4521         
4522         * gdk/win32/gdkproperty-win32.c (gdk_property_change): Return
4523         immediately with a warning if the property type is STRING, TEXT,
4524         COMPOUND_TEXT or SAVE_TARGETS, as these are X11-specific that we
4525         should never pretend to handle on Win32. Handle only UTF8_STRING
4526         here, other formats with delayed rendering. Use \uc1 instead of
4527         \uc0 when generating Rich Text Format for easier testability on
4528         XP, where WordPad misinterprets \uc0 encoded characters. Add more
4529         GDK_NOTE debugging output for Clipboard operations.
4530
4531         * gdk/win32/gdkselection-win32.c: Debugging printout improvements.
4532         (gdk_selection_convert): Don't pretent to handle STRING, just
4533         UTF8_STRING. Streamline error handling, don't unnecessarily have a
4534         GError which then isn't used for anything anyway if it gets set.
4535         (gdk_win32_selection_add_targets): Skip also STRING, TEXT,
4536         COMPOUND_TEXT and SAVE_TARGETS in addition to UTF8_STRING.
4537
4538         * config.h.win32.in: Sync with what configure produces.
4539
4540         * configure.in: Don't look for X_PACKAGES unless building for
4541         x11. (#313986, John Ehresman)
4542
4543 2005-10-28  Erdal Ronahi  <erdal.ronahi@gmail.com>
4544
4545         * configure.in: Added ku (Kurdish) to ALL_LINGUAS
4546                         Wondered why there was no ku there before??
4547
4548 2005-10-28  Matthias Clasen  <mclasen@redhat.com>
4549
4550         * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup): Add the popup
4551         window to the toplevels window group.  (#319912, Christian Persch)
4552
4553 2005-10-28  Kristian Rietveld  <kris@gtk.org>
4554
4555         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_deleted): fix
4556         stupid thinko.
4557
4558 2005-10-28  Matthias Clasen  <mclasen@redhat.com>
4559
4560         * gtk/gtkdnd.c (gtk_drag_get_cursor): Fix the anchor of the default
4561         drag cursors.  (#319200, Federico Mena Quintero)
4562
4563         * gtk/gtktreeview.c (gtk_tree_view_search_key_press_event): Handle
4564         Shift-G to go to the previous match, like firefox.  (#320061, Christian 
4565         Neumair)
4566
4567         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_build_level): Fix a
4568         C99ism.  (#320000, Kazuki Iwamoto)
4569
4570         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Add the little 
4571         stars.  (#319985, Bastien Nocera)
4572
4573         * gtk/gtktreeview.c (gtk_tree_view_search_entry_flush_timeout): Return
4574         FALSE, so we don't flush repeatedly.  (#319151, Alexander Larsson)
4575
4576 2005-10-26  Michael Natterer  <mitch@imendio.com>
4577
4578         Fix bug #319974:
4579
4580         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_set_property):
4581         make sure that setting any of pixbuf/stock-id/icon-name resets the
4582         others because they are mutually exclusive, and that unsetting any
4583         of them only resets the pixbuf and nothing else. Also added
4584         some missing g_object_notify().
4585
4586         (gtk_cell_renderer_pixbuf_get_property): simplified calls to
4587         g_value_set_object().
4588
4589         (gtk_cell_renderer_pixbuf_create_stock_pixbuf)
4590         (gtk_cell_renderer_pixbuf_create_named_icon_pixbuf): added
4591         g_object_notify ("pixbuf").
4592
4593 2005-10-27  Matthias Clasen  <mclasen@redhat.com>
4594
4595         * gtk/gtktreeview.c (gtk_tree_view_button_press): Be more 
4596         careful about initializing cell_area.  (#319382, Tommi
4597         Komulainen)
4598
4599         * gtk/gtkcombobox.c (gtk_combo_box_key_press): Don't eat
4600         Ctrl-PageUp/PageDown.  (#318670, Christian Neumair)
4601
4602         * demos/gtk-demo/clipboard.c (paste_received): Only set the
4603         text if it is not NULL.  (#319930, Thomas Klausner)
4604
4605         * gtk/gtkselection.c (gtk_selection_data_get_pixbuf): Close the
4606         loader before trying to get the pixbuf.  (#319930, Thomas Klausner)
4607
4608 2005-10-26  Matthias Clasen  <mclasen@redhat.com>
4609
4610         * gtk/gtkfilesystem.c (gtk_file_system_module_load): 
4611         * gtk/gtkthemes.c (gtk_theme_engine_load): 
4612         * gtk/gtkimmodule.c (gtk_im_module_load): Use G_MODULE_BIND_LAZY
4613         when dlopening modules.  (#319557, Laszlo Peter)
4614
4615 2005-10-26  Matthias Clasen  <mclasen@redhat.com>
4616
4617         * gtk/gtktextbtree.c (gtk_text_btree_resolve_bidi): Only use text
4618         segments when determining text direction.  (#319065, Tommi Komulainen)
4619
4620         * gtk/gtktreeview.c (gtk_tree_view_destroy): Don't crash
4621         on duplicate destroy.  (#318953, Gustavo Carneiro)
4622
4623         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_new_with_dialog): 
4624         Point out that destroy-with-parent is a bad idea for the dialog
4625         passed to this function.  (#318943, Christian Persch)
4626
4627         * */Makefile.am: use $(GLIB_MKENUMS) instead of 
4628         glib-mkenums.  (#318582, Damien Carbery)
4629
4630         * gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Clarify
4631         docs.  (#317682, Christian Neumair)
4632
4633         * gdk/x11/gdkdnd-x11.c: Remove an extra const which doesn't
4634         seem to affect the placement of the data in the readonly 
4635         section, and causes problems with some compilers.  (#317844)
4636
4637 2005-10-25  Matthias Clasen  <mclasen@redhat.com>
4638
4639         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
4640         Fix some issues with background drawing in RTL.  (#318781,
4641         Eric Cazeaux)
4642
4643         * tests/Makefile.am:
4644         * tests/testentrycompletion.c: Apply a patch by Christian
4645         Persch to add property editors.
4646
4647         * gtk/gtkstatusicon.c: Emit activate on single-click,
4648         not on double-click, change proposed by Milosz Derezynski.
4649
4650 2005-10-25  Kristian Rietveld  <kris@gtk.org>
4651
4652         Fixes #311955, reported by Markku Vire; and a lot more.
4653
4654         * gtk/gtktreemodelfilter.c: Made this thing work correctly.
4655         Levels can now have invisible nodes cached, functions have been
4656         rewritten/refactored to take this into account; also the logic in
4657         some functions has been corrected.
4658         
4659         Each referenced node now references all visible children or a single
4660         invisible child, in order to be able to monitor all changes in the
4661         child model required for correct operation.
4662
4663         When a virtual root is set, all nodes on the virtual root level are
4664         referenced.
4665
4666         At last, a bunch of random bug fixes and comment updates.
4667
4668 2005-10-25  Matthias Clasen  <mclasen@redhat.com>
4669
4670         * gtk/gtktexttagtable.c (gtk_text_tag_table_foreach): Add some
4671         more docs.  (#319722, Paolo Borelli)
4672
4673         * gdk/x11/gdkxftdefaults.c (init_xft_settings): Make the 
4674         initialization of screen_x11->xft_rgba more explicit.  (#319627,
4675         Bogdan Nicula)
4676
4677         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Fix whitespace
4678         in a blurb.  (#319499, Francisco Javier F. Serrador)
4679
4680 2005-10-24  Matthias Clasen  <mclasen@redhat.com>
4681
4682         Add settings to hide the input method and Unicode control character
4683         submenus in the context menus of GtkEntry and GtkTextView.  
4684         
4685         * gdk/x11/gdkevents-x11.c: Map GTK+ settings to X settings.
4686         
4687         * gtk/gtksettings.c (gtk_settings_class_init): Declare GTK+ settings here.
4688
4689         * gtk/gtktextview.c (popup_targets_received): 
4690         * gtk/gtkentry.c (popup_targets_received): Use the settings here.
4691
4692 2005-10-24  Kristian Rietveld  <kris@gtk.org>
4693
4694         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_inserted): emitting
4695         row-has-child-toggled when the level is not in the cache does not
4696         make sense.  (This bug probably crept in during the early stages
4697         of GtkTreeModelSort when there wasn't a correct row-has-child-toggled
4698         implementation yet),
4699         (gtk_tree_model_sort_real_unref_node): only get the child iter
4700         when we will actually also use it.
4701
4702 2005-10-22  Michael Natterer  <mitch@imendio.com>
4703
4704         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): check for the
4705         widget being realized, in addition to being visible, to avoid
4706         running into precondition check in gtk_tree_view_get_cell_area().
4707         (approved by Kris).
4708
4709 2005-10-22  Dom Lachowicz <cinamod@hotmail.com>
4710
4711         * modules/engines/ms-windows/msw_style.c (setup_msw_rc_style): 
4712         Experimentally, scrollbar steppers can shrink to 8 pixels on 
4713         Win32. Reflect that in the theme.
4714         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Experimentally,
4715         there is a 1-pixel border between a scrollbar and its child
4716         in ScrolledWindows on Win32. Reflect that in the theme.
4717         
4718 2005-10-20  Matthias Clasen  <mclasen@redhat.com>
4719
4720         * gtk/gtklabel.c (gtk_label_create_window): Use GDK_WINDOW_CHILD
4721         for the selection window.  (#318806, Alex Larsson)
4722
4723 2005-10-18  Federico Mena Quintero  <federico@ximian.com>
4724
4725         Fixes bug #317999:
4726
4727         * tests/autotestfilechooser.c
4728         (test_button_folder_states_for_action): Test that we have either
4729         $cwd or the explicitly-set folder.
4730         (test_reload_sequence): Likewise.
4731
4732         * gtk/gtkfilechooserdefault.c
4733         (gtk_file_chooser_default_get_current_folder): If our reload_state
4734         is RELOAD_EMPTY, return a GtkFilePath corresponding to $cwd.
4735
4736 2005-10-14  Tor Lillqvist  <tml@novell.com>
4737
4738         * gdk/win32/gdkdisplay-win32.c: Remove the clipboard viewer code.
4739         It didn't really do anything useful, and was just confusing and
4740         incomplete. Comments claimed we don't do delayed rendering, but in
4741         fact we do, for images. (The delayed rendering code has other
4742         problems, though, see #168173.) The clipboard viewer code was
4743         probably even buggy (the WM_CHANGECBCHAIN handled didn't propagate
4744         the message when necessary). It was just test code, it said so in
4745         a comment. Add something similar back later if necessary.
4746
4747         (_win32_on_clipboard_change,
4748         _gdk_win32_register_clipboard_notification): Remove.
4749
4750         (gdk_display_supports_selection_notification,
4751         gdk_display_request_selection_notification): Always just return
4752         FALSE. We didn't generate any GDK_OWNER_CHANGE events anywhere.
4753
4754 2005-10-13  Tor Lillqvist  <tml@novell.com>
4755
4756         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Don't treat
4757         Alt-Enter specially. It does not have any special meaning and
4758         should be passed on to the application. (#318378, Tim Evans)
4759
4760 2005-10-13  Tor Lillqvist  <tml@novell.com>
4761
4762         Set visual depth to 24 for 32 bits-per-pixel devices on
4763         Win32. This allows gdk_drawable_real_draw_pixbuf() to use the
4764         optimized composite_0888() function rather than the slower image
4765         dithering functions to draw pixbufs (#313993, John Ehresman)
4766
4767         * gdk/win32/gdkimage-win32.c (_gdk_win32_new_image): Use
4768         _gdk_windowing_get_bits_for_depth() to initialize
4769         GdkImage::bits_per_pixel.
4770         (_gdk_windowing_get_bits_for_depth): Return 32 bits for depth 24.
4771
4772         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_new): Use
4773         _gdk_windowing_get_bits_for_depth() to initialize
4774         BITMAPINFOHEADER::biBitCount.
4775
4776         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Set
4777         GdkVisual::depth to 24 even if GetDeviceCaps(BITSPIXEL) returns
4778         32.
4779
4780 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
4781
4782         * demos/gtk-demo/appwindow.c: (about_cb):
4783           use PACKAGE_VERSION,bump year (#318654)
4784
4785 2005-10-11  Matthias Clasen  <mclasen@redhat.com>
4786
4787         * gtk/gtktextbtree.c (_gtk_text_btree_delete): Try to match an off 
4788         toggle here with the matching on toggle if it immediately follows. 
4789         This is a common case, and handling it here prevents quadratic blowup 
4790         in cleanup_line() below.  (#317125)
4791
4792         * gtk/gtktextsegment.h: 
4793         * gtk/gtktextsegment.c (_gtk_char_segment_new_from_two_strings): Pass
4794         the character counts into this function instead of computing them
4795         again.
4796
4797 2005-10-10  Tommi Komulainen  <tommi.komulainen@iki.fi>
4798
4799         * gtk/gtkfilechooser.h (GtkFileChooserError): Add ALREADY_EXISTS error
4800         code.
4801         * gtk/gtkfilechooserdefault.c
4802         (gtk_file_chooser_default_add_shortcut_folder): Return an error code
4803         when the shortcut already exists in the sidebar.  (#147521)
4804
4805 2005-10-09  Matthias Clasen  <mclasen@redhat.com>
4806
4807         * tests/testcombo.c: Demonstrate how to use custom widgets in
4808         a GtkComboBox.  
4809
4810 2005-10-07  Federico Mena Quintero  <federico@ximian.com>
4811
4812         Fixes bug #317999:
4813
4814         * tests/autotestfilechooser.c (test_reload_sequence): Ensure that
4815         the the result of gtk_file_chooser_get_folder() is NULL or
4816         non-NULL at the right times.  Log the tests.
4817         (test_button_folder_states): New test for the initial states of
4818         the current folder in GtkFileChooserButton.
4819         (main): Test that the number of warnings/errors/critical errors is
4820         zero.
4821
4822         * gtk/gtkfilechooser.c (gtk_file_chooser_get_current_folder):
4823         Clarify the documentation on when this can return NULL.
4824         (gtk_file_chooser_get_current_folder_uri): Likewise.
4825
4826         * gtk/gtkfilechooserbutton.c (struct
4827         _GtkFileChooserButtonPrivate): Added a folder_has_been_set flag;
4828         we use it to keep track of whether a folder has been set.
4829         (gtk_file_chooser_button_map):  Implement.  If no folder has been
4830         loaded before, we at least try to load $cwd here.
4831         (gtk_file_chooser_button_constructor): If the construct-time
4832         dialog already has a folder set, turn on our folder_has_been_set
4833         flag.
4834         (dialog_current_folder_changed_cb): Turn on our
4835         folder_has_been_set flag.
4836
4837 2005-10-07  Michael Natterer  <mitch@gimp.org>
4838
4839         * gtk/gtkfilechooserdefault.c: remove some explicit #defines of
4840         PROFILE_FILE_CHOOSER because they break compilation after the
4841         removal of <unistd.h>.
4842
4843 2005-10-07   Matthias Clasen  <mclasen@redhat.com>
4844
4845         * gtk/gtkfilechooserdefault.c: Properly fix the unistd.h include
4846         by moving it out of the profiling ifdef.
4847
4848         * gtk/gtkfilechooserdefault.c: Remove a redundant (and
4849         unconditional) include of unistd.h  (#318211, Kazuki Iwamoto)
4850
4851         * gtk/gtktexttag.c (gtk_text_attributes_ref): Use
4852         g_return_val_if_fail(), not g_return_if_fail().  (#318412,
4853         Kazuki Iwamoto)
4854
4855 2005-10-06  Matthias Clasen  <mclasen@redhat.com> 
4856                 
4857         * gtk/gtk.symbols:
4858         * gtk/gtktextbuffer.h:
4859         * gtk/gtktextbuffer.c: Add a readonly has-selection property
4860         with a getter.  (#318161, Paolo Borelli)
4861
4862 2005-10-05  Matthias Clasen  <mclasen@redhat.com>
4863
4864         * README.in: Start collecting release notes for 2.10.
4865
4866         * gtk/gtkrc.c (gtk_rc_clear_realized_style): Readd the memory
4867         leak fix, since the assertion failures were traced to 
4868         an xchat bug.  (#314696)
4869         
4870         * gtk/gtkstyle.c (gtk_style_detach):
4871         (gtk_style_attach):  Documentation improvements.
4872         (gtk_style_detach): Assert that the attach_count is > 0.
4873
4874 2005-10-04  Federico Mena Quintero  <federico@ximian.com>
4875
4876         * gtk/gtkfilechooserdefault.c (switch_to_shortcut): Take a
4877         shortcut position, not a ShortcutsIndex, to make the function more
4878         generic.
4879         (home_folder_handler): Pass the resolved index to
4880         switch_to_shortcut(), rather than just SHORTCUTS_HOME.
4881         (desktop_folder_handler): Likewise for SHORTCUTS_DESKTOP.
4882         (gtk_file_chooser_default_class_init): Add a "quick-bookmark"
4883         binding signal, and bind it to Alt-1, Alt-2. ..., Alt-0.  These
4884         make the respective key switch to the first, second, ..., tenth
4885         bookmark.
4886         (quick_bookmark_handler): Implement.
4887
4888 2005-10-04  Federico Mena Quintero  <federico@ximian.com>
4889
4890         * gtk/gtkpathbar.c (get_dir_name): Don't special-case Home and
4891         Desktop; just use their real names on the file system for the
4892         user-visible names.
4893
4894         * gtk/gtkfilechooserdefault.c
4895         (gtk_file_chooser_default_class_init): Add a "desktop-folder"
4896         binding signal, and bind it to M-d by default.
4897         (desktop_folder_handler): Implement the default handler.
4898         (home_folder_handler): Use a helper function.
4899         (switch_to_shortcut): New helper function.
4900         (shortcuts_append_home): Don't special-case the name of "Home";
4901         just use the folder name.
4902
4903 2005-10-04  Tor Lillqvist  <tml@novell.com>
4904
4905         * gtk/gtkcalendar.c (gtk_calendar_init): Make it compile without
4906         HAVE__NL_TIME_FIRST_WEEKDAY. (#317910, Mathias Hasselmann)
4907
4908 2005-10-04  Matthias Clasen  <mclasen@redhat.com>
4909
4910         * gtk/gtkrc.c (gtk_rc_clear_realized_style): Revert the change
4911         from yesterday, since it leads to assertion failures.  (#317879,
4912         Sebastian Bacher)
4913
4914 2005-10-03  Matthias Clasen  <mclasen@redhat.com>
4915
4916         * gtk/gtkcalendar.c (gtk_calendar_init): Call 
4917         calendar_compute_days() after setting priv->week_start.
4918
4919 2005-10-03  Matthias Clasen  <mclasen@redhat.com>
4920
4921         * gtk/gtkrc.c (gtk_rc_clear_realized_style): Unref the style when
4922         removing it from the hash table.  (#314696, Benjamin Berg)
4923
4924 2005-10-01  Tor Lillqvist  <tml@novell.com>
4925
4926         * gdk/win32/gdkdrawable-win32.c (blit_from_pixmap): In case
4927         BitBlt() fails with ERROR_INVALID_HANDLE, the most probable cause
4928         is that the the desktop isn't visible because the session has been
4929         switched, the screen is locked, or a terminal server session
4930         disconnected, so no error message necessary. (#137796)
4931
4932         It is of course remotely possible that BitBlt() failing with
4933         ERROR_INVALID_HANDLE might also be caused by some other
4934         problem. We could strive for perfection and track whether the
4935         desktop is visible by using WTSRegisterSessionNotification() and
4936         handling WM_WTSESSION_CHANGE. I think that's overdoing it just for
4937         this issue, though. If we would track desktop visibility, we
4938         should then avoid even trying to update the display at all while
4939         the desktop isn't visible.
4940
4941 2005-09-30  Matthias Clasen  <mclasen@redhat.com>
4942
4943         * gtk/gtkcalendar.c (gtk_calendar_init): Another attempt
4944         to correct the calculations for the first week day. We may
4945         just have to remove this code if too many locales turn out 
4946         to have broken data. 
4947
4948         * gtk/gtkimage.c (gtk_image_expose): Don't leak pixbuf in
4949         some cases.  (#317611, Tommi Komulainen)
4950
4951         * gtk/gtksocket-x11.c (_gtk_socket_windowing_size_request):
4952         Prevent overflow when storing size hints in an unsigned
4953         short variable. Tracked down by Ray Strode and Søren Sandmann.
4954
4955 2005-09-29  Matthias Clasen  <mclasen@redhat.com>
4956
4957         * gtk/gtkbutton.c (gtk_button_set_image): Check arguments.  (#317491,
4958         Paolo Borelli)
4959
4960         * gtk/gtkpaned.c (gtk_paned_grab_notify): Stop drags when being
4961         grab shadowed.  (#317332)
4962
4963 2005-09-29  Tor Lillqvist  <tml@novell.com>
4964
4965         * gtk-zip.sh.in: DLLs are always in bin nowadays, no need to test.
4966
4967 2005-09-28  Federico Mena Quintero  <federico@ximian.com>
4968
4969         * tests/autotestfilechooser.c (test_reload_sequence): Oops, return
4970         if the unmap test fails.
4971         (test_reload_sequence): Use gtk_widget_show_now() instead of
4972         gtk_widget_show() for the dialog.
4973         Thanks to Tim Janik for noticing these.
4974
4975 2005-09-28  Federico Mena Quintero  <federico@ximian.com>
4976
4977         * tests/testcellrenderertext.c: New file with a set of tests for
4978         GtkCellRendererText.  The idea is to run a text renderer through
4979         most of its interesting property values to see that it works
4980         correctly.
4981
4982         * tests/Makefile.am: Added testcellrenderertext.
4983
4984         * gtk/gtkfilechooserdefault.c (load_set_model): Mark the
4985         entry/exit of this function for profiling.
4986         (gtk_file_chooser_default_style_set): Mark the start/end of the
4987         calls to the parent class and the the signal emission for profiling.
4988
4989 2005-09-29  Tor Lillqvist  <tml@novell.com>
4990
4991         * gtk/gtkmain.c (_gtk_get_localedir): The locale directory is
4992         passed to bindtextdomain() which isn't UTF-8-aware, so convert to
4993         system codepage using g_win32_locale_filename_from_utf8().
4994         (#317457, Kazuki Iwamoto)
4995
4996 2005-09-28  Matthias Clasen  <mclasen@redhat.com>
4997
4998         * gtk/gtkselection.c (_gtk_selection_request): Free mult_atoms 
4999         here. (#317039, Paolo Borelli)
5000
5001         * gtk/gtktexttag.h: 
5002         * gtk/gtktexttag.c (gtk_text_attributes_ref): Return the attributes
5003         to make this function work as boxed copy function.  (#317455,
5004         Gustavo Carneiro)
5005
5006         * gtk/gtkclipboard.c (request_image_received_func): Don't unref
5007         NULL.  (#316828, Tor Lillqvist)
5008
5009 2005-09-28  Tor Lillqvist  <tml@novell.com>
5010
5011         * modules/input/imime.c: Include <config.h>. (#317444, Kazuki
5012         Iwamoto)
5013
5014 2005-09-27  Federico Mena Quintero  <federico@ximian.com>
5015
5016         Don't reload the current folder unnecessarily on ::map().
5017
5018         * gtk/gtkfilechooserprivate.h (ReloadState): New enum to represent
5019         the reloading state.
5020         (struct _GtkFileChooserDefault): Added a "reload_state" field.
5021
5022         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init):
5023         Initialize impl->reload_state.
5024         (gtk_file_chooser_default_map): Check the impl->reload_state; load
5025         a default folder if no folder has been set, or reload the current
5026         one only if we had been unmapped first.
5027         (gtk_file_chooser_default_update_current_folder): Set the
5028         reload_state to RELOAD_HAS_FOLDER.
5029         (gtk_file_chooser_default_unmap): Implement, and set the
5030         reload_state to RELOAD_WAS_UNMAPPED.
5031         (shortcuts_model_create): Don't call shortcuts_add_bookmarks()
5032         here; they'll get (re)loaded on ::map() anyway.
5033
5034         * gtk/gtkfilechooserwidget.c
5035         (gtk_file_chooser_widget_constructor): Don't set a default folder here.
5036
5037         * tests/autotestfilechooser.c (test_action_widgets): Don't take in
5038         a dialog; build it ourselves.
5039         (test_reload): New test to ensure that we don't load the default
5040         folder more than once, and that we reload it when
5041         unmapping/remapping.
5042         (get_impl_from_dialog): New utility function.
5043         (test_widgets_for_current_action): Use get_impl_from_dialog().
5044
5045 2005-09-27  Federico Mena Quintero  <federico@ximian.com>
5046
5047         * gtk/gtkfilechooserdefault.c
5048         (gtk_file_chooser_default_constructor): Mark the entry/exit of
5049         this function for profiling.
5050         (check_icon_theme): Likewise.
5051         (change_icon_theme): Likewise.
5052         (settings_notify_cb): Likewise.
5053         (gtk_file_chooser_default_screen_changed): Likewise.
5054         (update_chooser_entry): If the selection is empty, clear the file
5055         name entry only if we are in CREATE_FOLDER mode.  In SAVE mode,
5056         nothing will be selected when the user starts typeahead in the
5057         treeview, and we don't want to clear the file name entry in that
5058         case --- the user could be typing-ahead to look for a folder name.
5059         Fixes bug #308332, patch by Jürg Billeter.
5060
5061 2005-09-27  Matthias Clasen  <mclasen@redhat.com>
5062
5063         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
5064         Pop below the entry if there's more free space below the entry
5065         than above.  (#316948, Tommi Komulainen)
5066
5067 2005-09-26  Federico Mena Quintero  <federico@ximian.com>
5068
5069         Do not create the save mode-specific widgets in the open modes, so
5070         that we don't carry their baggage around.
5071
5072         * gtk/gtkfilechooserdefault.c
5073         (gtk_file_chooser_default_constructor): Don't create the
5074         save_widgets here.
5075         (save_widgets_create): Set the impl->save_widgets directly here,
5076         instead of passing the widgets back to the caller.  Also, pack
5077         them into the impl's box.
5078         (update_appearance): Create or destroy the save widgets as
5079         appropriate.  Set the action of the save_file_name_entry here.
5080         (shortcuts_add_current_folder): Set the active item in the
5081         save_folder_combo only if it exists.
5082         (gtk_file_chooser_default_set_property): Don't set the action of
5083         the save_file_name_entry here.
5084         (gtk_file_chooser_default_update_current_folder): Set the base
5085         folder of the save_file_name_entry only if the entry exists.
5086         (shortcuts_drag_data_received_cb): Cast the selection_data->data
5087         to (const char *) since that's what shortcuts_drop_uris() expects.
5088         (file_list_drag_data_received_cb): Likewise, for
5089         g_uri_list_extract_uris().
5090
5091 2005-09-26  Tor Lillqvist  <tml@novell.com>
5092
5093         * gdk/win32/gdkwindow-win32.c (gdk_window_shape_combine_mask): Set
5094         the shaped flag here, too. (#316871)
5095         (gdk_window_shape_combine_region): Currently unimplemented, so
5096         don't do anything to the shaped flag here.
5097
5098 2005-09-26  Matthias Clasen  <mclasen@redhat.com>
5099
5100         Fix #316871, reported by Dan Winship:
5101         
5102         * gdk/gdkwindow.h (struct _GdkWindowObject): Add a shaped flag.
5103
5104         * gdk/x11/gdkwindow-x11.c (gdk_window_shape_combine_mask) 
5105         (gdk_window_shape_combine_region): Set it here.
5106
5107         * gdk/gdkwindow.c (gdk_window_invalidate_maybe_recurse): Don't
5108         remove the child area for shaped windows.
5109
5110 2005-09-23  Matthias Clasen  <mclasen@redhat.com>
5111
5112         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_finalize):
5113         Don't leak expander pixbufs.  (#316946, Tommi Komulainen)
5114
5115 2005-09-22  Michael Natterer  <mitch@imendio.com>
5116
5117         Renamed GtkCellRendererKeys to GtkCellRendererAccel to be
5118         consistent with GTK+ terminology:
5119
5120         * gtk/gtkcellrendererkeys.[ch]
5121         * tests/testkeys.c: removed...
5122
5123         * gtk/gtkcellrendereraccel.[ch]
5124         * tests/testaccel.c: ...and added.
5125
5126         * gtk/Makefile.am
5127         * gtk/gtk.h
5128         * gtk/gtk.symbols
5129         * tests/Makefile.am: changed accordingly.
5130
5131 2005-09-22  Matthias Clasen  <mclasen@redhat.com>
5132
5133         * gtk/gtkwidget.c (gtk_widget_class_init): Fix the documentation
5134         for the grab-broken-event signal, noticed by Damon Chaplin.
5135
5136 2005-09-21  Tor Lillqvist  <tml@novell.com>
5137
5138         * gdk/win32/gdkselection-win32.c (gdk_selection_convert,
5139         gdk_text_property_to_text_list_for_display,
5140         gdk_text_property_to_utf8_list_for_display,
5141         gdk_win32_selection_add_targets,
5142         _gdk_win32_selection_convert_to_dib): Free return value from
5143         gdk_atom_name().
5144         (gdk_text_property_to_text_list_for_display): Drop GError variable
5145         that isn't actually used after being set.
5146
5147 2005-09-20  Johan Dahlin  <jdahlin@async.com.br>
5148
5149         * gtk/gtkentry.c (gtk_entry_set_completion): Mention NULL in 
5150         documentation.
5151
5152 2005-09-20  Tor Lillqvist  <tml@novell.com>
5153
5154         * gdk/win32/gdkselection-win32.c
5155         (gdk_selection_owner_get_for_display): Do return the correct owner
5156         for CLIPBOARD (i.e., the owner of the Windows Clipboard, if it is
5157         a window GDK knows about). The reason to return NULL seems to have
5158         gone when in the fix for bug #163702 the artificial
5159         GDK_SELECTION_CLEAR event generation was removed from
5160         gdk_selection_send_notify_for_display(). Fixes bug #316552.
5161
5162 2005-09-20  Matthias Clasen  <mclasen@redhat.com>
5163
5164         Avoid unnecessary XkbGetState() calls and XkbStateNotify
5165         events.  (#151555, Søren Sandmann)
5166
5167         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Use 
5168         XkbSelectEventDetails() to select XkbStateNotify events
5169         for only the state we care about.
5170
5171         * gdk/x11/gdkprivate-x11.h:
5172         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_state_changed): Pass
5173         the event into the function and update the keymap state from
5174         the state information contained in the event. Adjust all callers.
5175         
5176 2005-09-19  Matthias Clasen  <mclasen@redhat.com>
5177
5178         * gtk/gtkiconview.c: Use g_list_nth_data() instead of g_list_nth()->data
5179         in multiple places to avoid segfaults if the index is out of range.  
5180         (#316422, Guillaume Cottenceau)
5181         (gtk_icon_view_set_drag_dest_item): 
5182         (gtk_icon_view_scroll_to_path): Fix a typo in the docs.  (#316419,
5183         #316424, Guillaume Cottenceau)
5184
5185 2005-09-18  Hans Breuer  <hans@breuer.org>
5186
5187         * gtk/gtktrayicon-win32.c : now handling events by hard-coded 
5188         g_signal_emit_by_name() - will break when gtkstatusicon.c changes.
5189
5190 2005-09-18  Hans Breuer  <hans@breuer.org>
5191
5192         * gdk/gdk.symbols gdk/win32/gdkwin32.h gdk/win32/gdkcursorwin32.c : export
5193         _gdk_win32_pixbuf_to_hicon() as gdk_win32_pixbuf_to_hicon_libgtk_only()
5194         * gtk/gtktrayicon-win32.c : a lot of debug spew but it has started to show
5195         the icon and is blinking with teststatusicon. More to come ...
5196
5197 2005-09-18  Hans Breuer  <hans@breuer.org>
5198
5199         * gtk/makefile.msc.in : fix typo for GTK_VER; define HAVE_CONFIG_H
5200         cause gtkprogressbar.c has #include <config.h> conditionally; less
5201         noise from generated gtk.def
5202         * gtk/stock-icons/makefile.msc gdk/makefile.msc tests/makefile.msc : updated
5203         
5204         * gtk/gtktrayicon-win32.c : dummy implmentation to make gtk compile.
5205         For me it works as well as the *NIX implemenation, that is not at all.
5206
5207         * gdk/win32/gdkproperty-win32.c : implement gdk_atom_intern_static_string()
5208
5209         * gdk/win32/gdkwindow-win32.c(gdk_window_set_urgency_hint) : only use
5210         only use (WINVER >= 0x0500) when available from the SDK. Otherwise fall
5211         back to true dynamic linking of FlashWindowEx. Makes gtk+ work on NT4.0
5212         again - if compiled properly.
5213
5214         * tests/teststatusicon.c : don't use GNOME icons for testing, but icons
5215         already coming with Gtk+. Makes it compile on win32.
5216
5217 2005-09-18  Guilherme de S. Pastore  <gpastore@cvs.gnome.org>
5218
5219         * README.cvs-commits: fixed some tiny typos
5220
5221 2005-09-16  Tor Lillqvist  <tml@novell.com>
5222
5223         * modules/engines/ms-windows/msw_style.c (draw_extension,
5224         draw_box_gap): Check whether the widget actually is a GtkNotebook
5225         before treating it as such. Drop some unneeded local variables,
5226         use parameter with same information instead. (#316412)
5227
5228 2005-09-15  Federico Mena Quintero  <federico@ximian.com>
5229
5230         * tests/autotestfilechooser.c: Start a set of automated tests for
5231         the file chooser.  The only test in there right now doesn't pass
5232         yet.  It specifies the intended behavior of the first optimization
5233         of a series which I'll do on the file chooser (see
5234         http://primates.ximian.com/~federico/news-2005-09.html#14 for the
5235         details of this optimization).
5236
5237         * tests/Makefile.am: Added autotestfilechooser.c.
5238
5239         * gtk/gtkfilechooserprivate.h (struct
5240         _GtkFileChooserDialogPrivate): Move all the file chooser's private
5241         structures to here, so that they can be accessed by
5242         tests/autotestfilechooser.c:  _GtkFileChooserDialogPrivate,
5243         _GtkFileChooserWidgetPrivate, LoadState, _GtkFileChooserDefault.
5244
5245         * gtk/gtkfilechooserdialog.c: See above.
5246
5247         * gtk/gtkfilechooserwidget.c: See above.
5248
5249         * gtk/gtkfilechooserdefault.c: See above.
5250
5251 Thu Sep 15 15:27:55 2005  Tim Janik  <timj@imendio.com>
5252
5253         * gtk/gtkwindow.c: 
5254         gtk_window_map_event(): new function to work around lost unmap requests.
5255         fixes bug #316180.
5256
5257 2005-09-14  Federico Mena Quintero  <federico@ximian.com>
5258
5259         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): Add
5260         an easy-to-find profiling marker when starting to create a file
5261         chooser.
5262         (browse_files_model_finished_loading_cb): Likewise, for when the
5263         chooser is finished loading.
5264
5265 2005-09-14  Tristan Van Berkom <tvb@cvs.gnome.org>
5266
5267         * gtk/gtkcolorbutton.c: Check "color" argument in 
5268         gtk_color_button_set_color ()
5269
5270 2005-09-14  Matthias Clasen  <mclasen@redhat.com>
5271
5272         * gtk/gtklabel.c (gtk_label_get_type): 
5273         * gtk/gtkbutton.c (gtk_button_get_type): 
5274         * gtk/gtkwindow.c (gtk_window_group_get_type): No point in 
5275         using a mem chunk for window groups, buttons, labels.
5276
5277         * gtk/updateiconcache.c (foreach_remove_func): Fix
5278         a use-after-free bug.  (#316256, Alexander Nedotsukov)
5279
5280 2005-09-13  Matthias Clasen  <mclasen@redhat.com>
5281
5282         * gtk/*.c: Various cleanups.  (#315360, Kjartan Maraas)
5283
5284         * gdk/*.c: Various cleanups.  (#315359, Kjartan Maraas)
5285         
5286 2005-09-13  Matthias Clasen  <mclasen@redhat.com>
5287
5288         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): 
5289         Let GDK_Return pass through in some more cases.
5290
5291         * gtk/gtkentry.c (gtk_entry_key_press): Reset the im context before
5292         activating the entry. 
5293
5294         * gtk/gtkiconview.c (gtk_icon_view_class_init):
5295         (gtk_icon_view_get_dest_item_at_pos):  Fix typos in the 
5296         docs.  (#316008, #316027, #316121, Guillaume Cottenceau)
5297
5298         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Add some docs.
5299         (#316001, Guillaume Cottenceau)
5300
5301         * gtk/gtkdnd.c (gtk_drag_set_icon_name): Fix a copy-and-paste
5302         mistake in the docs.  (#315993, Guillaume Cottenceau)
5303
5304         * tests/testentrycompletion.c (create_simple_completion_model): Add
5305         some strings containing multibyte characters.
5306
5307         * gtk/gtkentrycompletion.c (gtk_entry_completion_real_insert_prefix): 
5308         Fix prefix insertion for multibyte characters.  (#316095,
5309         Tommi Komulainen)
5310
5311         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon): 
5312         * gtk/gtkiconview.c (gtk_icon_view_create_drag_icon): Silently
5313         return NULL if the widget is not realized.  (#316023,
5314         Guillaume Cottenceau)
5315
5316 2005-09-11  Matthias Clasen  <mclasen@redhat.com>
5317
5318         * gdk/gdk.symbols: 
5319         * gdk/gdkproperty.h: 
5320         * gdk/x11/gdkproperty-x11.c (gdk_atom_intern_static_string): 
5321         New function to avoid pointless strdups when creating atoms
5322         from static strings.  
5323
5324         * gdk/x11/*.c:
5325         * gtk/*.c:  Use gdk_atom_intern_static_string() where 
5326         appropriate.
5327
5328 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
5329
5330         * gtk/gtkcellrendererkeys.h: 
5331         * gtk/gtkcellrendererkeys.c: Add a cell renderer for displaying
5332         and editing accelerators, a port of EggCellRendererKeys .
5333
5334         * gtk/gtk.symbols:
5335         * gtk/gtk.h:
5336         * gtk/Makefile.am: Add the keys cell renderer.
5337
5338         * tests/Makefile.am: 
5339         * tests/testkeys.c: Test GtkCellRendererKeys
5340
5341 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
5342
5343         Make it possible to determine if a key event is for a
5344         modifier key:
5345         
5346         * gdk/x11/gdkprivate-x11.h: 
5347         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_key_is_modifier): 
5348         New function to determine if a keycode is mapped to a modifier.
5349         (get_xkb): Get the modmap.
5350
5351         * gdk/x11/gdkevents-x11.c (translate_key_event): Set the 
5352         is_modifier bit by calling _gdk_keymap_key_is_modifier().
5353
5354         * gdk/gdkevents.h (struct _GdkEventKey): Add an is_modifier
5355         bit.
5356
5357 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
5358
5359         * gdk/gdkpixbuf-drawable.c (convert_real_slow): Remove an 
5360         unused variable, noticed by Kjartan Maraas.
5361
5362 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
5363
5364         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_event): 
5365         Make drag reordering work properly for columns other than the
5366         first.  (#315054, Dan Winship)
5367         
5368         * gtk/gtkfontsel.c (gtk_font_selection_set_font_name): Handle 
5369         invalid fontnames better. (#136926, Michael R. Walton)
5370         
5371         Stop cursor blinking in non-editable regions of a text view.
5372         (#311508, Torbjörn Andersson)
5373         
5374         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): 
5375         (cursor_blinks): Take editability into account when deciding
5376         whether the cursor blinks.
5377         (gtk_text_view_button_release_event): 
5378         (gtk_text_view_move_cursor_internal): Update cursor blinking here.
5379
5380         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_start_editing): 
5381         Use connect_after to connect to the focus_out event. This
5382         ensures that the entry has already stopped blinking by the time
5383         we emit the edited signal.  (#315229, Thomas Leonard)
5384
5385         * tests/testgtk.c: Use GDK_MOD1_MASK, not GDK_ALT_MASK.
5386
5387         * gtk/gtkwindow.c (gtk_window_parse_geometry): Don't set
5388         unsigned ints to -1.  (#315481, Kjartan Maraas)
5389
5390         * gtk/gtkcalendar.c (gtk_calendar_init): first_weekday is relative
5391         to week_1stday, not to Sunday. Gotta love the ISO 14652 guys...
5392         (#314473, Stanislav Brabec)
5393
5394 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
5395
5396         * gtk/gtktreeview.c (gtk_tree_view_get_visible_range): Document
5397         memory handling.  (#314975, Torsten Schoenfeld)
5398
5399         * gtk/gtkiconview.c (gtk_icon_view_class_init): 
5400         * gtk/gtkfilesel.c (gtk_file_selection_class_init): 
5401         * gtk/gtkcombobox.c (gtk_combo_box_class_init): 
5402         * gtk/gtklabel.c (gtk_label_class_init): 
5403         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
5404         Stylistic improvements and clarifications for some blurbs. 
5405         (#315520, Clytie Siddall)
5406
5407 2005-09-09  Tor Lillqvist  <tml@novell.com>
5408
5409         * gdk/win32/gdkdisplay-win32.c (gdk_display_get_name): Cache the
5410         display name. There is only one GdkDisplay on Win32, and
5411         constructing the display name isn't entirely trivial, so cacheing
5412         is probably worth it. For instance GIMP calls this function a lot.
5413         (gdk_display_open): Call gdk_display_get_name() to prime the
5414         cached name.
5415         (gdk_display_get_n_screens, gdk_display_get_screen,
5416         gdk_display_get_default_screen): Verify parameter correctness like
5417         the X11 backend does.
5418
5419         * gdk/win32/gdkscreen-win32.c (gdk_screen_make_display_name):
5420         Return a freshly allocated string, as the API specifies. Fixes a
5421         heap corruption problem that caused random errors and crashes in
5422         GIMP, for instance.
5423
5424 2005-09-07  Matthias Clasen  <mclasen@redhat.com>
5425
5426         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): 
5427         Make C-u commit and restart hex input if we are already in a
5428         hex sequence.
5429
5430 2005-09-06  Matthias Clasen  <mclasen@redhat.com>
5431
5432         * gdk/x11/gdkkeys-x11.c (update_modmap): Make the modmap reflexive.
5433         (_gdk_keymap_add_virtual_modifiers): Don't add both Alt and Meta
5434         if they are mapped to the same modifier.
5435
5436         * gtk/Makefile.am: Rename gtkstatusicon-x11.c and gtktrayicon.c
5437         to gtkstatusicon.c and gtktrayicon-x11.c
5438
5439         * gtk/gtkaccelgroup.c: Include Super, Hyper and Meta in the
5440         default accel mod mask.
5441
5442         * gtk/gtkaccelgroup.c (gtk_accelerator_parse): 
5443         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
5444         Don't use GDK_ALT_MASK.
5445
5446         * gdk/gdktypes.h: No need to introduce GDK_ALT_MASK
5447
5448 2005-09-06  Matthias Clasen  <mclasen@redhat.com>
5449
5450         Add support for extra virtual modifiers:  (#85780, Owen Taylor)
5451         
5452         * tests/testgtk.c (create_key_lookup): Add tests for extra virtual
5453         modifiers.
5454
5455         * gtk/gtkkeyhash.c (_gtk_key_hash_lookup): Try to match both against
5456         Mod2 - Mod5 and against Super, Hyper, Meta.
5457
5458         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
5459         * gtk/gtkaccelgroup.c (gtk_accelerator_parse) 
5460         (gtk_accelerator_name): Support Super, Hyper Meta and Mod2 - Mod5.
5461
5462         * gdk/x11/gdkkeys-x11.c (struct _GdkKeymapX11): Add a 
5463         modmap to maintain the information which X modifiers map to
5464         virtual modifiers.
5465         (get_xkb): Set up the modmap from the XKB tables.
5466         (update_keymaps): Set up the modmap from the information returned
5467         by XGetModifierMapping in the non-XKB case.
5468
5469         * gdk/x11/gdkprivate-x11.h: 
5470         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_add_virtual_modifiers): New 
5471         function to set the virtual modifiers in the state.
5472
5473         * gdk/x11/gdkevents-x11.c (translate_key_event): Call 
5474         _gdk_keymap_add_virtual_modifiers here.
5475
5476         * gdk/gdktypes.h (GdkModifierType): Add bits for virtual Super, 
5477         Hyper and Meta modifiers. Also add GDK_ALT_MASK as an alias
5478         for GDK_MOD1_MASK.
5479
5480 2005-09-05  Matthias Clasen  <mclasen@redhat.com>
5481
5482         * gtk/gtkaction.c (connect_proxy): Set the label of a button
5483         if it has no child.  (#315253, John Finlay)
5484
5485 2005-09-02  Matthias Clasen  <mclasen@redhat.com>
5486
5487         * gtkimcontextsimple.h: Add a modifiers_dropped bit
5488
5489 2005-09-02  Matthias Clasen  <mclasen@redhat.com>
5490
5491         * gtk/gtkentry.c (gtk_entry_destroy): Disconnect idle handlers
5492         on destroy to avoid problems when they are called on a destroyed
5493         widget.  (#315135, John Cupitt)
5494         
5495         * gtk/gtkentry.c (gtk_entry_class_init):
5496         * gtk/gtktextview.c (gtk_text_view_class_init): Add bindings
5497         for Ctrl-Shift-A to unselect all.  (#309301, Kathy Fernandes)
5498
5499         * gtk/gtkimcontextsimple.c: Rework the Unicode hex input
5500         code. Now we only steal a single key combination, Ctrl-Shift-U,
5501         instead of sixteen. 
5502         A hex Unicode sequence must be started with Ctrl-Shift-U, followed
5503         by a sequence of hex digits entered with Ctrl-Shift still held.
5504         Releasing one of the modifiers or pressing space while the modifiers
5505         are still held commits the character. It is possible to erase
5506         digits using backspace.
5507         As an extension to the above, we also allow to start the sequence
5508         with Ctrl-Shift-U, then release the modifiers before typing any
5509         digits, and enter the digits without modifiers.
5510         (#82011, Owen Taylor)
5511         
5512 2005-09-02  Matthias Clasen  <mclasen@redhat.com>
5513
5514         * gtk/gtkmain.c (gtk_get_event_widget): If the window is destroyed,
5515         we still need to deliver the destroy event.  (#314980, Chris Lahey)
5516
5517         * gtk/gtktextview.c (gtk_text_view_key_press_event): Reset 
5518         im context before committing \n or \t.
5519
5520 2005-09-02  Alexander Larsson  <alexl@redhat.com>
5521
5522         * gtk/gtkfilechooserdefault.c: (shortcuts_add_volumes),
5523         (shortcuts_activate_volume):
5524         Handle base_path being null in the rest of the cases (#310270)
5525
5526 2005-09-02  Tor Lillqvist  <tml@novell.com>
5527
5528         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Keep track of
5529         cursor position also in root window coordinates. Prune out
5530         superfluous WM_MOUSEMOVE events even earlier, based on root window
5531         coordinates. Windows sends WM_MOUSEMOVE messages after a new
5532         window has ben mapped below the cursor even if the mouse doesn't
5533         move. We used to generate GDK_MOTION_NOTIFY in these cases. This
5534         confused at least gtk_menu_motion_notify(). (#314995)
5535
5536         * gtk/gtkintl.h: No need to include config.h here. It caused
5537         warnings about GTK_LOCALEDIR being redefined on Win32 when
5538         compiling files where gtkintl.h is included after gtkprivate.h
5539         (which #undefines and re-#defines GTK_LOCALEDIR on Win32).
5540
5541         * gtk/gtkplug.c: Include config.h.
5542
5543 2005-09-01  Matthias Clasen  <mclasen@redhat.com>
5544
5545         * gtk/gtkfilesystemunix.c: Pass statbufs down to 
5546         xdg_mime_get_mime_type_for_file() where possible, to avoid
5547         useless re-stating.  
5548         
5549         * gtk/gtkaction.c (gtk_action_get_accel_closure): Fix doc
5550         typo.  (#314921, Guillaume Cottenceau)
5551
5552         * gdk/*.c: Intern some more strings.
5553         * gtk/gtkintl.h: 
5554         * gtk/*.c: Define an I_() macro and use it instead of the 
5555         bulky g_intern_static_string().
5556
5557 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
5558
5559         * gtk/gtkbindings.c (binding_signal_new): Intern the signal name
5560         instead of copying it.
5561
5562         * gtk/gtktypeutils.c (gtk_identifier_get_type): Some more string interning.
5563
5564         * gtk/*.c: Also intern static strings passed to 
5565         g_object_set_data().
5566
5567         * gdk/Makefile.am: 
5568         * gtk/Makefile.am: Intern type names in code generated by 
5569         glib-mkenums, too.
5570
5571         * gtk/*.c: 
5572         * gdk/x11/*.c: 
5573         * gdk/*.c: Intern type names before registering the type to avoid 
5574         unnecessary copies.
5575
5576         * configure.in: Require GLib 2.9.0
5577
5578 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
5579
5580         * gtk/gtktoolbar.c: Undeprecate gtk_toolbar_set_icon_size(),
5581         and add icon-size and icon-size-set properties.  (#314172)      
5582
5583         * gtk/gtkwindow.c (gtk_window_set_transient_for): Inherit window
5584         groups across transient parents.  (#312918, Christian Persch)
5585
5586         * gtk/gtktreemodel.c: Some documentation fixes.  (#314882,
5587         Guillaume Cottenceau)
5588
5589         * gtk/gtktextiter.c (gtk_text_iter_backward_visible_cursor_positions): 
5590         Fix a typo in the docs.  (#314878, Guillaume Cottenceau)
5591
5592 2005-08-30  Matthias Clasen  <mclasen@redhat.com>
5593
5594         * gtk/gtkentry.c (gtk_entry_class_init): Add key bindings to
5595         make C-/ select all and C-\ unselect all.  (#309301,
5596         Kathy Fernandez)
5597
5598         * gtk/gtkimcontextsimple.c: Change the compose sequence for
5599         soft hyphen to be multi_key-minus-minus-space, and add
5600         compose sequences multi_key-minus-minus-period and 
5601         multi_key-minus-minus-minus for en dash and em dash.
5602         (#172653, Christian Lohmaier)
5603
5604         * gtk/gtkentry.c (gtk_entry_draw_frame): Fix some unused
5605         code.  (#313946, Christian Persch)
5606
5607         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): Another
5608         fix for the default value of the "ui" property.
5609
5610 2005-08-30  Matthias Clasen  <mclasen@redhat.com>
5611
5612         * gtk/gtk.symbols: 
5613         * gtk/gtkselection.h:
5614         * gtk/gtkselection.c: Add functions which look for text, image
5615         or uri targets in an array of atoms.   (#314089, Mark Wielaard)
5616
5617         * gtk/gtk.symbols: 
5618         * gtk/gtkselection.h:
5619         * gtk/gtkselection.c (gtk_selection_data_targets_include_uri): 
5620         Add a function to check wether targets include uri.  
5621         (#314092, Mark Wielaard)
5622         
5623         * gtk/gtk.symbols: 
5624         * gtk/gtkwindow.h: 
5625         * gtk/gtkwindow.c: Add a deletable property with getter
5626         and setter, to control the close button in the window 
5627         frame.  (#59718, Havoc Pennington)
5628
5629 2005-08-29  Matthias Clasen  <mclasen@redhat.com>
5630
5631         * gtk/gtkrc.key.emacs: Add C-n/C-p/C-f/C-b as alternatives
5632         to the arrow keys for menu navigation.  (#162825, Carl Worth)
5633
5634         * gtk/gtkentry.c, gtk/gtktextview.c: More typo fixes
5635
5636         * gtk/gtksocket-x11.c, gtk/gtkstatusicon-x11.c: Fix typos.
5637
5638         * gtk/gtkstatusicon-x11.c (gtk_status_icon_new_from_stock): 
5639         * gtk/gtkimage.c (gtk_image_new_from_stock): Don't
5640         refer to nonexisting stock ids.
5641
5642         * gtk/gtktextview.c (popup_targets_received): 
5643         * gtk/gtkentry.c (popup_targets_received): Construct
5644         the "Select All" menuitem from stock.
5645
5646         * gtk/stock-icons/stock_select_all_{16,24}.png:
5647         * gtk/stock-icons/Makefile.am: 
5648         * gtk/gtkiconfactory.c:
5649         * gtk/gtkstock.h: 
5650         * gtk/gtkstock.c: Add a "Select All" stock item.  (#78545,
5651         Calum Benson)
5652
5653         * gtk/gtktrayicon.c: Add a pointer to the spec.
5654
5655         * gtk/gtkstatusicon-x11.c: Add docs.
5656
5657         * gtk/gtkstatusicon.h: Fix a typo.
5658
5659         Add a cross-platform "tray icon" API, by
5660         porting EggStatusIcon/EggTrayIcon (#105101)
5661         
5662         * gtk/gtkstatusicon.h: A GtkStatusIcon is an object which
5663         displays an icon in a notification area.
5664
5665         * gtk/gtkstatusicon-x11.c: GtkStatusIcon implementation for
5666         X11, using GtkTrayIcon.
5667
5668         * gtk/gtktrayicon.h: 
5669         * gtk/gtktrayicon.c: An implementation of the freedesktop.org
5670         system tray specification, not public API.
5671
5672         * gtk/gtk.symbols: Add new exported functions.
5673
5674         * gtk/gtk.h: Include gtkstatusicon.h.
5675
5676         * gtk/Makefile.am: Add new files.
5677
5678         * tests/Makefile.am:
5679         * tests/teststatusicon.c: Test for GtkStatusIcon.
5680
5681 2005-08-29  Christopher Aillon  <caillon@redhat.com>
5682
5683         * gtk/gtkstock.c: Add builtin GtkStockItems for GTK_STOCK_CONNECT
5684         and GTK_STOCK_DISCONNECT
5685         
5686 2005-08-29  Matthias Clasen  <mclasen@redhat.com>
5687
5688         * gtk/gtksocket-x11.c (_gtk_socket_windowing_embed_notify): 
5689         Use XFixesChangeSaveSet if available.  (#314682)
5690
5691         * gtk/gtkmenu.c (gtk_menu_grab_notify):  Only cancel if the menu
5692         was active.  (#314298, Christian Persch, analysis by Mark McLoughlin)
5693
5694 2005-08-29  Matthias Clasen  <mclasen@redhat.com>
5695
5696         * gtk/gtkiconcache.c (_gtk_icon_cache_get_icon): Remove an
5697         accidentally leftover duplicate pixbuf creation.  (#314700,
5698         Kjartan Maraas)
5699
5700         * gtk/gtksettings.c (settings_update_cursor_theme): Don't 
5701         leak the cursor theme name.  (#314693, Kjartan Maraas)
5702
5703         * gdk/x11/gdkasync.c (_gdk_x11_get_window_child_info): Free 
5704         state.children in all cases.  (#313862, Kjartan Maraas)
5705
5706 2005-08-28  Matthias Clasen  <mclasen@redhat.com>
5707
5708         * po/POTFILES.in, po-properties/POTFILES.in:
5709         Add gdk/gdkscreen.c
5710
5711 2005-08-27  Matthias Clasen  <mclasen@redhat.com>
5712
5713         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): Fix the default
5714         value of the ui property. (#314532, Yong Wang)
5715
5716         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Don't warn
5717         when G_MAXLONG is passed as length.  
5718
5719 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
5720
5721         * gtk/updateiconcache.c: Add a separate --ignore-theme-index option
5722         to avoid overloading --force.  (JP Rosevaar)
5723
5724 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
5725
5726         * configure.in: Bump version to 2.9.0
5727
5728         * gdk/gdk.symbols: 
5729         * gdk/gdkscreen.h: 
5730         * gdk/gdkscreen.c: Make the GdkScreen font options api
5731         public, and add properties GdkScreen::font-options and
5732         GdkScreen::resolution.  (#314004)
5733
5734         * gdk/gdkpango.c:
5735         * gtk/gtksettings.c:
5736         * gtk/gtkwidget.c: Adjust all callers.
5737         
5738         * gdk/gdkintl.h: Simplify and use glib/gi18n-lib.h.
5739         * gdk/gdkpango.c: Include gdkintl.h, not gtkintl.h.
5740         * gdk/gdkscreen.c: Include gdkintl.h.
5741
5742         * gtk/gtkicontheme.c (theme_lookup_icon): Avoid an uninitialized
5743         variable warning, pointed out by Colin Walters. (#314585)
5744
5745 2005-08-26  Tor Lillqvist  <tml@novell.com>
5746
5747         * gtk/gtkfilesystemwin32.c: Remove some ifdeffed out debugging
5748         printouts.
5749         (gtk_file_system_win32_parse): Don't mishandle UNC paths. (#314519)
5750
5751 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
5752
5753         * gtk/gtkcalendar.c (gtk_calendar_init): Fix the calculation
5754         of week_start.  (#314473, JP Rosevaar)
5755
5756 2005-08-25  Thomas Fitzsimmons  <fitzsim@redhat.com>
5757
5758         * gtk/gtkfilesystemmodel.c (idle_finished_loading_cb): Acquire GDK
5759         lock.  (#314533, Thomas Fitzsimmons)
5760
5761 2005-08-25  Matthias Clasen  <mclasen@redhat.com>
5762
5763         * gtk/gtktoolbar.c (_gtk_toolbar_elide_underscores): Handle
5764         NULL gracefully.  (#314523, Ed Catmur)
5765
5766 2005-08-25  Owen Taylor  <otaylor@redhat.com>
5767
5768         * gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): 
5769         Handle theme == NULL.
5770
5771 2005-08-25  Matthias Clasen  <mclasen@redhat.com>
5772
5773         * gtk/gtkmenutoolbutton.c (menu_position_func): Take widget
5774         y offset into account when positioning the popup.  (#314470,
5775         Christian Persch)
5776
5777 2005-08-25  Owen Taylor  <otaylor@redhat.com>
5778
5779         * gdk/gdkscreen.c (gdk_screen_get_type): Use gdk_screen_init
5780         as instance_init, not base_init! (#314452, Fix from Frederic
5781         Crozat, reported by Joe Marcus Clarke). Trivial cleanup: use -1.
5782         rather than 1 for a negative flag value.
5783
5784 2005-08-24  Owen Taylor  <otaylor@redhat.com>
5785
5786         * gdk/gdkpango.c (draw_error_underline): Add a note about
5787         cut-and-paste between here and Pango.
5788
5789 2005-08-24  Matthias Clasen  <mclasen@redhat.com>
5790
5791         * === Released 2.8.2 ===
5792
5793         * gtk/gtkclipboard.c (request_image_received_func): Use the correct
5794         callback for image/gif, and also try image/bmp.  (#314086,  Mark 
5795         Wielaard)
5796
5797         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_volume_render_icon): 
5798         Use gnome-dev-harddisk for volumes, not gnome-fs-blockdev.  (#314382,
5799         Sebastien Bacher)
5800         
5801         * NEWS: Updates
5802
5803         * gtk/gtksettings.c (gtk_settings_get_for_screen): Make sure font
5804         and cursor settings get propagated down to the screen initially.
5805         Pointed out by Frederic Crozat.
5806
5807         * gtk/gtkicontheme.c (ensure_valid_themes): Don't try to send a client
5808         message if the screen is NULL. Noticed by Kjartan Maraas.
5809
5810 2005-08-24  Matthias Clasen  <mclasen@redhat.com>
5811
5812         * Bump version
5813
5814         * === Released 2.8.1 ===
5815
5816         * NEWS: Updates
5817         
5818 2005-08-24  Matthias Clasen  <mclasen@redhat.com>
5819
5820         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_visible): Protect
5821         against lazy filterers which return values other than TRUE or
5822         FALSE from their visible func.  (#314335)
5823
5824 2005-08-23  Owen Taylor  <otaylor@redhat.com>
5825
5826         Fix for #314004, reported by Michael Reinsch:
5827
5828         * gdk/gdk.symbols:
5829         * gdk/gdkscreen.[ch]: Add gdk_screen_get/set_font_options_libgtk_only()
5830         Add gdk_screen_get/set_resolution_libgtk_only()
5831
5832         * gdk/gdkpango.c (gdk_pango_context_get_for_screen): Set
5833         the options for the screen on the newly created context.
5834
5835         * gtk/gtksettings.c (settings_update_font_options/dpi) gtkwidget.c: 
5836         Move font options and dpi code from gtkwidget.c to gtksettings.c, set
5837         the font options on the screen.
5838
5839         * gtk/gtkwidget.c (gtk_widget_update_pango_context): Just get
5840         the font options from the screen and set them on the context.
5841
5842 2005-08-23  Kristian Rietveld  <kris@gtk.org>
5843
5844         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_inserted): don't
5845         bother inserting new rows in a level with a zero refcount and
5846         immediately free the level. (Fixes #312350, reported by Markku Vire).
5847
5848 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
5849
5850         * gtk/updateiconcache.c: Complain when there is no index.theme file
5851         in the specified directory, unless --force is used. Also add an
5852         --index-only option to create caches without image data.
5853
5854         * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Fix a
5855         C99ism.  (#314262, Robert Jeff Mitchell)
5856         
5857 2005-08-22  Manish Singh  <yosh@gimp.org>
5858
5859         * gtk/gtkicontheme.h: add declaration for _gtk_icon_theme_check_reload.
5860
5861         * gtk/gtkwindow.c: remove declaration of gtk_window_read_rcfiles.
5862
5863 2005-08-22  Matthias Clasen  <mclasen@redhat.com>
5864
5865         * gtk/gtkwindow.c (gtk_window_client_event): 
5866         * gtk/gtkicontheme.c (ensure_valid_themes) 
5867         (_gtk_icon_theme_check_reload): Implement a clientmessage based
5868         scheme for makeing sure that all GTK+ applications notice if an
5869         icon theme has been updated. This should prevent multiple versions
5870         of an icon theme cache to be mapped in memory at the same time,
5871         which can cause excessive memory consumption.  (#313156, Chris 
5872         Lahey)
5873
5874 2005-08-22  Matthias Clasen  <mclasen@redhat.com>
5875
5876         * gtk/gtkicontheme.c (gtk_icon_theme_load_icon): Add a note
5877         regarding icon theme changes.
5878
5879         * gtk/gtkiconcache.c (_gtk_icon_cache_get_icon): When returning
5880         pixbufs which are backed by the mmapped memory of an icon cache,
5881         increase the refcount of the icon cache, so that the memory is not
5882         munmapped away underneath the pixbuf upon icon theme changes.  
5883         (#314170, Kjartan Maraas)
5884
5885         * docs/tools/Makefile.am (LDADDS): Add GTK_DEP_LIBS, in order 
5886         to link against Xext.  (#314062)
5887
5888         * gtk/gtkhsv.c (paint_triangle): One more fix to prevent buffer
5889         overruns.  (#314081, Hans Breuer)
5890
5891 2005-08-20  Matthias Clasen  <mclasen@redhat.com>
5892
5893         * gtk/gtkentry.c (gtk_entry_get_layout): Clarify that the
5894         returned layout must not be modified.
5895
5896 Sat Aug 20 16:12:14 2005  Jonathan Blandford  <jrb@redhat.com>
5897
5898         * gtk/gtktreeview.c (gtk_tree_view_set_model): clear
5899         scroll_to_path if the model changes.
5900
5901         * gtk/gtkiconview.c: (gtk_icon_view_destroy),
5902         (gtk_icon_view_size_allocate), (gtk_icon_view_set_cursor),
5903         (gtk_icon_view_scroll_to_path): Handle scrolling to a path before
5904         we're realized, #312798
5905         (gtk_icon_view_set_model): clear scroll_to_path if the model
5906         changes.
5907
5908 2005-08-20  Matthias Clasen  <mclasen@redhat.com>
5909
5910         * gtk/gtkrange.c (gtk_range_adjustment_changed) 
5911         (gtk_range_adjustment_value_changed):  Don't queue a draw
5912         if the layout has not changed.  (#313991, Benjamin Berg)
5913
5914 2005-08-19  Matthias Clasen  <mclasen@redhat.com>
5915
5916         * gtk/gtktreeitem.c: Remove duplicate lines.  (#313344,
5917         Benoit Carpentier)
5918
5919         * modules/engines/ms-windows/msw_style.c (setup_system_styles): 
5920         Fix a typo. 
5921
5922         * gtk/gtkfilechooserbutton.c (change_icon_theme) 
5923         (model_add_special, model_add_special, model_add_volumes):
5924         Handle pixbuf being NULL without warnings. Also, don't
5925         leak pixbuf references when the icon theme is changed.
5926
5927         * gtk/gtkmain.c (gtk_get_event_widget): Don't access
5928         the user data on destroyed windows, since at best
5929         it can be a stale pointer.  (#313953, Robin Green)      
5930
5931 2005-08-19  Matthias Clasen  <mclasen@redhat.com>
5932
5933         * gtk/gtkhsv.c (paint_triangle): Avoid a buffer overrun.  
5934         (#313900, Sebastien Bacher)
5935
5936         * gtk/gtktreeview.c (gtk_tree_view_get_visible_range): Return
5937         FALSE if the tree is empty.  (#313891, Guillaume Cottenceau)
5938
5939         * gdk/x11/gdkdnd-x11.c (_gdk_drag_get_protocol_for_display) 
5940         (xdnd_read_actions, get_client_window_at_coords_recurse): 
5941         Free data returned from XGetWindowProperty. 
5942
5943         * gdk/x11/gdkevents-x11.c (fetch_net_wm_check_window) 
5944         Free data returned from XGetWindowProperty.  (313867, Kjartan
5945         Maraas)
5946         
5947         * gdk/x11/gdkdnd-x11.c (get_client_window_at_coords_recurse): Free
5948         children in all cases.  (#313862, Kjartan Maraas)
5949
5950         * gtk/gtkicontheme.c (theme_lookup_icon): Store GtkIconData structs 
5951         in the per-directory hash, even if they come from the icon cache. 
5952         We tried to avoid that before, but as a result leaked icon data
5953         structs.  (#313852, Kjartan Maraas)
5954
5955 2005-08-18  Matthias Clasen  <mclasen@redhat.com>
5956
5957         * gtk/gtkmenutoolbutton.c (gtk_menu_tool_button_destroy): Disconnect
5958         signal handlers on destroy, not on finalize.  (#313759, Brett Atoms)
5959
5960 2005-08-15  Owen Taylor  <otaylor@redhat.com>
5961
5962         * configure.in: Add -lXext to GDK_EXTRA_LIBS in absence of pkg-config
5963         files for x11/xext. (Jonas Bonn)
5964
5965 2005-08-15  Tor Lillqvist  <tml@novell.com>
5966
5967         * gtk/gtkicontheme.c (theme_lookup_icon): Put debugging printout
5968         inside GTK_NOTE.
5969
5970 2005-08-15  Owen Taylor  <otaylor@redhat.com>
5971
5972         * configure.in: Fix have_base_pc / have_base_x_pc typo.
5973
5974         * gdk/x11/gdkdrawable-x11.c gtk/gtksettings.c: Remove panoxft.h includes.
5975         (#313417, James Andrewartha)
5976
5977         * configure.in: Add fontconfig to X_PACKAGES, since we use it for
5978         FcNameConstant(). (More of #313417)
5979
5980 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
5981
5982         * gtk/gtkfilechooserdefault.c: When using gtk_dialog_run() for
5983         modal dialogs, make sure to inherit the window group from 
5984         the parent, since we don't inherit window groups across
5985         transient parents currently.  (#312918, Christian Persch)
5986
5987         * gtk/gtkmessagedialog.c (gtk_message_dialog_new): 
5988         * gtk/gtkdialog.c (gtk_dialog_run): Slight update to the docs. 
5989
5990         * gtk/gtkiconview.c (gtk_icon_view_select_path) 
5991         (gtk_icon_view_scroll_to_path): Handle paths of depth 0
5992         gracefully.  (#312796, Jonathan Blandford)
5993
5994         * tests/testtoolbar.c: Add some more tests for menu placement.
5995
5996         * gtk/gtkmenutoolbutton.c (menu_position_func): 
5997         * gtk/gtktoolbar.c (menu_position_func): Improve positioning
5998         of toolbutton menus and of the overflow menu.  (#312937, 
5999         #153870, Christian Persch, Paolo Borelli)
6000
6001 2005-08-15  Tor Lillqvist  <tml@novell.com>
6002
6003         * gtk/updateiconcache.c: Use g_path_get_dirname() instead of
6004         the nonportable <libgen.h> and dirname().
6005
6006 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
6007
6008         * gtk/gtksizegroup.c: Use object data to mark widgets and
6009         groups as visited, so that we avoid constant extra list
6010         traversals. Also allocate quarks in class_init.  (#311618,
6011         Michael Natterer)
6012
6013         * gtk/gtkicontheme.c (gtk_icon_theme_lookup_icon): Correct the 
6014         download location for the hicolor icon theme. (#313475, Olexiy 
6015         Avramchenko)
6016
6017         * gtk/gtkicontheme.c: Remove debug spew. 
6018
6019 2005-08-15  Owen Taylor  <otaylor@redhat.com>
6020
6021         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_back_pixmap): 
6022         * gdk/win32/gdkwindow-win32.c (gdk_window_set_back_pixmap): 
6023         * gdk/x11/gdkwindow-x11.c (gdk_window_set_back_pixmap):
6024         Handle pixmap == NULL when checking for a colormap.
6025         (Allin Cottrell).
6026
6027 2005-08-14  Matthias Clasen  <mclasen@redhat.com>
6028
6029         * gtk/updateiconcache.c: Store only one copy of the pixel data
6030         for symlinked icons. To achieve this, maintain a hashtable 
6031         mapping pathnames to pixel data, and share the pixel data for
6032         all symlinks resolving to the same pathname. When writing out
6033         the image data, write out the pixel data only the first time
6034         it is met, and store the offset pointing to the first copy
6035         for use in all later cases.
6036         This reduces the size of the Bluecurve icon cache from 40
6037         to 13MB. (#312972)
6038