- 01 Jul, 2008 7 commits
-
-
Cody Russell authored
svn path=/trunk/; revision=20724
-
Richard Hult authored
2008-07-01 Richard Hult <richard@imendio.com> Some aftermath from the window impl cleanups: * gdk/quartz/gdkwindow-quartz.c: (gdk_window_merge_child_input_shapes): Rename and export again. (gdk_window_quartz_get_offsets): Make static. svn path=/trunk/; revision=20723
-
Michael Natterer authored
2008-07-01 Michael Natterer <mitch@imendio.com> * gtk/gtkscalebutton.h: forgot to commit the header, fixed now. svn path=/trunk/; revision=20719
-
Kjartan Maraas authored
2008-07-01 Kjartan Maraas <kmaraas@gnome.org> * nb.po: Updated Norwegian bokmål translation. svn path=/trunk/; revision=20718
-
Matthias Clasen authored
* gdk/x11/gdksettings.c: * gtk/gtksettings.c: Add event sound settings. Patch by Lennart Pöttering. svn path=/trunk/; revision=20717
-
Yair Hershkovitz authored
svn path=/trunk/; revision=20716
-
Matthias Clasen authored
* gtk/gtkprintoperation-unix.c (_gtk_print_operation_platform_backend_create_preview_surface): Handle failure to create temp file by returning NULL. * gtk/gtkprintoperation.c (gtk_print_operation_preview_handler): Return FALSE if surface creation fails. (print_pages): If the preiew signal is not handled, show an error dialog. svn path=/trunk/; revision=20715
-
- 30 Jun, 2008 6 commits
-
-
Michael Natterer authored
2008-07-01 Michael Natterer <mitch@imendio.com> Bug 442042 – GtkScaleButton is too limited * gtk/gtkscalebutton.[ch]: turn "orientation" into a normal property that can be changed at any time after widget creation. Add public API for it. * gtk/gtk.symbols: add gtk_scale_button_get/set_orientation. svn path=/trunk/; revision=20710
-
Cody Russell authored
2008-06-30 Cody Russell <bratsche@gnome.org> * Practically everything changed. Change all references of GIMP Toolkit (and variations of it) to GTK+ Toolkit, showing no mercy at all to our beloved ancestry. (#540529) svn path=/trunk/; revision=20709
-
Michael Natterer authored
2008-06-30 Michael Natterer <mitch@imendio.com> Some unrelated cleanups found while reviewing the offscreen window patch: * gdk/gdkwindow.c: add missing Since: 2.14 to the redirection functions, fix some function header indentation, update documentation of redirect_to_drawable(). * gdk/x11/gdkwindow-x11.c * gdk/x11/gdkpixmap-x11.c: fix function header formatting/indentation. * gtk/gtkwidget.c: use I_() on "damage_event". svn path=/trunk/; revision=20708
-
Michael Natterer authored
2008-06-30 Michael Natterer <mitch@imendio.com> * gdk/gdkinternals.h: remove duplicate declaration of _gdk_window_new(). svn path=/trunk/; revision=20707
-
Michael Natterer authored
2008-06-30 Michael Natterer <mitch@imendio.com> * gdk/Makefile.am: reorder source lists alphabetically. svn path=/trunk/; revision=20706
-
Matthias Clasen authored
* gtk/gtkwindow.c: Avoid unnecessary redraws when resizing. Patch by Owen Taylor svn path=/trunk/; revision=20705
-
- 29 Jun, 2008 2 commits
-
-
Gil Forcada Codinachs authored
svn path=/trunk/; revision=20704
-
Behdad Esfahbod authored
2008-06-29 Behdad Esfahbod <behdad@gnome.org> Bug 530255 – GtkAboutDialog cuts off comments label Followup patch from Jan Arne Petersen * gtk/gtklabel.c (gtk_label_get_layout_offsets): Ensure layout. svn path=/trunk/; revision=20703
-
- 28 Jun, 2008 3 commits
-
-
Michael Natterer authored
2008-06-28 Michael Natterer <mitch@imendio.com> * gtk/gtkselection.h: properly indent the newly added GtkSelectionData accessors. Some newlines can't hurt either. svn path=/trunk/; revision=20702
-
Mikael Hallendal authored
2008-06-27 Mikael Hallendal <micke@imendio.com> * gtk/gtkbox.c (gtk_box_pack): Removed accidental empty row. svn path=/trunk/; revision=20701
-
Mikael Hallendal authored
2008-06-27 Mikael Hallendal <micke@imendio.com> * gtk/gtkbox.c (gtk_box_pack, gtk_box_pack_start, gtk_box_pack_end): Factored out gtk_box_pack from gtk_box_pack_start and use it from both pack_start and pack_end in order to reduce the code duplication. svn path=/trunk/; revision=20700
-
- 27 Jun, 2008 7 commits
-
-
Jorge Gonzalez Gonzalez authored
svn path=/trunk/; revision=20699
-
Michael Natterer authored
2008-06-27 Michael Natterer <mitch@imendio.com> Bug 442042 – GtkScaleButton is too limited * gtk/gtkscalebutton.c (gtk_scale_button_init): set the name "gtk-scalebutton-popup-window" on the popup window so it is properly themeable. svn path=/trunk/; revision=20698
-
Kristian Rietveld authored
2008-06-27 Kristian Rietveld <kris@imendio.com> * gdk/quartz/gdkgeometry-quartz.c: * gdk/quartz/gdkwindow-quartz.c: * gdk/quartz/gdkprivate-quartz.h: adapt to use GdkWindowImpl interface. svn path=/trunk/; revision=20697
-
Carlos Garnacho authored
2008-06-27 Carlos Garnacho <carlos@imendio.com> * gtk/gtkrecentmanager.c (get_icon_for_mime_type): Fix two potential critical warnings. Bug #539470. svn path=/trunk/; revision=20696
-
Emmanuele Bassi authored
2008-06-27 Emmanuele Bassi <ebassi@gnome.org> Abstract some GdkWindow API into an interface that the backends must implement. (based on a patch by Alex Larsson) * gdk/Makefile.am: Add gdkwindowimpl.[ch] * gdk/gdk.symbols: Move symbols around. * gdk/gdkinternals.h: * gdk/gdkwindowimpl.[ch]: Move some of the GdkWindow API we require from the backends to a GInterface that the backends should implement instead. * gdk/gdkwindow.c: Provide some of the GdkWindow public API as a wrapper call around the GdkWindowImpl interface vtable. * gdk/x11/gdkevents-x11.c: * gdk/x11/gdkgeometry-x11.c: * gdk/x11/gdkprivate-x11.h: * gdk/x11/gdkwindow-x11.c: * gdk/x11/gdkwindow-x11.h: Update the X11 backend to implement the GdkWindowImpl interface. svn path=/trunk/; revision=20695
-
Martyn James Russell authored
* gtk/gtkcontainer.c: (gtk_container_add): Fixed the FAQ location in the warning produced here. svn path=/trunk/; revision=20693
-
Michael Natterer authored
2008-06-27 Michael Natterer <mitch@imendio.com> Bug 442042 – GtkScaleButton is too limited * gtk/gtkscalebutton.c: add "orientation" property. Make sure the stuff that is part of the public API continues to be created in init() to stay compatible. Move creating of the popup scale to constructor(). Add an internal HScale class. Changed popup positioning for horizontal scales accordingly. svn path=/trunk/; revision=20692
-
- 26 Jun, 2008 6 commits
-
-
Michael Natterer authored
2008-06-26 Michael Natterer <mitch@imendio.com> * gtk/gtkscalebutton.c * gtk/gtkvolumebutton.c: remove redundant init() and class_init() prototypes, remove redundant includes, remove a little trailing whitespace. svn path=/trunk/; revision=20691
-
Richard Hult authored
2008-06-26 Richard Hult <richard@imendio.com> * gtk/gtkclipboard-quartz.c: (gtk_clipboard_wait_for_contents): * gtk/gtkquartz.c: (_gtk_quartz_get_selection_data_from_pasteboard), (_gtk_quartz_set_selection_data_for_pasteboard): Patch from Christian Dywan to clean up selection data setting. svn path=/trunk/; revision=20690
-
Richard Hult authored
2008-06-26 Richard Hult <richard@imendio.com> * gtk/gtkdnd-quartz.c (gtk_drag_begin_internal): Don't use deprecated function gtk_widget_ref, replace with g_object_ref. svn path=/trunk/; revision=20689
-
Michael Natterer authored
2008-06-26 Michael Natterer <mitch@imendio.com> * gtk/gtkfilesystem.c: #include "config.h" svn path=/trunk/; revision=20688
-
Carlos Garnacho authored
2008-06-26 Carlos Garnacho <carlos@imendio.com> * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_get_current_folder): current_folder can be NULL here, do not try to reference it (Bug #540235) (gtk_file_chooser_default_get_files): Deal better with gtk_file_chooser_default_get_current_folder() being able to return NULL. svn path=/trunk/; revision=20687
-
Michael Natterer authored
2008-06-26 Michael Natterer <mitch@imendio.com> * gtk/gtktextutil.c (_gtk_text_util_append_special_char_menuitems): allocate the GtkTextUtilCallbackInfo structs with GSlice. svn path=/trunk/; revision=20686
-
- 25 Jun, 2008 1 commit
-
-
Michael Natterer authored
2008-06-25 Michael Natterer <mitch@imendio.com> * gtk/gtktypeutils.h: there is no reason to include <gtk/gtktypebuiltins.h> in the middle of the file, move it to top, replacing the <glib-object.h> include. Also move the remaining few non-deprecated things to the top and move some deprecated things around to clean up the mess with too many deprecated sections even more. svn path=/trunk/; revision=20685
-
- 24 Jun, 2008 7 commits
-
-
Michael Natterer authored
2008-06-24 Michael Natterer <mitch@imendio.com> * gtk/gtktypeutils.h: deprecate gtk_type_init() unconditionally (also for GTK_COMPILATION). Move some deprecated typedefs around to reduce the mess with zillions of deprecated sections. * gtk/gtkmain.c (do_post_parse_initialization): replace the call to gtk_type_init() by g_type_init() and gtk_object_get_type() even though the latter is probably completely pointless. svn path=/trunk/; revision=20684
-
Kjartan Maraas authored
2008-06-24 Kjartan Maraas <kmaraas@gnome.org> * nb.po: Updated Norwegian bokmål translation. svn path=/trunk/; revision=20683
-
Johan Dahlin authored
svn path=/trunk/; revision=20682
-
Michael Natterer authored
2008-06-24 Michael Natterer <mitch@imendio.com> * gtk/gtkdialog.c (gtk_dialog_init): also revert change in how the dialog's vbox was added (bug #539732). svn path=/trunk/; revision=20681
-
Carlos Garnacho authored
2008-06-24 Carlos Garnacho <carlos@imendio.com> * gtk/gtkdialog.[ch]: Remove container implementation, which isn't thought for handling non-direct children. Fixes #539732. (gtk_dialog_pack_start) (gtk_dialog_pack_end): Removed as well, it doesn't provide enough control to API users (removing, reordering...), this is better handled through: (gtk_dialog_get_content_area): New function which just returns dialog->vbox. * gtk/gtk.symbols: Modify accordingly. * docs/reference/gtk/tmpl/gtkdialog.sgml: Update docs to recommend using gtk_dialog_get_[action|content]_area() instead of accessing dialog struct members directly. svn path=/trunk/; revision=20680
-
Michael Natterer authored
2008-06-24 Michael Natterer <mitch@imendio.com> * gtk/gtkassistant.h * gtk/gtkcellrenderer.h * gtk/gtkfilechooserentry.h * gtk/gtkprivate.h * gtk/gtktooltip.h * gtk/gtktreeview.h * gtk/gtkwindow.h: no need to include gtkwidget.h or gtkobject.h if there is any other widget included, they all have to include their respective parent classes (the is-a relation works for includes too). svn path=/trunk/; revision=20679
-
Michael Natterer authored
2008-06-24 Michael Natterer <mitch@imendio.com> * gtk/gtktextutil.h: remove includes from this internal header. * gtk/gtktextutil.c: include gtktextbuffer.h before gtktextutil.h. svn path=/trunk/; revision=20678
-
- 23 Jun, 2008 1 commit
-
-
Daniel Nylander authored
svn path=/trunk/; revision=20677
-