- 06 May, 2005 6 commits
-
-
Matthias Clasen authored
2005-05-06 Matthias Clasen <mclasen@redhat.com> * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): Always initialize child-visible to FALSE, otherwise we may end up with the wrong page visible initially. (#302283, Patrik Fimml) * gtk/gtktreeview.c (gtk_tree_view_draw_arrow): Make expanders appear insensitive in insensitive treeviews.
-
Miloslav Trmac authored
2005-05-06 Miloslav Trmac <mitr@volny.cz> * cs.po: Updated Czech translation.
-
Matthias Clasen authored
2005-05-06 Matthias Clasen <mclasen@redhat.com> * tests/testiconview.c: Test DND. * gtk/gtk.symbols: * gtk/gtkiconview.[hc]: Add DND support similar to the DND support in the tree view. (#150270)
-
Matthias Clasen authored
2005-05-05 Matthias Clasen <mclasen@redhat.com> * gtk/gtktreednd.h: * gtk/gtkwidget.h: Small cleanups.
-
Matthias Clasen authored
-
Matthias Clasen authored
-
- 05 May, 2005 4 commits
-
-
Matthias Clasen authored
-
Nguyen Thai Ngoc Duy authored
-
Owen Taylor authored
-
Owen Taylor authored
2005-05-04 Owen Taylor <otaylor@redhat.com> * gdk/x11/gdkevents-x11.c gdk/x11/gdkwindow-x11.h: Fix a bug in focus tracking when we move between has_pointer_focus and has_focus_window directly. (#109246, Billy Biggs, Niko Tyni and others) * gdk/x11/gdkevents-x11.c: Also fix some extremely confusion that could happen in the case of no window manager + keyboard grabs, by moving to a more consistent model of when we pay attention to mode=NotifyGrab/NotifyUngrab events. * docs/focus_tracking.txt: Extensive writeup about how to track focus under X11
-
- 04 May, 2005 5 commits
-
-
Søren Sandmann authored
Wed May 4 13:21:41 2005 Søren Sandmann <sandmann@redhat.com> * tests/testcairo.c (draw): Replace cairo_show_surface() uses with cairo_set_source_surface()/cairo_paint();
-
Matthias Clasen authored
-
Tor Lillqvist authored
2005-05-04 Tor Lillqvist <tml@novell.com> * gdk/win32/gdkdrawable-win32.c (generic_draw, blit_from_pixmap) * gdk/win32/gdkgc-win32.c (gdk_win32_gc_values_to_win32values, _gdk_win32_gc_new, _gdk_windowing_gc_set_clip_region, gdk_win32_hdc_get): Minor fixes to make Win32 backend compile again.
-
Adam Weinberger authored
2005-05-04 Adam Weinberger <adamw@gnome.org> * en_CA.po: Updated Canadian English translation.
-
Matthias Clasen authored
2005-05-03 Matthias Clasen <mclasen@redhat.com> * gtk/gtkfilesystem.c: * gtk/gtkcelleditable.c: * gtk/gtktreemodel.c: Avoid getting the interface struct twice in the same function. (#300513, Billy Biggs)
-
- 03 May, 2005 7 commits
-
-
Matthias Clasen authored
2005-05-03 Matthias Clasen <mclasen@redhat.com> * gtk/gtktreemodel.c: Avoid getting the interface struct twice in the same function. (#300513, Billy Biggs)
-
Matthias Clasen authored
2005-05-03 Matthias Clasen <mclasen@redhat.com> * gtk/gtk-sections.txt: Add gtk_dialog_get_response_for_widget. Add new scrolled window getters.
-
Matthias Clasen authored
2005-05-03 Matthias Clasen <mclasen@redhat.com> * gtk/gtkscrolledwindow.h: * gtk/gtkscrolledwindow.c (gtk_scrolled_window_get_vscrollbar): * gtk/gtk.symbols: Add getters for the scrollbars. (#167181, Billy Biggs)
-
Matthias Clasen authored
-
Matthias Clasen authored
2005-05-03 Matthias Clasen <mclasen@redhat.com> * gtk/gtk-sections.txt: Add gtk_dialog_get_response_for_widget.
-
Matthias Clasen authored
2005-05-03 Matthias Clasen <mclasen@redhat.com> * gtk/gtk.symbols: * gtk/gtkdialog.h: * gtk/gtkdialog.c (gtk_dialog_get_response_for_widget): Make this function public. (#170748, Morten Welinder)
-
Federico Mena Quintero authored
2005-05-02 Federico Mena Quintero <federico@ximian.com> Merged from gtk-2-6: Fixes #301068: * gtk/gtkfilesystemunix.c (struct _GtkFileSystemUnix): Add fields to store struct stat for /afs and /net, and boolean fields to say whether these are valid. (struct _GtkFileFolderUnix): Added a boolean is_network_dir field. (gtk_file_system_unix_get_folder): Fill in the is_network_dir field of the folder structure. (fill_in_names): If the folder is a network directory, create a fake struct stat for its entries. (fill_in_stats): Don't stat() the children of network directories. * gtk/gtkfilechooserdefault.c (list_mtime_data_func): If the mtime is 0, use "Unknown" for the cell's displayed text.
-
- 02 May, 2005 13 commits
-
-
Owen Taylor authored
2005-04-28 Owen Taylor <otaylor@redhat.com> * gtk/gtkwidget.c: Add a draw-border style property to allow themes to draw outside the widget's allocation. * gdk/gdkwindow.c gtk/gtkstyle.c: Remove some save/restore pairs that were working around the clip-leakage bug in Cairo. * gtk/gtkstyle.c: Use cairo_fill_preserve() rathe than save/fill/restore. * gdk/gdkgc.c gdk/gdkinternals.h: Add _gdk_gc_update_context() That updates a Cairo context to match a GC. * gdk/gdkdraw.c: Use _gdk_gc_update_context() to add support for tiles/stipples/clipping to gdk_draw_glyphs(), gdk_draw_trapezoids(). * gdk/gdkpango.c: Use _gdk_gc_update_context() instead of internal implementation of stipples. Use one cairo_t across the entire drawing operation. Replace cairo_matrix_create() with stack-allocated matrices. * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c gdk/win32/gdkgc-win32.c: Save various aspects of the GC state (fill, tile, stipple, foreground, background, clip region) in instance-private-data for future use. Add getters. Get rid of _gdk_windowing_gc_get_foreground() function implemented by the backends. * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c gdk/win32/gdkgc-win32.c gdk/linux-fb/gdkgc-fb.c: Add _gdk_gc_init() to do initial setup of the GC from values; fixes some problems from drawable redirection. * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c gdk/win32/gdkgc-win32.c gdk/linux-fb/gdkgc-fb.c: Move gdk_gc_copy() and gdk_gc_set_clip_{region,rectangle}() into the generic code, add _gdk_windowing_gc_copy(), _gdk_windowing_gc_set_clip_region() to do backend specific stuff. * gdk/x11/{gdkprivate-x11.h,gdkgc-x11.c.c,gdkdrawable-x11.c} gdk/win32/{gdkprivate-win32.h,gdkgc-x11.c.c,gdkdrawable-x11.c} gdk/linux-fb/{gdkprivate-fb.h,gdkgc-fb.c.c,gdkdrawable-fb.c}: Don't duplicate state that now is stored by the generic code. * gdk/gdk.symbols Update
-
Matthias Clasen authored
2005-05-02 Matthias Clasen <mclasen@redhat.com> * gtk/gtk-sections.txt: Add new icon view functions.
-
Matthias Clasen authored
2005-05-02 Matthias Clasen <mclasen@redhat.com> * tests/testiconview.c: Test cell renderers. * gtk/gtk.symbols: Add new functions. * gtk/gtkiconview.[hc]: Implement GtkCellLayout and use cell renderers for drawing and editing. (#148144, #160242)
-
Matthias Clasen authored
2005-05-02 Matthias Clasen <mclasen@redhat.com> * gtk/gtkcellrenderertext.c (get_size): Return a sufficient width for cases where pango_layout_get_pixel_extents() returns a rectangle with nonzero x.
-
Matthias Clasen authored
-
Matthias Clasen authored
-
Matthias Clasen authored
2005-05-02 Matthias Clasen <mclasen@redhat.com> * gtk/gtk-sections.txt: Remove nonexisting functions.
-
Matthias Clasen authored
2005-05-02 Matthias Clasen <mclasen@redhat.com> * gtk/gtkmenushell.c (gtk_menu_shell_set_take_focus): (gtk_menu_shell_get_take_focus): Fix up the docs a bit.
-
Matthias Clasen authored
-
Matthias Clasen authored
-
Michael Natterer authored
2005-05-02 Michael Natterer <mitch@imendio.com> * gtk/gtkmain.c (do_post_parse_initialization): return silently if "gtk_initialized" is TRUE. Re-enables calling GTK's init functions multiple times when using gtk_get_option_group(), just as one can call gtk_init() multiple times without doing any harm.
-
Priit Laes authored
2005-05-02 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated by Ivar Smolin.
-
Matthias Clasen authored
2005-05-01 Matthias Clasen <mclasen@redhat.com> * gtk/gtktextview.c (gtk_text_view_expose_event): Propagate the event to unanchored children in the text window. (#302494, Stephen Kennedy)
-
- 30 Apr, 2005 3 commits
-
-
Tor Lillqvist authored
2005-04-30 Tor Lillqvist <tml@novell.com> * gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Take multi-monitor offset into account. (#302525)
-
Miloslav Trmac authored
2005-04-30 Miloslav Trmac <mitr@volny.cz> * cs.po: Updated Czech translation.
-
Matthias Clasen authored
2005-04-29 Matthias Clasen <mclasen@redhat.com> * gtk/gtkradioaction.c: Make the docs build. (#302230, Ali Akcaagac)
-
- 29 Apr, 2005 2 commits
-
-
Matthias Clasen authored
2005-04-29 Matthias Clasen <mclasen@redhat.com> * gtk/gtkiconview.c (gtk_icon_view_map): Get rid of this function, instead show the bin_window when it is created.
-
Matthias Clasen authored
2005-04-29 Matthias Clasen <mclasen@redhat.com> * gtk/gtkradiobutton.c (gtk_radio_button_focus): Don't grab focus to unrealized widgets. (#302240, Philip Langdale)
-