- 29 Oct, 2002 3 commits
-
-
Matthias Clasen authored
-
Matthias Clasen authored
-
Soeren Sandmann authored
Tue Oct 29 20:39:16 2002 Soeren Sandmann <sandmann@daimi.au.dk> * gtk/gtkmenu.c: Change NAVIGATION_REGION_OVERSHOOT back to 50, and create stay-up regions by flipping a fourth quadrant triangle as appropriate.
-
- 28 Oct, 2002 3 commits
-
-
Tor Lillqvist authored
2002-10-28 Tor Lillqvist <tml@iki.fi> * 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)
-
Dmitry Mastrukov authored
-
Dmitry Mastrukov authored
-
- 27 Oct, 2002 2 commits
-
-
Kristian Rietveld authored
Sun Oct 27 15:58:30 2002 Kristian Rietveld <kris@gtk.org> 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).
-
GMT 2002 Tony Gale authored
Sun Oct 27 11:41:37 GMT 2002 Tony Gale <gale@gtk.org> * docs/tutorial/gtk-tut.sgml: minor cleanups, remove refs to gtk_menu_append *docs/faq/gtk-faq.sgml: remove ref to gtk_menu_append
-
- 26 Oct, 2002 2 commits
-
-
Szabolcs Ban authored
2002-10-26 Szabolcs Ban <shooby@gnome.hu> * hu.po : Updated Hungarian Translation.
-
Daniel Yacob authored
-
- 25 Oct, 2002 13 commits
-
-
Soeren Sandmann authored
Fri Oct 25 23:36:30 2002 Soeren Sandmann <sandmann@daimi.au.dk> * gtk/gtkmenu.c: Change NAVIGATION_REGION_OVERSHOOT from 50 to 5.
-
Owen Taylor authored
Fri Oct 25 17:56:24 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtknotebook.c (gtk_notebook_switch_focus_tab): Always switch to the page with the focused tab label. (#82108, Matt Wilson.)
-
Owen Taylor authored
Fri Oct 25 17:46:18 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtknotebook.c (gtk_notebook_button_press): Don't handle button 2/3 on the tabs. (#82118, Matt Wilson.)
-
Owen Taylor authored
Fri Oct 25 17:32:44 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtktoolbar.c: Don't insert mnemonics for stock items (#72918, reported by Mikael Hallendal)
-
Owen Taylor authored
Fri Oct 25 14:51:34 2002 Owen Taylor <otaylor@redhat.com> * 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 <ImageItem> image fails. * tests/testgtk.c: Fix data for "apple" inline pixbuf to be valid.
-
Owen Taylor authored
Fri Oct 25 14:51:34 2002 Owen Taylor <otaylor@redhat.com> * 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)
-
Soeren Sandmann authored
Fri Oct 25 18:17:39 2002 Soeren Sandmann <sandmann@daimi.au.dk> * 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.
-
Owen Taylor authored
Fri Oct 25 10:50:37 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkitemfactory.c (gtk_item_factory_create_item): Warn if loading <ImageItem> image fails. * tests/testgtk.c: Fix data for "apple" inline pixbuf to be valid.
-
Marius Andreiana authored
2002-10-25 Marius Andreiana <marius galuna.ro> * ro.po: updated
-
Daniel Yacob authored
-
Daniel Yacob authored
-
Daniel Yacob authored
-
Matthias Clasen authored
* gdk/x11/gdkcursor-x11.c: Fix doc comment. * gdk/gdkdnd.c: Add missing includes.
-
- 24 Oct, 2002 1 commit
-
-
Matthias Clasen authored
-
- 23 Oct, 2002 4 commits
-
-
Matthias Clasen authored
-
Matthias Clasen authored
-
Kristian Rietveld authored
Wed Oct 23 17:06:02 2002 Kristian Rietveld <kris@gtk.org> * gtk/gtktreemodel.c: s/NULL/0/ on the g_signal_emit lines to fix up yesterdays commit (reported by Morten Welinder).
-
Owen Taylor authored
Tue Oct 22 20:02:22 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkcombo.c: When popping up the list without any selected items, hack the focus on the list to avoid triggering a bug in GtkList when clicking on focused-but-not-selected items (#86700, Zimler Attila, Matthias Clasen) and to keep GtkWindow from selecting the first item. * tests/testgtk.c (create_list): Make the initial setting of the selection mode correspond to the option menu.
-
- 22 Oct, 2002 11 commits
-
-
Kristian Rietveld authored
Wed Oct 23 01:03:43 2002 Kristian Rietveld <kris@gtk.org> Another feature to create truly ugly TreeViews!: style properties for the even/odd colors used for row hinting. (#71595, reported by Owen Taylor). * gtk/gtktreeview.c (gtk_tree_view_class_init): add even_row_color and odd_row_color style properties. * gtk/gtkstyle.c (get_darkened_gc): support darken_count == 0 case, (gtk_default_draw_flat_box): rework cell coloring code to support user-provided even/odd row colors. Wed Oct 23 01:01:52 2002 Kristian Rietveld <kris@gtk.org> Cache signal IDs to speed up signal emission. This is a good speedup because GtkTreeModel emits a big number of signals. * gtk/gtktreemodel.c (gtk_tree_model_base_init): save IDs returned by g_signal_new, (gtk_tree_model_row_changed): use g_signal_emit instead of g_signal_emit_by_name, (gtk_tree_model_row_inserted): ditto, (gtk_tree_model_row_has_child_toggled): ditto, (gtk_tree_model_row_deleted): ditto, (gtk_tree_model_rows_reordered): ditto. Wed Oct 23 00:56:15 2002 Kristian Rietveld <kris@gtk.org> * gtk/gtktreeselection.c (model_changed): new function, (gtk_tree_selection_selected_foreach): monitor changes in the model, bail out if the model has been changed from the foreach func. (#50263, reported by Havoc Pennington). * gtk/gtktreeselection.c (_gtk_tree_selection_internal_select_node): free anchor if applicable (#94868, reported and testcase provided by Daniel Elstner).
-
Matthias Clasen authored
* io-gif.c (lzw_read_byte): Check for stack overflow throughout. (#91808, Elliot Lee)
-
Matthias Clasen authored
-
Owen Taylor authored
Tue Oct 22 16:37:12 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtktooltips.c: Multihead safety fixes, handle displays being closed. (#81651, based on patch from Erwann Chenede) * gtk/gtktoolbar.c (gtk_toolbar_init): Fix typo from the last commit.
-
Owen Taylor authored
Tue Oct 22 15:55:08 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtktoolbar.c: Fix handling of getting the default style/icon size from the correct GtkSettings. (#82184, reported by Vitaly Tishkov, help from Soeren Sandmann)
-
Owen Taylor authored
Tue Oct 22 15:32:31 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkwindow.c: Actively monitor the screen of the parent. (#80281) * gtk/gtkentry.c: Fix missing prototype from the last commit.
-
Owen Taylor authored
Tue Oct 22 15:46:09 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkentry.c (gtk_entry_unrealize): Reset the layout, since it holds a reference to the font on a particular screen.
-
Owen Taylor authored
Tue Oct 22 15:13:59 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkimmulticontext.c: Include config.h (#96441, Morten Welinder)
-
Owen Taylor authored
Tue Oct 22 15:03:41 2002 Owen Taylor <otaylor@redhat.com> * gtk/fnmatch.h: When compiling our on fnmatch.c, #define fnmatch _gtk_fnmatch (#92890, Jacob Berkman)
-
Owen Taylor authored
Fri Oct 18 16:47:02 2002 Owen Taylor <otaylor@redhat.com> * gdk/x11/gdkevents-x11.c (translate_key_event): Produce C-m, not C-j for return. Handle Escape.
-
Matthias Clasen authored
* gtk/gtkstatusbar.c (gtk_statusbar_get_type): (gtk_statusbar_class_init): It is called GtkStatusbar, not GtkStatusBar. This was changed accidentally during deprecation cleanup and caused links in the API docs to break. (#96390)
-
- 21 Oct, 2002 1 commit
-
-
Owen Taylor authored
Mon Oct 21 14:04:39 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkentry.c (gtk_entry_get_public_chars): Return "" for entry->invisible_char == 0, otherwise N copies of entry->invisible_char. (#95486, Vitaly Tishkov) * gtk/gtkentry.c: Fix a bunch of places where entry->text instead of layout->text was being used for computation of offsets/indices in the layout. Using layout->text is necessary because when the entry is invisible, it doesn't correspond to entry->text.
-