summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove fuzzy marker from header and use charset=UTF-8 to avoid crashingTor Lillqvist2008-10-302-2/+6
| | | | | | | | | | 2008-10-30 Tor Lillqvist <tml@novell.com> * ast.po: Remove fuzzy marker from header and use charset=UTF-8 to avoid crashing with some versions of msgfmt. svn path=/trunk/; revision=21737
* Fix email.Michael Natterer2008-10-301-1/+1
| | | | svn path=/trunk/; revision=21736
* gtk/gtkcellrenderertext.h gtk/gtkentry.[ch] gtk/gtkimcontext.hMichael Natterer2008-10-307-9/+16
| | | | | | | | | | | | | | 2008-10-30 Michael Natterer <mitch@gimp.org> * gtk/gtkcellrenderertext.h * gtk/gtkentry.[ch] * gtk/gtkimcontext.h * gtk/gtklabel.c * gtk/gtkstyle.h: <pango/pango.h> is pulled in by <gdk/gdk.h>, remove its inclusion here. svn path=/trunk/; revision=21735
* no need to include <gtk/gtkenums.h> in headers which somehow includeMichael Natterer2008-10-3019-12/+25
| | | | | | | | | | 2008-10-30 Michael Natterer <mitch@imendio.com> * gtk/*.h: no need to include <gtk/gtkenums.h> in headers which somehow include gtkobject.h or another header which includes it. svn path=/trunk/; revision=21734
* Bug 339714 - Set printer dpi on cairo ps/pdf surfaces when printingMarek Kasik2008-10-309-14/+235
| | | | | | | | | | | | | | | | | | | 2008-10-30 Marek Kasik <mkasik@redhat.com> Bug 339714 - Set printer dpi on cairo ps/pdf surfaces when printing * gtk/gtk.symbols * gtk/gtkprintsettings.c * gtk/gtkprintsettings.h * docs/reference/gtk/gtk-sections.txt * modules/printbackends/file/gtkprintbackendfile.c * modules/printbackends/test/gtkprintbackendtest.c * modules/printbackends/cups/gtkprintbackendcups.c * modules/printbackends/lpr/gtkprintbackendlpr.c: Added lpi (lines per inch) setting to GtkPrintSettings and support for anamorphic dpi. Surface fallback resolution is set to 2*lpi. svn path=/trunk/; revision=21733
* no need to include <gdk/gdk.h> in any widget header, it's included viaMichael Natterer2008-10-3071-81/+45
| | | | | | | | | | 2008-10-30 Michael Natterer <mitch@imendio.com> * gtk/*.h: no need to include <gdk/gdk.h> in any widget header, it's included via gtkwidget.h anyway. svn path=/trunk/; revision=21732
* removed redundant conditional.Sven Neumann2008-10-302-4/+6
| | | | | | | | | | 2008-10-30 Sven Neumann <sven@gimp.org> * gtk/gtkwidget.c (gtk_widget_get_property): removed redundant conditional. svn path=/trunk/; revision=21731
* Bug 557316 – GtkLinkButton should consider user-defined tooltipChristian Dywan2008-10-302-1/+10
| | | | | | | * gtk/gtklinkbutton.c (gtk_link_button_query_tooltip_cb): Only override the tooltip if not previously set svn path=/trunk/; revision=21728
* The GTK+ Drawing Model: new chapter for the documentationFederico Mena Quintero2008-10-298-3/+614
| | | | | | Signed-off-by: Federico Mena Quintero <federico@novell.com> svn path=/trunk/; revision=21727
* Bug 557762 – Misleading error message in GDK DirectFBChristian Dywan2008-10-292-1/+8
| | | | | | | * gdk/directfb/gdkdisplay-directfb.c (gdk_display_open): Correctly say GetInputDevice instead of GetDisplayLayer svn path=/trunk/; revision=21726
* Bug 558397 – gtk_widget_error_bell undefined without a screenChristian Dywan2008-10-292-1/+13
| | | | | | | * gtk/gtkwidget.c (gtk_widget_error_bell): Test the settings instance and return silently if unset svn path=/trunk/; revision=21725
* fix small typo.Michael Natterer2008-10-282-1/+5
| | | | | | | | | 2008-10-28 Michael Natterer <mitch@imendio.com> * gdk/keyname-table.h: fix small typo. svn path=/trunk/; revision=21724
* Bug 557894 – Wrong return value for gdk_pointer_grab_info_libgtk_only()Richard Hult2008-10-272-1/+10
| | | | | | | | | | | | | 2008-10-27 Richard Hult <richard@imendio.com> Bug 557894 – Wrong return value for gdk_pointer_grab_info_libgtk_only() * gdk/quartz/gdkevents-quartz.c: (gdk_pointer_grab_info_libgtk_only): Return TRUE when there is a pointer grab. Patch by Owen Taylor. svn path=/trunk/; revision=21722
* Fix up short descriptionsMatthias Clasen2008-10-273-2/+7
| | | | svn path=/trunk/; revision=21721
* Add GtkOrientableMatthias Clasen2008-10-274-0/+32
| | | | svn path=/trunk/; revision=21720
* add a short descMatthias Clasen2008-10-271-0/+1
| | | | svn path=/trunk/; revision=21719
* Add short descMatthias Clasen2008-10-271-0/+177
| | | | svn path=/trunk/; revision=21718
* More conversion to C_()Matthias Clasen2008-10-279-510/+355
| | | | svn path=/trunk/; revision=21717
* Use C_() instead of Q_(). String change!Matthias Clasen2008-10-279-61/+46
| | | | | | | | | | | | | | | | 2008-10-26 Matthias Clasen <mclasen@redhat.com> * gtk/gtkaccellabel.c: * gtk/gtkcalendar.c: * gtk/gtkcellrendereraccel.c: * gtk/gtkcellrendererprogress.c: * gtk/gtkimmulticontext.c: * gtk/gtkrecentchoosermenu.c: * gtk/gtkvolumebutton.c: Use C_() instead of Q_(). String change! svn path=/trunk/; revision=21716
* Bug 557065 – gtkcellrendererpixbuf spams console over and over withChristian Persch2008-10-262-15/+12
| | | | | | | | | | 'could not load image' warnings * gtk/gtkcellrendererpixbuf.c: (gtk_cell_renderer_pixbuf_create_themed_pixbuf): Remove noisy g_warning. svn path=/trunk/; revision=21715
* Bug 530454 – Clarify page_nr when printingPhilip Withnall2008-10-262-2/+9
| | | | | | | | | | | | | 2008-10-26 Philip Withnall <philip@tecnocode.co.uk> Bug 530454 – Clarify page_nr when printing * gtk/gtkprintoperation.c (gtk_print_operation_class_init): Point out that page_nr is 0-based in the documentation. svn path=/trunk/; revision=21714
* Bug 557315 – stale clipboard target cacheMatthias Clasen2008-10-252-1/+17
| | | | | | | | | | | | 2008-10-25 Matthias Clasen <mclasen@redhat.com> Bug 557315 – stale clipboard target cache * gtk/gtkclipboard.c (gtk_clipboard_set_contents): Remove cached targets. Pointed out by Evan Stade svn path=/trunk/; revision=21713
* Added a note about GtkWidget:has-tooltip in the docs forTristan Van Berkom2008-10-242-2/+7
| | | | | | | | * gtk/gtkwidget.c: Added a note about GtkWidget:has-tooltip in the docs for GtkWidget::query-tooltip. svn path=/trunk/; revision=21712
* fix a typoMark Krapivner2008-10-242-231/+286
| | | | svn path=/trunk/; revision=21711
* Add a missing typeMatthias Clasen2008-10-242-0/+5
| | | | svn path=/trunk/; revision=21710
* Fix a property definitionMatthias Clasen2008-10-242-1/+6
| | | | svn path=/trunk/; revision=21709
* Bug 556954 – gtk+/gtk/gtkrecentchooserdefault.c: mismatching allocationMatthias Clasen2008-10-242-1/+9
| | | | | | | | | | | | 2008-10-24 Matthias Clasen <mclasen@redhat.com> Bug 556954 – gtk+/gtk/gtkrecentchooserdefault.c: mismatching allocation and deallocation * gtk/gtkrecentchooserdefault.c (remove_selected_from_list): Don't free a strdup'ed string by g_free. Pointed out by Daniel Marjamäki svn path=/trunk/; revision=21708
* Bug 556835 – gtkentry.c: variable is declared at middle of blockMatthias Clasen2008-10-242-1/+9
| | | | | | | | | | | | 2008-10-24 Matthias Clasen <mclasen@redhat.com> Bug 556835 – gtkentry.c: variable is declared at middle of block * gtk/gtkentry.c (gtk_entry_copy_clipboard): Fix a C99ism pointed out by Kazuki Iwamoto svn path=/trunk/; revision=21707
* Bug 557524 – "va_end(args);" should be added intoMatthias Clasen2008-10-242-0/+9
| | | | | | | | | | | | | 2008-10-24 Matthias Clasen <mclasen@redhat.com> Bug 557524 – "va_end(args);" should be added into gtk_text_buffer_insert_with_tags_by_name( ) * gtk/gtktextbuffer.c (gtk_text_buffer_insert_with_tags_by_name): Don't forget to call va_end. Pointed out by Boram Park svn path=/trunk/; revision=21706
* Added Asturian translation on behalf of Mikel GonzálezGil Forcada Codinachs2008-10-235-0/+11464
| | | | svn path=/trunk/; revision=21704
* Bug 528320 - Incorrect icons displayed for files with custom mimetypeAlexander Larsson2008-10-232-0/+19
| | | | | | | | | | | | | | | | | 2008-10-23 Alexander Larsson <alexl@redhat.com> Bug 528320 - Incorrect icons displayed for files with custom mimetype icons * gtk/gtkfilesystem.c: (_gtk_file_info_render_icon): Fall back on default file icon if there was no icon or it was not found in the theme. This goes with the corresponding change in glib to not add the fallback icon, but is useful in other cases too. svn path=/trunk/; revision=21702
* Bug 555920 – gtkentry.c passes wrong enum toBehdad Esfahbod2008-10-222-2/+8
| | | | | | | | | | | | | 2008-10-22 Behdad Esfahbod <behdad@gnome.org> Bug 555920 – gtkentry.c passes wrong enum to pango_layout_set_alignment() * gtk/gtkentry.c (gtk_entry_create_layout): Don't set layout adjustment. svn path=/trunk/; revision=21700
* Only emit size-changed if the screen size actually changed.Matthias Clasen2008-10-222-1/+15
| | | | | | | | | | 2008-10-22 Matthias Clasen <mclasen@redhat.com> * gdk/x11/gdkscreen-x11.c: Only emit size-changed if the screen size actually changed. svn path=/trunk/; revision=21698
* gdk/gdkdraw.c gdk/gdkimage.c gdk/gdkscreen.c replace assertions for obj !=Michael Natterer2008-10-215-67/+61
| | | | | | | | | | | | | | | 2008-10-21 Michael Natterer <mitch@imendio.com> * gdk/gdkdraw.c * gdk/gdkimage.c * gdk/gdkscreen.c * gdk/gdkwindow.c: replace assertions for obj != NULL by GDK_IS_OBJ(), remove redundant != NULL checks when there is already a type check, add some g_return_if_fail() that were missing entirely, fix some broken indentation and spacing. svn path=/trunk/; revision=21695
* Bug 557266 - Window Management ProblemTor Lillqvist2008-10-212-15/+39
| | | | | | | | | | | | | | | | | | | | 2008-10-21 Tor Lillqvist <tml@novell.com> Bug 557266 - Window Management Problem Also reported in mail to gtk-list, and of course it has been well known in general that window state management is messy and buggy in various ways in gdk/win32. * gdk/win32/gdkwindow-win32.c (show_window_internal): Correct handling of GDK_WINDOW_STATE_ABOVE windows. It doesn't work to set the WS_EX_TOPMOST extended style bit using SetWindowLong(). We must call SetWindowPos() on the window using HWND_TOPMOST instead. The description for WS_EX_TOPMOST in the documentation for CreateWindowEx() even implies that if you read it carefully. svn path=/trunk/; revision=21694
* reorder functions to be in standard order, add prototypes and namespace toMichael Natterer2008-10-212-38/+58
| | | | | | | | | | | 2008-10-21 Michael Natterer <mitch@imendio.com> * gdk/gdkapplaunchcontext.c: reorder functions to be in standard order, add prototypes and namespace to static functions, add g_return_if_fail()s which were missing all over the place. svn path=/trunk/; revision=21692
* Bug 557059 – crash when compositing emblems with iconChristian Persch2008-10-202-4/+27
| | | | | | | | | | | | 2008-10-20 Christian Persch <chpe@gnome.org> Bug 557059 – crash when compositing emblems with icon * gtk/gtkicontheme.c: (apply_emblems): Copy the pixbuf before using it with gtk_pixbuf_composite, in case its pixdata is read-only (mmaped from icon cache or builtins). svn path=/trunk/; revision=21690
* gtk_icon_view_set_tooltip_row(), gtk_icon_view_set_tooltip_item():Murray Cumming2008-10-203-0/+15
| | | | | | | | | | | | | 2008-10-20 Murray Cumming <murrayc@murrayc.com> * gtk/gtkiconview.c: gtk_icon_view_set_tooltip_row(), gtk_icon_view_set_tooltip_item(): * gtk/gtktreeview.c: gtk_icon_view_set_tooltip_row(), gtk_icon_view_set_tooltip_cell(): Documentation: Mention the simple set_tooltip_column() alternative. svn path=/trunk/; revision=21689
* Updated Catalan translation by David PlanellaGil Forcada Codinachs2008-10-192-1632/+1706
| | | | svn path=/trunk/; revision=21686
* Updated Thai translation.Theppitak Karoonboonyanan2008-10-192-210/+244
| | | | | | | | | 2008-10-19 Theppitak Karoonboonyanan <thep@linux.thai.net> * th.po: Updated Thai translation. svn path=/trunk/; revision=21682
* Updated Galician Translation.Ignacio Casal Quinteiro2008-10-184-2917/+2931
| | | | svn path=/trunk/; revision=21680
* On WM_WINDOWPOSCHANGING, don't dereference windowpos in the debuggingTor Lillqvist2008-10-172-22/+47
| | | | | | | | | | | | | | | | | | | | | | | | 2008-10-18 Tor Lillqvist <tml@novell.com> * gdk/win32/gdkevents-win32.c (gdk_event_translate): On WM_WINDOWPOSCHANGING, don't dereference windowpos in the debugging output without setting it first. 2008-10-18 Tor Lillqvist <tml@novell.com> Bug 556578 - GIMP windows stay on top of other windows * gdk/win32/gdkevents-win32.c (ensure_stacking_on_unminimize) (ensure_stacking_on_window_pos_changing) (ensure_stacking_on_activate_app): Ignore unmapped windows in the loops where we look for the lowest "transient-type" window. (gdk_event_translate): Don't call ensure_stacking_on_window_pos_changing() or ensure_stacking_on_activate_app() for unmapped windows. svn path=/trunk/; revision=21676
* Updated Catalan translationGil Forcada Codinachs2008-10-172-119/+147
| | | | svn path=/trunk/; revision=21672
* Updated Georgian TranslationVladimer Sichinava2008-10-172-1132/+1141
| | | | svn path=/trunk/; revision=21670
* Updated Slovak translation by Pavol Šimo.Marcel Telka2008-10-162-1741/+1765
| | | | | | | | 2008-10-16 Marcel Telka <marcel@telka.sk> * sk.po: Updated Slovak translation by Pavol Šimo. svn path=/trunk/; revision=21665
* Updated Slovak translation by Pavol Šimo.Marcel Telka2008-10-162-1127/+1136
| | | | | | | | 2008-10-16 Marcel Telka <marcel@telka.sk> * sk.po: Updated Slovak translation by Pavol Šimo. svn path=/trunk/; revision=21664
* Bug 556527 - The current page property is not passed to GtkPrintUnixDialogMarek Kasik2008-10-162-0/+11
| | | | | | | | | | | | 2008-10-16 Marek Kasik <mkasik@redhat.com> Bug 556527 - The current page property is not passed to GtkPrintUnixDialog * gtk/gtkprintoperation-unix.c: pass current-page property to GtkPrintUnixDialog svn path=/trunk/; revision=21660
* fix typo in the type name so the macro becomes usable.Michael Natterer2008-10-152-1/+6
| | | | | | | | | | 2008-10-15 Michael Natterer <mitch@imendio.com> * gdk/gdkapplaunchcontext.h (GDK_IS_APP_LAUNCH_CONTEXT): fix typo in the type name so the macro becomes usable. svn path=/trunk/; revision=21658
* Updated Brazilian Portuguese translation.Og B. Maciel2008-10-142-106/+115
| | | | svn path=/trunk/; revision=21655
* 556150 – gtk 'object' property test fixingChristian Dywan2008-10-142-14/+7
| | | | | | | * gtk/tests/object.c (list_ignore_properties): Remove some recently fixed properties from the exception list svn path=/trunk/; revision=21653