X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=ChangeLog.pre-2-0;h=accc02c05816fa02287e32947d018c2546aa8432;hb=43405a3d77249aed3357af092225dc74ff73aff5;hp=b6864c0155c85c1c098b068e5d2b5d659690b22f;hpb=4c44499b3feed362dba9debc9ff248713a960757;p=~andy%2Fgtk diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index b6864c015..accc02c05 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,4 +1,810 @@ -2001-08-07 +Mon Sep 3 18:03:56 2001 Jonathan Blandford + + * gtk/gtktreestore.c (gtk_tree_store_set_default_sort_func): + handle default sort feature + + * gtk/gtktreesortable.c (gtk_tree_sortable_set_default_sort_func): + new function to handle default sort. + (gtk_tree_sortable_has_default_sort_func): check if default sort + is set. + + * gtk/gtkliststore.c (gtk_list_store_set_default_sort_func): + handle default sort feature + +Sun Sep 2 20:32:36 2001 Jonathan Blandford + + * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): patch from + vishnu@pobox.com (Joshua N Pritikin) to fix math and an assertion, + #59731 + +Sun Sep 2 17:38:42 2001 Jonathan Blandford + + * gtk/gtktreeview.c (gtk_tree_view_deleted): Patch from + vishnu@pobox.com (Joshua N Pritikin) to emit signal at the correct + time, #59727 + + * gtk/gtkbutton.c (gtk_button_update_state): Get depressed + correctly. + +Sun Sep 2 21:41:21 2001 Owen Taylor + + * gdk/x11/gdkkeys-x11.c (update_keymaps): Set current serial + so that we don't eternally update the keymap after we + get a change notification. + + * gtk/gtkmenuitem.c (gtk_menu_item_set_right_justified): Fix + incorrect cast. + +Sun Sep 2 23:27:16 2001 Kristian Rietveld + + * gtk/gtktreemodelsort.[ch]: much changes in an attempt to make + it working. It mostly works now, although there're still a few issues + to be worked out. + + * tests/testtreesort.c (main): changes to have a better test + application for the GtkTreeModelSort. + +Sun Sep 2 23:19:07 2001 Kristian Rietveld + + * gtk/gtktreeview.c (gtk_tree_view_search_iter): code cleaup, + fix for bug #59222. + + * gtk/gtktreeview.c (gtk_tree_view_search_equal_func): add + gpointer search_data argument to function definition and + prototype, to match GtkTreeViewSearchEqualFunc typedef. + +Sat Sep 1 21:57:27 2001 Kristian Rietveld + + * gtk/gtkrbtree.c (_gtk_rbtree_reorder): add warnings + per jrb's request. + +Fri Aug 31 20:01:23 2001 Jonathan Blandford + + * gtk/gtktreeview.c (gtk_tree_view_search_iter): pass in user data. + + * gtk/gtktreeview.c (gtk_tree_view_destroy): destroy search_data. + +Wed Aug 29 20:40:58 2001 Owen Taylor + + * gtk/gtktextbuffer.[ch] (gtk_text_buffer_add/remove_selection_clipboard): + Instead of always mirroring the selection to a single PRIMARY + selection, allow it to be mirrored to any number of clipboards. + + * gtk/gtktextbuffer.[ch] (gtk_text_buffer_paste_primary): Remove, + just use gtk_text_buffer_paste_clipboard with the appropriate clipboard. + + * gtk/gtktextbuffer.[ch] (gtk_text_buffer_cut/copy/paste_clipboard): Add a + GtkClipboard argument, and for paste_clipboard, the + @override_location argument from @paste_primary. + + * gtk/gtktextview.c: Adapt to above change. + +2001-08-30 Havoc Pennington + + * gtk/gtktextview.c (invalidated_handler): put validate idle at + resize - 2 just for flexibility + +2001-08-30 Havoc Pennington + + * gtk/gtktextdisplay.c (render_layout_line): handle NULL shaped + object from the empty-child-anchor case by drawing a little box. + + * gtk/gtktextlayout.c (add_child_attrs): Still set shape attribute + if the child anchor has no anchored widgets - fixes #59328. + + Also, remove bizarre deletion of preedit string that seems to have + gotten in here somehow. + +2001-08-30 Havoc Pennington + + * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): apply fix + to #58420 from Hidetoshi Tajima and Matthias Clasen + +Wed Aug 29 17:28:04 2001 Jonathan Blandford + + * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render): + change color when the GtkTreeView loses focus. + + * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): + ditto. + + * gtk/gtkstyle.c (gtk_default_draw_flat_box): ditto + +2001-08-28 Havoc Pennington + + * gtk/gtkwindow.c (gtk_window_set_icon_list): fix g_object_notify + +2001-08-28 Havoc Pennington + + * demos/gtk-demo/main.c (setup_default_icon): add default icon + + * gtk/gtkradiobutton.c (gtk_radio_button_new_with_mnemonic): + warning fix + (gtk_radio_button_new_with_label): warning fix + + * gtk/gtkdnd.c: used some random GtkImage private structs, + update to reflect GtkImage changes + + * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): don't check + whether the hint is supported, just always set the icon. A task + list might want to use it even if the WM doesn't, and the WM may + change over time. Also, XDeleteProperty() if list == NULL. + + * gtk/gtkwindow.c (gtk_window_set_icon_list) + (gtk_window_get_icon_list) + (gtk_window_set_icon) + (gtk_window_get_icon) + (gtk_window_set_default_icon_list) + (gtk_window_get_default_icon_list): + new functions + + * gtk/gtk-boxed.defs (GtkIconSet): add GtkIconSet + + * gtk/gtkimage.c: Implement property support, bug #59408 + + * gtk/gtkcontainer.c (gtk_container_add): make the warning message + on reparent-without-removing-first a bit more helpful. + Let's just destroy this FAQ. + +Tue Aug 28 21:37:11 2001 Matthias Clasen + + * demos/gtk-demo/appwindow.c (do_appwindow): Use g_signal_connect_object + instead of gtk_signal_connect, to avoid warnings at destruction time. (#58161) + +Tue Aug 28 21:00:44 2001 Matthias Clasen + + * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting + of use_text_format to the end of the function. (#56447) + +Tue Aug 28 20:06:07 2001 Matthias Clasen + + * demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf + only in response to an area_prepared signal. + +2001-08-28 Alex Larsson + + * gtk/gtkwidget.c (gtk_widget_class_init): + Make unrealize GTK_RUN_LAST. + +Mon Aug 27 22:00:41 2001 Manish Singh + + * gtk/gtkradiobutton.c: fix silly cut'n'paste error, + with_label and with_mnemonic should create radio buttons, not + check buttons + +Mon Aug 27 15:28:56 2001 Jonathan Blandford + + * tests/testtreefocus.c (main): Fix to use GtkSelectionMode. + * tests/treestoretest.c (make_window): ditto + * demos/gtk-demo/main.c (create_tree): ditto + * demos/gtk-demo/stock_browser.c (do_stock_browser): ditto. + +Mon Aug 27 15:18:14 2001 Jonathan Blandford + + * gtk/gtktreeselection.c (gtk_tree_selection_set_mode): Use the + GTK selection types rather than GtkTreeSelectionMode. + + * docs/Changes-2.0: Add comment about selection change. + +Mon Aug 27 14:21:30 2001 Jonathan Blandford + + * gtk/gtkenums.h (GtkSelectionMode): deprecate + GTK_SELECTION_EXTENDED. + + * gtk/gtkclist.c: Remove old GTK_SELECTION_MULTIPLE behavior. + Make GTK_SELECTION_EXTENDED be GTK_SELECTION_MULTIPLE. + + * gtk/gtkctree.c: ditto + + * gtk/gtklist.c: ditto + + * gtk/gtktree.c: ditto + +Mon Aug 27 14:18:12 2001 Owen Taylor + + * gtk/gtkmenubar.h (gtk_menu_bar_prepend): Fix a cuple + of typos in compat macros. (#59624, Skip Montaro) + +Sun Aug 26 20:00:00 2001 Owen Taylor + + * configure.in acinclude.m4: Use autoconf 2.13/2.50 compat + macro. + + (patch from ERDI Gergo , #58920) + + * gtk/gtkmenuitem.c (gtk_menu_item_set_right_justified): Change + interface to be a standard setter from gtk_menu_item_right_justify. + (gtk_menu_item_get_right_justified): a getter to go with the setter + + * gtk/gtkmenuitem.h: Add a deprecated compat macro for + gtk_menu_item_right_justify. + + * demos/gtk-demo/menus.c tests/testgtk.c: Switch to + gtk_menu_item_set_right_justified. + +2001-08-27 Jens Finke + + * gtk+.spec.in: Updated to match gpp requirements, reworked the + files section to make it work with 1.3.x releases. + +2001-08-26 Alexander Larsson + + * gtk/gtkbutton.[ch]: + Add properties for labels, mnemonics and stock items. + Added C accessor functions for the properties. + Removed deprecated button->child. + + * gtk/gtkradiobutton.c: + * gtk/gtktogglebutton.c: + Update to use the functions in GtkButton. + + * gtk/gtkcheckbutton.c: + Update to use the functions in GtkButton. + Changed size allocation of child. Now only gets as much + space as it requests. + + * gtk/gtkclist.c: + Don't use GtkButton->child + + * gtk/gtklabel.c: + Fixed typo in docs + +2001-08-26 Alexander Larsson + + * tests/testgtk.c: + * tests/Makefile.am: + Ressurect the properties test. + I don't care if it is inferior, I just want to test my property code. + +2001-08-25 Chema Celorio + + * gtk/gtktable.c (gtk_table_set_child_property): pass ->nrows to + gtk_table_resize as the first argument for CHILD_PROP_RIGHT_ATTACH + and CHILD_PROP_LEFT_ATTACH v.s. using ->ncols + +2001-08-24 Havoc Pennington + + * gtk/gtkcompat.h: remove gtk_menu_* compat defines; + these are already in gtkmenu.h, and the copies + here were broken. + + Also, change GTK_DISABLE_COMPAT_H to GTK_DISABLE_DEPRECATED + + * gdk/gdkpixbuf-drawable.c (gdk_pixbuf_get_from_image): + special-case bitmaps to allow no colormap + (bitmap1): implement no-colormap bitmap-getting + (bitmap1a): implement no-colormap bitmap-getting to pixbuf with + alpha + (rgb8): indentation + (rgb1a, rgb1): change the way we read the data out of the image, + old way didn't seem to work quite right. + + I'm pretty sure a lot of the rgbconvert code is still broken. + + * gtk/gtkwindow.c (gtk_window_move_resize): move hints comparison + above position constraint (I really intended to do this before, + don't know what's up with that) + (gtk_XParseGeometry): shut up gcc + + * gdk/gdkpixbuf-drawable.c (rgb1a): fix bug where "x1" was used + and "0" should have been. remove the attempted 4-bytes-at-once + optimization, it was totally broken. + +Sat Aug 25 19:02:39 2001 Owen Taylor + + * gtk/gtkbutton.[ch] gtk/gtktogglebutton.c: Add optional movement + on push to buttons (based on patch from Soeren Sandmann, #54720) + + - Add child_displacement_x/y style properties to control how far the + child moves when the button is depressed. + + - Add non-exported function _gtk_button_set_depressed to clean + up the handling of the in/out shadow and separate it frmo + widget->state. + + - Lots of code cleanup and simplification of state handling + for GtkButton/GtkToggleButton. + + * tests/testgtkrc: Set the x/y displacement to 1 to provide a test + of button movement. testgtk + testgtkrc == test ugly GTK+, as always. + +Fri Aug 24 23:09:05 2001 Owen Taylor + + * gtk/gtkimage.[ch] docs/Changes-2.0.txt: Break compatibility + and make gtk_image_new() take no arguments. The compiler will + catch it, and it is vastly more useful than having + gtk_image_new() be a deprecated alias for gtk_image_new_from_image(). + + * gtk/gtkmenu.c (gtk_menu_set_property): Apply patch + to add tearoff-title property (#51319, Lee Mallabone) + +Fri Aug 24 22:12:32 2001 Owen Taylor + + * gtk/gtkmenuitem.[ch]: Remove unused and useless function + gtk_menu_item_configure(). (#58925) + +Fri Aug 24 16:03:45 2001 Jonathan Blandford + + * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): Add + "use_align" to give people the option to just make a cell visible. + + * gtk/gtktreeview.c (gtk_tree_view_scroll_to_point): fix bug where + we were scrolling past the end of the tree. + + * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_pack_start): + rename gtk_tree_view_column_pack_start_cell_renderer to + gtk_tree_view_column_pack_start. Same for pack_end, and clear. + +Fri Aug 24 12:02:08 2001 Owen Taylor + + * gtk/gtktextbuffer.c (gtk_text_buffer_new): Remove + a stray g_object_ref() left over from gtk_object_ref/sink. + (Pointed out by Josh Pritikin.) + +Thu Aug 23 19:33:54 2001 Owen Taylor + + * gtk/gtkcontainer.[ch]: Rename gtk_container_children() + to gtk_container_get_children. Added deprecated compatibility + macro. (Suggested by Vitaly Tishkov, #59051) + + * gtk/gtktoolbar.c gtkdialog.c: Fix gtk_container_children() + calls. + +Thu Aug 23 19:10:01 2001 Owen Taylor + + * gtk/gtkmenubar.h (gtk_menu_bar_insert): Deprecate + gtk_menu_bar_append/prepend/insert, forgot to do this + when we deprecated gtk_menu_append/prepend/insert. + + * gtk/gtkmenu.h (gtk_menu_insert): Add casts to deprecated + compat macros. + + * gtk/gtkmenu.c: Fix problem with static gtk_menu_insert() being + renamed by compat macro. + + * gtk/gtkfontsel.h: Deprecated gtk_font_selection_get_font(), + gtk_font_selection_dialog_get_font(). (Suggested by + Vitaly Tishkov, #59383) + +Thu Aug 23 18:23:31 2001 Owen Taylor + + * gtk/gtktexttag.c (gtk_text_tag_table_get_size): + Rename from gtk_text_tag_table_size(). (#59366) + +Thu Aug 23 20:01:41 2001 Kristian Rietveld + + * gtk/gtktreemodelsort.[ch], gtk/gtktreesortable.[ch], + gtk/gtktreestore.[ch], gtk/gtktreeviewcolumn.[ch], + gtk/gtkliststore.[ch]: use GtkSortType instead of GtkTreeSortOrder. + (#59173). + +Thu Aug 23 16:26:47 2001 Tim Janik + + * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize): + * gtk/gtktextmark.c (gtk_text_mark_finalize): chain parent class + handlers, pointed out by Joshua N Pritikin . + +Wed Aug 22 19:15:39 2001 Owen Taylor + + [ Patch from Sebastian Wilhelmi, 52790 ] + + * gtk/gtkversion.h.in gtk/gtk.h: New file replacing gtkcompat.h + + * gdk/gdkcompat.h gdk/gdk*.h gtk/gtkcompat.h.in gtk/gtk*.h: + Move compatibility macros from g[dt]kcompat.h to within + #ifndef G[DT]K_DISABLE_DEPRECATED in each file. + + * gdk/gdk-pixbuf-csource.c: Fix up include of gtkcompat.h. + + * demos/Makefile.am demos/gtk-demo/Makefile.am + docs/reference/gdk-pixbuf/Makefile.am modules/input/Makefile.am + tests/Makefile.am: Remove references to -G[DT]K_DISABLE_DEPRECATED. + + * demos/{pixbuf-demo.c,testpixbuf-drawable.c,testpixbuf-save.c, + testpixbuf.c}: Fix usages of deprecated functions. + +Wed Aug 22 19:03:27 2001 Jonathan Blandford + + * gtk/gtktreeview.c (gtk_tree_view_set_model): clean up selection + when changing models. + +Wed Aug 22 18:25:46 2001 Jonathan Blandford + + * gtk/gtktreeview.c: Fix selection. I think it's all dandy now. + We check the current event for modifiers rather than try to trap + all presses. + +2001-08-22 Anders Carlsson + + * gtk/gtkliststore.h (GTK_LIST_STORE_CLASS): Fix a small typo. + It's LIST_STORE, not LISTSTORE. + +Tue Aug 21 12:43:29 2001 Owen Taylor + + * gtk/gtk.h: Remove commented out gtkpacker reference. + +2001-08-21 Matthias Clasen + + * configure.in (all_loaders): Add tga loader, + patch by Nicola Girardi. (#56067) + +Tue Aug 21 02:57:13 2001 Jonathan Blandford > + + * gtk/gtktreeview.c (gtk_tree_view_button_press): Fix up selection + a little. More needs to be done tomorrow. + +Tue Aug 21 00:45:55 2001 Jonathan Blandford + + * gtk/gtktreeview.c (gtk_tree_view_destroy): Grr... Get it right. + +Mon Aug 20 23:48:18 2001 Jonathan Blandford + + * gtk/gtktreeview.c (gtk_tree_view_get_cell_area): Fix bug + reported by Kristian Rietveld to handle row + == NULL. + (gtk_tree_view_destroy): Fix bug reported by Kristian Rietveld + to change destroy order. + +Mon Aug 20 11:39:44 2001 Jonathan Blandford + + * gtk/gtktreeselection.c (gtk_tree_selection_class_init): Use + correct marshaller. + +Sun Aug 19 03:22:59 2001 Jonathan Blandford + + * gtk/gtkliststore.c: Fix up warnings, #58928. + + * gtk/gtktreeselection.h: Change signal prototype, #58647 + + * gtk/gtktreeview.c (_gdk_tree_view_find_node): Make more robust, + #59221. + + * gtk/gtkstyle.c: Actually prelight arrow, #50981 + +2001-08-18 Hans Breuer + + * gdk/gdk.def : updated externals + + * gdk/win32/gdkselection-win32.c : returning TRUE with gdk_selection_set + is required to get (at least) visible in entry fields. Some selections + are really handled now - even on win32 - but copying via middle + mouse button into a different app needs to wait ... + + * gdk/win32/gdkdnd-win32.c : implemented inter-app drag&drop + mostly by stealling code from gdkdnd-fb.c. Thanks to who ever wrote it! + + * gdk/win32/gdkevents-win32.c : some tweaking to get better expose + handling. I'm not sure if it is better now, but at least not worse + + * gdk/win32/gdkgeometry-win32.c : replaced every call to MoveWindow + with SetWindowPos () which allows more fine-tuning backing-store wise + + * gdk/win32/gdkwindow-win32.c : allow unraised gdk_window_show (). + Also changed move/resize to be more like the X version. + + * gtk/gtk.def : updated externals + +2001-08-19 Sven Neumann + + * gtk/gtktooltips.c + * tests/testtreesort.c + * tests/treestoretest.c: inserted some casts to get rid of compiler + warnings. + +Sun Aug 19 01:44:44 2001 Jonathan Blandford > + + * gtk/gtktreeviewcolumn.c + (gtk_tree_view_column_pack_{start,end}_cell_renderer): sink cell. + + * gtk/gtktreeview.c (gtk_tree_view_insert_column): sink column. + (_gtk_tree_view_find_node): If *node is NULL, + *tree should be NULL too. + + * demos/gtk-demo/stock_browser.c (do_stock_browser): don't unref + column/renderers. + * tests/testtreecolumns.c: ditto + * tests/testtreefocus.c: ditto + * tests/testtreesort.c: ditto + * tests/testtreeview.c: ditto + * tests/treestoretest.c: ditto + +Sat Aug 18 04:34:31 2001 Jonathan Blandford + + * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 2 new + signals; is_expander/is_expanded. + + * gtk/gtlcellrendererpixbuf.c: Allow other expanded and closed + pixbufs. + + * gtk/gtktreeview.c: set above properties. + +Sat Aug 18 23:01:33 2001 Owen Taylor + + * gtk/gtkwidget.h: Really remove set_default_style(). + + * docs/Changes-2.0.txt: added a note about + gtk_widget_push/pop/set_default_style. + +2001-08-18 Havoc Pennington + + * gtk/gtkwindow.c (gtk_window_move_resize): constrain position on + hints_changed in addition to the other cases. + (gtk_window_move_resize): include last position from configure + notify in debug spew + +2001-08-18 James Henstridge + + * gtk/gtkaccelgroup.c (gtk_accel_group_object_destroy): use the + second argument to the weak ref notify, cleaning up some uglyness. + (gtk_accel_group_attach): remove and add the weak notifier when + changing the accel groups slist. + (gtk_accel_group_detach): same here. + +2001-08-17 Darin Adler + + * gtk/gtktreeview.c: (gtk_tree_view_search_equal_func): Add + missing parameters to utf8 functions to make it compile. + +Fri Aug 17 19:30:14 2001 Jonathan Blandford + + * gtk/gtktreeprivate.h: + * gtk/gtktreeview.c: (gtk_tree_view_class_init), + (gtk_tree_view_init), (gtk_tree_view_set_property), + (gtk_tree_view_get_property), (gtk_tree_view_destroy), + (gtk_tree_view_key_press), (gtk_tree_view_leave_notify), + (gtk_tree_view_focus_out), (gtk_tree_view_set_model), + (gtk_tree_view_set_destroy_count_func), + (gtk_tree_view_set_enable_search), + (gtk_tree_view_get_enable_search), + (gtk_tree_view_get_search_column), + (gtk_tree_view_set_search_column), + (gtk_tree_view_get_search_equal_func), + (gtk_tree_view_set_search_equal_func), + (gtk_tree_view_search_dialog_destroy), + (gtk_tree_view_search_position_func), + (gtk_tree_view_interactive_search), + (gtk_tree_view_search_delete_event), + (gtk_tree_view_search_button_press_event), + (gtk_tree_view_search_key_press_event), + (gtk_tree_view_search_move), (gtk_tree_view_search_equal_func), + (gtk_tree_view_search_iter), (gtk_tree_view_search_init): + * gtk/gtktreeview.h: + Add heavily modified patch from Kristian Rietveld to handle + interactive searching. + +Fri Aug 17 17:30:34 2001 Tim Janik + + * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): const correct + string parameter. + + * gtk/gtkoptionmenu.c (gtk_option_menu_set_menu): connect to + GtkMenuShell::selection_done, now that we have it, instead of + ::deactivate so we're not tearing the menu apart and notify + the user prematurely. + +Thu Aug 16 05:22:01 2001 Tim Janik + + * gtk/gtkwindow.c (gtk_window_move_resize): if we actually move our + window, clear window->need_default_position to avoid infinite loops. + some comment fixups and GTK_RESIZE_IMMEDIATE fixups. + +Wed Aug 15 12:36:55 2001 Tim Janik + + * gtk/gtktreeview.c (gtk_tree_view_set_model): move all model setup + code into this place. get rid of GTK_TREE_VIEW_MODEL_SETUP usage. + (gtk_tree_view_set_property): don't cast possible NULL objects. + (gtk_tree_view_destroy): reset the model to NULL. + + * gtk/gtktreeselection.c (gtk_tree_selection_finalize): chain + parent_class handler. + +2001-08-17 Matthias Clasen + + * gtk/demos/gtk-demo/*: Remove all uses of deprecated functions. + +2001-08-17 Anders Carlsson + + * gtk/gtkstyle.c (create_expander_affine): Divide with floating + point numbers so that the result will be floating point. + +2001-08-16 Matthias Clasen + + * tests/testgtk.c (create_handle_box): + (create_toolbar): Replace gtk_window_set_policy calls by + gtk_window_set_resizable. + +2001-08-16 Jakub Steiner + + * gtk/stock-icons/dialog_info.png: new style bulb + * gtk/stock-icons/dialog_error.png: maybe a little drastic ;) + * gtk/stock-icons/dialog_warning.png: need a hand? + * gtk/stock-icons/stock_add.png, stock_remove.png: I hope + the aa border gets chopped off ok + * gtk/stock-icons/stock_colorselector.png: using the new hand + * gtk/stock-icons/stock_dnd_multiple.png: I'm not totally sure what + this one is for, but the old icon was butt ugly. + * gtk/stock-icons/stock*_insert_image.png: not sure if it belongs here + * gtk/stock-icons/stock*_insert_object.png: " + * gtk/stock-icons/stock_index.png: using new hand icon + * gtk/stock-icons/stock*_new.png: the document template being used + elsewhere too + * gtk/stock-icons/stock*_print*.png: new print and print preview + icons (panel/menu) + * gtk/stock-icons/stock*_save*.png, stock*_revert.png: new save/revert + icons based on Tuomas' floppy image. + * gtk/stock-icons/stock*_search*.png: search and s'n'r icons for panel/menu + * gtk/stock-icons/stock*_stop.png: replacing the old 'x' button + * gtk/stock-icons/stock*_trash.png: based on Tuomas' trash icon + * gtk/stock-icons/stock*_undelete.png: " + * gtk/stock-icons/stock_preferences.png: I have a version with a + document base if the sliders are no good. + * gtk/stock-icons/stock_properties.png: properties + + + * gtk/stock-icons/stock*_copy.png, stock*_cut.png, stock*_paste.png: Tuomas' + (tigert@ximian.com) clipboard icons + * gtk/stock-icons/stock_{up,down,left,right}_arrow.png: tigert's new arrows + * gtk/stock-icons/stock*_{undo,redo}.png: tigert's undo/redo icons. + * gtk/stock-icons/stock_open.png: shaded open icon by Tuomas. we should make it a + little bigger IMHO + +2001-08-16 Sven Neumann + + * gtk/gtkbox.c (gtk_box_class_init): removed unused widget_class. + +2001-08-15 Padraig O'Briain + + * gtk/gtkcellrenderertext.c: + Avoid warning when specifying NULL for "attributes" property + +2001-08-15 Matthias Clasen + + * docs/debugging.txt: Add a warning about --enable-debug=no, + some editorial changes. + +2001-08-13 Matthias Clasen + + * gtk/docs/debugging.txt, gdk/gdk.c, gdk/gdkinternals.h, + gdk/x11/gdkmain-x11.c, gtk/gtkdebug.h, gtk/gtkmain.c: Update + debugging info, remove unused debug flags. (#58330) + +Mon Aug 13 13:17:32 2001 Jonathan Blandford + + * gtk/gtktreeselection.c (gtk_tree_selection_select_all): + (gtk_tree_selection_select_all): Remove strict checking for rows. + +2001-08-13 Matthias Clasen + + * gtk/gtktooltips.c (gtk_tooltips_set_tip, gtk_tooltips_draw_tips): + Don't remove the tooltip window when the tip text changes. (#15891) + +Sun Aug 12 12:02:09 2001 Owen Taylor + + * gtk/Makefile.am ($(srcdir)/gtkmarshal.c): Remove extra + $(srcdir). + +Sun Aug 12 10:39:12 2001 Owen Taylor + + * Makefile.am (EXTRA_DIST): Fix problem with trying to + dist files from intl/, which is no longer there. + +2001-08-11 Hans Breuer + + * gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c, + gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c, + gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c, + gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c, + gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c, + gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies + + * gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c, + gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all + GDK_TYPE_EVENT signals + + * gtk/gtkalignment.c : removed 'direct allocation bug', + which Tim discovered while reading the patch + +Sat Aug 11 14:32:14 2001 Owen Taylor + + * gtk/gtkwidget.h (gtk_widget_set_default_visual): Add some + compat macros for push/pop/set_visual that were supposed + to be added a long time ago, but got dropped. + +Fri Aug 10 16:55:53 2001 Tim Janik + + * gtk/gtkwindow.c (gtk_window_set_policy): coalesce multiple + property notifies. + +2001-08-07 Havoc Pennington + + * gtk/gtkfilesel.c (open_ref_dir): fix a typo. + + * gtk/gtkplug.c (gtk_plug_init): remove setting of auto_shrink; + some fixage is needed here, but nothing simple. Owen understands + it. ;-) + + * gtk/gtkwindow.h, gtk/gtkwindow.c: Rework code and API for window + sizing and positioning. Also, fix bug in compute_geometry_hints + (width/height confusion for setting min size). + (gtk_window_move): new function + (gtk_window_resize): new function + (gtk_window_get_size): new function + (gtk_window_get_position): new function + (gtk_window_parse_geometry): new function + + * gtk/gtkwidget.c (gtk_widget_set_size_request): new function + (gtk_widget_get_size_request): new function + (gtk_widget_get_usize): delete, that was a short-lived function + ;-) + (gtk_widget_set_usize): deprecate + (gtk_widget_set_uposition): deprecate, make it a trivial + gtk_window_move() wrapper + (gtk_widget_class_init): remove x/y/width/height properties, + add width_request height_request + + * demos/*: update to avoid deprecated functions + + * gtk/gtklayout.c: add x/y child properties + + * gtk/gtkfixed.c: add x/y child properties, and get rid of + uses of "gint16" + + * tests/testgtk.c (create_window_sizing): lots of tweaks to window + sizing test + + * gdk/x11/gdkevents-x11.c (gdk_event_translate): Ensure that + configure events on toplevel windows are always in root window + coordinates, following ICCCM spec that all synthetic events + are in root window coords already, while real events are + in parent window coords. Previously the code assumed that + coords of 0,0 were parent window coords, which was + really broken. + + * gtk/gtkcontainer.c (gtk_container_get_focus_chain): fix + warning + + * gdk/gdkwindow.h (GdkWindowHints): add GDK_HINT_USER_POS + and GDK_HINT_USER_SIZE so we can set USSize and USPosition + hints in gtk_window_parse_geometry() + + * gdk/x11/gdkwindow-x11.c (gdk_window_set_geometry_hints): support + new USER_POS USER_SIZE hints + +2001-08-09 Matthias Clasen + + * tests/prop-editor.c (properties_from_type): Use + g_object_class_list_properties to get the param specs + for a given type. (#58609) + +2001-08-09 Matthias Clasen + + * gtk/gtkstyle.c (gtk_style_real_unrealize): Don't forget to + free the text_aa parts. (#57549) + +2001-08-09 Matthias Clasen + + * gdk/gdkgc.c (gdk_gc_set_rgb_bg_color): Set the background color, + not the foreground color. (#57621) + +2001-08-09 Alexander Larsson + + * gdk/win32/gdkfont-win32.c: + Update to the new pango win32 api. + +2001-08-08 HideToshi Tajima + + * gtk/gtkclipboard.c (request_text_received_func): ask apps for + COMPOUND_TEXT instead of TEXT + * gdk/x11/gdkselection-x11.c (gdk_utf8_to_compound_text): correctly + interpret the return value of g_string_to_compound_text() + (#55152) + +2001-08-08 Matthias Clasen + + * gtk/gtktreestore.c (gtk_tree_store_iter_n_children): Don't + fail if iter is NULL. (#58347) + +2001-08-07 Matthias Clasen * gtk/gtktextdisplay.c (render_para, gtk_text_layout_draw): Fix some off-by-one issues, fixing selection of line-ends. (#50323)