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