X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=ChangeLog.pre-2-8;h=aca30263eaf415423be6245368aa590e79134bdc;hb=50884b70f43350f1904807834cc8a210fee54efb;hp=33fa8967519cf0ba7894b6ad19fe4dbb98ca540a;hpb=f60781222651127db4c08bde29f0d58beefc673d;p=~andy%2Fgtk diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 33fa89675..aca30263e 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,289 @@ +Thu Nov 7 14:24:45 2002 Owen Taylor + + * gtk/gtkhandlebox.c: Add a snap_edge_set property to + deal with the fact that we have an unset state for + the snap_edge property. (Reported by Matthias Clasen + #97505) + +Thu Nov 7 12:53:08 2002 Owen Taylor + + * gtk/gtkwidget.[ch] gtk/gtkwindow.c gtk/gtkinvisible.c: + Add ::screen-changed signal. + + * gtk/gtkfontsel.c gtk/gtktoolbar.c: Use ::screen-changed + signal to simplify logic. + +2002-11-07 Anders Carlsson + + * tests/testgtk.c (create_resize_grips): Add resize grips test. + +Sun Nov 3 21:26:20 2002 Kristian Rietveld + + Bah, and of course I broke something ... + + * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach): fix + up the mess I caused with my commit of Oct 23 fixing #50263, things + should be fine now. + +Sun Nov 3 13:03:29 2002 Owen Taylor + + * gtk/gtkfilesel.c configure.in: Remove check for + winsock.h since it might show up on Linux+Wine. + Instead just conditionalize of G_OS_WIN32. + (#97396, Gaute Lindkvist) + +Sun Nov 3 01:39:20 2002 Kristian Rietveld + + * gtk/gtktreemodel.c (release_row_references): took out the useless + check for refs->list (#97353, reported by Morten Welinder). + + * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_get_size): + check if width isn't zero instead of calc_width ... + +Sat Nov 2 23:48:52 2002 Kristian Rietveld + + * gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_model): remove + the second ref command on the child_model, we only have to ref it + once here. (#96851, reported by Jorn Baayen). + +2002-11-02 Matthias Clasen + + * gtk/gtkhandlebox.c (effective_handle_position): + (gtk_handle_box_size_request): + (gtk_handle_box_size_allocate): + (gtk_handle_box_draw_ghost): + (gtk_handle_box_paint): + (gtk_handle_box_button_changed): + (gtk_handle_box_motion): + Flip handleboxes for RTL locales. (#96629) + +Sat Nov 2 13:47:09 2002 Owen Taylor + + * === Released 2.1.2 === + + * NEWS: Update. + +Sat Nov 2 00:22:33 2002 Owen Taylor + + Add startup notification hooks - mostly based on patch + by Havoc Pennington in #96772. + + * gdk/gdk.h gdk/x11/gdkdisplay-x11.c + gdk/{win32,linux-fb}/gdkmain-*.c: (gdk_notify_startup_complete): + new function that indicates an application has finished starting + up. + + * gdk/x11/gdkmain-x11.c gdk/x11/gdkdisplay-x11.c + (_gdk_windowing_set_default_display): store value of + DESKTOP_STARTUP_ID on the default screen, and clear it from the + environment. + + * gdk/x11/gdkdisplay-x11.c: + Set _NET_STARTUP_ID hint on display's group leader window. + + * gtk/gtkwindow.c (gtk_window_set_auto_startup_notification): + function to toggle whether we automatically broadcast that we've + started up, after mapping the first toplevel window. + (gtk_window_map): call gdk_screen_notify_startup_complete() by + default, unless enabled by above. + + * gtk/gtkmain.c gtk/gtkcombo.c gtk/gtktoolbar.c: + Couple of warning fixes. + +Fri Nov 1 21:03:59 2002 Owen Taylor + + * gtk/gtkfilesel.c: Add a mnemonic to the "selection" + label. (More of #74267) + + * configure.in: Version 2.1.2 + + * NEWS: Updates. + +2002-11-02 Matthias Clasen + + * gtk/stock-icons/stock_jump_to_rtl_16.png, + * gtk/stock-icons/stock_jump_to_rtl_24.png: Mirrored variants + of stock_jump_to. + + * gtk/stock-icons/Makefile.am: + * gtk/gtkiconfactory.c (get_default_icons): Flip GTK_STOCK_FIRST, + GTK_STOCK_LAST and GTK_STOCK_JUMP_TO for RTL locales. (#96633) + + * gtk/gtkaccellabel.c (gtk_accel_label_expose_event): + Flip accel labels for RTL locales. (#96637) + + * gtk/gtktearoffmenuitem.c (gtk_tearoff_menu_item_paint): + * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_draw_indicator): + * gtk/gtkimagemenuitem.c (gtk_image_menu_item_size_allocate): + * gtk/gtkmenuitem.c (gtk_menu_item_init): + (gtk_menu_item_size_request): + (gtk_menu_item_size_allocate): + (gtk_menu_item_paint): + (gtk_menu_item_select_timeout): + (gtk_menu_item_position_menu): Flip all kinds of menu items for + RTL locales. (#96637) + + * gtk/gtkstyle.c (gtk_default_draw_resize_grip): Support resize + grips for all edges. (#52833) + + * gtk/gtkstyle.c (gtk_default_draw_box): + * gtk/gtkoptionmenu.c (gtk_option_menu_size_allocate): + (gtk_option_menu_paint): Flip option menus for RTL + locales. (#96631) + + * gtk/gtkmenubar.c (gtk_menu_bar_size_allocate): Flip menubars + for RTL locales. (#96627) + + * gtk/gtkprogressbar.c (gtk_progress_bar_act_mode_enter): + (gtk_progress_bar_paint): Flip progress bars for RTL + locales. (#96634) + + * gtk/gtktoolbar.c (gtk_toolbar_size_allocate): Flip toolbars + for RTL locales. (#96626) + +2002-11-01 Matthias Clasen + + * gdk/x11/gdkim-x11.c: + * gdk/gdkfont.c: + * gdk/x11/gdkfont-x11.c: + * gdk/gdkdraw.c: Some docs moved inline. + +Thu Oct 31 17:41:12 2002 Owen Taylor + + * gtk/gtktooltips.c (gtk_tooltips_update_screen): Fix + from Nam SungHyun for crashes when tooltips->active_tips_data + is NULL. + +Thu Oct 31 12:40:39 2002 Owen Taylor + + * gdk/gdk.[ch] gdk/gdkglobals.c gdk/gdkinternals.h + gdk/{x11,win32,linux-fb}/gdkscreen-{x11,win32,linux-fb}.c: + Add a --screen option for setting the default screen. + (Based on a patch from Balamurali Viswanathan, #81145) + + * gdk/gdk.c gdkdisplay.h gtk/gtkmain.c: Add + gdk_display_open_default_libgtk_only(), so gtk_init_check() + and gdk_init_check() can share the same behavior w.r.t. + --screen. + + * gdk/gdk.[ch]: Make gdk_get_display_arg_name() G_CONST_RETURN. + + * gdk/x11/gdkselection-x11.c (gdk_selection_property_get): + Suppress a spurious warning. + + * tests/testgtkrc: Remove someleft-over commented out + includes that could be confusing. + +2002-10-31 Padraig O'Briain + + * gtk/gtktoolbar.c (gtk_toolbar_insert_stock): Move g_free() + call to before return. + +2002-10-29 Matthias Clasen + + * tests/testgtkrc: Adjust for current gtk-engines. + + * gdk/x11/gdkcolor-x11.c (gdk_colors_free): Use the same parameter + names in header, docs and implementation. + + * gdk/gdkcolor.c (gdk_colors_store): Doc comment fix. + + * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): Fix + example in doc comment. + + * gtk/gtkiconfactory.c (gtk_icon_size_lookup_for_settings): + * gtk/gtkfilesel.c (gtk_file_selection_get_selections): Doc + comment fixes. (#97136, #97125, Vitaly Tishkov) + + * gtk/gtktreeselection.c (gtk_tree_selection_get_selected_rows): + * gtk/gtkwindow.c (gtk_window_set_default_icon_from_file): Doc + comment fixes. (#95829, #96818, Vitaly Tishkov) + +Tue Oct 29 20:39:16 2002 Soeren Sandmann + + * gtk/gtkmenu.c: Change NAVIGATION_REGION_OVERSHOOT back to 50, + and create stay-up regions by flipping a fourth quadrant triangle + as appropriate. + +2002-10-28 Tor Lillqvist + + * gdk/win32/gdkwindow-win32.c (gdk_window_set_decorations, + gdk_window_set_functions): Don't call GetWindowLong for + GWL_EXSTYLE, the extended window style wasn't used or + changed. After setting the window style with SetWindowLong, call + SetWindowPos with the SWP_FRAMECHANGED flag for the window to + actually be updated, as Platform SDK docs say one should. (#95812, + huzheng) + +2002-10-28 Dmitry G. Mastrukov + + * configure.in: Added Belorusian (be) to ALL_LINGUAS. + +Sun Oct 27 15:58:30 2002 Kristian Rietveld + + This fixes a scrolling bug. Shouldn't cause problems, but you + never know ... (#81627, testcase by Timo Sirainen). + + * gtk/gtktreeview.c (validate_visible_area): add a temporary + implemention for non use_align, always update dy and ->top_row + if we scroll here, + (gtk_tree_view_clamp_node_visible): reimplement using + _scroll_to_cell (#73895). + +Sun Oct 27 11:41:37 GMT 2002 Tony Gale + + * docs/tutorial/gtk-tut.sgml: + minor cleanups, remove refs to gtk_menu_append + + *docs/faq/gtk-faq.sgml: remove ref to gtk_menu_append + +Fri Oct 25 23:36:30 2002 Soeren Sandmann + + * gtk/gtkmenu.c: Change NAVIGATION_REGION_OVERSHOOT from 50 to 5. + +Fri Oct 25 17:56:24 2002 Owen Taylor + + * gtk/gtknotebook.c (gtk_notebook_switch_focus_tab): + Always switch to the page with the focused tab + label. (#82108, Matt Wilson.) + +Fri Oct 25 17:46:18 2002 Owen Taylor + + * gtk/gtknotebook.c (gtk_notebook_button_press): + Don't handle button 2/3 on the tabs. (#82118, + Matt Wilson.) + +Fri Oct 25 17:32:44 2002 Owen Taylor + + * gtk/gtktoolbar.c: Don't insert mnemonics for stock + items (#72918, reported by Mikael Hallendal) + +Fri Oct 25 14:51:34 2002 Owen Taylor + + * gtk/gtkfilesel.c: Fix sensitivity of file operation + buttons and buttons inside fileop dialogs to update + properly based on the contents of the entries. + (#74267, based on part of a patch from Muktha + Narayan) + + * gtk/gtkitemfactory.c (gtk_item_factory_create_item): + Warn if loading image fails. + + * tests/testgtk.c: Fix data for "apple" inline pixbuf + to be valid. + +Fri Oct 25 18:17:39 2002 Soeren Sandmann + + * gtk/gtkpaned.[ch]: New GtkPaned keyboard navigation. (Shift-)F8 + now cycles the available handles instead of toggling focus on and + off. Fixes #87160, reported by Calum Benson. + +2002-10-25 Matthias Clasen + + * gdk/x11/gdkcursor-x11.c: Fix doc comment. + + * gdk/gdkdnd.c: Add missing includes. + 2002-10-24 Matthias Clasen * gdk/gdkdnd.c: