]> Pileus Git - ~andy/gtk/blob - ChangeLog
970a4671e8dc56da36ebbeed0b49fca6364b8a46
[~andy/gtk] / ChangeLog
1 2005-06-26  Matthias Clasen  <mclasen@redhat.com>
2
3         * gtk/gtktreeview.c (gtk_tree_view_grab_broken): Stop column
4         header drag operations if the grab is broken.
5
6         * gtk/gtkhsv.c (gtk_hsv_grab_broken): Stop the drag if
7         the grab is broken.
8
9         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Don't do 
10         explicitly ungrab pointer and keyboard. We're unmapping
11         the grab window anyway. 
12         (gtk_combo_box_popup): Handle grab failures.
13
14 2005-06-25  Matthias Clasen  <mclasen@redhat.com>
15
16         * gdk/x11/gdkmain-x11.c (gdk_keyboard_grab, gdk_pointer_grab):
17         Don't emit grab-broken for overgrabbing, until we figure
18         out how to do that without breaking the menu code.
19
20 2005-06-25  Matthias Clasen  <mclasen@redhat.com>
21
22         Add a GrabBroken event to GDK, and a grab-broken-event
23         signal to GtkWidget.  (#107320, Simon Cooke, initial patch 
24         by John Ehresman)
25
26         * gdk/gdkevents.h: Add a GDK_GRAB_BROKEN event type,
27         define a GdkEventGrabBroken event struct.
28
29         * gdk/win32/gdkevents-win32.c (gdk_event_translate): 
30         Generate GrabBroken events in response to WM_KILLFOCUS.
31
32         * gdk/x11/gdkmain-x11.c: Generate GrabBroken events
33         when a grab is broken by the window becoming unviewable,
34         or by another grab from the same client.
35         
36         * gtk/gtkwidget.h (GtkWidgetClass): Add grab_broken_event.
37
38         * gtk/gtkwidget.c (gtk_widget_event_internal): Translate
39         GrabBroken events into grab_broken_event signals.
40
41         * gtk/gtkmain.c (gtk_main_do_event): Propagate GrabBroken
42         events.
43
44         * gtk/gtkmenushell.c (gtk_menu_shell_grab_broken): Deactivate
45         the menu when the grab is broken.
46
47         * gtk/gtkcolorsel.c (gtk_color_selection_grab_broken): Stop 
48         the color picker if the grab is broken.
49
50         * gtk/gtkpaned.c (gtk_paned_grab_broken): Stop the drag if
51         the grab is broken.
52
53 2005-06-25  Matthias Clasen  <mclasen@redhat.com>
54
55         Add some new stock items.  (#166480, Kristof Vansant)
56         
57         * gtk/stock-icons/stock_fullscreen_16.png: 
58         * gtk/stock-icons/stock_fullscreen_24.png: 
59         * gtk/stock-icons/stock_leave_fullscreen_16.png: 
60         * gtk/stock-icons/stock_leave_fullscreen_24.png: 
61         * gtk/stock-icons/stock_info_16.png: 
62         * gtk/stock-icons/stock_info_24.png: New icons.
63
64         * gtk/stock-icons/Makefile.am: Add new icons.
65
66         * gtk/gtkstock.h: Define names for the new icons.
67
68         * gtk/gtkstock.c (builtin_items): Register new stock items.
69         
70         * gtk/gtkiconfactory.c (get_default_icons): Register new 
71         stock icons.
72
73 2005-06-24  Owen Taylor  <otaylor@redhat.com>
74
75         * gdk/gdkrgb.c (gdk_rgb_select_conv): Fix up selection of
76         conversion functions for MSB machines: convert_0888[_br]
77         now work on bytes so are endian independent. 
78         (Reported by David Zeuthen)
79
80 2005-06-24  Matthias Clasen  <mclasen@redhat.com>
81
82         * gtk/gtktextview.c (gtk_text_view_scroll_hpages): Don't
83         jump to the next line if we are at the end of the line.  
84         (gtk_text_view_move_cursor_internal): Make movement by
85         paragraphs up/down symmetric.  (#307055, Behnam Esfahbod)
86
87 2005-06-23  Tor Lillqvist  <tml@novell.com>
88
89         Improve and simplify line segment rendering on Win32, especially
90         the implementation of GDK_CAP_NOT_LAST, and dashed lines. Fixes
91         bugs #306396 and #308413.
92
93         * gdk/win32/gdkprivate-win32.h (GdkGCWin32): Save the GdkGC's
94         line_style, cap_style and join_style as such in the
95         GdkGCWin32. Don't need to keep the pen_double_dash flag, we can
96         check the line_style.
97
98         * gdk/win32/gdkgc-win32.c (fixup_pen): New internal function. Sets
99         up the GDI pen type, style, end cap and join attributes to use
100         based on the pen width, GDK line style, end cap style, and join
101         style.
102
103         For a narrow (zero-width) GDK pen with the GDK_CAP_NOT_LAST end
104         cap style, which typically are used for XOR drawing where it is
105         essential that the last pixel is not drawn, use a GDI cosmetic
106         pen. Only for a cosmetic pen does GDI not draw the last pixel. I
107         deduced this by experimetation, the documentation is rather vague.
108
109         For other GDK pens use a geometric GDI pen. If the width is 0 or 1
110         and the GDK end cap style is GDK_CAP_BUTT, and the line style is
111         GDK_LINE_SOLID, use PS_ENDCAP_ROUND. This ensures that also
112         single-pixel length lines are drawn. (For sngle-pixel width lines
113         roundness as such is of course irrelevant.) For dashed lines, use
114         PS_ENDCAP_FLAT.
115
116         For wide lines use PS_ENDCAP_FLAT, _ROUND or _SQUARE,
117         respectively, for GDK_CAP_BUTT, GDK_CAP_ROUND and GDK_CAP_PROJECTING.
118
119         For one pixel on-off dashed lines, use PS_ALTERNATE, it seems to
120         work better than PS_USERSTYLE. For other dashed lines, use
121         PS_USERSTYLE and the dashes as set by the user (or the default
122         four-pixel on-off style).
123
124         (gdk_win32_gc_values_to_win32values, gdk_win32_gc_set_dashes):
125         Call fixup_pen() to do the pen settings after modifying some of
126         the GDK GC attributes that affect pens.
127
128         * gdk/win32/gdkdrawable-win32.c (render_line_horizontal,
129         render_line_vertical, draw_segments): Check GdkGCWin32::line_style
130         instead of the the removed pen_double_dash member. Don't use
131         PATCOPY unconditionally in the PatBlt() call, use a raster op
132         code that depends on the GC function in use.
133
134         (draw_rectangle, draw_segments, draw_lines): Be more careful in
135         deciding when to do the manual dash rendering.
136
137         (draw_segments): Don't do any manual "last point" drawing at
138         all. The above changes takes care of narrow line segments being
139         drawn correctly in most cases, at least on NT-based Windows.
140
141 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
142
143         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder): 
144         Fix an error in the cache timeout logic.  (#166601, Morten
145         Welinder)
146
147         * gtk/gtktreeview.c (gtk_tree_view_key_press): Change the
148         keynav for header reordering and resizing to Alt-arrows and
149         Shift-Alt-arrows, following a proposal by the keynav 
150         authority. (#308666, Calum Benson)
151
152         * gtk/gtkiconcache.c (_gtk_icon_cache_new_for_path): Remove
153         a leftover debugging envvar.  
154
155 2005-06-23  Owen Taylor  <otaylor@redhat.com>
156
157         * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Fix the
158         big endian case for 3-channel source. (Reported by
159         David Zeuthen)
160
161 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
162
163         * gtk/gtkbutton.c (gtk_button_construct_child): Don't
164         trigger warnings if there are extra references to the
165         hbox.  (#308677, Dan Winship)
166
167         * gtk/gtkfilesystemunix.c (bookmark_list_write): Use
168         g_file_set_contents().  (#308722, Morten Welinder)
169
170 2005-06-22  Matthias Clasen  <mclasen@redhat.com>
171
172         * gdk/x11/gdkdnd-x11.c (xdnd_finished_filter): Set the
173         time field in the event.  (#308573, Morten Welinder)
174
175         * gtk/gtkfilesystemunix.c: Remove gratitious differences
176         between the stable branch and HEAD, which sneaked in with
177         the bookmark renaming.  
178
179 2005-06-22  Kjartan Maraas  <kmaraas@gnome.org>
180
181         * gtk/gtkhsv.c: (gtk_hsv_expose): Don't leak the cairo context
182         Closes bug #308581.
183
184 2005-06-21  Matthias Clasen  <mclasen@redhat.com>
185
186         * gtk/gtkarrow.c:
187         * gtk/gtkimage.c:
188         * gtk/gtklabel.c:
189         * gtk/gtkpixmap.c: Modify all of the GtkMisc widgets to round down
190         on centering calculations to match the behaviour of other parts
191         of GTK+. (#307419, Ryan Lortie)
192
193 2005-06-21  Matthias Clasen  <mclasen@redhat.com>
194
195         * gtk/gtkdnd.c (gtk_drag_source_set): Connect to 
196         button-release-event as well, to handle touchscreen 
197         scenarios better.  (#171490, Markku Vire)
198
199         * gtk/*.h: Trivial cleanups. (#169647, #303455, 
200         Fabricio Barros Cabral, Benoit Carpentier)
201
202         * gdk/gdk.symbols: 
203         * gdk/gdkwindow.h: 
204         * gdk/x11/gdkgeometry-x11.c (gdk_window_move_region): New
205         function which can be used to implement scrolling in 
206         non-window widgets.  (#135165, Søren Sandmann)
207
208 2005-06-20  Matthias Clasen  <mclasen@redhat.com>
209
210         * gtk/gtkiconcache.c: Handle MAP_FAILED.  (#308449, Georg
211         Schwarz)
212
213 2005-06-20  Matthias Clasen  <mclasen@redhat.com>
214
215         * configure.in: Bump version number.
216
217         * === Released 2.7.0 ===
218
219 2005-06-20  Matthias Clasen  <mclasen@redhat.com>
220
221         * gtk/gtk.symbols:
222         * gtk/gtkwindow.h:
223         * gtk/gtkwindow.c (gtk_window_present_with_time): Variant of
224         gtk_window_present which takes a timestamp.  (#166379, Elijah Newren)
225
226 2005-06-19  Matthias Clasen  <mclasen@redhat.com>
227         
228         * gtk/gtk.symbols: Add a forgotten symbol
229
230         * NEWS: Updates
231
232 2005-06-19  Kristian Rietveld  <kris@gtk.org>
233
234         * gtk/gtktreeview.c (gtk_tree_view_clamp_node_visible): added a
235         check which avoids processing updates on bin_window and scrolling
236         if the node is already visible. (#170600, Billy Biggs).
237
238 2005-06-19  Kristian Rietveld  <kris@gtk.org>
239
240         * gtk/gtktreeview.c (validate_visible_area): only keep the
241         row at the same position if the full row is visible. (#304623,
242         Jorn Baayen).
243
244 2005-06-19  Kristian Rietveld  <kris@gtk.org>
245
246         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): set dy to zero
247         if treeview's height is smaller than the current page_size (just
248         like we do elsewhere).
249
250 2005-06-19  Kristian Rietveld  <kris@gtk.org>
251
252         Make mousewheel scrolling possible in typeahead mode, suggestion
253         from Reinout van Schouwen (#307898).
254
255         * gtk/gtktreeview.c (gtk_tree_view_ensure_interactive_directory):
256         connect treeview search window to scroll_event signal,
257         (gtk_tree_view_search_scroll_event): implement.
258
259 2005-06-19  Kristian Rietveld  <kris@gtk.org>
260
261         * gtk/gtktreeview.c (gtk_tree_view_search_button_press_event): pass
262         the event on to treeview, so it has a change of selecting a row, etc.
263         (#169677, Kirk Bridger).
264
265 2005-06-19  Kristian Rietveld  <kris@gtk.org>
266
267         This commit includes a fix for #169463, Stefan Kost.
268
269         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_get_size):
270         when cell_area is set, return cell_area width/height as width/height,
271         so the focus rectangle will be drawn correctly.
272
273         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): drop unneeded get
274         of focus-line-width property,
275         (validate_row): take focus_line_width into account.
276
277         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
278         also take focus_line_width into account when calculating the cell_area
279         y and height (before, we only took it into account when calculating
280         x and width).
281
282 2005-06-19  Matthias Clasen  <mclasen@redhat.com>
283
284         * gtk/gtk.symbols:
285         * gtk/gtksizegroup.[hc]: Add an ignore-hidden property
286         with getter and setter.  (#171612, Christian Neumair)
287
288 2005-06-18  Matthias Clasen  <mclasen@redhat.com>
289
290         * gtk/gtkuimanager.c (gtk_ui_manager_add_ui): Make this 
291         work for inserting before/after an existing menuitem or
292         toolitem.  (#155946, Christian Persch)
293
294         * tests/testmerge.c (delayed_toggle_dynamic): Test the 
295         "insert after" functionality of gtk_ui_manager_add_ui.
296
297         * gtk/gtkuimanager.c: Allow to construct menu tool buttons.
298         (#300678, Sven Neumann)
299         
300         * demos/gtk-demo/appwindow.c: Demonstrate menu tool buttons
301         constructed with GtkUIManager.
302
303         * gtk/gtk.symbols: 
304         * gtk/gtkimage.h: 
305         * gtk/gtkimage.c (gtk_image_clear): Make this function
306         public.  (#64792, Havoc Pennington)
307
308 2005-06-18  Kristian Rietveld  <kris@gtk.org>
309
310         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): undo merging
311         of the separate loop setting cell data with cell drawing loop
312         (introduced in revision 1.280), since this breaks focus handling
313         wrt special cells.
314
315 Sat Jun 18 04:22:51 2005  Manish Singh  <yosh@gimp.org>
316
317         * gdk/gdkcursor.h: remove GDK_CURSOR and GDK_IS_CURSOR, instance
318         checks don't work on boxed types.
319
320         * gdk/x11/gdkcursor-x11.c: 
321         * gdk/gdkcursor.c: make return_if_fail checks != NULL instead of
322         GDK_IS_CURSOR.
323         
324 Sat Jun 18 04:21:58 2005  Manish Singh  <yosh@gimp.org>
325
326         * gtk/gtktreeview.c (do_presize_handler): remove unused variable
327         height_old.
328
329 2005-06-18  Matthias Clasen  <mclasen@redhat.com>
330
331         * gtk/gtkcellrenderertoggle.c:
332         * gtk/gtktextview.c:
333         * gtk/gtktreeview.c: Typo fixes in comments.
334
335         * gtk/gtkpaned.c (gtk_paned_add): Barf if more than
336         2 children are added.  (#308111, Morten Welinder)
337
338         * gtk/gtkcalendar.c (gtk_calendar_init): _NL_FIRST_WEEKDAY is
339         1-based.  (#163842, Pierre Ossman)
340
341 2005-06-17  Kristian Rietveld  <kris@gtk.org>
342
343         Fix #160281, testcase from Peter Bloomfield.
344
345         * gtk/gtktreeview.c (do_presize_handler): always size request
346         and update adjustments in fixed height mode,
347         (gtk_tree_view_build_tree): if a fixed height is set, set this
348         height on newly added nodes.
349
350 2005-06-17  Tor Lillqvist  <tml@novell.com>
351
352         * gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Set the actions
353         and suggested_action fields in the GdkDragContext to
354         GDK_ACTION_COPY. Otherwise apps that check the suggested_action
355         field, like eog, won't accept dropped files.
356
357 2005-06-17  Matthias Clasen  <mclasen@redhat.com>
358
359         Support the ICCCM urgency hint.  (#61858, Havoc Pennington)
360         
361         * gtk/gtk.symbols: 
362         * gtk/gtkwindow.[hc]: Add a GtkWindow::urgency-hint property
363         with getter and setter.
364
365         * gdk/gdk.symbols: 
366         * gdk/gdkwindow.h: 
367         * gdk/x11/gdkwindow-x11.c (gdk_window_set_urgency_hint): 
368         Add a setter for the urgency hint.
369
370         * gdk/x11/gdkwindow-x11.h (struct _GdkToplevelX11): Store
371         urgency hint here.
372
373         * gdk/x11/gdkwindow-x11.c (update_wm_hints): Set the urgency
374         hint in the WM_HINTS property when appropriate.
375
376 2005-06-17  Matthias Clasen  <mclasen@redhat.com>
377
378         * gdk/gdkcursor.h: Define GDK_IS_CURSOR() and GDK_CURSOR().
379
380         * gdk/x11/gdkcursor-x11.c: 
381         * gdk/gdkcursor.c: Improve some return_if_fail checks,
382         and add the missing non-Xcursor fallback for 
383         _gdk_x11_cursor_update_theme(), noticed by Jeroen 
384         Zwartepoorte.
385
386         * gtk/gtkbutton.c (gtk_button_class_init): Document
387         several button signals as not useful.
388
389         * gtk/gtkentrycompletion.c (gtk_entry_completion_complete): 
390         Resize the popup if necessary.  (#308076, Vincent Noel)
391
392         * gtk/gtkwindow.c (gtk_window_real_set_focus): Queue a
393         draw on the old and new focus widgets, if their defaultness
394         changes.  (#305607, Billy Biggs)
395
396 2005-06-17  Kristian Rietveld  <kris@gtk.org>
397
398         * gtk/gtktreeview.c (validate_visible_area): make sure the row
399         above 'above_path' is always in a validated state, so it does
400         not mess up scrolling. (#303319, testcase from Billy Biggs).
401
402 2005-06-17  Matthias Clasen  <mclasen@redhat.com>
403
404         * gdk/x11/gdkprivate-x11.h: 
405         * gdk/x11/gdkcursor-x11.c: Handle cursor theme changes
406         for cached cursors which are not associated with a window
407         at the time of the theme change, by storing a serial
408         number in each cursor, and updating the theme_serial 
409         counter whenever the cursor theme changes.
410         
411         * gdk/x11/gdkcursor-x11.c (_gdk_x11_cursor_update_theme): 
412         Private function to update a cursor to the current
413         cursor theme if necessary.
414
415         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab): 
416         * gdk/x11/gdkwindow-x11.c (gdk_window_set_cursor): Call
417         _gdk_x11_cursor_update_theme() here.
418
419 2005-06-17  Owen Taylor  <otaylor@redhat.com>
420
421         * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Fix
422         #if G_BYTE_ORDER == GDK_LSB_FIRST.
423
424 2005-06-17  Kristian Rietveld  <kris@gtk.org>
425
426         * gtk/gtktreeview.c (validate_visible_area): don't try to update
427         the top_row rowref ourselves here, but just have _dy_to_top_row()
428         do it,
429         (gtk_tree_view_scroll_to_cell): handle scrolling via
430         validate_visible_area() if the treeview is not visible or needs
431         reallocation. (#165246, Nickolay V. Shmyrev).
432
433 2005-06-17  Kristian Rietveld  <kris@gtk.org>
434
435         Fixes #307914 (Alexander Larsson), fixing some breakage caused
436         by my previous commit.
437
438         * gtk/gtktreeview.c (validate_visible_area): force dy to be zero
439         when it fits on a single page,
440         (scroll_sync_handler): same here.
441
442 Thu Jun 16 15:33:42 2005  Manish Singh  <yosh@gimp.org>
443
444         * gdk/x11/gdkcursor-x11.c (update_cursor): remove unused variable.
445
446         * gdk/x11/gdkwindow-x11.c (_gdk_x11_window_get_cursor): use
447         g_return_val_if_fail.
448
449         * gtk/gtkdnd.c (gtk_drag_get_cursor): initialize hot_x and hot_y
450         for all cases.
451
452         * gtk/gtkfilechooserdefault.c (button_new): gtk_button_set_image
453         takes a GtkWidget, not a GtkImage.
454
455 2005-06-16  Matthias Clasen  <mclasen@redhat.com>
456
457         * gtk/gtkfilechooserdefault.c (button_new): Simplify
458         the code and respect the show-button-images setting.
459         (#307941, Vincent Noel)
460
461         * gtk/gtkdnd.c: Update the RGBA cursor if an
462         icon is set after the cursor has been constructed.
463         Also handle repeated setting of icons correctly.
464
465 2005-06-16  Matthias Clasen  <mclasen@redhat.com>
466
467         * gtk/gtkbutton.c (gtk_button_set_image): Add some more
468         docs.  (#307818, Christian Persch)
469
470 2005-06-15  Matthias Clasen  <mclasen@redhat.com>
471
472         * gdk/gdkwindow.c (gdk_window_process_updates_internal):
473         Initialize all fields of the expose event.  (#151693,
474         Jim Evins)
475
476 2005-06-15  Matthias Clasen  <mclasen@redhat.com>
477
478         * gdk/x11/gdkcursor-x11.c (gdk_cursor_get_image): Get
479         red and blue in place.
480
481         * gtk/gtkwindow.c (gtk_window_parse_geometry): Fox doc
482         formatting, pointed out by Kjartan Maraas.
483
484         * gtk/gtksettings.c: Add two new settings, 
485         gtk-cursor-theme-name and gtk-cursor-theme-size to
486         control the cursor theme.
487
488         * gdk/x11/gdkevents-x11.c: Add two new X settings,
489         Gtk/CursorThemeName and Gtk/CursorThemeSize, and map
490         these to the gtk settings.
491
492         * tests/testgtk.c (create_cursors): Add a cursor theme
493         testcase.
494
495         * gdk/x11/gdkwindow-x11.[hc]: Keep a reference to the 
496         GdkCursor and add a private getter for it, so that we can 
497         update the cursor when the cursor theme changes.
498         
499         * gdk/gdk.symbols: 
500         * gdk/x11/gdkx.h: 
501         * gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): 
502         New function to change the cursor theme.
503
504         * gdk/x11/gdkwindow-x11.c: Remove a lot of pointless
505         g_return_if_fail() non-NULL checks.
506
507 2005-06-15  Matthias Clasen  <mclasen@redhat.com>
508
509         * gdk/abicheck.sh: Use uniq to filter out duplicates.
510         * gdk/gdk.symbols: Fix a define.
511
512 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
513
514         * gtk/gtkwindow.c (gtk_window_parse_geometry):
515         Fix up the example.  (#307699, Michal Suchanek)
516
517 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
518
519         * gtk/gtkcalendar.c: Update num_marked_dates as we
520         used to do.  (#307689, Thorsten Schoenfeld)
521  
522 2005-06-14  Federico Mena Quintero  <federico@ximian.com>
523
524         Merged from gtk-2-6:
525
526         Fix #302087:
527
528         * gtk/gtkfilechooserdefault.c (list_selection_changed): Emit
529         "selection-changed" and do the normal housekeeping even if we are
530         in SAVE mode and there is nothing selected.  We didn't emit that
531         signal if we were in SAVE mode and unselect_all() got called.
532         (gtk_file_chooser_default_unselect_all): Call
533         pending_select_paths_free() so that we cancel any asynchronous
534         selections.
535         (gtk_file_chooser_default_set_current_name): Likewise.
536
537 2005-06-14  Federico Mena Quintero  <federico@ximian.com>
538
539         Merged from gtk-2-6:
540
541         Fixes #307640:
542
543         * gtk/gtkfilechooserdefault.c
544         (gtk_file_chooser_default_should_respond): Oops, I broke SAVE
545         mode.  If the parent path is a folder, only create a subfolder if
546         we are in CREATE_FOLDER mode; if we are in SAVE mode, just return
547         and respond.  Also, pick up the case where the user types
548         "dirname/" instead of "dirname".
549         (check_save_entry): Make the return type void.  Add some return
550         parameters so that we can do more thorough checking.
551         (gtk_file_chooser_default_get_paths): If the file part is empty
552         and we are in SAVE mode, return an empty selection.
553
554 2005-06-15  Kristian Rietveld  <kris@gtk.org>
555
556         Patch for #163214 (reported by Tommi Komulainen) and fixes some
557         other scrolling/validation related bugs along the why.
558
559         * gtk/gtktreeview.c (gtk_tree_view_size_request): run
560         do_validate_rows once and don't queue a size request there,
561         (gtk_tree_view_size_allocate): don't update vadj value without
562         reason, sync top_row/dy after the window sizes and adjustments
563         are in sync again,
564         (validate_visible_area): always update dy when scrolling,
565         manually set top_row here after changing the vadj (don't depend
566         on _adjustment_changed and top_row/dy sync to do this), since we
567         now always set top_row here correctly, we can always free
568         scroll_to_path at the end which avoids infinite expose loops,
569         (do_validate_rows): add queue_resize boolean, remove top_row/dy
570         sync here, we cannot do it safely at this place since the
571         window sizes and adjustments are out of sync,
572         (validate_rows), (validate_rows_handler): update call to
573         do_validate_rows().
574
575 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
576
577         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_name): Add a 
578         stub for the no-Xcursor case. (noticed by Luis Villa)
579
580         Use named cursors for the DND cursors, the names are "dnd-none",
581         "dnd-copy", "dnd-link", "dnd-move" and "dnd-ask". Also use an RGBA 
582         cursor instead of cursor+window when possible. This saves 
583         roundtrips during the drag operation, and makes translucent icons 
584         possible.
585         
586         * gtk/gtkdndcursors.h: New file, containing inlined pixbufs
587         for the default dnd cursors.
588
589         * gtk/gtkdnd.c (struct _GtkDragSourceInfo): Store the cursors
590         used during the drag here, also store the icon pixbuf here. 
591
592         * gtk/gtkdnd.c (drag_cursors): Store the cursor names here. Also
593         switch the default cursors from xbm to inlined pixbufs. 
594
595         * gtk/gtkdnd.c (gtk_drag_get_cursor): This function now takes the
596         GtkDragSourceInfo as well, since it has to composite the 
597         drag-specific cursors. The cursors combined from the image of
598         the themed cursor and the icon_pixbuf stored in the info.
599
600         * gtk/gtkdnd.c (gtk_drag_begin_internal): Don't set the default
601         icon if there is an icon_pixbuf, which will be composited into
602         the cursor later.
603
604         * gtk/gtkdnd.c (set_icon_stock_pixbuf): If appropriate, store
605         the pixbuf in the info struct for later compositing into the
606         cursor instead of creating an icon window.
607         
608         * gtk/gtkdnd.c (gtk_drag_drop_finished): If we used an
609         RGBA cursor for the drag, and need to display the cancel
610         animation, construct the icon window here.
611
612         * gtk/gtkdnd.c (gtk_drag_source_info_destroy): Unref the 
613         drag-specific cursors and the icon_pixbuf when done with
614         the drag.
615
616 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
617
618         * gtk/gtkcolorsel.c (make_picker_cursor): Use a named cursor
619         with the name "color-picker", when available.
620
621         * gdk/gdk.symbols: 
622         * gdk/gdkcursor.h: 
623         * gdk/x11/gdkcursor-x11.c (gdk_cursor_get_image) 
624         (gdk_cursor_new_from_name): New functions to construct named
625         cursors and to get the image used for a cursor.  
626
627 2005-06-13  Matthias Clasen  <mclasen@redhat.com>
628
629         * gtk/gtkpathbar.[hc]: Rework the way in which rerooting of the
630         path bar is done, implementing the following principles:
631         (#137289, patch by Benjamin Otte)
632         
633         1. Re-root only if $HOME is an ancestor of the current path.
634
635         2. When re-rooting, make sure the Left arrow appears in the path 
636         bar, so that you can navigate up from $HOME to /.  In that case, 
637         make sure the Right arrow doesn't appear if the sub-hierarchy from 
638         $HOME to the cwd fits in the window.
639
640         3. Make sure that hitting Alt-Up takes you always one folder up, 
641         even when the path bar is re-rooted.
642
643         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
644         Try harder not to modify readonly strings. (#307541, Torsten Schoenfeld)
645
646         * gtk/gtkfilechooserbutton.c (model_update_current_folder): 
647         Free the data of the row before overwriting it.  (#307490,
648         Kjartan Maraas)
649
650 2005-06-13  Kjartan Maraas  <kmaraas@gnome.org>
651
652         * gtk/gtkcalendar.c: (calendar_paint_arrow): Don't
653         leak the cairo context. Closes bug #307426.
654
655 2005-06-13  Matthias Clasen  <mclasen@redhat.com>
656
657         Make invisible text work a bit better (#66194, patch by
658         Jeroen Zwartepoorte)
659         
660         * gtk/gtk.symbols:
661         * gtk/gtktextiter.[hc]: Add function to move by
662         visible lines.
663
664         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): 
665         Skip invisible text when moving by paragraphs.
666
667         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_visually): 
668         Skip invisible lines here too.
669
670 2005-06-12  Matthias Clasen  <mclasen@redhat.com>
671
672         * gtk/gtkselection.c (gtk_target_list_add_image_targets): 
673         Don't leak the format names.  (#307190, Morten Welinder)
674
675 2005-06-12  Kjartan Maraas  <kmaraas@gnome.org>
676
677         * gdk/x11/gdkasync.c: (send_event_handler): Plug
678         a leak. Closes bug #307281.
679
680 2005-06-12  Matthias Clasen  <mclasen@redhat.com>
681
682         * gtk/gtkcalendar.c (calendar_paint_header): 
683         (gtk_calendar_size_request): Allow localization of the
684         format in which the year is displayed.  (#135451, Paisa 
685         Seeluangsawat)
686
687         * gdk/*.h: Cleanup.  (#169648, Fabricio Barros Cabral)
688
689         * gdk/gdkcairo.c: Small doc additions.
690
691         * gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row): 
692         Check start_button_mask before starting a drag.  (#149058, 
693         Andreas Volz)
694
695         * gtk/gtkfilesystemunix.c: Support .hidden files.  (#129170,
696         Sayamindu Dasgupta, patch by Jan Arne Petersen)
697
698 2005-06-11  Matthias Clasen  <mclasen@redhat.com>
699
700         * NEWS: Updates.
701
702         * gtk/gtkwidget.c (gtk_widget_set_app_paintable): More docs
703         provided by Owen Taylor.
704
705         * gtk/gtk.symbols: 
706         * gtk/gtkiconview.h: 
707         * gtk/gtkiconview.c (gtk_icon_view_get_visible_range): 
708         Add a function to determine what parts of the model are
709         visible.  (#306726, Jonathan Blandford)
710
711         * gtk/gtkfilesystemunix.c (create_file_info): Treat backup
712         files the same way as hidden files, to be closer to what
713         Nautilus does.  (#136196, Sean Middleditch)
714
715 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
716
717         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
718         Don't modify strings returned from gettext().
719
720 Fri Jun 10 19:06:03 2005  Manish Singh  <yosh@gimp.org>
721
722         * gtk/gtktextdisplay.c (render_para): don't use deprecated
723         gdk_gc_unref function.
724
725 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
726
727         Allow setting paragraph background.  (#81045, Gustavo
728         Carneiro, patch by Jeroen Zwartepoorte)
729         
730         * gtk/gtktextlayout.c (set_para_values): Propagate 
731         pg_bg_color to the display struct.
732         (gtk_text_layout_free_line_display): Free it here.
733
734         * gtk/gtktextdisplay.c (render_para): If pg_bg_color
735         is set, draw a rectangle in that color behind
736         the paragraph.
737
738         * gtk/gtktexttag.c (gtk_text_tag_class_init): Add 
739         paragraph-background, paragraph-background-gdk and
740         paragraph-background-set properties.
741         (set_pg_bg_color): A setter for paragraph-background.
742
743         * gtk/gtktextlayout.h (struct _GtkTextLineDisplay): Add
744         pg_bg_color.
745
746         * gtk/gtktexttag.h (struct _GtkTextAttributes): Add
747         pg_bg_color.
748         (struct _GtkTextTag): Add pg_bg_color_set.
749
750 2005-06-10  Kjartan Maraas  <kmaraas@gnome.org>
751
752         * gdk/gdkcairo.c: (gdk_cairo_set_source_pixbuf): Destroy the
753         cairo surface when done with it. Plugs a fairly large leak in
754         some cases.
755         ==6014== 1999824 (115640 direct, 1884184 indirect) bytes in
756         826 blocks are definitely lost in loss record 25239 of 25250
757         Like this from nautilus.
758
759 2005-06-10  Michael Natterer  <mitch@imendio.com>
760
761         * gtk/gtk.symbols
762         * gtk/gtkaction.[ch] (gtk_action_get_accel_closure): new function
763         to get an action's accel_closure (Fixes #141750 and #148106).
764
765 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
766
767         * gdk/gen-keyname-table.pl: Generate N_() calls for
768         translatable key names.
769
770         * gdk/keynames.txt: Mark some key names as translatable.
771         
772         * gdk/keyname-table.h: Regenerated.
773
774         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): Add
775         some context to the msg ids for keyboard modifiers and
776         key names.
777         (_gtk_accel_label_class_get_accelerator_label): Try to
778         translate key names.  (#300224, Christian Rose)
779
780 2005-06-10  Federico Mena Quintero  <federico@ximian.com>
781
782         Merged from gtk-2-6:
783
784         Fixes #162358:
785
786         * gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't return
787         immediately if we are in CREATE_FOLDER mode, so that we can fill
788         the entry with the newly-selected folder.
789         (gtk_file_chooser_default_set_property): Warn against turning on
790         multiple selection for CREATE_FOLDER mode, or about setting that
791         action while multiple selection is on.
792         (update_chooser_entry): Change the entry's contents as well if we
793         are in CREATE_FOLDER mode.  If nothing is selected, clear the
794         chooser entry.
795         (trap_activate_cb): Don't trap enter/space if modifiers are
796         pressed.  This lets one use Ctrl-space to toggle rows in multiple
797         selection mode.
798         (gtk_file_chooser_default_should_respond): Clean up the if-chain
799         mess of special cases by using an array to determine what to do.
800         Also, for the save-entry case in CREATE_FOLDER mode, actually fix
801         the bug where the file chooser would switch to an existing folder
802         rather than confirming with it, and create the folder ourselves.
803         (error_creating_folder_over_existing_file_dialog): New function.
804
805         * gtk/gtkfilechooserentry.c (check_completion_callback): Only
806         insert the common prefix if we are in an "open" mode.  Use a
807         helper function.
808         (append_common_prefix): New helper function; code moved over from
809         check_completion_callback().
810         (find_common_prefix): New helper function.
811         (gtk_file_chooser_entry_focus): Append the common prefix if the
812         user requests it explicitly.
813
814 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
815
816         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_expand): 
817         * gtk/gtktoolbar.c (gtk_toolbar_get_show_arrow): 
818         * gtk/gtktextview.c (gtk_text_view_get_iter_at_position): 
819         * gtk/gtkstock.c (gtk_stock_set_translate_func): 
820         * gtk/gtkspinbutton.c (gtk_spin_button_get_adjustment): 
821         * gtk/gtkscrolledwindow.h: 
822         * gtk/gtkmenushell.c (gtk_menu_shell_get_take_focus): 
823
824         * gtk/gtkiconview.c (gtk_icon_view_set_margin): 
825         * gtk/gtkicontheme.c (gtk_icon_info_load_icon): 
826         * gtk/gtkcalendar.c (gtk_calendar_thaw): Doc fixes.
827
828 2005-06-09  Matthias Clasen  <mclasen@redhat.com>
829
830         * gdk/x11/gdkwindow-x11.c: Small markup fixes.
831
832         * gtk/gtkwidget.c (gtk_widget_set_app_paintable): Add docs.
833         (#306212, Steve Chaplin, docs provided by Billy Biggs)
834
835         * gtk/gtktextbtree.c (_gtk_text_btree_char_is_invisible): Small 
836         cleanup.  (#305539, Paolo Borelli)
837
838 2005-06-09  Rodrigo Moya <rodrigo@novell.com>
839
840         * configure.in: added cairo to list of $GTK_PACKAGES.
841
842 2005-06-09  Matthias Clasen  <mclasen@redhat.com>
843
844         * gdk/x11/gdkdnd-x11.c (motif_drop_start, xdnd_drop_filter): Update
845         the user time on the window when a drop happens.  (#169364, Alexander
846         Hunziker, patch by Elijah Newren)
847
848         * gdk/x11/gdkwindow-x11.c: Small markup fixes.
849
850         * gtk/gtk.symbols: 
851         * gtk/gtkiconview.h: 
852         * gtk/gtkiconview.c (gtk_icon_view_scroll_to_path): New function
853         to scroll to a path.  (#306838, Jonathan Blandford)
854
855 2005-06-08  Matthias Clasen  <mclasen@redhat.com>
856
857         * gtk/gtkiconview.c (gtk_icon_view_set_cursor): Scroll to the
858         item.  (#306839, Jonathan Blandford)
859
860         * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): Check for
861         negative before appending the index, to avoid double error
862         message.  (#306393, Morten Welinder)
863
864         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
865         Don't crash if search_window is NULL.  (#304914, Victor Osadci,
866         testcase by Olaf Vitters)
867
868         * gtk/gtkimage.c: Make the file property readable.  
869         (#170674, Lorenzo Gil Sanchez)
870
871         
872 2005-06-08  Matthias Clasen  <mclasen@redhat.com>
873
874         * gtk/gtkfilesystem.c (gtk_file_info_get_display_key): Use
875         g_utf8_collate_key_for_filename().
876
877 2005-06-07  Kjartan Maraas  <kmaraas@gnome.org>
878
879         * gtk/gtkfilechooserbutton.c: (update_label_and_image):
880         Merge leak fix from stable. Bug 306754.
881
882 2005-06-05  Tor Lillqvist  <tml@novell.com>
883
884         * gdk/win32/gdkscreen-win32.c
885         (_gdk_windowing_substitute_screen_number): Return NULL unless
886         screen number is zero. We have only one screen on Win32.
887         (gdk_screen_make_display_name): Call gdk_display_get_name() and
888         return that.
889         
890         * modules/engines/Makefile.am
891         * modules/input/Makefile.am: Decide whether to build the
892         ms-windows theme engine based on the GDK backend, not based on
893         platform. (I.e., if building for Cygwin with the X11 backend, we
894         shouldn't build the ms-windows engine, but if building for Cygwin
895         but with the Win32 backend, we should.) Ditto for the IME
896         (Windows) input module. (#305832)
897
898 2005-06-04  Tor Lillqvist  <tml@novell.com>
899
900         * gdk/win32/gdkcursor-win32.c
901         * gdk/win32/gdkwindow-win32.c
902         * gdk/win32/gdkprivate-win32.h: Support full-colour cursors.
903         Support cursors with alpha on XP. Use code in common with the
904         support for alpha icons that already was present. (#306101, Tim
905         Evans)
906
907         * modules/engines/ms-windows/msw_style.c: Render insensitive icons
908         in a way that more closely matches Windows. (#305986, Tim Evans).
909
910         * modules/engines/ms-windows/Makefile.am (LDADDS): Link with
911         gdk-pixbuf.
912
913 2005-06-03  Dom Lachowicz <cinamod@hotmail.com>
914
915         * modules/engines/ms-windows/msw_style.c: Re-sync with gtk-wimp
916         * modules/engines/ms-windows/xp_theme.c: Ditto
917         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Ditto
918
919 Thu May 26 16:43:27 2005 Manish Singh  <yosh@gimp.org>
920
921         * gtk/gtkentrycompletion.h: Add declarations for
922         gtk_entry_completion_{get,set}_popup_single_match.
923
924 2005-05-26  Matthias Clasen  <mclasen@redhat.com>
925
926         * gtk/gtk.symbols: 
927         * gtk/gtkentrycompletion.c: Add a property to suppress the
928         popup for single matches.  (#154711)
929
930         * gtk/gtkentry.c (gtk_entry_completion_timeout): Respect it here.
931
932         * gtk/gtkfilechooserentry.c (_gtk_file_chooser_entry_set_action): 
933         Use it here.
934
935         * gtk/gtktextbtree.c (_gtk_text_btree_tag): Queue the 
936         redisplay after modifying the tag in the btree, otherwise 
937         we end up showing the old tags until the next redraw comes 
938         around.   (#143537, Gary Kramlich, Peter Wainwright)
939
940         * gtk/gtkcombobox.c (gtk_combo_box_list_auto_scroll): Make 
941         autoscrolling work at the bottom of the screen.
942
943 2005-05-26  Maciej Katafiasz  <email@mathrick.org>
944
945         * docs/reference/gtk/tmpl/gtkentry.sgml:
946         Point to GtkTextView instead of GtkText. Fixes bug #305535
947
948 2005-05-26  Sven Neumann  <sven@gimp.org>
949
950         * gtk/gtkselection.c (gtk_selection_data_set_pixbuf): use a less
951         aggressive PNG compression level (bug #305340).
952
953 2005-05-26  Tor Lillqvist  <tml@novell.com>
954
955         * gdk/win32/gdkdrawable-win32.c (_gdk_win32_blit): If blitting
956         from the root window, take the multi-monitor offset into
957         account. (#305511)
958
959 2005-05-25  Matthias Clasen  <mclasen@redhat.com>
960
961         * demos/gtk-demo/appwindow.c (do_appwindow): Set the window
962         icon by name.
963
964         * gtk/gtkfilesystem.c (gtk_file_folder_is_finished_loading): 
965         Remove another C99ism.
966
967         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Draw the 
968         background of rows insensitive when the treeview is insensitive.
969         (pointed out by Billy Biggs)
970
971         * demos/gtk-demo/clipboard.c: Demonstrate image copy-and-paste
972         and DND, and clipboard persistency.
973
974         * gtk/gtkselection.c (gtk_target_list_add_image_targets): 
975         Make sure png comes first, otherwise dnd may use bmp by
976         default, loosing transparency.
977
978 2005-05-25  Michael Natterer  <mitch@imendio.com>
979
980         * gtk/gtktextview.c (blink_cb): block the text_layout's "changed"
981         handler when changing cursor visibility because it would expose
982         the whole paragraph where the cursor is. Instead, expose the
983         cursors' areas manually. (#173047).
984
985         (text_window_invalidate_cursors): new function which exposes the
986         cursors.
987
988         * gtk/gtkstyle.c (draw_insertion_cursor): added comment that the
989         same cursor size calculation is in text_window_invalidate_cursors().
990
991 2005-05-25  Matthias Clasen  <mclasen@redhat.com>
992
993         * demos/gtk-demo/editable_cells.c (create_items_model): Also
994         demonstrate GtkCellRendererProgress.
995
996         * demos/gtk-demo/Makefile.am (demos): 
997         * demos/gtk-demo/combobox.c: Add a demo showing combo box 
998         variations.
999
1000         * demos/gtk-demo/Makefile.am (demos): 
1001         * demos/gtk-demo/pickers.c: Add a demo showing all picker widgets.
1002
1003 2005-05-24  Matthias Clasen  <mclasen@redhat.com>
1004
1005         * demos/gtk-demo/iconview.c (do_iconview): Fix a typo.
1006
1007 2005-05-24  Tor Lillqvist  <tml@novell.com>
1008
1009         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Handle
1010         gtk-alternative-button-order (setting it to TRUE).
1011
1012 2005-05-23  Matthias Clasen  <mclasen@redhat.com>
1013
1014         * gtk/gtktreeview.c (gtk_tree_view_search_init): Remove
1015         an unused variable.  (#305130, Jaap A. Haitsma)
1016
1017         * gtk/gtkfilechooserdefault.c (filter_create): Don't grab
1018         the focus away from the file list when operating the filter
1019         combo with the pointer.  (#304844, Sven Neumann)
1020
1021 2005-05-23  Tor Lillqvist  <tml@novell.com>
1022
1023         * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
1024         GDK_Menu. (#172383, Ivan Wong)
1025
1026         * gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one
1027         of the special cases this function takes care of, use it as
1028         such. This takes care of for instance the Bengali Virama, see bug
1029         #165723.
1030
1031 2005-05-20  Matthias Clasen  <mclasen@redhat.com>
1032
1033         * gtk/gtkimcontextsimple.c (check_table): Avoid a possible
1034         buffer overrun.  (#142444, Leonard Michlmayr)
1035
1036         * gtk/gtkfilesystem.c: Remove C99-isms (#304879, 
1037         Kazuki IWAMOTO)
1038
1039 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
1040
1041         * gtk/gtkfilechooser.c (gtk_file_chooser_remove_shortcut_folder_uri): 
1042         Use the correct function to conver the uri to a path.  (#304565,
1043         Ismael Juma)
1044
1045         * gtk/gtkfilechooserbutton.c (dialog_response_cb): Handle the
1046         Cancel button properly.  (#304234, Sven Neumann)
1047
1048 2005-05-18  Anders Carlsson  <andersca@imendio.com>
1049
1050         * gtk/gtktextview.c: (gtk_text_view_flush_scroll),
1051         (gtk_text_view_update_adjustments), (gtk_text_view_value_changed):
1052         * gtk/gtktextview.h:
1053         If the horizontal adjustment changes because of a change in the
1054         layout width, then do a complete redraw. This is because there
1055         might be right-aligned or centered text that needs to be redrawn.
1056
1057 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
1058         
1059         * gtk/gtkwidget.c (gtk_widget_add_events): Try harder to set
1060         the event masks of descendent windows.  (#169821, Tommi Komulainen)
1061
1062         * gtk/gtktreeview.c (gtk_tree_view_get_drop_column) 
1063         (gtk_tree_view_set_column_drag_info): Fix some errors in the
1064         handling of drop columns.  (#143355, John Finlay)
1065
1066         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): 
1067         Remove the no longer needed workaround.
1068
1069         * gtk/gtkwidget.c (widget_add_child_draw_rectangle): Only collect
1070         allocations of mapped children.
1071
1072         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): 
1073         Add a bug reference.
1074
1075 2005-05-18  Tor Lillqvist  <tml@novell.com>
1076
1077         * gdk/win32/gdkevents-win32.c
1078         * gdk/win32/gdkkeys-win32.c
1079         * gdk/win32/gdkprivate-win32.h: Check the KF_EXTENDED bit in
1080         lParam of WM_KEY* messages to distinguish between left and right
1081         Control and Alt keys. Unfortunately, the right Shift key doesnt
1082         set KF_EXTENDED, so to distinguish between left and right Shift
1083         keys, check the scan code. (#304584)
1084
1085 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
1086
1087         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Warn if
1088         length overflows.  (#161520, Ian Wienand)
1089
1090         * gtk/gtktoolbutton.c (gtk_tool_button_set_icon_name): Fix
1091         parameter names to make gtk-doc happy.
1092
1093         * gtk/gtkscale.c (gtk_scale_class_init): Fix the default
1094         values of draw-value and value-pos to be the values we
1095         actually use in _init. (#304547, Mikael Hallendal)
1096
1097         * gtk/gtkcellrendererpixbuf.c: Support named icons in
1098         cells by adding a icon-name property. (#165777, Anders
1099         Carlsson)
1100
1101         * gtk/gtk.symbols:
1102         * gtk/gtktoolbutton.h: 
1103         * gtk/gtktoolbutton.c (gtk_tool_button_set_icon_name) 
1104         (gtk_tool_button_get_icon_name): Support named icons in 
1105         tool buttons by adding a icon-name property. (#116577, 
1106         Christian Neumair)
1107
1108         * gtk/gtk.symbols: 
1109         * gtk/gtkdnd.h: 
1110         * gtk/gtkdnd.c (gtk_drag_source_set_icon_name) 
1111         (gtk_drag_set_icon_name): New functions to support themed 
1112         drag icons.  (#116577, Christian Neumair)
1113
1114 2005-05-17  Owen Taylor  <otaylor@redhat.com>
1115
1116         * gdk/x11/gdkdrawable-x11.c (gdk_x11_ref_cairo_surface): 
1117         Update to changed cairo interface.
1118
1119         * gdk/x11/gdkdrawable-x11.[ch]:
1120         Add _gdk_x11_drawable_update_size()
1121         
1122         * gdk/x11/gdkwindow-x11.c (gdk_window_resize) 
1123         (gdk_window_move_resize)
1124         * gdk/x11/gdkevents-x11.c (gdk_event_translate): 
1125         Call _gdk_x11_drawable_update_size().
1126
1127 2005-05-17  Matthias Clasen  <mclasen@redhat.com>
1128
1129         * gtk/gtktextview.c (cursor_blinks): Don't blink the cursor
1130         if the text view is not editable.  
1131
1132         * gtk/gtkcombobox.c (gtk_combo_box_list_button_released): Keep
1133         the popup posted if the button is released over the cellview.
1134         This matches the behaviour of other combo box implementations.  
1135         (#171378)
1136         
1137         * gdk/gdkwindow.c (gdk_window_set_bg_pattern): Adjust offsets
1138         when recursing.  (#153682, Felipe Heidrich)
1139
1140 2005-05-16  Matthias Clasen  <mclasen@redhat.com>
1141
1142         * gtk/gtkscale.c (gtk_scale_class_init): Don't bind GDK_Page_Up 
1143         and GDK_Page_Down twice.  (#168333, Hazael Maldonado Torres)
1144
1145         * gtk/gtkentry.c (cursor_blinks): Don't blink the cursor if 
1146         the entry is not editable.  (#304171, Nikos Kouremenos)
1147         
1148         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_constructor): 
1149         Make sure the action of the button and the dialog are in sync,
1150         when the dialog is provided by the app.  (#303987, David A Knight)
1151
1152         * gdk/gdkpango.c (gdk_pango_renderer_get_default): Fix a typo
1153         in the docs.  (#303940, Masao Mutoh)
1154
1155         * configure.in (GTK_DOC_CHECK): Check for gtk-doc 1.4.
1156
1157         * gtk/gtktoggleaction.c (connect_proxy): Be more careful when
1158         casting.  (#304089, Philip Langdale)
1159
1160         * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Only shrink
1161         the label if we need to.  (#169390, Felix Riemann)
1162
1163 Sat May 14 00:07:46 2005  Manish Singh  <yosh@gimp.org>
1164
1165         * gdk/gdkdraw.c
1166         * gdk/gdkpango.c: #include gdkcairo.h for gdk_cairo_create()
1167         declaration.
1168
1169         * gtk/gtkiconview.c (gtk_icon_view_create_drag_icon): actually
1170         call gdk_cairo_set_source_color() with a color.
1171
1172         * gtk/gtkimage.c (gtk_image_expose): remove unused stock_id variable.
1173
1174         * tests/testiconview.c (main): cast args of drag functions to the
1175         appropriate type.
1176
1177 2005-05-13  Owen Taylor  <otaylor@redhat.com>
1178
1179         * gdk/x11/gdkdrawable-x11.c: Update for cairo-xlib API change.
1180
1181         * gdk/x11/gdkpixmap-x11.[ch] gdk/gdk.symbols: Export 
1182         gdk_pixmap_impl_x11_get_type(), needed in gdkdrawable-x11.c.
1183         
1184 2005-05-11  Owen Taylor  <otaylor@redhat.com>
1185
1186         * tests/testgtk.c (on_alpha_window_expose): Fix to use
1187         gdk_cairo_create(). (create_alpha_window): Hook up "response"
1188         to close the window.
1189
1190 2005-05-11  Owen Taylor  <otaylor@redhat.com>
1191
1192         * gtk/gtkcolorbutton.c: Use a GtkAlignment rather than a GtkDrawingArea
1193         to draw the swatch in to avoid having an extraneous window.
1194         
1195         * gtk/gtkcolorsel.c (color_sample_draw_sample): Actually se tthe
1196         color when !has_opacity.
1197
1198 2005-05-10  Owen Taylor  <otaylor@redhat.com>
1199
1200         * gdk/gdkcairo.[ch] gdk/gdkcolor.[ch] gdk/Makefile.am: Add source
1201         files for Cairo convenience functionality.
1202
1203         * gdk/gdkcairo.h (gdk_cairo_rectangle, gdk_cairo_region): Add a
1204         convenience functions to add GdkRectangle, GdkRegion to a cairo path.
1205
1206         * gdk/gdkwindow.c gdk/gdkgc.c gtk/gtkcolorsel.c gtk/gtkiconview.c 
1207         gtk/gtkstyle.c: Use gdk_cairo_rectangle/region().
1208
1209         * gdk/gdkcairo.[ch] gdk/gdkdrawable.h gdk/gdkdraw.c: Rename
1210         gdk_drawable_create_cairo_context() to gdk_cairo_create().
1211
1212         * gdk/gdkcairo.c gdk/gdkpixbuf.h gdk/gdkpixbuf-render.c:
1213         Rename gdk_pixbuf_set_as_cairo_source() to 
1214         gdk_cairo_set_source_pixbuf().
1215
1216         * gdk/gdkdraw.c gdk/gdkpango.c gtk/gtkcolorsel.c gtk/gtkhruler.c
1217         gtk/gtkhsv.c gtk/gtkiconview.c gtk/gtkstyle.c gtk/gtkvruler.c:
1218         Adjust for renames.
1219
1220         * gdk/gdk.symbols: Update.
1221
1222         * gtk/gtkwidget.c (gtk_widget_queue_shallow_draw): Fix 
1223         coordinate system problem that was causing the wrong portions
1224         to be invalidated.
1225
1226         * gtk/gtkcellrenderer.c (gtk_cell_renderer_render)
1227         gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render)
1228         gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_render)
1229         gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render)
1230         gtk/gtkcellview.c (gtk_cell_view_expose)
1231         gtk/gtkdnd.c (gtk_drag_highlight_expose)
1232         gtk/gtkentry.c (gtk_entry_draw_text) 
1233         gtk/gtktextview.c (text_window_invalidate_rect): Some cairoization.
1234
1235         * gtk/gtkcalendar.[ch]: Beat into something roughly resembling
1236         GTK+ style ... use instance-private data and standard names for
1237         private structure, etc. Move function docs inline.
1238
1239         * gtk/gtkcalendar.[ch]: Switch to drawing everything in
1240         expose. Switch drawing to Cairo.
1241
1242         * gtk/gtkcalendar.c (gtk_calendar_freeze): Deprecate
1243         gtk_calendar_freeze/thaw
1244
1245 2005-05-10  Tor Lillqvist  <tml@novell.com>
1246
1247         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Check
1248         that GDK_IS_SCREEN(screen) (like the X11 backend does), not screen
1249         == gdk_screen_get_default(), as that might return NULL when this
1250         function is called.
1251
1252 2005-05-09  Matthias Clasen  <mclasen@redhat.com>
1253
1254         * gtk/gtkalignment.c (gtk_alignment_size_allocate): Flip the
1255         padding in RTL mode.  (#303572, Maciej Katafiasz)
1256
1257 2005-05-09  Owen Taylor  <otaylor@redhat.com>
1258
1259         * gdk/gdkrgb.c (gdk_rgb_convert_0888_br, gdk_rgb_convert_8880_br): 
1260         Fill in unused bits so they can be used for the depth-32 target case.
1261         Rewrite so that that gives a marginal speedup rather than a
1262         marginal slowdown. (on x86)
1263
1264         * gdk/gdkscreen.h gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkvisual-x11.c:
1265         Add gdk_screen_get_rgba_colormap/visual to get a visual for
1266         windows with an alpha channel, if one exists.
1267
1268         * gdk/win32/gdkscreen-win32.c gdk/linux-fb/gdkscreen-fb.c:
1269         Stub out gdk_screen_get_rgba_colormap/visual.
1270
1271         * gdk/x11/gdkcolor-x11.c (gdk_colormap_alloc_colors): computation of
1272         "unused" wasn't right for depth == 32, since it depended on
1273         shifting by 32.
1274
1275         * gdk/gdkrgb.c: Fill in alpha bits with 1s. (Based on patch from
1276         Keith Packard,
1277         http://mail.gnome.org/archives/gtk-devel-list/2004-June/msg00080.html)
1278
1279         * gdk/x11/gdkdrawable-x11.c (gdk_x11_drawable_get_picture):
1280         Implement again, without using Xft.
1281
1282         * tests/testgtk.c: Add a test for windows with an alpha channel.
1283
1284 2005-05-09  Matthias Clasen  <mclasen@redhat.com>
1285
1286         * autogen.sh: Revert accidental commit.
1287
1288 2005-05-08  Matthias Clasen  <mclasen@redhat.com>
1289
1290         * gdk/gdkcolor.c (gdk_cairo_set_source_color): 
1291         * gdk/gdkimage.h: 
1292         * gdk/gdkdraw.c: 
1293         * gdk/gdkcolor.h: 
1294         * gdk/gdkcursor.h: 
1295         * gdk/x11/gdkcolor-x11.c: Small documentation additions.
1296
1297 2005-05-07  Matthias Clasen  <mclasen@redhat.com>
1298
1299         * gtk/gtkscrolledwindow.h: 
1300         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_get_hscrollbar): 
1301         (gtk_scrolled_window_get_cscrollbar): Change the return 
1302         type to GtkWidget*, proposed by Owen Taylor. 
1303
1304         * gdk/x11/gdkscreen-x11.c (gdk_screen_get_width_mm) 
1305         (gdk_screen_get_height_mm): Fix typos in the docs.  (#303389,
1306         Masao Mutoh)
1307
1308 2005-05-07  Matthias Clasen <mclasen@redhat.com>
1309
1310         * gtk/gtkiconview.c: Fix a copy-and-paste accident, spotted
1311         by Owen Taylor.
1312
1313 2005-05-07  Owen Taylor  <otaylor@redhat.com>
1314
1315         * gdk/gdkgc.c (gc_get_foreground): Get the foreground color, not
1316         the background color.
1317
1318 2005-05-07  Owen Taylor  <otaylor@redhat.com>
1319
1320         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf.h (gdk_pixbuf_set_as_cairo_source): 
1321         Change prototype to match cairo_set_source_surface().
1322
1323         * gdk/gdkdraw.c gdk/gdkgc.c gdk/gdkpixbuf-render.c gdk/gdkwindow.c
1324         gtk/gtkhsv.c tests/testcairo.c.
1325
1326 2005-05-06  Federico Mena Quintero  <federico@ximian.com>
1327
1328         Merged from gtk-2-6:
1329
1330         * gtk/gtkfilesystemunix.c (fill_in_mime_type): Don't fill the mime
1331         types if this is an AFS directory.
1332         (fill_in_names): If we are in an AFS directory, set the MIME type
1333         blindly to "x-directory/normal".
1334
1335 2005-05-06  Matthias Clasen  <mclasen@redhat.com>
1336
1337         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): Always
1338         initialize child-visible to FALSE, otherwise we may end up
1339         with the wrong page visible initially.  (#302283, Patrik Fimml)
1340
1341         * gtk/gtktreeview.c (gtk_tree_view_draw_arrow): Make expanders
1342         appear insensitive in insensitive treeviews. 
1343
1344 2005-05-05  Matthias Clasen  <mclasen@redhat.com>
1345
1346         * gtk/gtktoolbar.c: Fix a typo in the docs.  (#303024, 
1347         Morten Welinder)
1348
1349 2005-05-06  Matthias Clasen  <mclasen@redhat.com>
1350
1351         * gtk/gtk.symbols:
1352         * gtk/gtkiconview.[hc]: Add DND support similar to the DND
1353         support in the tree view.  (#150270)
1354
1355 2005-05-05  Matthias Clasen  <mclasen@redhat.com>
1356
1357         * gtk/gtktreednd.h: 
1358         * gtk/gtkwidget.h: Small cleanups.
1359
1360         * gtk/gtktreeview.c (gtk_tree_view_get_dest_row_at_pos): Fix
1361         a typo.
1362
1363 2005-05-04  Owen Taylor  <otaylor@redhat.com>
1364
1365         * gdk/x11/gdkevents-x11.c gdk/x11/gdkwindow-x11.h: Fix a bug
1366         in focus tracking when we move between has_pointer_focus and 
1367         has_focus_window directly. (#109246, Billy Biggs, Niko Tyni 
1368         and others)
1369
1370         * gdk/x11/gdkevents-x11.c: Also fix some confusion that could
1371         happen in the case of no window manager + keyboard grabs, by
1372         moving to a more consistent model of when we pay attention to
1373         mode=NotifyGrab/NotifyUngrab events.
1374         
1375         * docs/focus_tracking.txt: Extensive writeup about how to track
1376         focus under X11.
1377
1378 Wed May  4 13:21:41 2005  Søren Sandmann  <sandmann@redhat.com>
1379
1380         * tests/testcairo.c (draw): Replace cairo_show_surface() uses with
1381         cairo_set_source_surface()/cairo_paint();
1382
1383 2005-05-04  Tor Lillqvist  <tml@novell.com>
1384
1385         * gdk/win32/gdkdrawable-win32.c (generic_draw, blit_from_pixmap)
1386         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_values_to_win32values,
1387         _gdk_win32_gc_new, _gdk_windowing_gc_set_clip_region,
1388         gdk_win32_hdc_get): Minor fixes to make Win32 backend compile
1389         again.
1390
1391 2005-05-03  Matthias Clasen  <mclasen@redhat.com>
1392
1393         * gtk/gtkfilesystem.c: 
1394         * gtk/gtkcelleditable.c: 
1395         * gtk/gtktreemodel.c: Avoid getting the interface struct
1396         twice in the same function.  (#300513, Billy Biggs)
1397
1398         * gtk/gtkscrolledwindow.h:
1399         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_get_vscrollbar): 
1400         * gtk/gtk.symbols: Add getters for the scrollbars.  (#167181,
1401         Billy Biggs)    
1402
1403         * gtk/gtkdialog.h: 
1404         * gtk/gtkdialog.c (gtk_dialog_get_response_for_widget): 
1405         Make this function public.  (#170748, Morten Welinder)
1406
1407 2005-05-02  Federico Mena Quintero  <federico@ximian.com>
1408
1409         Merged from gtk-2-6:
1410
1411         Fixes #301068:
1412
1413         * gtk/gtkfilesystemunix.c (struct _GtkFileSystemUnix): Add fields
1414         to store struct stat for /afs and /net, and boolean fields to say
1415         whether these are valid.
1416         (struct _GtkFileFolderUnix): Added a boolean is_network_dir field.
1417         (gtk_file_system_unix_get_folder): Fill in the is_network_dir
1418         field of the folder structure.
1419         (fill_in_names): If the folder is a network directory, create a
1420         fake struct stat for its entries.
1421         (fill_in_stats): Don't stat() the children of network directories.
1422
1423         * gtk/gtkfilechooserdefault.c (list_mtime_data_func): If the mtime
1424         is 0, use "Unknown" for the cell's displayed text.
1425
1426 2005-04-28  Owen Taylor  <otaylor@redhat.com>
1427
1428         * gtk/gtkwidget.c: Add a draw-border style property to allow
1429         themes to draw outside the widget's allocation.
1430
1431         * gdk/gdkwindow.c gtk/gtkstyle.c: Remove some save/restore pairs
1432         that were working around the clip-leakage bug in Cairo.
1433
1434         * gtk/gtkstyle.c: Use cairo_fill_preserve() rathe than
1435         save/fill/restore.
1436
1437         * gdk/gdkgc.c gdk/gdkinternals.h: Add _gdk_gc_update_context()
1438         That updates a Cairo context to match a GC.
1439
1440         * gdk/gdkdraw.c: Use _gdk_gc_update_context() to add support
1441         for tiles/stipples/clipping to gdk_draw_glyphs(), 
1442         gdk_draw_trapezoids().
1443
1444         * gdk/gdkpango.c: Use _gdk_gc_update_context() instead of internal
1445         implementation of stipples. Use one cairo_t across the entire
1446         drawing operation. Replace cairo_matrix_create() with 
1447         stack-allocated matrices.
1448
1449         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c 
1450         gdk/win32/gdkgc-win32.c: Save various aspects of the 
1451         GC state (fill, tile, stipple, foreground, background, clip region)
1452         in instance-private-data for future use. Add getters.
1453         Get rid of _gdk_windowing_gc_get_foreground() function implemented 
1454         by the backends.
1455
1456         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c
1457         gdk/win32/gdkgc-win32.c gdk/linux-fb/gdkgc-fb.c: Add
1458         _gdk_gc_init() to do initial setup of the GC from values;
1459         fixes some problems from drawable redirection.
1460
1461         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c
1462         gdk/win32/gdkgc-win32.c gdk/linux-fb/gdkgc-fb.c: Move 
1463         gdk_gc_copy() and gdk_gc_set_clip_{region,rectangle}() into 
1464         the generic code, add _gdk_windowing_gc_copy(), 
1465         _gdk_windowing_gc_set_clip_region() to do backend specific
1466         stuff.
1467
1468         * gdk/x11/{gdkprivate-x11.h,gdkgc-x11.c.c,gdkdrawable-x11.c}
1469         gdk/win32/{gdkprivate-win32.h,gdkgc-x11.c.c,gdkdrawable-x11.c}
1470         gdk/linux-fb/{gdkprivate-fb.h,gdkgc-fb.c.c,gdkdrawable-fb.c}:
1471         Don't duplicate state that now is stored by the generic code.
1472
1473         * gdk/gdk.symbols Update
1474
1475 2005-05-02  Matthias Clasen  <mclasen@redhat.com>
1476
1477         * tests/testiconview.c: Test cell renderers.
1478
1479         * gtk/gtk.symbols: Add new functions.
1480
1481         * gtk/gtkiconview.[hc]: Implement GtkCellLayout and use
1482         cell renderers for drawing and editing. (#148144, #160242)
1483
1484 2005-05-02  Matthias Clasen  <mclasen@redhat.com>
1485
1486         * gtk/gtkcellrenderertext.c (get_size): Return a sufficient
1487         width for cases where pango_layout_get_pixel_extents() returns
1488         a rectangle with nonzero x. 
1489
1490         * gtk/gtkselection.c: Small doc fixes.
1491
1492         * gtk/gtkmenushell.c (gtk_menu_shell_set_take_focus): 
1493         (gtk_menu_shell_get_take_focus): Fix up the docs a bit.
1494
1495 2005-05-02  Michael Natterer  <mitch@imendio.com>
1496
1497         * gtk/gtkmain.c (do_post_parse_initialization): return silently if
1498         "gtk_initialized" is TRUE. Re-enables calling GTK's init functions
1499         multiple times when using gtk_get_option_group(), just as one can
1500         call gtk_init() multiple times without doing any harm.
1501
1502 2005-05-01  Matthias Clasen  <mclasen@redhat.com>
1503
1504         * gtk/gtktextview.c (gtk_text_view_expose_event): Propagate
1505         the event to unanchored children in the text window.  
1506         (#302494, Stephen Kennedy)
1507
1508 2005-04-30  Tor Lillqvist  <tml@novell.com>
1509
1510         * gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Take
1511         multi-monitor offset into account. (#302525)
1512
1513 2005-04-29  Matthias Clasen  <mclasen@redhat.com>
1514
1515         * gtk/gtkradioaction.c: Make the docs build.  (#302230,
1516         Ali Akcaagac)
1517
1518         * gtk/gtkiconview.c (gtk_icon_view_map): Get rid of this
1519         function, instead show the bin_window when it is created.
1520
1521         * gtk/gtkradiobutton.c (gtk_radio_button_focus): Don't 
1522         grab focus to unrealized widgets.  (#302240, Philip Langdale)
1523
1524         * gtk/gtktreeview.c (gtk_tree_view_state_changed): Set
1525         background upon state changes.  (#301651, Billy Biggs)
1526         (gtk_tree_view_get_path_at_pos): Take RTL into account
1527         when iterating over the columns.  (#302163)
1528         
1529         * configure.in: Check for nm.
1530
1531         * gtk/Makefile.am: Use $(NM), not nm directly. (#301299, 
1532         Nguyen Thai Ngoc Duy)
1533
1534         * gtk/gtkiconview.c (gtk_icon_view_move_cursor_start_end): Use
1535         the internal unselect_all function, since we need the unselection
1536         to happen even in browse mode.  (#300995, Mathias Hasselmann)
1537
1538         * gtk/gtkuimanager.c (update_node): Use g_object_notify() instead
1539         of triggering a ::notify by re-setting the property.  (#300982,
1540         Sven Neumann)
1541
1542         * gtk/gtkaction.c (connect_proxy): Use gtk_action_sync_tooltip().
1543
1544         * gtk/gtkiconview.c (gtk_icon_view_scroll_to_item): Also
1545         scroll horizontally when necessary, and keep the northwest
1546         corner of the item visible.  (#300913, Mathias Hasselmann)
1547
1548         * tests/testiconview.c: Add some more tests.
1549
1550         * gtk/gtkiconview.c (gtk_icon_view_select_path): Don't crash
1551         if the path does not point to a row in the model.  (#300909,
1552         Mathias Hasselmann)
1553         (gtk_icon_view_rows_reordered): Re-layout here.  (#301009, 
1554         Mathias Hasselmann)
1555
1556         * tests/testtext.c: Add some more attribute tests.
1557
1558         * gtk/gtktexttag.c (gtk_text_tag_class_init): Correct the documentation
1559         of the rise property. String change, but it is more important to
1560         be correct than to be translated.  (#301740)
1561
1562 2005-04-25  Tor Lillqvist  <tml@novell.com>
1563
1564         * gtk/gtkfilesystemwin32.c
1565         (gtk_file_system_win32_volume_get_display_name): Get volume name
1566         also on Win9x. (#301798, Daniel Atallah)
1567         (canonicalize_filename): Add explicit braces to silence compiler
1568         warning.
1569
1570 2005-04-22  Tor Lillqvist  <tml@novell.com>
1571
1572         * gtk/gtkmain.c: Initailize gettext before use. Calling
1573         bindtextdomain() and bind_textdomain_codeset() in
1574         do_post_parse_initialization() is too late. Put the calls in a new
1575         function gettext_initialization(), and call that from
1576         gtk_init_with_args() and gtk_parse_args(). Fixes #170948 for
1577         GTK+'s part, but the same problem occurs also at least in
1578         atk. Thanks to Robert Ögren, Daniel Atallah and Kevin Stange.
1579
1580 2005-04-19  Ivan, Wong Yat Cheung  <email@ivanwong.info>
1581
1582         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Match
1583         character height instead of cell height. Fix #301228.
1584
1585 2005-04-18  Federico Mena Quintero  <federico@ximian.com>
1586
1587         Merged from gtk-2-6:
1588
1589         * gtk/gtkfilechooserdefault.c (remove_selected_bookmarks): Remove
1590         obsolete assertion that the selected row can't be a volume; this
1591         is handled by the "removable" column now.  Fixes #301017.
1592
1593 2005-04-18  Owen Taylor  <otaylor@redhat.com>
1594
1595         * gtk/gtkstyle.c gtk/gtkcolorsel.c gtk/gtkhsv.c gtk/gtkiconview.c
1596         * gdk/gdkcolor.c gdk/gdkwindow.c gdk/gdkpixbuf-render.c
1597         gdk/gdkpango.c tests/testcairo.c: Update to new Cairo API for
1598         setting color and opacity. (#301066, Vincent Noel)
1599  
1600 2005-04-15  Federico Mena Quintero  <federico@ximian.com>
1601
1602         Merged from gtk-2-6:
1603
1604         * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
1605         Patch from Christian Neumair <chris@gnome-de.org>; only select the
1606         first row if we are in OPEN mode.  The only other case we were
1607         letting pass through was SELECT_FOLDER, but selecting the first
1608         row when changing folders confuses people when folders are
1609         actually being selected.  Fixes #171885.
1610
1611 2005-04-13  Matthias Clasen  <mclasen@redhat.com>
1612
1613         * gtk/gtkimage.c (gtk_image_calc_size, gtk_image_expose): 
1614         Revert the fix for #169870, adjust the documentation instead. 
1615
1616         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
1617         Revert the fix for #170727.     
1618
1619 2005-04-11  Ivan, Wong Yat Cheung  <email@ivanwong.info>
1620
1621         Fix #300218:
1622
1623         * gdk/win32/gdkselection-win32.c (gdk_selection_convert): Fix
1624         C99ism.
1625
1626         * gtk/updateiconcache.c: Guard inclusion of unistd.h and
1627         utime.h.
1628
1629 2005-04-09  Matthias Clasen  <mclasen@redhat.com>
1630
1631         * gdk/x11/gdkinput-xfree.c:
1632         * gdk/x11/gdkinput-none.c:
1633         * gdk/gtk.symbols: Some more fixes necessary to 
1634         make building with gcc 4 work.
1635
1636         Add 16x16 versions of the zoom icons and of 
1637         GTK_STOCK_INDEX. Some of the images were taken from 
1638         the hicolor icon theme, and were originally created 
1639         by Jakub Steiner and Tuomas Kuosmanen.  (#167515, 
1640         Vincent Noel)
1641         
1642         * gtk/stock-icons/stock_index_16.png:
1643         * gtk/stock-icons/stock_zoom_1_16.png:
1644         * gtk/stock-icons/stock_zoom_fit_16.png:
1645         * gtk/stock-icons/stock_zoom_in_16.png:
1646         * gtk/stock-icons/stock_zoom_out_16.png: New images.
1647         
1648         * gtk/stock-icons/Makefile.am: Add the new images. 
1649
1650         * gtk/gtkimage.c (gtk_image_calc_size, gtk_image_expose): 
1651         Don't display too many broken images.  (#169870, Roman
1652         Kagan, patch by Ivan Wong)
1653
1654         * gtk/gtkwidget.c (gtk_widget_unparent): Remove debugging
1655         output.  (#300013, Tommi Komulainen)
1656
1657 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
1658
1659         * gtk/gtkimage.c (gtk_image_expose, gtk_image_calc_size): 
1660         If a stock_id is unknown, display the missing image. (#169870,
1661         Steven Walter)
1662
1663         * gtk/gtkiconcache.c (icon_name_hash): Use the same function 
1664         as in updateiconcache.c.  (spotted by Morten Welinder)
1665
1666 2005-04-08  Carl Worth  <cworth@cworth.org>
1667
1668         * gdk/gdkpango.c: (emboss_context): Simplify matrix manipulation
1669         now that cairo exposes the cairo_matrix_t structure.
1670         
1671         * gdk/gdkpixbuf-render.c: (gdk_pixbuf_set_as_cairo_source): Track
1672         cairo API change in signedness of data argument.
1673
1674 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
1675
1676         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Make this
1677         work when called from gtk_combo_box_destroy().  (#172999,
1678         Christian Persch)
1679
1680 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
1681
1682         Fix double-click to autosize treeview columns. This was
1683         probably broken since 2.2 ! (#169675)
1684         
1685         * gtk/gtktreeview.c (gtk_tree_view_button_press): Leave the
1686         "user-resized" state of the column on a double-click to
1687         autosize.
1688         (gtk_tree_view_button_press, gtk_tree_view_motion_resize_column): 
1689         Enter the "user-resized" state of the column only if a drag
1690         actually changes the column width, not on any click.
1691
1692 2005-04-07  Matthias Clasen  <mclasen@redhat.com>
1693
1694         * gtk/gtkmenu.c (gtk_menu_paint): Allow setting background
1695         images on menus.  (#169532, Benjamin Otte)
1696         
1697         * gtk/updateiconcache.c (write_card16, write_card32): Avoid
1698         unaligned access.  (#172947)
1699
1700         * gtk/gtkfilechooserdefault.c (file_list_build_popup_menu): 
1701         Consistently use the term "Bookmarks" in the UI.  (#166906,
1702         Sebastian Bacher)
1703
1704         Some fixes from Morten Welinder (#172947):
1705         
1706         * gtk/updateiconcache.c (icon_name_hash): Make this compiler- 
1707         and platform-independent.
1708         (is_cache_up_to_date): Don't compare mtimes is a stat call failed.
1709         (build_cache): Error out if a stat fails.  
1710
1711 2005-04-07  Matthias Clasen  <mclasen@redhat.com>
1712
1713         * gtk/gtktreeview.c (gtk_tree_view_set_expander_column): Add 
1714         a hint about hiding expanders.
1715
1716         * gtk/updateiconcache.c (is_cache_up_to_date): Return 
1717         TRUE if the cache is newer than the directory.  (#172852,
1718         Jacob Kroon)
1719
1720         * configure.in: Replace an explicit pkg-config by 
1721         $PKG_CONFIG.  (#168074, Hans-Wolfgang Loidl)
1722         
1723         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): 
1724         Ignore regions which fall completely outside the line.  
1725         (#165862, Felipe Heidrich)
1726
1727 2005-04-06  Matthias Clasen  <mclasen@redhat.com>
1728
1729         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Document
1730         -1 as possible value.  
1731         (gtk_tree_view_enable_model_drag_source) 
1732         (gtk_tree_view_enable_model_drag_dest): Pass the target list 
1733         to the underlying dnd implementation, otherwise we miss the 
1734         target info in the drag-data-received signal.  (#164085, Jorn
1735         Baayen)
1736
1737 2005-04-06  Matthias Clasen  <mclasen@redhat.com>
1738
1739         * gtk/gtktreeview.c (gtk_tree_view_motion_resize_column) 
1740         (gtk_tree_view_bin_expose): Avoid a few unnecessary calls
1741         to gdk_window_get_pointer(). (#168015, Billy Biggs)
1742
1743         * po/.cvsignore, po-properties/.cvsignore: Remove
1744         Makefile.in.in.  (#171092, Stepan Kasal)
1745
1746         * gtk/gtkrc.c (gtk_rc_parse_style): Don't modify 
1747         scanner->value, copy it first.  (#165693, Tommi Komulainen)
1748
1749 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
1750
1751         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_grab_focus): 
1752         * gtk/gtkcombobox.c (gtk_combo_box_grab_focus): Implement
1753         grab_focus for GtkComboBox and GtkComboBoxEntry.  (#171912,
1754         Gustavo Carneiro)
1755
1756         * gtk/gtkicontheme.c: Store icon caches along with the
1757         mtimes of the toplevel directories. The previous
1758         mechanism of a hashtable-per-theme caused duplicate icon
1759         caches for the same toplevel directory to be created.  
1760         (#170030)
1761
1762 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
1763
1764         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_build_level): 
1765         Fix a typo in a warning.
1766
1767         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Protect
1768         the license and credits buttons from being affected by 
1769         gtk_widget_show_all().  (#172724)
1770
1771 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
1772
1773         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): Keep a 
1774         reference to the item.  (#167920, Hazael Maldonado Torres)
1775
1776         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Add some
1777         more docs on interactive search.
1778
1779 2005-04-05  Tor Lillqvist  <tml@novell.com>
1780
1781         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Handle 16 colour
1782         display mode. For some reason, in this mode GetDeviceCaps(BITSPIXEL)
1783         returns 1 (but GetDeviceCaps(NUMCOLORS) does return 16). (#143415)
1784
1785         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Don't force
1786         24bpp GdkVisual on 32bpp displays. (#140706)
1787
1788 Mon Apr  4 19:13:23 2005  Jonathan Blandford  <jrb@redhat.com>
1789
1790         Fix for #172319, Tristan Van Berkom:
1791         
1792         * gtk/gtktreeview.c (gtk_tree_view_expand_all): change to use
1793         gtk_tree_view_real_expand_row() instead of doing this by hand.
1794
1795 2005-04-04  Johan Dahlin  <johan@gnome.org>
1796
1797         * gtk/gtktextbuffer.c: (gtk_text_buffer_class_init),
1798         (gtk_text_buffer_set_property), (gtk_text_buffer_get_property),
1799         (gtk_text_buffer_set_text): Add GtkTextBuffer::text (#172631)
1800
1801 Mon Apr  4 14:33:55 2005  Manish Singh  <yosh@gimp.org>
1802
1803         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_get_active_text):
1804         cast combo->priv->entry to GTK_ENTRY()
1805
1806         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
1807         cast completion->priv->tree_view to GTK_TREE_VIEW()
1808
1809 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
1810
1811         * gtk/gtktextbuffer.c: Some trivial doc fixes.
1812
1813         * gtk/gtkwidget.c (gtk_widget_set_redraw_on_allocate): Improve 
1814         the wording of the doc comment.  (#172422, Vincent Untz)
1815
1816 2005-04-04  Owen Taylor  <otaylor@redhat.com>
1817
1818         * gtk/gtkstyle.c (gtk_default_draw_expander): Covert expander
1819         drawing to Cairo. Also always draw the entire triangle instead
1820         of just drawing the center for prelight. (Fixes inconsistent
1821         drawing in GtkTreeView.)
1822
1823 2005-04-04  Johan Dahlin  <johan@gnome.org>
1824
1825         * gtk/gtk.symbols: Remove symbols accidentally added.
1826         * gtk/gtkentryprivate.h: Add boolean property popup_set_width
1827         * gtk/gtktoggletoolbutton.c: (gtk_toggle_tool_button_class_init):
1828         Use object_class instead of gobject_class
1829
1830 Mon Apr  4 12:14:35 2005  Søren Sandmann  <sandmann@redhat.com>
1831
1832         * gtk/gtkmenu.c (gtk_menu_handle_scrolling): Translate x, y into
1833         widget coordinates instead of root coordinates. Patch from Jorn
1834         Baayen. (#172236)
1835
1836 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
1837
1838         * gtk/gtktoolbar.c: Add a tooltips property.
1839
1840         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_class_init): 
1841         * gtk/gtkruler.c (gtk_ruler_class_init): Add docs.
1842
1843         * gtk/gtktoggletoolbutton.c: Add an active property.
1844
1845 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
1846
1847         Allow completion popups to be wider than the entry. (#131916, 
1848         Ross Burton)
1849         
1850         * gtk/gtkentrycompletion.[hc]: Add a boolean popup-set-width property.
1851
1852         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
1853         Don't force the popup to have the same width as the entry if 
1854         popup-set-width is FALSE.
1855
1856         * gtk/gtk.symbols: Add new functions.
1857
1858 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
1859
1860         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
1861         Use gtk_accel_map_change_entry(), so that reusing the same
1862         action name works.  (#170727, Paolo Borelli)
1863
1864 2005-04-04  Tor Lillqvist  <tml@novell.com>
1865
1866         * gdk/win32/gdkmain.c (_gdk_win32_cf_to_string): New debugging
1867         function, to log a clipboard format name symbolically.
1868         (_gdk_win32_data_to_string): Also new, to log random data bytes.
1869
1870         Implement delayed rendering on Win32, specifically for transfering
1871         images through the clipboard from GTK+ apps to other
1872         apps (#168173, implementation by Ivan Wong):
1873
1874         * gdk/win32/gdkevents-win32.c (gdk_event_translate): 
1875         Handle WM_RENDERFORMAT.
1876
1877         * gdk/win32/gdkprivate-win32.h
1878         * gdk/win32/gdkglobals-win32.c: Add _format_atom_table,
1879         _delayed_rendering_data and _image_bmp.
1880
1881         * gdk/win32/gdkmain-win32.c: Initialize _image_bmp.
1882
1883         * gdk/win32/gdkproperty-win32.c (gdk_property_change):
1884         Accept formats other than GDK_TARGET_STRING or _utf8_string, and
1885         assume they are handled through delayed rendering.
1886
1887         * gdk/win32/gdkselection-win32.c (gdk_selection_convert):
1888         Return all available formats (including those registered by GTK+
1889         apps) on request_targets.
1890         (gdk_selection_property_get): We should append a zero byte like
1891         X11 does.
1892         (gdk_win32_selection_add_targets): New function, for
1893         gtkselection's use. Win32 requires that the clipboard owner
1894         registers all valid formats even if the owner wants delayed
1895         rendering.
1896         (_gdk_win32_selection_convert_to_dib): New function. Convert
1897         images to DIB using gdk-pixbuf.
1898
1899         * gdk/win32/gdkwin32.h: Declare gdk_win32_selection_add_targets().
1900
1901         * gtk/gtkselection.c (gtk_selection_add_target,
1902         gtk_selection_add_targets): Call gdk_win32_selection_add_targets()
1903         to register target formats.
1904
1905         * gdk/gdk.symbols: Add gdk_win32_selection_add_targets().
1906
1907 2005-04-03  Hans Breuer  <hans@breuer.org>
1908
1909         [merged from gtk-2-6 branch]
1910         * gdk/win32/gdkdrawable-win32.c : let dash_offset shift the start of
1911         the line pattern not the start of the line. Fixes bug #171641.
1912
1913         * gtk/makefile.msc.in : follow .symbols changes
1914
1915         * gdk/win32/gdkwindow-win32.c : declare and resolve GetAncestor()
1916         dynamically. (It is not available in _WIN_VER <= 0x0400)
1917
1918         * gdk/win32/makefile.msc : removed gdkpango-win32.obj
1919
1920         * gtk/gtkhsv.c gtk/gtkstyle.c : use G_PI instead of M_PI
1921
1922         [also applied to gtk-2-6 branch]
1923         * gdk/makefile.msc gdk-pixbuf/makefile.msc : handle gdk*alias.def
1924
1925         * gdk/makefile.msc.in : add gtkmnemonichash.obj
1926
1927         * test/testgtk.c(set_parent_signal) : use g_message instead of
1928         g_print to keep the 'testgtk --bench=all' output clean
1929
1930 2005-04-03  Matthias Clasen  <mclasen@redhat.com>
1931
1932         * gtk/gtkruler.c: Add a "metric" property.
1933
1934         * gtk/gtkradiomenuitem.c: Add a "group" property like
1935         the one found in radio buttons.
1936
1937         * gtk/gtkradiobutton.c (gtk_radio_button_class_init): Fix
1938         a typo in the docs.
1939         (gtk_radio_button_set_group): Add change notification.
1940         
1941 2005-04-01  Matthias Clasen  <mclasen@redhat.com>
1942
1943         * gtk/gtkselection.c: Move documentation inline, document
1944         if add_target functions append or prepend.  (#172350, 
1945         Jon-Kare Hellan)
1946
1947 2005-04-01  Matthias Clasen  <mclasen@redhat.com>
1948
1949         Make gtk_combo_box_get_active_text do the right thing for
1950         GtkComboBoxEntry (#171373, Robert Staudinger)
1951         
1952         * gtk/gtkcombobox.h: Add a get_active_text vfunc.
1953         
1954         * gtk/gtkcombobox.c (gtk_combo_box_real_get_active_text): And
1955         implement it here.
1956
1957         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_get_active_text): 
1958         Implement get_active_text by always returning the content of 
1959         the entry.
1960
1961 2005-03-31  Sven Neumann  <sven@gimp.org>
1962
1963         Merged from gtk-2-6:
1964
1965         * gtk/gtkbutton.c
1966         * gtk/gtkiconview.c: fixed gtk-doc comments.
1967
1968 2005-03-31  Michael Natterer  <mitch@gimp.org>
1969
1970         Allow to pop up menus without grabbing the keyboard. Useful for
1971         stuff like virtual keyboards. Fixes bug #159890
1972
1973         * gtk/gtk.symbols
1974         * gtk/gtkmenushell.[ch]: added boolean property "take-focus"
1975         and public API gtk_menu_shell_set/get_take_focus().
1976
1977         * gtk/gtkmenu.c (gtk_menu_popup)
1978         (popup_grab_on_window): don't grab the keyboard if take_focus
1979         is FALSE.
1980
1981         * gtk/gtkmenuitem.c (_gtk_menu_item_popup_submen): propagate the
1982         parent menu_shell's take_focus property to the submenu which is
1983         about to be popped up.
1984
1985 2005-03-30  Federico Mena Quintero  <federico@ximian.com>
1986
1987         Merged from gtk-2-6:
1988
1989         Fix #170755:
1990
1991         * gtk/gtktreeview.c (gtk_tree_view_row_changed): Only stop editing
1992         if the row which changed is the same as the row being edited.
1993
1994 2005-03-30  Matthias Clasen  <mclasen@redhat.com>
1995
1996         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
1997         Make enable_search control only typeahead, not C-f.  (#170435,
1998         Sven Neumann)
1999         (gtk_tree_view_start_interactive_search): Pass keybinding == TRUE.
2000
2001         * gdk/gdkpixbuf.h: Include cairo.h
2002
2003         * gtk/gtkclipboard.c (gtk_clipboard_set_can_store): 
2004         Don't accept n_targets == -1.
2005         (clipboard_unset): unref the old_data, not the
2006         user_data which we have just cleared.  (#172038, Sven
2007         Neumann)
2008
2009         * gtk/gtkcombobox.c (gtk_combo_box_popup): Don't 
2010         segfault if somebody tries to popup an unrealized
2011         combo box.  (#172031, Felipe Heidrich)
2012
2013 2005-03-30  Tor Lillqvist  <tml@novell.com>
2014
2015         * gdk/win32/gdkevents-win32.c (build_pointer_event_state): The
2016         state field should represent the state before the event, like on
2017         X11. (#169753)
2018         (gdk_event_translate): Fix event filter handling. If an event
2019         filter (global, client message filter, of window-specific) returns
2020         GDK_FILTER_CONTINUE, continue as if nothing happened. If it
2021         returns GDK_FILTER_REMOVE or GDK_FILTER_TRANSLATE, return TRUE
2022         from gdk_event_translate() which means that DefWindowProc() will
2023         not be called.
2024         (gdk_event_translate): Fix client message handling. Append a
2025         GDK_CLIENT_EVENT unless there is a filter that matches and returns
2026         something other than GDK_FILTER_CONTINUE. (#135552)
2027
2028 2005-03-29  Matthias Clasen  <mclasen@redhat.com>
2029
2030         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_set_visible_func): 
2031         Document the need to refilter if parameters of the visibility function
2032         change.  (#169516, Olivier Sessink)     
2033
2034 Mon Mar 28 15:13:42 2005  Søren Sandmann  <sandmann@redhat.com>
2035
2036         * gdk/gdkwindow.c (gdk_window_invalidate_maybe_recurse): Don't
2037         invalidate areas that are covered by mapped input-output child
2038         windows. Bug 141380.
2039
2040 2005-03-28  Jeroen Zwartepoorte  <jeroen.zwartepoorte@gmail.com>
2041
2042         * gtk/gtkfilechooserdefault.c: (update_preview_widget_visibility): Make
2043         the preview label ellipsize so the dialog layout stays constant.
2044         (#171398)
2045
2046 2005-03-28  Matthias Clasen  <mclasen@redhat.com>
2047
2048         * gtk/gtktreeview.c (gtk_tree_view_key_press): Don't pop up
2049         the context menu of the search entry if it is not visible.
2050         (#169534, Billy Biggs)
2051
2052 2005-03-27  Tor Lillqvist  <tml@novell.com>
2053
2054         * configure.in: Apparently AC_LIBTOOL_WIN32_DLL isn't deprecated
2055         after all, and in fact necessary with HEAD libtool.
2056
2057 2005-03-26  Matthias Clasen  <mclasen@redhat.com>
2058
2059         * gtk/*.c: 
2060         * gdk/gdkdisplaymanager.c: 
2061         Use canonical names for g_object_notify() as well. 
2062
2063 2005-03-24  Tor Lillqvist  <tml@novell.com>
2064
2065         * configure.in (GTK_EXTRA_CFLAGS): Include the -mms-bitfields flag
2066         in GTK_EXTRA_CFLAGS on Win32, so that it gets included in the
2067         gtk+-2.0.pc file and automatically used by dependents. MSVC users
2068         who use pkg-config will have to manually edit it out from
2069         gtk+-2.0.pc, sorry. Maybe pkg-config should be enhanced to support
2070         some kind of conditionals in .pc files?
2071
2072 2005-03-23  Matthias Clasen  <mclasen@redhat.com>
2073
2074         * gtk/gtkfilechooserbutton.c (update_combo_box): Remove
2075         a call whose result was unused and leaked.  (#170776,
2076         Kjartan Maraas)
2077
2078         Some cleanups to the GtkDialog code:  (#170746, 
2079         Morten Welinder)
2080         * gtk/gtkdialog.c (action_widget_activated): Simplify,
2081         use _gtk_dialog_get_response_for_widget.
2082         (gtk_dialog_add_action_widget): Use the correct signal
2083         id for non-buttons.
2084         (gtk_dialog_set_response_sensitive): 
2085         (gtk_dialog_set_default_response): Use get_response_data.
2086         (gtk_dialog_run): Don't disconnect the signals if the
2087         dialog was destroyed while running.
2088
2089 Tue Mar 22 14:16:31 2005  Manish Singh  <yosh@gimp.org>
2090
2091         * gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label):
2092         Use g_return_if_fail, not g_return_val_if_fail.
2093
2094 2005-03-22  Matthias Clasen  <mclasen@redhat.com>
2095
2096         Implement bookmark renaming  (#136216, Sean Middleditch)
2097         
2098         * gtk/gtkfilesystem.h (struct _GtkFileSystemIface): Add 
2099         get_bookmark_label and set_bookmark_label vfuncs.
2100
2101         * gtk/gtkfilesystem.h:
2102         * gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label): 
2103         (gtk_file_system_get_bookmark_label): Wrappers for the
2104         vfuncs.
2105
2106         * gtk/gtk.symbols: Add new exported symbols.
2107
2108         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_set_bookmark_label): 
2109         (gtk_file_system_unix_get_bookmark_label): Implementations
2110         for the Unix backend.
2111
2112         * gtk/gtkfilechooserdefault.c: Add a context menu to
2113         the bookmarks pane, and allow to rename bookmarks.
2114
2115 2005-03-22  Matthias Clasen  <mclasen@redhat.com>
2116
2117         * gtk/gtkpathbar.c (gtk_path_bar_unmap): 
2118         * gtk/gtkspinbutton.c (gtk_spin_button_unmap): 
2119         * gtk/gtknotebook.c (gtk_notebook_unmap): 
2120         * gtk/gtkrange.c (gtk_range_unmap): Stop scrolling when
2121         the widget is unmapped.  (#168791, Ryan Lortie)
2122
2123 2005-03-21  Matthias Clasen  <mclasen@redhat.com>
2124
2125         * gtk/gtkprivate.h: Define macros GTK_PARAM_READABLE,
2126         GTK_PARAM_WRITABLE, GTK_PARAM_READWRITE which are like
2127         their G_ counterparts, but also mark the name, nick
2128         and blurb as static.
2129
2130         * gtk/*.c: Mark param spec strings as static, using
2131         the new macros.
2132
2133         * gtk/gtkspinbutton.h: Fix a typo.
2134
2135 2005-03-21  Matthias Clasen  <mclasen@redhat.com>
2136
2137         * gtk/gtkcellrendererprogress.c: 
2138         * gtk/gtkcellrendererpixbuf.c: 
2139         * gtk/gtkcellrenderercombo.c: 
2140         * gtk/gtkcellrenderer.c: 
2141         * gtk/gtkcalendar.c: 
2142         * gtk/gtkbutton.c: 
2143         * gtk/gtkbox.c: 
2144         * gtk/gtkbbox.c: 
2145         * gtk/gtkaspectframe.c: 
2146         * gtk/gtkarrow.c: 
2147         * gtk/gtkalignment.c: 
2148         * gtk/gtkactiongroup.c: 
2149         * gtk/gtkaction.c:
2150         * gtk/gtkaccellabel.c: 
2151         * gtk/gtkaboutdialog.c: Mark param spec strings as static.
2152
2153         * gdk/gdkpango.c (gdk_pango_renderer_class_init): 
2154         * gdk/gdkdisplaymanager.c (gdk_display_manager_class_init): Mark
2155         param spec strings as static.
2156
2157 2005-03-21  Tor Lillqvist  <tml@novell.com>
2158
2159         * modules/engines/ms-windows/*.c: Silence gcc warnings (unused
2160         variables, unhandled enum value in switch). Use g_object_unref()
2161         instead of deprecated gdk_gc_unref() and gdk_drawable_unref().
2162
2163         * modules/engines/ms-windows/xp_theme.c (xp_theme_map_gtk_state): 
2164         Add missing "case" keyword.
2165
2166         * modules/engines/ms-windows/Makefile.am: Link with -lgdi32
2167         explicitly.
2168
2169 2005-03-20  Tor Lillqvist  <tml@novell.com>
2170
2171         * gdk/win32/gdkdisplay-win32.c (gdk_display_get_name): Return the
2172         Terminal Services session number, window station name (always
2173         "WinSta0" in interactive processes), and desktop name (typically
2174         "Default"), concatenated with backslash separators.
2175         (gdk_display_open): Accept only NULL or the string
2176         gdk_display_get_name() returns as display name.
2177
2178 2005-03-20  Matthias Clasen  <mclasen@redhat.com>
2179
2180         Make PLT-reduction work with gcc4, and don't include
2181         everything in gdkalias.h:
2182         
2183         * gtk/grk.symbols: Group symbols by header and source file.
2184         * gtk/makegtkalias.pl: Protect definitions by the same 
2185         preprocessor symbols used to guard the headers. Move
2186         the alias declarations to a separate file which is 
2187         produced when calling makegtkalias.pl -def
2188         * gdk/Makefile.am (gtkaliasdef.c): Add a rule to generate 
2189         this file.
2190         * gtk/*.c: Include gtkalias.h after the other headers, 
2191         include gtkaliasdef.c at the bottom.
2192         * gtk/*.h: Small cleanups.
2193
2194 Fri Mar 18 23:59:49 2005  Soeren Sandmann  <sandmann@redhat.com>
2195
2196         * gtk/gtkmenutoolbutton.c (arrow_button_button_press_event_cb):
2197         Make right-clicks not pop up the menu.
2198
2199 2005-03-18  Owen Taylor  <otaylor@redhat.com>
2200
2201         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_drawable_finish): 
2202         Call cairo_surface_finish()
2203
2204         * gdk/gdkinternals.c gdk/x11/gdkdrawable-x11.c: Remoev
2205         _gdk_windowing_set_surface_device_offset().
2206
2207 2005-03-18  Tor Lillqvist  <tml@novell.com>
2208
2209         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
2210         WM_MOUSEMOVE, don't check if this process owns the active
2211         window. This makes cross-application widget embedding work better.
2212         On WM_MOVE, don't bother checking for window visibility.
2213
2214         * gdk/win32/gdkim-win32.c: Remove bogus empty doc comment. Remove
2215         unused variables. Add some casts to silence gcc.
2216
2217 2005-02-24  Owen Taylor  <otaylor@redhat.com>
2218
2219         * gdk/gdkwindow.c: Use cairo_set_device_offset().
2220
2221         * gdk/win32/gdkdrawable-win32.[ch] gdk/win32/gdkwindow-win32.c
2222         gdk/win32/gdkpixmap-win32.c: 
2223         Add_gdk_win32_drawable_acquire/release_dc() to get a DC for the 
2224         drawable. Add _gdk_drawable_win32_finish() to clean up resources
2225         when a drawable is destroyed.
2226
2227         * gdk/win32/gdkgc-win32.c gdk/win32/gdkdrawable-win32.c
2228         (blit_from_pixmap) gdk/win32/gdkprivate-win32.h : Use 
2229         acquire/release_dc when getting a DC to use with a GC or for 
2230         blitting from a pixmap.
2231
2232         * gdk/win32/gdkdrawable-win32.[ch]: Implement ref_cairo_surface()
2233
2234         * gdk/win32/gdkpango-win32.c gdk/win32/gdkdrawable-win32.c Makefile.am:
2235         Remove gdk_screen_get_pango_context(), draw_glyph[_transformed]
2236         implementations.
2237
2238         * gdk/win32/gdkdrawable-win32.c: Remove 
2239         gdk_draw_rectangle_alpha_libgtk_only()
2240
2241 2005-03-17  Owen Taylor  <otaylor@redhat.com>
2242
2243         * gdk/gdkpango.c: Fix get_stipple_surface to actually work, set
2244         EXTEND_REPEAT on the stipple pattern.
2245
2246 2005-03-17  Matthias Clasen  <mclasen@redhat.com>
2247
2248         * gtk/gtklabel.c (gtk_label_set_markup): Fix formatting
2249         in example in the docs.  (#170611, Jianfei Wang)
2250
2251         * gtk/gtkiconview.c (gtk_icon_view_size_allocate): Clamp
2252         adjustment values on resize.  (#170567, Tomislav Jonjic)
2253
2254         * gtk/gtkicontheme.c (theme_lookup_icon): Don't crash
2255         if there is no cache.  (#170652, Diego Gonzalez)
2256         
2257         * gtk/gtkentrycompletion.c (gtk_entry_completion_real_insert_prefix): 
2258         Make inline completion insert the prefix at the
2259         right spot.  (#170146, Doug Quale)
2260
2261 2005-03-17  Tor Lillqvist  <tml@novell.com>
2262
2263         * gdk/gdkkeynames.c: gdk_key is a typedef, not a struct tag.
2264
2265 2005-03-16  Matthias Clasen  <mclasen@redhat.com>
2266
2267         * gtk/gtkprogressbar.c (gtk_progress_bar_get_ellipsize): 
2268         Typo fix in the docs.
2269         
2270         * gtk/gtkmenutoolbutton.c (gtk_menu_tool_button_set_arrow_tooltip): 
2271         Typo fix in the docs.
2272
2273         * gtk/gtkiconview.c (gtk_icon_view_set_columns) 
2274         (gtk_icon_view_get_columns, gtk_icon_view_set_item_width) 
2275         (gtk_icon_view_get_item_width, gtk_icon_view_set_spacing) 
2276         (gtk_icon_view_get_spacing, gtk_icon_view_set_row_spacing) 
2277         (gtk_icon_view_set_column_spacing) 
2278         (gtk_icon_view_get_row_spacing, gtk_icon_view_get_margin) 
2279         (gtk_icon_view_set_margin): Add docs.
2280         
2281         * gtk/gtkcellview.c (gtk_cell_view_get_displayed_row): 
2282         Add docs.
2283
2284 2005-03-15  Owen Taylor  <otaylor@redhat.com>
2285
2286         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkpixmap.c gdk/gdkwindow.c 
2287         gdk/x11/gdkdrawable-x11.c gdk/x11/gdkpixmap-x11.c gdk/x11/gdkwindow-x11.c
2288         gdk/gdkinternals.h: Switch set_cairo_target() virtual function to
2289         ref_cairo_surface()
2290
2291         * gdk/gdkdrawable.h gdk/gdkdraw.h: Switch set_cairo_target() virtual
2292         function to create_cairo_context()
2293
2294         * gdk/gdkwindow.c: Clear double buffer pixmaps with Cairo.
2295
2296         * gdk/x11/gdkwindow-x11.c: Keep all components in GdkWindowObject.bg_color,
2297         not just the pixel.
2298
2299         * tests/testcairo.c: Update for create_cairo_context()
2300
2301         * gdk/gdkdraw.c (gdk_draw_trapezoids, gdk_draw_glyphs[_transformed]):
2302         Reimplement in terms of Cairo, bypass the vtable entries.
2303
2304         * gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
2305         gdk/x11/gdkgc-x11.c gdk/x11/gdkpango-x11.c
2306         gdk/x11/gdkprivate-x11.h gdk/x11/Makefile.am: Remove
2307         implementation of draw_trapezoids / draw_glyphs[_transformed].
2308
2309         * gdk/gdkpango.c: Switch GdkPangoRenderer to use Cairo
2310
2311         * gdk/gdkpango.c gdk/x11/gdkpango-x11.c: Move
2312         gdk_pango_context_get_for_screen() into the backend independent code.
2313
2314         * gdk/x11/gdkdrawable-x11.[ch]: Remove Xft use, use RENDER directly
2315         for drawing images.
2316
2317         * gdk/gdkdrawable.h gdk/x11/gdkdrawable-x11.c: Remove
2318         gdk_draw_rectangle_alpha_libgtk_only.
2319
2320         * gdk/gdkpixbuf.h gdk/gdkpixbuf-render.c: Add 
2321         gdk_pixbuf_set_as_cairo_source()
2322
2323         * gdk/gdk.symbols: Update
2324
2325         * gtk/gtkcolorsel.c gtk/gtkhsv.c gtk/gtkiconview.c gtk/gtkruler.[ch]
2326         gtk/gtk[hv]ruler.c: Convert to Cairo rendering.
2327
2328         * gtk/gtkstyle.c (gtk_default_draw_check, gtk_default_draw_focus,
2329         gtk_default_draw_option): Switch to Cairo. Simplify the checkbutton,
2330         radio button style for now to get something more scalable.
2331
2332         *  gtk/gtksettings.c: #if 0 out the code to use PangoXft for hinting/
2333         antialiasing/dpi settings.
2334
2335 2005-03-16  Matthias Clasen  <mclasen@redhat.com>
2336
2337         * demos/gtk-demo/editable_cells.c: Also demonstrate
2338         GtkCellRenderer::editing-started and separators.
2339
2340 Tue Mar 15 20:34:33 2005  Manish Singh  <yosh@gimp.org>
2341
2342         * gdk/x11/gdkinput-xfree.c: #include gdkaliasdef.c here too.
2343
2344 2005-03-15  Matthias Clasen  <mclasen@redhat.com>
2345
2346         Make PLT-reduction work with gcc4, and don't include
2347         everything in gdkalias.h:
2348
2349         * gdk/gdk.symbols: Group symbols by header and source file.
2350         * gdk/makegdkalias.pl: Protect definitions by the same
2351         preprocessor symbols used to guard the headers. Move
2352         the alias declarations to a separate file which is
2353         produced when calling makegdkalias.pl -def
2354         * gdk/Makefile.am (gdkaliasdef.c): Add a rule to generate this
2355         file.
2356         * gdk/*.c, gdk/x11/*.c: Include gdkalias.h after the other
2357         headers, include gdkaliasdef.c at the bottom.
2358
2359 2005-03-16  Tor Lillqvist  <tml@novell.com>
2360
2361         * gdk/win32/gdkdisplay-win32.c (_win32_on_clipboard_change): Print
2362         debugging output only if asked for, not always.
2363
2364         * gdk/win32/*.c: Use the %+d%+d format for coordinate pairs in
2365         debugging printout instead of +%d+%d. Misc other additions and
2366         cosmetic improvements to debugging printouts. Use API_CALL() and
2367         GDI_CALL() macros in more places.
2368
2369         * gdk/win32/gdkwindow-win32.c (gdk_window_move, gdk_window_resize,
2370         gdk_window_move_resize): To detect child windows, check whether
2371         the real parent is not the desktop window, instead of relying on
2372         the GDK window type being GDK_WINDOW_CHILD. Foreign GtkPlug
2373         windows have a GDK window type GDK_WINDOW_FOREIGN, but are still
2374         de facto child windows.
2375
2376         * gdk/win32/gdkprivate-win32.h
2377         * gdk/win32/*.c: Drop global variable _gdk_root_window, just call
2378         GetDesktopWindow(). Rename the GdkWindow* _gdk_parent_root to
2379         _gdk_root.
2380
2381         * gdk/win32/gdkwindow-win32.h (GdkWindowImplWin32): Add
2382         toplevel_window_type field.
2383
2384         * gdk/win32/gdkwindow-win32.c: As there is only one root window in
2385         GDK on Win32, we can compare directly to _gdk_root instead of
2386         checking the window type.
2387         (gdk_window_reparent): When reparenting a child of the desktop
2388         clear out the window decorations. Correspondingly, when
2389         reparenting to the desktop, add decorations. As in the X11
2390         backend, save the window type of a toplevel window when
2391         reparenting, in case it is reparented back to toplevel.
2392
2393 2005-03-15  Matthias Clasen  <mclasen@redhat.com>
2394
2395         * gtk/gtkradioaction.c (gtk_radio_action_get_group): Add an
2396         example for manually setting up a group of actions.
2397
2398         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
2399         Document that inline completion requires text-column to be set.
2400         (gtk_entry_completion_compute_prefix): Return NULL if text-column
2401         is not set.
2402
2403         * gtk/gtkentry.c (check_completion_callback): Call 
2404         gtk_entry_completion_complete() before inserting the prefix,
2405         otherwise the prefix may depend on (random) state of the
2406         filter model.  
2407
2408 2005-03-15  Anders Carlsson  <andersca@imendio.com>
2409
2410         * docs/iconcache.txt:
2411         Update spec.
2412         
2413         * gtk/gtkiconcache.c: (find_image_offset),
2414         (_gtk_icon_cache_get_icon_flags), (_gtk_icon_cache_add_icons),
2415         (_gtk_icon_cache_get_icon), (_gtk_icon_cache_get_icon_data):
2416         * gtk/gtkiconcache.h:
2417         Update to be able to fetch pixbuf data and icon metadata.
2418         
2419         * gtk/gtkicontheme.c: (theme_lookup_icon), (gtk_icon_info_free),
2420         (icon_info_ensure_scale_and_pixbuf):
2421         Use new cache functions.
2422         
2423         * gtk/updateiconcache.c: (foreach_remove_func), (load_icon_data),
2424         (maybe_cache_image_data), (scan_directory), (write_pixdata),
2425         (get_image_meta_data_size), (get_image_pixel_data_size),
2426         (get_image_data_size), (get_single_node_size), (get_bucket_size),
2427         (write_bucket), (main):
2428         Update to write pixbuf data as well as information from .icon
2429         files.
2430         
2431 2005-03-15  Tor Lillqvist  <tml@novell.com>
2432
2433         * gdk/win32/gdkmain-win32.c (_gdk_win32_key_to_string): New
2434         debugging function. As GetKeyNameText() returns a localized key
2435         name we need to convert it to UTF-8.
2436
2437         * gdk/win32/gdkprivate-win32.h: Declare it.
2438
2439         * gdk/win32/gdkevents-win32.c: Use it.
2440
2441         * gdk/win32/gdkwindow-win32.c (gdk_window_new_internal): Fix
2442         handling of children of foreign windows. They should be child
2443         windows from Windows's perspective, even if they are toplevel GDK
2444         windows.
2445
2446 2005-03-13  Ivan, Wong Yat Cheung  <email@ivanwong.info>
2447
2448         * gdk/win32/gdkgeometry-win32.c (gdk_window_scroll): A further fix
2449         for big window support. Now also the test in testgtk works.
2450
2451 2005-03-11  Matthias Clasen  <mclasen@redhat.com>
2452
2453         * gtk/gtkaboutdialog.c (add_credits_page): Don't crash on
2454         style changes.  (#169334, Yury Puzis)
2455
2456         * gtk/gtkicontheme.c (gtk_icon_theme_set_custom_theme): Fix
2457         the doc comments.  (#169967, Masao Mutoh)
2458
2459 2005-03-12  Ivan, Wong Yat Cheung  <email@ivanwong.info>
2460
2461         Big window fix for Win32. Big windows are still emulated within
2462         16-bit coordinate limits, though. Big windows now work on NT-based
2463         Windows. (#169989)
2464
2465         * gdk/win32/gdkgc-win32.c (_gdk_win32_gdkregion_to_hrgn): Use
2466         32-bit coordinates.
2467
2468         * gdk/win32/gdkgeometry-win32.c: Largely rewrite.
2469
2470         * gdk/win32/gdkwindow-win32.c: Minor related changes.
2471         
2472 2005-03-10  Matthias Clasen  <mclasen@redhat.com>
2473
2474         * gtk/gtkliststore.c (gtk_list_store_insert_with_valuesv): 
2475         Fix a doc typo.  (#169873, Johan Dahlin)
2476
2477         * gtk/gtkdialog.c (gtk_dialog_map): Don't
2478         try to focus the default_widget if there is 
2479         none.  (#169881, Thomas Leonard)
2480
2481 Wed Mar  9 19:20:44 2005  Manish Singh  <yosh@gimp.org>
2482
2483         * configure.in: Remove inadvertent gail references, require
2484         Pango 1.9.0
2485
2486 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
2487
2488         * configure.in: Require GLib 2.7.0
2489
2490 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
2491
2492         * gtk/gtkwidget.h (struct _GtkWidget): Typo fixes in comments.
2493         (#169728, Morten Welinder, Owen Taylor)
2494
2495         * gtk/gtkwidget.c (gtk_widget_add_mnemonic_label): Fix a typo
2496         in the docs.  (#169729, Morten Welinder)
2497
2498         * gtk/gtkimage.c (gtk_image_class_init): Fix a typo.
2499
2500         * gtk/gtkiconview.c (gtk_icon_view_set_model): Queue a resize 
2501         when the model is unset.  (#169528, Tomislav Jonjic)
2502
2503 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
2504
2505         * gtk/gtkviewport.c (gtk_viewport_class_init): 
2506         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): 
2507         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_class_init): 
2508         * gtk/gtktipsquery.c (gtk_tips_query_class_init): 
2509         * gtk/gtktext.c (gtk_text_class_init): 
2510         * gtk/gtkstatusbar.c (gtk_statusbar_class_init): 
2511         * gtk/gtkspinbutton.c (gtk_spin_button_class_init): 
2512         * gtk/gtktoggleaction.c (gtk_toggle_action_class_init): 
2513         * gtk/gtkoptionmenu.c (gtk_option_menu_class_init): 
2514         * gtk/gtkoldeditable.c (gtk_old_editable_class_init): 
2515         * gtk/gtkmessagedialog.c (gtk_message_dialog_class_init): 
2516         * gtk/gtktoolbutton.c (gtk_tool_button_class_init): 
2517         * gtk/gtktoolitem.c (gtk_tool_item_class_init): 
2518         * gtk/gtkimage.c (gtk_image_class_init): 
2519         * gtk/gtkruler.c (gtk_ruler_class_init): 
2520         * gtk/gtkiconview.c (gtk_icon_view_class_init): 
2521         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): 
2522         * gtk/gtkprogress.c (gtk_progress_class_init): 
2523         * gtk/gtkmenu.c (gtk_menu_class_init): 
2524         * gtk/gtkscale.c (gtk_scale_class_init): 
2525         * gtk/gtkpaned.c (gtk_paned_class_init): 
2526         * gtk/gtkhandlebox.c (gtk_handle_box_class_init): 
2527         * gtk/gtkfontbutton.c (gtk_font_button_class_init): 
2528         * gtk/gtkfontsel.c (gtk_font_selection_class_init): 
2529         * gtk/gtkfilesel.c (gtk_file_selection_class_init): 
2530         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
2531         * gtk/gtkcurve.c (gtk_curve_class_init): 
2532         * gtk/gtkcombo.c (gtk_combo_class_init): 
2533         * gtk/gtkcombobox.c (gtk_combo_box_class_init): 
2534         * gtk/gtkcolorbutton.c (gtk_color_button_class_init): 
2535         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): 
2536         * gtk/gtkmenuitem.c (gtk_menu_item_class_init): 
2537         * gtk/gtkcheckbutton.c (gtk_check_button_class_init): 
2538         * gtk/gtktogglebutton.c (gtk_toggle_button_class_init): 
2539         * gtk/gtkcellview.c (gtk_cell_view_class_init): 
2540         * gtk/gtktoolbar.c (gtk_toolbar_class_init): 
2541         * gtk/gtkmenubar.c (gtk_menu_bar_class_init): 
2542         * gtk/gtkclist.c (gtk_clist_class_init): 
2543         * gtk/gtkctree.c (gtk_ctree_class_init): 
2544         * gtk/gtkcolorsel.c (gtk_color_selection_class_init): 
2545         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init): 
2546         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init): 
2547         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_class_init): 
2548         * gtk/gtkcalendar.c (gtk_calendar_class_init): 
2549         * gtk/gtkbbox.c (gtk_button_box_class_init): 
2550         * gtk/gtktable.c (gtk_table_class_init): 
2551         * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): 
2552         * gtk/gtkframe.c (gtk_frame_class_init): 
2553         * gtk/gtkaction.c (gtk_action_class_init): 
2554         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): 
2555         * gtk/gtkaboutdialog.c (gtk_about_dialog_class_init): 
2556         * gtk/gtkdialog.c (gtk_dialog_class_init): More of the same.
2557
2558 2005-03-08  Matthias Clasen  <mclasen@redhat.com>
2559
2560         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): 
2561         * gtk/gtkrange.c (gtk_range_class_init): 
2562         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init): 
2563         * gtk/gtktexttag.c (gtk_text_tag_class_init): 
2564         * gtk/gtktextview.c (gtk_text_view_class_init): 
2565         * gtk/gtkscrollbar.c (gtk_scrollbar_class_init): 
2566         * gtk/gtknotebook.c (gtk_notebook_class_init): 
2567         * gtk/gtkentry.c (gtk_entry_class_init): 
2568         * gtk/gtkexpander.c (gtk_expander_class_init): 
2569         * gtk/gtkarrow.c (gtk_arrow_class_init): 
2570         * gtk/gtkalignment.c (gtk_alignment_class_init): 
2571         * gtk/gtkbutton.c (gtk_button_class_init): 
2572         * gtk/gtklabel.c (gtk_label_class_init): 
2573         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): 
2574         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
2575         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 
2576         * gtk/gtktreeview.c (gtk_tree_view_class_init): 
2577         * gtk/gtkbox.c (gtk_box_class_init): 
2578         * gtk/gtkwindow.c (gtk_window_class_init, gtk_window_class_init): 
2579         * gtk/gtkcontainer.c (gtk_container_class_init): 
2580         * gtk/gtkwidget.c (gtk_widget_class_init): 
2581         * gtk/gtkobject.c (gtk_object_class_init): Use canonical names
2582         when registering param specs.
2583
2584         * demos/gtk-demo/editable_cells.c: Use GtkCellRendererCombo
2585         (#169607, Mark McLoughlin)
2586         
2587         * gtk/gtk.symbols: Add the new attributes here, too.
2588
2589         * gtk/gtkwidget.h: 
2590         * gtk/gtktreeview.h: 
2591         * gtk/gtktreeviewcolumn.h: 
2592         * gtk/gtktextbuffer.h: 
2593         * gtk/gtkobject.h: 
2594         * gtk/gtkfilechooserdialog.h: 
2595         * gtk/gtkdialog.h: 
2596         * gtk/gtkcontainer.h: 
2597         * gtk/gtkcelllayout.h: 
2598         * gtk/gtkaboutdialog.h: Use G_GNUC_NULL_TERMINATED where
2599         appropriate.  (#165682, Marc Meissner)
2600
2601 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
2602
2603         Convert the gdk keyval-keyname tables to a big string
2604         + offsets. (#168901)
2605         
2606         * gdk/gen-keyname-table.pl: Perl script inspired by
2607         pango/tools/gen-color-table.pl to create the 
2608         gdk_keys_by_keyval and gdk_keys_by_name tables as lists
2609         of offsets pointing into a big const string.
2610         
2611         * gdk/keynames.txt: List of keyval-keyname pairs.
2612         * gdk/keyname-table.h: Generated tables.
2613
2614         * gdk/gdkkeynames.c: Include keyname-table.h and don't
2615         generate the inverse table at runtime.
2616
2617 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
2618
2619         * gtk/gtkstyle.c: Document which parameters may be NULL.  
2620         (#166855, Frank Naumann)
2621
2622 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
2623
2624         * AUTHORS: Add original authors of incorporated software.
2625
2626 Thu Mar  3 16:59:44 2005  Manish Singh  <yosh@gimp.org>
2627
2628         * configure.in: URL escape the '+' in gtk+ in the bugzilla URL.
2629
2630 2005-03-03  Matthias Clasen  <mclasen@redhat.com>
2631
2632         * gtk/gtksettings.c (gtk_settings_get_property): 
2633         * gtk/gtkrc.c (gtk_rc_parse_assignment): Don't leak 
2634         the values here.  (#169047, Philip Langdale)
2635
2636         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
2637         Don't warn if a stock icon cannot be found.  (#168830,
2638         Sven Neumann)
2639
2640 2005-03-03  Matthias Clasen  <mclasen@redhat.com>
2641
2642         * gtk/gtkwidget.c (gtk_widget_reparent_subwindows): 
2643         Avoid warnings if gtk_widget_reparent() is called at
2644         unusual times.  (#168966, Christian Persch)
2645
2646 Tue Mar  1 14:04:08 2005  Manish Singh  <yosh@gimp.org>
2647
2648         * gdk/x11/gdkproperty-x11.c (virtual_atom_check_init): Cast to avoid
2649         const warnings on data structure seeding.
2650
2651 Tue Mar  1 13:53:56 2005  Manish Singh  <yosh@gimp.org>
2652
2653         * gtk/xdgmime/xdgmime.[ch]: revert previous change, maintain ABI.
2654
2655 2005-03-01  Matthias Clasen  <mclasen@redhat.com>
2656
2657         * gtk/gtkmenutoolbutton.c (button_state_changed_cb): 
2658         Fix prelighting.  (#157392, Vincent Noel, patch by
2659         Christian Persch)
2660
2661         * gtk/gtkicontheme.c (theme_lookup_icon): Make 
2662         icon data caching work again.  (#168851, Alexander Larsson)
2663
2664         * gdk-pixbuf/gdk-pixbuf.c:
2665         * gdk-pixbuf/gdk-pixbuf-features.h.in:
2666         Revert the previous change, since it breaks
2667         bin compat.
2668
2669 2005-03-01  Matthias Clasen  <mclasen@redhat.com>
2670
2671         * gdk/gdkkeyuni.c
2672         * gdk/gdkpixbuf-drawable.c
2673         * gdk/gdkrgb.c
2674         * gdk/x11/gdkdnd-x11.c
2675         * gdk/x11/gdkevents-x11.c
2676         * gdk/x11/gdkproperty-x11.c
2677         * gdk/x11/gdkvisual-x11.c
2678         * gdk-pixbuf/gdk-pixbuf.c
2679         * gdk-pixbuf/gdk-pixbuf-features.h.in
2680         * gtk/gtkaction.c
2681         * gtk/gtkbindings.c
2682         * gtk/gtkcolorbutton.c
2683         * gtk/gtkcombo.c
2684         * gtk/gtkcontainer.c
2685         * gtk/gtkfilechooserdefault.c
2686         * gtk/gtkfilesel.c
2687         * gtk/gtkgamma.c
2688         * gtk/gtkiconview.c
2689         * gtk/gtkinputdialog.c
2690         * gtk/gtkitemfactory.c
2691         * gtk/gtkmenu.c
2692         * gtk/gtktextview.c
2693         * gtk/gtktooltips.c
2694         * gtk/gtktreedatalist.c
2695         * gtk/gtkuimanager.c
2696         * gtk/tree_minus.xpm
2697         * gtk/tree_plus.xpm
2698         * gtk/xdgmime/xdgmime.c
2699         * gtk/xdgmime/xdgmime.h: 
2700         Move constant data to .rodata.
2701
2702 2005-02-27  Matthias Clasen  <mclasen@redhat.com>
2703
2704         * gtk/gtkaction.c (connect_proxy): Improve the handling
2705         of buttons as action proxys.  (#165534, Milosz Derezynski)
2706
2707         * gtk/gtklabel.c (gtk_label_size_request): Fix a typo.
2708         (#168646, Vincent Untz)
2709
2710         * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
2711         Unset "focus-on-click" for the save folder combo.  (#168688,
2712         Sven Neumann)
2713
2714 2005-02-25  Matthias Clasen  <mclasen@redhat.com>
2715
2716         * demos/testpixbuf.c (main): Remove a C++ comment.  (#168531, 
2717         Paul Cornett)
2718
2719         * gtk/gtkcombobox.c (gtk_combo_box_menu_fill_level): Don't leak a 
2720         path here.  (#168443, Morten Welinder)
2721
2722 2005-02-24  Robert Ögren  <gtk@roboros.com>
2723
2724         Implement better handling of Wintab tablet context overlap on
2725         Win32. (#167298)
2726
2727         * gdk/win32/gdkinput-win32.c (_gdk_input_set_tablet_active): New
2728         function that brings any tablet contexts to the top of the overlap
2729         order.
2730         * gdk/win32/gdkinput-win32.h: Declare _gdk_input_set_tablet_active ()
2731         * gdk/win32/gdkevents-win32.c (gdk_event_translate):
2732         Call _gdk_input_set_tablet_active when a window is activated (on
2733         WM_ACTIVATE)
2734
2735 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
2736
2737         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path): 
2738         Don't leak parent_path.  (#168435, Morten Welinder)
2739
2740 Thu Feb 24 14:20:16 2005  Søren Sandmann  <sandmann@redhat.com>
2741
2742         * gtk/gtkstyle.c: Add
2743
2744         g_return_if_fail (style->depth == gdk_drawable_get_depth(window));
2745
2746         all over the place.
2747
2748 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
2749
2750         * gtk/gtkcombobox.c: Consistently use gtk_tree_row_reference_valid().
2751         (gtk_combo_box_model_row_deleted): Update the displayed row in 
2752         the cell_view.  (#167842, Gustavo Carneiro)
2753
2754 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
2755
2756         Fix #167259, reported by  Christian Persch:
2757         
2758         * gtk/gtkwidget.c (gtk_widget_unparent): Unmap the reparented 
2759         widget, even if we avoid the unrealizing. 
2760         (gtk_widget_reparent_subwindows): Make reparenting work for
2761         !NO_WINDOW widgets which have other windows which are siblings
2762         of widget->window (as e.g. GtkSpinButton).
2763
2764 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
2765
2766         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_changed): 
2767         Don't emit a warning if a parent node is filtered out. (#164726,
2768         Olivier Sessink)
2769
2770 2005-02-23  Matthias Clasen  <mclasen@redhat.com>
2771
2772         * gtk/gtklabel.c (gtk_label_style_set): Revert the last 
2773         change, since gtk_widget_set_style_internal() already
2774         queues a resize.
2775
2776 2005-02-23  Matthias Clasen  <mclasen@redhat.com>
2777
2778         * gtk/gtklabel.c (gtk_label_style_set): Queue a resize, since
2779         fonts may have changed.  (#164128, Phil Blundell)
2780
2781         * gtk/gtkaboutdialog.c (gtk_about_dialog_init) 
2782         (gtk_about_dialog_new): Move initialization code from _new to 
2783         _init.  (#168249, Murray Cumming) 
2784
2785 Wed Feb 23 17:34:01 2005  Jonathan Blandford  <jrb@redhat.com>
2786
2787         * gtk/gtktreeview.c (gtk_tree_view_node_queue_redraw): Patch from
2788         jorn@nl.linux.org (Jorn Baayen) to notice changes to fixed-height
2789         widgets.
2790
2791 2005-02-23  Tor Lillqvist  <tml@novell.com>
2792
2793         * gdk/win32/gdkkeys-win32.c (update_keymap): Workaround for bug in
2794         MapVirtualKey(VK_DIVIDE, 0) in some Windows versions. (#142998)
2795
2796 Tue Feb 22 13:49:09 2005  Manish Singh  <yosh@gimp.org>
2797
2798         * gtk/updateiconcache.c: #include <config.h>
2799
2800 2005-02-22  Federico Mena Quintero  <federico@ximian.com>
2801
2802         Merged from gtk-2-6:
2803
2804         Fix #164940, patch by Ben Maurer and Tommi Komulainen.
2805
2806         * gdk/gdkrgb.c (gdk_rgb_convert_565_d): Constify the "dmp" variable.
2807         (gdk_rgb_convert_565_d): Likewise.
2808         (DM_565): Made a static const precomputed array to avoid
2809         allocating it at runtime.
2810         (gdk_rgb_preprocess_dm_565): #ifdef out.
2811
2812 2005-02-20  Matthias Clasen  <mclasen@redhat.com>
2813
2814         * gtk/gtkwindow.c: 
2815         * gtk/gtkclipboard.c: Fix links to freedesktop.org specs
2816         in the documentation.
2817
2818         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids): 
2819         Set have_render_with_trapezoids to GDK_YES when we have 
2820         a new enough Render extension.  (#167965,Billy Biggs) 
2821
2822         * gtk/gtkwindow.c (gtk_window_present): Use the timestamp of
2823         the last user interaction when focusing the window.  (#166379, 
2824         Elijah Newren)
2825
2826 Thu Feb 17 14:58:16 2005  Manish Singh  <yosh@gimp.org>
2827
2828         * gtk/gtkuimanager.c (start_element_handler): make sure expand
2829         is initialized, cast to GTK_SEPARATOR_TOOL_ITEM.
2830
2831 Thu Feb 17 14:52:57 2005  Manish Singh  <yosh@gimp.org>
2832
2833         * gtk/gtkcombobox.c: Pass gtk_widget_get_toplevel() a GTK_WIDGET.
2834
2835 2005-02-16  Matthias Clasen  <mclasen@redhat.com>
2836
2837         * docs/iconcache.txt: Add some information about the
2838         icon cache format (since I can't locate it at freedesktop.org)
2839
2840         Fixes for #143829, Tommi Komulainen, Christian Persch:
2841         
2842         * gtk/gtktreeview.c (gtk_tree_view_destroy): Remove the
2843         typeselect_flush_timeout when destroying the widgets
2844         it is operating on.  
2845         (gtk_tree_view_ensure_interactive_directory): Add the 
2846         popup to the window group of the toplevel it belongs to.
2847
2848         * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget) 
2849         (gtk_combo_box_popup): Do the same here. 
2850
2851 2005-02-14  Matthias Clasen  <mclasen@redhat.com>
2852
2853         * configure.in: Kill --enable-ansi  (#164394)
2854
2855 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
2856
2857         * gtk/gtkpathbar.c (gtk_path_bar_finalize): Stop scrolling 
2858         when the pathbar goes away.  (#167094, Rodney Dawes)
2859         (change_icon_theme): Use GTK_ICON_SIZE_MENU here as 
2860         well  (Vincent Noel)
2861
2862 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
2863
2864         Support vertical menubars  (#166632): 
2865         
2866         * gtk/gtkenums.h (GtkPackDirection): New enumeration for pack 
2867         directions, with values for left-to-right, right-to-left, 
2868         top-to-bottom and bottom-to-top.
2869
2870         * gtk/gtk.symbols: 
2871         * gtk/gtkmenubar.h: 
2872         * gtk/gtkmenubar.c: Add two properties, pack-direction and
2873         child-pack-direction, which specify how children and 
2874         grandchildren of a menubar are packed, with getters and setters. 
2875
2876         * gtk/gtkmenubar.c (gtk_menu_bar_set_property): 
2877         (gtk_menu_bar_get_property): Implement set_property and get_property.
2878
2879         * gtk/gtkmenubar.c (gtk_menu_bar_size_request): 
2880         (gtk_menu_bar_size_allocate): Take pack direction into account.
2881
2882         * gtk/gtkmenubar.c (gtk_menu_bar_move_current): Implement 
2883         move_current here move all the menubar-specific direction 
2884         tweaking from the generic menushell implementation here.
2885
2886         * gtk/gtkmenu.c (gtk_menu_move_current): Move  menu-specific 
2887         direction tweaking from the generic menushell implementation here.
2888
2889         * gtk/gtkmenuitem.c (gtk_menu_item_size_request): 
2890         (gtk_menu_bar_size_allocate): Take pack direction into account.
2891
2892         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_size_request) 
2893         (gtk_image_menu_item_size_allocate): 
2894         (gtk_image_menu_item_toggle_size_request): Take child pack 
2895         direction into account and pack the image vertically if
2896         necessary.
2897
2898         * gtk/gtkmenushell.c (gtk_menu_shell_real_select_item):
2899         Set the submenu direction to left-right for menuitems in 
2900         vertical menubars.
2901         (gtk_real_menu_shell_move_current): Simplify by moving
2902         direction tweaking to menu- and menubar-specific 
2903         implementations. Take pack direction into account when
2904         doing fallbacks.
2905
2906         * tests/testmenubars.c: Test menubars in various packing
2907         direction combinations.
2908
2909         * tests/Makefile.am (noinst_PROGRAMS): Add testmenubars.
2910
2911 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
2912
2913         Complete the fix for #165770, Vincent Noel:
2914         
2915         * gtk/gtkfilechooserbutton.c (FALLBACK_ICON_SIZE): Make the
2916         fallback size be 16, to be equal to the default for
2917         GTK_ICON_SIZE_MENU (in gtkiconfactory.c:init_icon_sizes()).
2918         (gtk_file_chooser_button_init):
2919         (change_icon_theme): Use GTK_ICON_SIZE_MENU instead of
2920         GTK_ICON_SIZE_SMALL_TOOLBAR. 
2921
2922 2005-02-09  Matthias Clasen  <mclasen@redhat.com>
2923
2924         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current): Fix RTL
2925         keynav for going from menubar to menu.
2926
2927 2005-02-08  Christian Rose  <menthos@menthos.com>
2928
2929         * configure.in: Added "xh" to ALL_LINGUAS.
2930
2931 2005-02-08  Matthias Clasen  <mclasen@redhat.com>
2932
2933         * gtk/gtkuimanager.c (start_element_handler): Accept 
2934         the "expand" attribute and set a flag in the node if it
2935         is set to "true".
2936         (update_node): If the expand flag is set, make separator
2937         toolitems non-drawn and expanding.  (#166489, Christian Persch)
2938
2939 2005-02-05  Hans Breuer  <hans@breuer.org>
2940
2941         * gdk/makefile.msc gdk/win32/makefile.msc gtk/makefile.msc.in :
2942         build with Cairo dependency. The patch to acually use Cairo
2943         on win32 will be on gtk-devel-list soon.
2944         * tests/makefile.msc : add testcairo building
2945
2946         * gtk/stock-icons/makefile.msc : split command line into two to
2947         work with the shells default
2948
2949 Fri Feb  4 14:16:31 2005  Manish Singh  <yosh@gimp.org>
2950
2951         * gtk/gtkaccelgroup.c (substitute_underscores): remove unused
2952         function.
2953
2954         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
2955         Add some extra parens for bitop order of operations disambiguiation.
2956
2957         * gtk/gtkstock.c: Fix const confusion, make our own copy of the 
2958         domain when setting a translate function.
2959
2960         * tests/testcombo.c: removed unused variable.
2961
2962 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
2963
2964         * gtk/gtkstock.c (gtk_stock_lookup): Handle item->translation_domain
2965         being NULL.  (#166179, Diego Gonzalez)
2966
2967 2005-02-04  Owen Taylor  <otaylor@redhat.com>
2968
2969         * configure.in: Revert gtk_binary_version to 2.4.0. Fix
2970         up comment to talk only about backwards compat, not
2971         forward/backwards compat. (#166293, reported by Vincent Noel)
2972
2973 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
2974
2975         * gtk/gtkpaned.c (gtk_paned_compute_position): Work better
2976         when there is not enough space. This avoids a nasty size
2977         allocation loop in the file chooser.  (#154007, reported 
2978         by Milosz Derezynski, patch by Robert Ögren)
2979
2980 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
2981
2982         * gtk/gtkentry.c (gtk_entry_create_layout): Avoid spurious
2983         selection of RTL direction if the widget does not have 
2984         focus.  (#164125, Frederic Crozat)
2985
2986 Thu Feb  3 19:15:55 2005  Manish Singh  <yosh@gimp.org>
2987
2988         * gdk/x11/gdkdrawable-x11.c: #include cairo-xlib.h
2989
2990 2005-02-03  Owen Taylor  <otaylor@redhat.com>
2991
2992         * gdk/gdkdrawable.[ch] gdkpixmap.c gdkwindow.c: Add
2993         gdk_drawable_set_cairo_target().
2994
2995         * tests/testtreeflow.c (enum): Use grand not rand as a variable
2996         name because one of the cairo headers is pulling in stdlib.h.
2997
2998         * tests/testcairo.c tests/Makefile.am: Add a simple cairo based
2999         example.
3000
3001         * configure.in: Bump release to 2.7.0, gtk_binary_version to 2.7.0.
3002
3003         * Require libpangocairo for all backends.
3004
3005 2005-02-03  Tor Lillqvist  <tml@novell.com>
3006
3007         * modules/input/gtkimcontextime.c (get_pango_attr_list): Use the
3008         wide character version of ImmGetCompositionString() here,
3009         too. (#165278, Takuro Ashie)
3010
3011 2005-02-03  Matthias Clasen  <mclasen@redhat.com>
3012
3013         * gtk/gtkmenu.c (gtk_menu_handle_scrolling): Don't do
3014         one roundtrip per motion event.  (#166173, pointed out
3015         by Chris Lee, patch by Søren Sandmann)
3016
3017         * gtk/gtk.symbols: 
3018         * gtk/gtkstock.h: 
3019         * gtk/gtkstock.c (gtk_stock_set_translate_func): 
3020         New function which allows to change the function used for
3021         translation stock labels, on a per-domain basis. Use this
3022         functionality to switch the GTK+ stock items to use Q_()
3023         prefixed msgids.  (#166179, Funda Wang)
3024         
3025         * gdk/gdkkeynames.c: Make the gdk_key array const (#166075,
3026         Tommi Komulainen)
3027
3028 2005-02-02  Federico Mena Quintero  <federico@ximian.com>
3029
3030         Merged from gtk-2-6:
3031
3032         * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
3033         Don't select the first row if the chooser is not mapped.  This
3034         happens when it's acting on behalf of GtkFileChooserButton.  Also,
3035         don't select the first row if we are in SAVE or CREATE_FOLDER
3036         modes --- I had missed that (see the ChangeLog entry from
3037         2005-01-18).  Fixes #165264.
3038
3039 2005-02-02  Tor Lillqvist  <tml@novell.com>
3040
3041         Implement lazy extended input initialization on Win32, by Robert
3042         Ögren. Fixes #163163, possibly #162334. Lazy initialization would
3043         be a good idea in any case even if it didn't fix any visible
3044         problems, though.
3045
3046         The Wacom tablet driver seems to get confused if Wintab is
3047         initialized but no window is shown before the process exits. This
3048         is the case for some GIMP plug-ins, for instance. 
3049
3050         * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check): Made
3051         non-static (and renamed).
3052         (_gdk_input_init): Don't call _gdk_input_wintab_init_check().
3053
3054         * gdk/win32/gdkinput-win32.h: Declare _gdk_input_wintab_init_check().
3055
3056         * gdk/win32/gdkinput.c (gdk_devices_list,
3057         gdk_display_list_devices, gdk_input_set_extension_events): Call
3058         _gdk_input_wintab_init_check() here instead.
3059
3060 2005-02-02  Ivan, Wong Yat Cheung  <email@ivanwong.info>
3061
3062         * gdk/win32/gdkselection.c: Use a FIFO list for storing GdkSelProp
3063         of a single window so that gtk_clipboard_request_contents() can be
3064         called inside a GtkClipboardReceivedFunc(). (#163844)
3065
3066 2005-02-01  Matthias Clasen  <mclasen@redhat.com>
3067
3068         * gtk/gtkicontheme.c (gtk_icon_theme_init): Look for icons
3069         in XDG_DATA_DIRS/pixmaps.  (#165950, Thomas Zajic)
3070
3071         * gtk/gtkwindow.c (gtk_window_set_icon_name): Set info->icon_list
3072         to NULL after freeing it.  (#165800, Damon Chaplin)
3073
3074 2005-02-01  Michael Natterer  <mitch@gimp.org>
3075
3076         * configure.in: depend on stable pango-1.8, not unstable 1.7
3077
3078 2005-02-01  Federico Mena Quintero  <federico@ximian.com>
3079
3080         Merged from gtk-2-6:
3081
3082         * gtk/gtkfilechooserdefault.c
3083         (browse_files_model_finished_loading_cb): Don't
3084         g_assert_not_reached() if we are in any other state.  Another code
3085         path may have triggered a folder reload.  Fixes #165556.
3086
3087 2005-02-01  Federico Mena Quintero  <federico@ximian.com>
3088
3089         Merged from gtk-2-6:
3090
3091         Fix #165770:
3092
3093         * gtk/gtkfilechooserdefault.c (FALLBACK_ICON_SIZE): Make the
3094         fallback size be 16, to be equal to the default for
3095         GTK_ICON_SIZE_MENU (in gtkiconfactory.c:init_icon_sizes()).
3096         (change_icon_theme): Use GTK_ICON_SIZE_MENU instead of
3097         GTK_ICON_SIZE_SMALL_TOOLBAR.
3098
3099 2005-02-01  Matthias Clasen  <mclasen@redhat.com>
3100
3101         * */*.c: Fix many instances of "the the" in docs and
3102         comments.  (#165815, Masao Mutoh)
3103
3104         * gtk/updateiconcache.c (main): Add a --quiet option.
3105
3106 2005-02-01  Tor Lillqvist  <tml@novell.com>
3107
3108         * gdk/win32/gdkkeys-win32.c (handle_special, set_shift_vks,
3109         reset_after_dead, handle_dead): New functions, code blocks
3110         refactored out of update_keymap(). No functionality change.
3111
3112         (update_keymap): Use ToUnicodeEx() when available (on NT-based
3113         Windows) instead of ToAsciiEx(). Makes keyboard input work in
3114         Unicode-only input locales that don't have any ANSI codepage, for
3115         instance Hindi and Bengali. Use _gdk_input_codepage only on
3116         Win9x. (#165723)
3117
3118         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
3119         WM_INPUTLANGCHANGE, use GetLocaleInfo() instead of
3120         TranslateCharsetInfo() to get the input locale's corresponding
3121         codepage, if any.
3122
3123 2005-01-31  Matthias Clasen  <mclasen@redhat.com>
3124
3125         * modules/input/gtkimcontextxim.c: Use NULL, not 0 to terminate 
3126         NULL-terminated va lists.  (#165683)
3127
3128 2005-01-29  Matthias Clasen  <mclasen@redhat.com>
3129
3130         * gtk/gtkseparatortoolitem.c (gtk_separator_tool_item_set_draw): 
3131         Typo fix.  (#165581, Masao Mutoh)
3132
3133 Thu Jan 27 14:25:45 2005  Manish Singh  <yosh@gimp.org>
3134
3135         * README.cvs-commits: update ancient IRC info.
3136
3137 2005-01-27  Federico Mena Quintero  <federico@ximian.com>
3138
3139         Merged from gtk-2-6:
3140
3141         * gtk/gtkfilechooserdefault.c
3142         (gtk_file_chooser_default_select_path): Oops, don't assert that we
3143         can't reach the end of the function; this happens if we are still
3144         loading but don't need a path change.  Fixes #165213.
3145
3146 2005-01-27  Matthias Clasen  <mclasen@redhat.com>
3147
3148         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): 
3149         Make wrapping work in RTL mode.  
3150
3151         * gtk/gtkaboutdialog.c: Some visual tweaks to the about dialog,
3152         obey HIG spacing a bit more, add a hand cursor when over the
3153         link button.  (#163979, Jorn Baayen)
3154
3155 2005-01-26  Matthias Clasen  <mclasen@redhat.com>
3156
3157         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
3158         Don't allow -1 as minimum-key-length.
3159         (gtk_entry_completion_set_model): Add missing notification.
3160         (gtk_entry_completion_set_minimum_key_length): Add missing
3161         notification, allow setting minimum-key-length to 0.  (#165194,
3162         Vincent Ladeuil)
3163
3164 2005-01-26  Matthias Clasen  <mclasen@redhat.com>
3165
3166         * gtk/gtkaboutdialog.c (display_license_dialog): Make sure
3167         the license dialog is initially displayed without a horizontal
3168         scrollbar.  
3169         (gtk_about_dialog_class_init): Document the fact that the 
3170         license text is not wrapped.  (#165012, Christian Rose)
3171
3172 2005-01-25  Matthias Clasen  <mclasen@redhat.com>
3173
3174         * gtk/gtkbutton.c (gtk_button_set_image): Fix docs.  (#165180,
3175         Jeff Franks)
3176
3177         * gdk/x11/gdkwindow-x11.c (gdk_window_configure_finished): Fix 
3178         docs.  (#165163, Jeff Franks)
3179         
3180         * gtk/gtkimage.c (gtk_image_get_property): Use the correct setter
3181         for a string GValue.  (#165203, Damon Chaplin)
3182
3183 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
3184
3185         * gdk/x11/gdkdisplay-x11.c (_gdk_windowing_set_default_display): 
3186         Initialize user_time from DESKTOP_STARTUP_ID.  (#165131,
3187         Elijah Newren)
3188
3189 2005-01-24  Federico Mena Quintero  <federico@ximian.com>
3190
3191         * gtk/gtkfilechooserdefault.c: Removed leftover comments.
3192
3193 2005-01-24  Federico Mena Quintero  <federico@ximian.com>
3194
3195         Merged from gtk-2-6:
3196
3197         Fix #147785 and clean up the loading code:
3198
3199         * gtk/gtkfilechooserdefault.c (LoadState): Make the set of states
3200         be EMPTY, PRELOAD, LOADING, FINISHED.
3201         (gtk_file_chooser_default_init): Start in the LOAD_EMPTY state.
3202         (struct _GtkFileChooserDefault): Added a pending_select_paths
3203         field.
3204         (load_remove_timer): Add the new states.
3205         (load_setup_timer): Likewise.
3206         (load_timeout_cb): Likewise.  Switch to the LOAD_LOADING state.
3207         (browse_files_model_finished_loading_cb): Switch to the
3208         LOAD_FINISHED state.
3209         (enum PendingOp): Removed.
3210         (struct _GtkFileChooserDefault): Removed the pending_op and
3211         pending_select_path fields.
3212         (pending_select_paths_free): New utility function.
3213         (pending_select_paths_add): New utility function.
3214         (gtk_file_chooser_default_finalize): Call
3215         pending_select_paths_free().
3216         (pending_op_queue): Removed.
3217         (pending_op_process): Removed.
3218         (pending_select_paths_process): New function.
3219         (browse_files_model_finished_loading_cb): Call
3220         pending_select_paths_process().
3221         (center_selected_row_foreach_cb): Handle multiple selection by
3222         only centering the first row.
3223         (get_is_file_filtered): Constify.
3224         (gtk_file_chooser_default_select_path): Queue into a list of paths
3225         to select if we are not finished loading.
3226         (show_and_select_paths): New utility function.
3227         (up_folder_handler): Use pending_select_paths_add().
3228         (gtk_file_chooser_default_should_respond): Do not call
3229         pending_op_queue(); free the pending_selected_paths instead.
3230         (gtk_file_chooser_default_initial_focus): Don't queue a pending
3231         operation, and don't select the first row unconditionally --- this
3232         will happen when the folder is done loading.
3233         (shortcuts_row_activated_cb): Free the pending_select_paths.
3234         (pending_select_paths_store_selection): New utility function.
3235         (gtk_file_chooser_default_map): Call
3236         pending_select_paths_store_selection() to save the selection
3237         before reloading the folder.
3238         (select_func): Umm?  Call gtk_tree_selection_select_iter().  Don't
3239         move the cursor here; it will be done when processing the pending paths.
3240
3241         * tests/testfilechooser.c (main): Add a button to the command
3242         window to unmap and remap the file chooser.
3243
3244 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
3245
3246         * docs/tutorial/gtk-tut.sgml:
3247         * docs/tutorial/gtk_tut.sgml:
3248         * docs/reference/gtk/tmpl/gtkliststore.sgml:
3249         * gtk/gtkactiongroup.c:
3250         * gtk/gtksizegroup.c:
3251         * gtk/gtksizegroup.h:
3252         * gtk/gtktogglebutton.c: Replace "effect" by "affect" where
3253         appropriate.  (#165108, Dan Winship)
3254
3255 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
3256
3257         * gtk/gtkwidget.c (gtk_widget_class_init): Document 
3258         GtkWidget::style-set.  (#164222, Alex Graveley)
3259         
3260 2005-01-22  Matthias Clasen  <mclasen@redhat.com>
3261
3262         * gdk/gdkdisplay.h (gdk_display_add_client_message_filter_full): 
3263         Remove the accidentally added prototype for this unimplemented 
3264         function.  (#164893, Jeff Franks)
3265
3266         * gtk/gtktreeview.c (gtk_tree_view_leave_notify): Avoid spurious
3267         drags.  (#164884)
3268
3269 2005-01-23  Tor Lillqvist  <tml@novell.com>
3270
3271         * gdk/win32/gdkkeys-win32.c (update_keymap): Handle Greek tonos
3272         dead accent key. (#164859, reported and fix verified by Daniel
3273         Atallah.)
3274
3275         * gtk/gtkimcontextsimple.c (gtk_compose_seqs): Handle
3276         GDK_Greek_accentdieresis (tonos and dialytika) combining with iota
3277         and upsilon.
3278
3279         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_volume_get_display_name): 
3280         Don't call GetVolumeInformation() for network drives. They might
3281         be disconnected, and calling GetVolumeInformation() will then
3282         cause long delays. (#164448, reported by Dave Neary.) It seems to
3283         be very hard to reliably find out whether a network drive is
3284         connected or not, so it's easier to just not try getting the
3285         volume name for them. See the bug report for discussion.
3286
3287         Make volume name display formats translatable.
3288
3289         Fix for #163702, from Ivan Wong: 
3290         
3291         * gdk/win32/gdkprivate-win32.h 
3292         * gdk/win32/gdkglobals-win32.c: New flag _ignore_destroy_clipboard.
3293         
3294         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle
3295         WM_DESTROYCLIPBOARD. Unless _ignore_destroy_clipboard, generate a
3296         GDK_SELECTION_CLEAR event.
3297
3298         * gdk/win32/gdkselection-win32.c
3299         (gdk_selection_owner_set_for_display): Set _ignore_destroy_clipboard
3300         when emptying the clipboard ourselves.
3301
3302         (gdk_selection_send_notify_for_display): Remove the artifical
3303         GDK_SELECTION_CLEAR event generation.
3304
3305 2005-01-21  Matthias Clasen  <mclasen@redhat.com>
3306
3307         * gtk/gtkwidget.c (gtk_widget_get_accessible): More details
3308         provided by Bill Haneman.
3309
3310 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
3311
3312         * gtk/gtkwidget.c (gtk_widget_get_accessible): Add docs.  (#164725,
3313         George Kraft IV)
3314
3315         * gtk/gtkdialog.c (gtk_dialog_map): Don't loop forever
3316         here, even if the only focusable widgets are labels.
3317
3318 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
3319
3320         Support tinting in GtkCellRendererPixbuf (#162903, Jorn Baayen):
3321         
3322         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init) 
3323         Add a follow-state property which when TRUE causes the pixbuf
3324         to be tinted according to state.
3325
3326         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
3327         Use follow-state and colorize the pixbuf when appropriate.      
3328         
3329 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
3330
3331         Support wrapping in GtkCellRendererText  (#163608):
3332         
3333         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
3334         Add wrap-mode and wrap-width properties which cause a 
3335         text cell to break to a specified width when set.
3336
3337         * gtk/gtkcellrenderertext.c (get_layout): Use wrap-mode
3338         and wrap-width when they are set.
3339
3340 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
3341
3342         * gtk/gtkmodules.c (load_module): Don't reverse the order
3343         of modules when putting them in gtk_modules.  (#162676, Dennis
3344         Cranston, patch by Remus Draica)
3345
3346         * gtk/gtktreeview.c (gtk_tree_view_search_move): Don't crash 
3347         if the tree is empty.  (#164669, Priit Laes)
3348
3349 Wed Jan 19 18:57:02 2005  Manish Singh  <yosh@gimp.org>
3350
3351         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): Call
3352         GDK_DISPLAY_XDISPLAY with a display, not a window. Clean up the
3353         function a bit too.
3354
3355 Wed Jan 19 17:17:31 2005  Manish Singh  <yosh@gimp.org>
3356
3357         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): Squash
3358         strict aliasing warning in _NET_VIRTUAL_ROOTS code.
3359
3360 2005-01-19  Tor Lillqvist  <tml@novell.com>
3361
3362         * gdk/win32/gdkkeys-win32.c (update_keymap,
3363         gdk_keymap_translate_keyboard_state): Handle keyboards with
3364         ShiftLock (and not CapsLock) correctly. (#161814)
3365
3366 2005-01-19  Matthias Clasen  <mclasen@redhat.com>
3367
3368         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_should_respond):
3369         In save mode, don't return paths containing nonexisting 
3370         directories.  (#162443, Jean Marie Favreau)
3371
3372         * gtk/gtkobject.c (gtk_object_add_arg_type): Use GLib limit 
3373         macros to avoid sparse warnings. Pointed out by Kjartan Maraas.
3374
3375         * gdk/x11/gdkdisplay-x11.c: Precache the _NET_VIRTUAL_ROOTS
3376         atom.
3377
3378         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): 
3379         Support _NET_VIRTUAL_ROOTS.  (#163910, Carsten Haitzler)
3380         
3381         * gdk/gdk.symbols: 
3382         * gdk/x11/gdkx.h: 
3383         * gdk/x11/gdkdisplay-x11.c (gdk_x11_display_get_user_time): 
3384         Add a function to obtain the last user interaction 
3385         time.  (#163119, Elijah Newren)
3386
3387 Tue Jan 18 13:56:09 2005  Manish Singh  <yosh@gimp.org>
3388
3389         * gtk/gtkfilechooserdefault.c (pending_op_queue): Actually assign
3390         PENDING_OP_NONE.
3391
3392 Tue Jan 18 13:46:46 2005  Manish Singh  <yosh@gimp.org>
3393
3394         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids):
3395         disambiguate nested if/else.
3396
3397 2005-01-18  Federico Mena Quintero  <federico@ximian.com>
3398
3399         Merged from gtk-2-6:
3400
3401         * gtk/gtkfilechooserdefault.c (pending_op_queue): Don't queue an
3402         operation to select the first file if we are in SAVE or
3403         CREATE_FOLDER modes.  Executing that operation would overwrite the
3404         contents of the save-name entry.
3405
3406 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
3407
3408         * gdk/gdkdisplay.h: 
3409         * gdk/x11/gdkwindow-x11.c (gdk_display_warp_pointer): 
3410         * gdk/win32/gdkwindow-win32.c (gdk_display_warp_pointer): Add
3411         pointer warping to GDK.  (#160437)
3412
3413         * gtk/gtkcolorsel.c (key_press): Use gdk_display_warp_pointer.
3414
3415 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
3416
3417         * gtk/gtkstyle.c (gtk_default_draw_check) 
3418         (gtk_default_draw_option, gtk_default_draw_handle): Add some
3419         more NULL checks, patch by Michael Natterer.
3420
3421 Tue Jan 18 10:55:47 2005  Søren Sandmann  <sandmann@redhat.com>
3422
3423         * gtk/gtkstyle.c (gtk_default_draw_handle): Check for NULL detail
3424         and NULL widget.
3425
3426         * gtk/gtkstyle.c (gtk_default_draw_box): Check for NULL detail and
3427         NULL widget.  (#164477, Michael Natterer)
3428
3429 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
3430
3431         Avoid X errors when running against servers which
3432         implement XRender < 0.4.  (#164427, Albert Chin)
3433         
3434         * gdk/x11/gdkprivate-x11.h:
3435         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids): 
3436         New function to check for trapezoid support in XRender.
3437         (gdk_x11_draw_trapezoids, _gdk_x11_drawable_draw_xtrapezoids): 
3438         Use it here.
3439         
3440         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add a 
3441         separate have_render_with_trapezoids field.
3442
3443         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Initialize it.
3444
3445 2005-01-17  Matthias Clasen  <mclasen@redhat.com>
3446
3447         * gtk/gtkiconview.c: Remove debug output. (#164376, Jens Finke)
3448
3449 Mon Jan 17 16:44:36 2005  Jonathan Blandford  <jrb@redhat.com>
3450
3451         * docs/Makefile.am (EXTRA_DIST): add tree-column-sizing.png to
3452         dist.
3453
3454 2005-01-17  Matthias Clasen  <mclasen@redhat.com>
3455
3456         * gtk/gtkfilechooserdefault.c (shortcuts_add_bookmarks): Save
3457         and restore the selected row in the bookmark list and the
3458         save folder combo.  (#164290)
3459
3460 2005-01-16  Matthias Clasen  <mclasen@redhat.com>
3461
3462         * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_new_with_backend):
3463         Fix argument order in docs.  
3464
3465 2005-01-15  Matthias Clasen  <mclasen@redhat.com>
3466
3467         * gtk/gtktextview.c (gtk_text_view_check_keymap_direction): 
3468         * gtk/gtkentry.c (gtk_entry_create_layout): Prefer LTR over RTL 
3469         if the keymap is neutral.  (#164125, Phil Blundell)
3470
3471 2005-01-14  Matthias Clasen  <mclasen@redhat.com>
3472
3473         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Allow to
3474         reset the property to its default value -1. 
3475         (gtk_tree_view_get_search_column): Return the default value in
3476         the g_return_val_if_fail() check.  (#163864, Richard Hult)
3477
3478         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_set_value): 
3479         Add a translator hint.  (#163889)
3480
3481         * configure.in: Check for _NL_TIME_FIRST_WEEKDAY too, since it
3482         is an enum value, not a define. Pointed out by Tommi Komulainen.
3483         * gtk/gtkcalendar.c (gtk_calendar_init): Adapt.
3484
3485 2005-01-13  Matthias Clasen  <mclasen@redhat.com>
3486
3487         * configure.in: Check for nl_langinfo()
3488         * gtk/gtkcalendar.c (gtk_calendar_init): Use nl_langinfo() when it's
3489         available to determine first day of week   (#163842, Vincent Untz)
3490
3491         * gtk/gtkuimanager.c (gtk_ui_manager_get_widget): Add hints about 
3492         the lifecycle of widgets.  (#159503, Christian Persch)
3493
3494         * demos/gtk-demo/main.c (create_text): Use monospace for the 
3495         source code view.  (#163526, Theerud Lawtrakul)
3496
3497         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Use R as mnemonic
3498         for the Credits button to avoid duplicate.  (#163465, Tim-Philipp 
3499         Müller)
3500         
3501         * configure.in: Add an OS_LINUX conditional.
3502
3503         * gdk/Makefile.am (TESTS):
3504         * gdk-pixbuf/Makefile.am (TESTS):
3505         * gtk/Makefile.am (TESTS): Only run abicheck on Linux.  (#163917,
3506         Roger Leigh)
3507
3508 2005-01-13  Matthias Clasen <mclasen@redhat.com>
3509
3510         * gtk/gtktreeview.c: (gtk_tree_view_class_init),
3511         (gtk_tree_view_set_headers_clickable): Make the headers-visible
3512         property readwrite instead of just writable, and remove the
3513         g_return_if_fail check that there is a model when setting this
3514         property. Also improve the blurb.  (#163851, Richard Hult)
3515
3516 2005-01-12  Owen Taylor <otaylor@redhat.com>
3517
3518         * configure.in: Remove GLIB_DIVERT_BEFORE_HELP() on
3519         initialization of gdktarget, that was causing it to be
3520         evaluated before host was set. Simplify --with-gdktarget help
3521         message.
3522
3523         * gtk/Makefile.am: Use grep | head -n 1 instead of grep -m 1 
3524         which doesn't work with slightly older versions of GNU grep 
3525         in install-libtool-import-lib rule.
3526         
3527 2005-01-12  Tor Lillqvist  <tlillqvist@novell.com>
3528
3529         Fix for #162790, by Iwan Wong:
3530         
3531         * gdk/win32/gdkdrawable-win32.c: Implement dashed lines
3532         correctly. Simplify the interface to render_line_horizontal() and
3533         render_line_vertical(). Need to draw lines "manually" also on
3534         NT-based Windowses if we have a dash offset or are drawing
3535         double-dashed lines.
3536
3537         * gdk/win32/gdkprivate-win32.h: Keep also the dash offset,
3538         double-dash flag, and a brush for the background colour (used by
3539         the odd dashes in the double-dash line style) in the GdkGCWin32
3540         struct.
3541
3542         * gdk/win32/gdkgc-win32.c: Set up above new fields.
3543
3544 2005-01-10  Federico Mena Quintero  <federico@ximian.com>
3545
3546         Fix #162617.
3547
3548         * gtk/gtkfilesystemunix.c (STAT_NEEDED_MASK): Take out
3549         GTK_FILE_INFO_IS_HIDDEN; we don't need to stat() to know this.
3550         (gtk_file_system_unix_get_folder): Make error reporting more
3551         accurate.  Don't bail out if we can't read the directory.
3552         (fill_in_stats): Don't return an error; just assume we don't have
3553         stat info for this folder's files.
3554         (fill_in_names): Don't create the hash table for the names if we
3555         can't open the directory.
3556         (gtk_file_folder_unix_list_children): Don't emit the
3557         "finished-loading" signal --- we don't do asynchronous loads, so
3558         we are always finished loading.
3559         (gtk_file_folder_unix_get_info): Use helper functions; handle the
3560         case where we can't stat '/'.
3561         (get_icon_type_from_path): Don't call fill_in_stats() here; only
3562         use the info we have.
3563         (fill_in_mime_type): Don't return an error.  Don't do anything if
3564         we don't have the stat info.
3565
3566 2005-01-10  Owen Taylor  <otaylor@redhat.com>
3567
3568         * Makefile.am (EXTRA_DIST): Adding missing ChangeLog.pre*
3569         to EXTRA_DIST.
3570
3571 2005-01-10  Matthias Clasen  <mclasen@redhat.com>
3572
3573         * gtk/gtkaccelgroup.c (gtk_accel_group_class_init): Document
3574         signals.  (#163319, Murray Cumming)
3575
3576 2005-01-09  Tor Lillqvist  <tlillqvist@novell.com>
3577
3578         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Set current
3579         cursor also when changing the cursor of a window that is the first
3580         ancestor of the window containing the pointer that has a cursor
3581         defined. (#163035, Ivan Wong)
3582
3583 2005-01-09  Anders Carlsson <andersca@gnome.org>
3584
3585         * gtk/gtkcellrenderertext.c: (get_size):
3586         * gtk/gtklabel.c: (gtk_label_size_request):
3587         * gtk/gtkprogressbar.c: (gtk_progress_bar_size_request):
3588         Don't pass NULL to pango_context_get_metrics. Use 
3589         pango_context_get_language instead, which is way faster.
3590         
3591 2005-01-08  Matthias Clasen  <mclasen@redhat.com>
3592
3593         * configure.in: Bump version
3594
3595         * === Released 2.6.1 ===
3596         
3597         * gdk-pixbuf-2.0.pc.in: Require gmodule-no-export-2.0
3598
3599 2005-01-07  Tor Lillqvist  <tml@iki.fi>
3600
3601         * gdk/win32/gdkselection-win32.c (_gdk_selection_property_store):
3602         Fix braino. (#163232, Arnaud Charlet)
3603
3604 2005-01-06  Matthias Clasen  <mclasen@redhat.com>
3605
3606         * gtk/gtkiconview.c: Make markup_column work, and fix some
3607         layout issues when either icon or text is missing.  (#163065)
3608
3609 2005-01-06  Federico Mena Quintero  <federico@ximian.com>
3610
3611         * gtk/gtkfilechooserdefault.c (file_list_build_popup_menu): Add an
3612         "Open _Location" item.  Fixes #148839.
3613
3614 2005-01-06  Matthias Clasen  <mclasen@redhat.com>
3615
3616         * README.in: Fix a typo.  (#163128, kentaro fukuchi)
3617
3618 2005-01-06  James M. Cape  <jcape@ignore-your.tv>
3619
3620         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_new)
3621         (gtk_file_chooser_button_new_with_backend): Use default title if
3622         NULL is passed.
3623
3624         * docs/reference/gtk/tmpl/gtkfilechooserbutton.sgml: Make examples
3625         match API.
3626
3627 2005-01-05  Federico Mena Quintero  <federico@ximian.com>
3628
3629         Fix #161409:
3630
3631         * gtk/gtkfilechooserdefault.c (shortcuts_row_activated_cb): Queue
3632         a pending operation to select the first row.
3633
3634 2005-01-05  Federico Mena Quintero  <federico@ximian.com>
3635
3636         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Don't call
3637         button_data_free() explicitly; the button is weak-reffed and the
3638         callback will free the button data.  Fixes #163010.
3639         (_gtk_path_bar_set_path): Don't ref/sink the button.  And for the
3640         failure case, call gtk_widget_destroy() on it.
3641
3642         * gtk/gtkfilechooserdefault.c (check_is_folder): Use
3643         gtk_file_system_get_folder() again (see the ChangeLog entry from
3644         2004-08-25).  We can't first get the parent folder and then
3645         request the info for the path in question, as the parent folder
3646         may not be readable.  See bug #162617.
3647         (gtk_file_chooser_default_set_current_folder): Assert that the
3648         passed-in path is not null.
3649         (shortcuts_find_current_folder): Likewise.
3650         (shortcuts_add_current_folder): Likewise.
3651         (set_list_model): Likewise.
3652         (gtk_file_chooser_default_map): Only reload the current folder if
3653         it exists.
3654         (bookmarks_check_add_sensitivity): Check for the current folder
3655         being NULL.
3656         (browse_files_select_first_row): Don't set the cursor if there is
3657         no model loaded.
3658
3659 2005-01-05  Matthias Clasen  <mclasen@redhat.com>
3660
3661         * gtk/gtkfilechooserdefault.c: Don't construct errors from 
3662         the GTK_FILE_SYSTEM_ERROR domain. Partial fix for #162911.
3663         (get_file_info, check_is_folder): Translate errors from
3664         the filesystem into the GTK_FILE_CHOOSER_ERROR domain. Rest
3665         of the fix for #162911, noticed by Murray Cumming.
3666
3667 Wed Jan  5 11:42:49 2005  Søren Sandmann  <sandmann@redhat.com>
3668
3669         * gtk/gtkviewport.c (gtk_viewport_realize):
3670         * gtk/gtktextview.c ((text_window_realize): Set the background of
3671         the windows to None instead of adding EXPOSURE_MASK, as suggested
3672         by Owen in #162112.
3673
3674         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter): Update 
3675         the user time when receiving a WM_DELETE message.  (#162980, 
3676         Elijah Newren)
3677         
3678 Tue Jan  4 16:52:14 2005  Jonathan Blandford  <jrb@redhat.com>
3679
3680         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_event):
3681         only reorder on button 1, part of #141937
3682
3683 Tue Jan  4 11:36:43 2005  Søren Sandmann  <sandmann@redhat.com>
3684
3685         Bug 162112.
3686         
3687         * gtk/gtktextview.c (text_window_realize): Add GDK_EXPOSURE_MASK
3688         to win->window's event_mask
3689
3690         * gtk/gtkviewport.c (gtk_viewport_realize): Add GDK_EXPOSURE_MASK
3691         to viewport->view_window.
3692
3693 2005-01-04  Matthias Clasen  <mclasen@redhat.com>
3694
3695         * demos/testpixbuf.c (main): Remove the size_prepared callback,
3696         to test incremental display.
3697         (new_testrgb_window): Return the drawing area, not the window,
3698         since we want to queue draws on the drawing area.
3699
3700 2005-01-03  Matthias Clasen  <mclasen@redhat.com>
3701
3702         * examples/*: Re-extract.
3703
3704         * docs/tutorial/gtk-tut.sgml: Small corrections.
3705         
3706         * docs/tutorial/gtk-tut.sgml: Some updates for the drawing
3707         section.  (#161414, Robert Ancell)
3708
3709         * docs/tutorial/gtk-tut.sgml: Make it build.
3710
3711         * gtk/gtkdialog.c (gtk_dialog_run): Some clarification
3712         regarding modality.  (#112903, Dave Bordoley)
3713
3714         * gtk/gtkfixed.c (gtk_fixed_set_has_window): 
3715         Add a little motivation.  (#145556, Tommi Komulainen)
3716
3717         * docs/tutorial/gtk-tut.sgml: Clarify section on 
3718         g_signal_connect_swapped.   (#120543, David Bourguignon)
3719
3720         Make gtk_icon_theme_load_icon() work independent of
3721         icon factory initialization.  (#162791, Tristan Van Berkom)
3722         
3723         * gtk/gtkiconfactory.[hc]: Rename ensure_default_icons to
3724         _gtk_icon_factory_ensure_default_icons, and make it non-static.
3725
3726         * gtk/gtkicontheme.c (find_builtin_icon): ..and call it here.
3727
3728 2005-01-02  Matthias Clasen  <mclasen@redhat.com>
3729
3730         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_remove_shortcut_folder): 
3731         Don't add a shortcut here.  (#162752, Tor Lillqvist)
3732
3733 2005-01-02  Tor Lillqvist  <tml@iki.fi>
3734
3735         * gtk/Makefile.am (libgtk_target_ldflags): Add -lole32, needed for
3736         CoTaskMemFree in get_special_folder() below.
3737
3738         * gtk/gtkfilesystem.h: Implement case-insensitive path compare on
3739         Win32 using _gtk_file_system_win32_path_compare().
3740
3741         * gtk/gtk.symbols: Add _gtk_file_system_win32_path_compare.
3742
3743         * gtk/gtkfilechooserbutton.c (model_add_special)
3744         * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Use
3745         _gtk_file_system_win32_get_desktop() to get correct Desktop folder
3746         on Win32. (#144003)
3747
3748         * gtk/gtkfilesystemwin32.c: Remove unnecessary includes. Do
3749         consider all drives "mounted", including floppies. Trying to
3750         inspect the contents of a nonexistent floppy will cause errors
3751         later that are handled normally, no need to avoid them
3752         completely. Keep the drive type in the GtkFileSystemVolume.
3753         Support UNC paths. (#161797, #137874) Fix error message
3754         capitalizations as in gtkfilesystemunix.c.
3755
3756         (gtk_file_system_win32_init): Start one timeout per
3757         GtkFileSystemWin32.
3758
3759         (gtk_file_system_win32_finalize): Remove the timeout.
3760
3761         (get_special_folder): Copied from GLib.
3762
3763         (_gtk_file_system_win32_get_desktop): New function, uses
3764         get_special_folder().
3765
3766         (gtk_file_system_win32_list_volumes): Don't start a timeout at
3767         each call to this function. Don't assume A: and B: are floppies.
3768
3769         (gtk_file_system_win32_get_volume_for_path): Don't assume all
3770         volumes are drive roots, i.e. support share roots of UNC paths
3771         (\\server\share).
3772
3773         (gtk_file_system_win32_get_folder): Don't assume errno is set
3774         after g_file_test() returns FALSE. It isn't on Win32 (and even on
3775         Unix I don't think one should assume anything about errno after
3776         g_file_test()).
3777
3778         (gtk_file_system_win32_volume_get_is_mounted): Always return TRUE.
3779
3780         (gtk_file_system_win32_volume_get_display_name): Don't call
3781         GetVolumeInformation() on drives A: or B: if they are removable,
3782         as they might then be floppies, causing an unnecessary
3783         delay. (#157820)
3784
3785         (gtk_file_system_win32_volume_render_icon): Use network icon for
3786         unrecognized drive types.
3787
3788         (canonicalize_filename, gtk_file_system_win32_parse): Don't get
3789         confused by UNC paths.
3790
3791         (bookmarks_serialize): Use _gtk_file_system_win32_path_compare()
3792         for case-insensitive UTF-8 path comparison.
3793
3794         (extract_icon): Use SHGetFileInfo() which is faster than
3795         ExtractAssociatedIcon(). Icon extraction is still slow, though,
3796         needs work.
3797
3798         (win32_pseudo_mime_lookup): Don't use the same icon for all
3799         shortcuts or executables. Cache only other file type icons.
3800
3801         (gtk_file_system_win32_render_icon): Use network stock icon for
3802         remote drives and UNC server share roots. Compare home directory
3803         case-insensitively. Do lookup icons also for executable files,
3804         after all, it's these files that can have individual icons in the
3805         first place. Yes, it can be slow. Needs work.
3806
3807         (filename_is_drive_root): Require also the slash after the colon.
3808
3809         (filename_is_server_share): New function.
3810
3811         (_gtk_file_system_win32_path_compare): New function, does
3812         case-folded UTF-8 comparison.
3813
3814         * gtk/gtkfilesystemwin32.h: Declare
3815         _gtk_file_system_win32_path_compare().
3816
3817 2005-01-01  Matthias Clasen  <mclasen@redhat.com>
3818
3819         * gtk/gtkbutton.c (gtk_button_set_image): Allow unsetting the
3820         custom image by passing NULL.
3821         (gtk_button_init): Initialize image_is_stock to TRUE, fixing
3822         a problem with changing stock labels.  (#162273, Marcin 
3823         Krzyzanowski)
3824
3825 2005-01-01  Tor Lillqvist  <tml@iki.fi>
3826
3827         * gtk/gtkmodules.c (get_module_path)
3828         * gtk/gtkrc.c (gtk_rc_make_default_dir, gtk_rc_get_im_module_file,
3829         gtk_rc_get_theme_dir, gtk_rc_add_initial_default_files): With
3830         g_getenv() now returning UTF-8 on Win32, no need to call
3831         g_locale_to_utf8().
3832
3833 2004-12-31  Matthias Clasen  <mclasen@redhat.com>
3834
3835         * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval) 
3836         (_gtk_key_hash_lookup): Don't sort a list of values as if
3837         it was a list of entries. This fixes crashes during mnemonic
3838         activation in the presence of multiple keymaps. (#162488, 
3839         Christian Persch)
3840
3841 2004-12-30  Matthias Clasen  <mclasen@redhat.com>
3842
3843         * gtk/gtkcombobox.c (gtk_combo_box_button_state_changed): Fix
3844         state propagation when making an insensitive combo box sensitive
3845         again.  (#162524, Carlos Garnacho Parro)
3846
3847         * gtk/gtkfilechooserdefault.c: Use secondary text for error 
3848         dialogs.
3849
3850         * gtk/gtkfilesystemunix.c: Clean up some cases of errno handling
3851         (#162496, noted by Tor Lillqvist), and use g_filename_display_name()
3852         for error messages. Also mark some error messages for translation,
3853         fix capitalization of error messages.
3854
3855         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property): 
3856         Use g_value_get_boolean() for ellipsize_set.  (#162447, 
3857         Brian Tarricone)
3858
3859 2004-12-30  Tor Lillqvist  <tml@iki.fi>
3860
3861         * gtk/gtkicontheme.c (gtk_icon_theme_init): Use /usr/share/pixmaps
3862         only on Unix.
3863
3864 2004-12-28  Matthias Clasen  <mclasen@redhat.com>
3865
3866         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Inherit
3867         submenu direction from the parent menu.
3868
3869         * gtk/gtkmenushell.c (gtk_menu_shell_select_submenu_first): 
3870         Return a boolean indicating whether an item in the submenu
3871         was selected.
3872         (gtk_real_menu_shell_move_current): When going in child 
3873         direction, don't get stuck at completely insensitive 
3874         submenus.  (#162055, Billy Biggs)       
3875
3876 2004-12-27  Matthias Clasen  <mclasen@redhat.com>
3877
3878         Make the clipboard image API more robust (#162357, 
3879         Torsten Schoenfeld):
3880         
3881         * gtk/gtkclipboard.c (clipboard_image_received_func): Don't
3882         ref the pixbuf if it is NULL.
3883
3884         * gtk/gtkselection.c (gtk_selection_data_set_pixbuf): 
3885         NULL-terminate the varargs in the call to 
3886         gdk_pixbuf_save_to_buffer(). 
3887         (gtk_selection_data_get_pixbuf): Only use a pixbuf loader 
3888         if there is data to load.
3889
3890 2004-12-27  Matthias Clasen  <mclasen@redhat.com>
3891
3892         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event): 
3893         Set x_root and y_root in button and motion events from 
3894         extended input devices.  (#148715, Robert Ögren)
3895
3896         * gtk/gtktreeview.c (gtk_tree_view_class_init): Fix a 
3897         typo.  (#162339, Alessio Dessi)
3898
3899         * gtk/gtkadjustment.c (gtk_adjustment_class_init): Document
3900         properties as new since 2.4.  (#156101, Billy Biggs)
3901
3902         * configure.in: Add a warning about the linux-fb 
3903         target.  (#155488, Zeeshan Ali)
3904
3905         * gtk/gtkmain.c (gtk_init_with_args): Typo fix.  (#162278,
3906         Torsten Schoenfeld)
3907
3908 2004-12-26  Matthias Clasen  <mclasen@redhat.com>
3909
3910         * gtk/gtkfilechooser.c (gtk_file_chooser_set_action): 
3911         Typo fix.  (#162219, Masao Mutoh)
3912         (gtk_file_chooser_set_preview_widget_active): 
3913         Another typo.  (#162218, Masao Mutoh)
3914
3915 2004-12-23  Matthias Clasen  <mclasen@redhat.com>
3916
3917         * gtk/gtkliststore.c (gtk_list_store_iter_children): 
3918         Return TRUE if there are children.  (#162134, Iñigo Serna,
3919         patch by John Finlay)
3920
3921         * gtk/gtkcombobox.c (gtk_combo_box_button_state_changed): 
3922         Transfer state from the button to the cell view to get
3923         prelighting right.  (#156327, Ricardo Veguilla)
3924
3925 Wed Dec 22 14:22:19 2004  Søren Sandmann  <sandmann@redhat.com>
3926
3927         * tests/testtoolbar.c (timeout_cb): Add sensitivity-changing
3928         timeout. Written by Christian Persch.
3929
3930 Wed Dec 22 14:14:02 2004  Søren Sandmann  <sandmann@redhat.com>
3931
3932         Bug #161561
3933         
3934         * gdk/x11/gdkwindow-x11.c (tmp_{re,un}set_bg): Only set/reset the
3935         background for windows that get expose events. 
3936
3937         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Remove
3938         hack to repaint !expose windows.
3939
3940 Wed Dec 22 11:35:41 2004  Søren Sandmann  <sandmann@redhat.com>
3941
3942         Bug #147497, make menu items activate immediately when you release
3943         the button.
3944         
3945         * gtk/gtkmenu.c (gtk_menu_enter_notify, menu_motion_notify): Make
3946         items activate immediately.
3947
3948         * gtk/gtkmenu.c (definitely_within_item): New function
3949         * gtk/gtkmenu.c (check_threshold): New function
3950
3951 2004-12-22  Matthias Clasen  <mclasen@redhat.com>
3952
3953         * gtk/gtklabel.c (gtk_label_setup_mnemonic): Don't forget to
3954         null the mnemonic_menu when unsetting a mnemonic, reported
3955         by Owen Taylor.
3956
3957 2004-12-21  Matthias Clasen  <mclasen@redhat.com>
3958
3959         * gtk/gtkliststore.c (generate_order): Generate the order the
3960         way it is supposed to be, order[new_pos] == old_pos.
3961         (gtk_list_store_reorder): Invert the order before using it.
3962
3963 2004-12-22  Matthias Clasen  <mclasen@redhat.com>
3964
3965         Fix sorting of list stores.  (#161886, Marcin Krzyzanowski)
3966
3967         * gtk/gtkliststore.c (generate_order): Generate the order the
3968         way it is supposed to be, order[new_pos] == old_pos.
3969         (gtk_list_store_reorder): Invert the order before using it.
3970
3971         * gtk/gtkiconview.c (gtk_icon_view_rows_reordered): Adapt to the
3972         list store fix.
3973
3974 Wed Dec 22 01:24:01 2004  Jonathan Blandford  <jrb@redhat.com>
3975
3976         * gtk/queryimmodules.c (main): print out the version and binary
3977         name in the header comment.  Problem reported by Seth Nickell.
3978
3979 2004-12-20  Matthias Clasen  <mclasen@redhat.com>
3980
3981         * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): Pass a
3982         root path to gtk_tree_model_rows_reordered().  (#161720,
3983         Marcin Krzyzanowski)
3984
3985         * gtk/gtkactiongroup.c (gtk_action_group_translate_string): Don't 
3986         translate NULL messages.  (#161789, Morten Welinder)
3987
3988         * gtk/gtkmessagedialog.c (setup_primary_label_font): Don't show
3989         the secondary label on show_all().  (#161707, Christian Persch)
3990
3991 2004-12-19  Tor Lillqvist  <tml@iki.fi>
3992
3993         * gdk/win32/gdkdnd-win32.c (resolve_link, gdk_dropfiles_filter):
3994         Use wide character API when available. Use UTF-8 for filenames.
3995
3996         * gdk/win32/gdkselection-win32.c (_gdk_dropfiles_store): Include
3997         the string's trailing zero byte in the property's length, just for
3998         safety.
3999
4000 2004-12-18  Matthias Clasen  <mclasen@redhat.com>
4001
4002         * gtk/gtkfilechooserentry.c (check_completion_callback) 
4003         (load_directory_callback): Add missing GDK_THREADS_ENTER/LEAVE.
4004
4005         * gtk/gtkfilechooserdefault.c (edited_idle_cb) 
4006         (shortcuts_drag_outside_idle_cb): Add missing 
4007         GDK_THREADS_ENTER/LEAVE.  (#161604)
4008         
4009         * gtk/gtkfilechooserdefault.c (selection_check_foreach_cb): 
4010         (list_select_func): Don't call gtk_file_info_get_is_folder()
4011         on NULL. 
4012
4013         * gtk/gtkaboutdialog.c (gtk_about_dialog_get_logo_icon_name): 
4014         (gtk_about_dialog_init): Add missing initializations.  (#161646,
4015         Torsten Schoenfeld)
4016