summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 2.13.5GTK_2_13_5Matthias Clasen2008-07-22228-55305/+59149
| | | | svn path=/trunk/; revision=20888
* Doc fixesMatthias Clasen2008-07-2110-20/+62
| | | | svn path=/trunk/; revision=20887
* Polish translation updateTomasz Dominikowski2008-07-211-432/+466
| | | | svn path=/trunk/; revision=20886
* use gtk_box_pack_start() instead of the deprecatedMichael Natterer2008-07-213-7/+17
| | | | | | | | | | | | | | 2008-07-21 Michael Natterer <mitch@imendio.com> * gtk/gtkbox.c (gtk_box_add): use gtk_box_pack_start() instead of the deprecated gtk_box_pack_start_defaults(). * gtk/gtkbindings.c (gtk_binding_entry_add_signal) (gtk_binding_parse_signal): use _gtk_binding_entry_add_signall() instead of the deprecated gtk_binding_entry_add_signall(). svn path=/trunk/; revision=20885
* Use GSlice to allocate the application data for recently used resources;Emmanuele Bassi2008-07-212-4/+11
| | | | | | | | | | | | 2008-07-21 Emmanuele Bassi <ebassi@gnome.org> * gtk/gtkrecentmanager.c: (recent_app_info_new), (recent_app_info_free): Use GSlice to allocate the application data for recently used resources; do not call time() to initialize the timestamp, as it will be overwritten anyway later. (#535223, Michael Meeks) svn path=/trunk/; revision=20884
* Bug 543989 - Crash in gtk_tree_view_size_allocate_columnsKristian Rietveld2008-07-212-1/+9
| | | | | | | | | | | | 2008-07-21 Kristian Rietveld <kris@gtk.org> Bug 543989 - Crash in gtk_tree_view_size_allocate_columns * gtk/gtktreeview.c (gtk_tree_view_size_allocate_columns): check for width_changed != NULL. (Patch by Josselin Mouette). svn path=/trunk/; revision=20883
* Bug 442042 – GtkScaleButton is too limitedMichael Natterer2008-07-212-50/+88
| | | | | | | | | | | | | 2008-07-21 Michael Natterer <mitch@imendio.com> Bug 442042 – GtkScaleButton is too limited * tests/testvolumebutton.c: forgot to commit code that tests toggling the button's orientation. Also fixes the file's coding style. svn path=/trunk/; revision=20882
* Bug 153567 – Repaint glitches in widgetsCody Russell2008-07-212-3/+36
| | | | | | | | | | | | | 2008-07-21 Cody Russell <bratsche@gnome.org> Bug 153567 – Repaint glitches in widgets * gdk/win32/gdkevents-win32.c: Set a sync timer when we receive WM_SYNCPAINT, and RedrawWindow() once the timer expires. svn path=/trunk/; revision=20881
* use the simpler g_signal_override_class_handler() instead ofMichael Natterer2008-07-213-25/+22
| | | | | | | | | | | | | | | | | | 2008-07-21 Michael Natterer <mitch@imendio.com> * gtk/gtktoolbar.c (gtk_toolbar_class_init): use the simpler g_signal_override_class_handler() instead of g_signal_override_class_closure(). * gtk/gtktextview.c (gtk_text_view_class_init): ditto. (gtk_text_view_compat_move_focus): chain up using g_signal_chain_from_overridden_handler() instead of the generic g_signal_chain_from_overridden() which needs manual fiddling with millions of GValues. svn path=/trunk/; revision=20880
* Polish translation update by Aviary.plTomasz Dominikowski2008-07-212-2/+6
| | | | svn path=/trunk/; revision=20879
* remove redundant include.Michael Natterer2008-07-212-3/+6
| | | | | | | | | 2008-07-21 Michael Natterer <mitch@imendio.com> * gtk/gtkuimanager.c: remove redundant include. svn path=/trunk/; revision=20878
* Polish translation updateTomasz Dominikowski2008-07-211-1349/+1308
| | | | svn path=/trunk/; revision=20875
* remove _gtk_binding_signal_new().Michael Natterer2008-07-2111-227/+212
| | | | | | | | | | | | | | | | | | 2008-07-21 Michael Natterer <mitch@imendio.com> * gtk/gtkbindings.[ch]: remove _gtk_binding_signal_new(). * gtk/gtkfilechooserdefault.c * gtk/gtkmenu.c * gtk/gtkmenushell.c * gtk/gtkscalebutton.c * gtk/gtktextview.c * gtk/gtktoolbar.c * gtk/gtkwidget.c: use g_signal_new_class_handler() instead. Add some missing I_() to the signal names. svn path=/trunk/; revision=20874
* remove g_return_if_fail() from private functions and virtual functionMichael Natterer2008-07-212-35/+18
| | | | | | | | | | | 2008-07-21 Michael Natterer <mitch@imendio.com> * gtk/gtkspinbutton.c: remove g_return_if_fail() from private functions and virtual function implementations. Some minor cleanups. svn path=/trunk/; revision=20873
* Bug 543915 - translation issuesAndre Klapper2008-07-202-0/+11
| | | | | | | | | | | | 2008-07-20 Andre Klapper <a9016009@gmx.de> Bug 543915 - translation issues * modules/printbackends/cups/gtkprintbackendcups.c: Add translator comments for several strings. svn path=/trunk/; revision=20872
* Updated German translation.Andre Klapper2008-07-202-1102/+1106
| | | | | | | | | 2008-07-20 Andre Klapper <a9016009@gmx.de> * de.po: Updated German translation. svn path=/trunk/; revision=20871
* reviewed by: Richard HultSven Herzberg2008-07-204-6/+32
| | | | | | | | | | | | | | | | | | | | 2008-07-20 Sven Herzberg <sven@imendio.com> reviewed by: Richard Hult Fixes #543868: GdkPixmap is upside down on quartz * gdk/quartz/gdkdrawable-quartz.c (gdk_quartz_draw_drawable): flip the coordinate space from GTK+ orientation to CoreGraphics orientation before calling CoreGraphics code * gdk/quartz/gdkgc-quartz.c (gdk_quartz_draw_tiled_pattern): drop the coordinate space flipping (we always get it right, now) * gdk/quartz/gdkpixmap-quartz.c (gdk_pixmap_impl_quartz_get_context): flip the coordinate space when creating the CGContextRef svn path=/trunk/; revision=20870
* reviewed by: Richard HultSven Herzberg2008-07-205-77/+116
| | | | | | | | | | | | | | | | | | | | | | | | 2008-07-20 Sven Herzberg <sven@imendio.com> reviewed by: Richard Hult Extracted the CGContextRef creation into a virtual function of GdkDrawableImplQuartz; implement get_context() for GdkPixmap and GdkWindow * gdk/quartz/gdkdrawable-quartz.c (gdk_quartz_drawable_get_context): dropped the different implementations; forward to the virtual function now * gdk/quartz/gdkdrawable-quartz.h: added the virtual function * gdk/quartz/gdkpixmap-quartz.c (gdk_pixmap_impl_quartz_get_context), (gdk_pixmap_impl_quartz_class_init): implemented get_context() * gdk/quartz/gdkwindow-quartz.c (gdk_window_impl_quartz_get_context), (gdk_window_impl_quartz_class_init): implemented get_context() svn path=/trunk/; revision=20869
* Add tons of new apiMatthias Clasen2008-07-202-2/+52
| | | | svn path=/trunk/; revision=20868
* Improve the docsMatthias Clasen2008-07-202-2/+9
| | | | svn path=/trunk/; revision=20867
* UpdatesMatthias Clasen2008-07-192-0/+69
| | | | svn path=/trunk/; revision=20866
* Remove the old icon cache if regenerating it would cause it to be emptyFederico Mena Quintero2008-07-182-2/+7
| | | | | | Signed-off-by: Federico Mena Quintero <federico@novell.com> svn path=/trunk/; revision=20865
* Fix a crashMatthias Clasen2008-07-182-2/+10
| | | | svn path=/trunk/; revision=20864
* Avoid a crashMatthias Clasen2008-07-182-3/+9
| | | | svn path=/trunk/; revision=20863
* Don't do funny casts to avoid compiler warningsFederico Mena Quintero2008-07-1811-19/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | 2008-07-18 Federico Mena Quintero <federico@novell.com> * demos/gtk-demo/changedisplay.c (find_toplevel_at_pointer): Don't do funny casts to avoid compiler warnings. * demos/gtk-demo/textview.c (easter_egg_callback): Likewise. * gtk/gtkmain.c (rewrite_event_for_grabs, gtk_get_event_widget): Likewise. * gtk/gtkmodules.c (load_module): Likewise. * gtk/gtkselection.c (gtk_selection_convert): Likewise. * gtk/gtktipsquery.c (gtk_tips_query_event): Likewise. * gtk/queryimmodules.c (query_module): Likewise. * tests/testgtk.c (create_gridded_geometry, create_key_lookup) (find_widget_at_pointer): Likewise. Signed-off-by: Federico Mena Quintero <federico@novell.com> svn path=/trunk/; revision=20862
* Add a forgotten hunkMatthias Clasen2008-07-182-1/+8
| | | | svn path=/trunk/; revision=20861
* Make aliasfilecheck.sh pass for the quartz backend, too.Sven Herzberg2008-07-182-2/+10
| | | | | | | | | | | 2008-07-18 Sven Herzberg <sven@imendio.com> Make aliasfilecheck.sh pass for the quartz backend, too. * gtk/Makefile.am: don't include gtkquartz.h in the list of c files svn path=/trunk/; revision=20860
* Updated Spanish translationJorge Gonzalez Gonzalez2008-07-182-49/+54
| | | | svn path=/trunk/; revision=20859
* Updated Finnish translationIlkka Tuohela2008-07-181-1101/+1087
| | | | svn path=/trunk/; revision=20858
* Updated assamese translationsAmitakhya Phukan2008-07-172-25/+20
| | | | svn path=/trunk/; revision=20855
* Added Entry for addition of Pashto (ps) to ALL_LINGUAS in configure.inRuna Bhattacharjee2008-07-171-0/+4
| | | | svn path=/trunk/; revision=20854
* Added Pashto (ps) to ALL_LINGUASRuna Bhattacharjee2008-07-171-1/+1
| | | | svn path=/trunk/; revision=20853
* Added Entry for addition of Pashto (ps) Translations by Zabeeh KhanRuna Bhattacharjee2008-07-171-0/+4
| | | | svn path=/trunk/; revision=20852
* Added Entry for addition of Pashto (ps) Translations by Zabeeh KhanRuna Bhattacharjee2008-07-171-0/+4
| | | | svn path=/trunk/; revision=20851
* Added Pashto Translations by Zabeeh KhanRuna Bhattacharjee2008-07-171-0/+6346
| | | | svn path=/trunk/; revision=20850
* Added Pashto Translations by Zabeeh KhanRuna Bhattacharjee2008-07-171-0/+4595
| | | | svn path=/trunk/; revision=20849
* Updated Spanish translationJorge Gonzalez Gonzalez2008-07-162-1780/+1734
| | | | svn path=/trunk/; revision=20848
* Updated Spanish translationJorge Gonzalez Gonzalez2008-07-162-1026/+1031
| | | | svn path=/trunk/; revision=20847
* ops, forgot a test in the last commitPaolo Borelli2008-07-161-2/+30
| | | | svn path=/trunk/; revision=20846
* Bug 447998 - GtkBuilder does not support building parts of the xml treePaolo Borelli2008-07-168-8/+366
| | | | | | | | | | | | | | | | | | | 2008-07-15 Paolo Borelli <pborelli@katamail.com> Bug 447998 - GtkBuilder does not support building parts of the xml tree * gtk/gtkbuilder.c: * gtk/gtkbuilder.h: * gtk/gtkbuilderprivate.h: * gtk/gtkbuilderparser.c: * gtk/gtk.symbols: Add two new functions that allow cherry picking and construct objects from a ui description file or string. * gtk/tests/builder.c: tests for the above. svn path=/trunk/; revision=20845
* fix up broken test (cellview has no "clicked" signal) case and plug aPaolo Borelli2008-07-162-4/+12
| | | | | | | | | | 2008-07-15 Paolo Borelli <pborelli@katamail.com> * gtk/tests/builder.c: fix up broken test (cellview has no "clicked" signal) case and plug a couple of leaks. svn path=/trunk/; revision=20844
* Don't free a GFile. Reported by Sebastien BacherMatthias Clasen2008-07-162-1/+8
| | | | | | | | | * gtk/gtkfilesystem.c (_gtk_file_system_set_bookmark_label): Don't free a GFile. Reported by Sebastien Bacher svn path=/trunk/; revision=20843
* updated hebrew translationYair Hershkovitz2008-07-162-1017/+1035
| | | | svn path=/trunk/; revision=20842
* updated hebrew translationYair Hershkovitz2008-07-162-105/+125
| | | | svn path=/trunk/; revision=20841
* Use gdk_pixbuf_copy_area() to copy between pixbufs. Reported by AndreyMatthias Clasen2008-07-152-3/+12
| | | | | | | | | * gdk-pixbuf-utils.c (gdk_pixbuf_saturate_and_pixelate): Use gdk_pixbuf_copy_area() to copy between pixbufs. Reported by Andrey Tsyvarev svn path=/trunk/; revision=20840
* Bug 339591 – Detect list of availible cover pagesMatthias Clasen2008-07-152-17/+109
| | | | | | | | | | Patch by Marek Kasik: * modules/printbackends/cups/gtkprintbackendcups.c: Get the list of available cover pages and the default front and back cover pages from the cups server. svn path=/trunk/; revision=20839
* Bug 384940 – handle rejecting jobs and authentication meaningfullyMatthias Clasen2008-07-1518-42/+1252
| | | | | | | | | | | | | | | | | | | | Patch by Marek Kasik, icons by Mike Langlie: * gtk/gtk.symbols: * gtk/gtkprintbackend.h: * gtk/gtkprinter.[hc]: Add new paused and accepting-jobs properties and getters/setters. * gtk/gtkstock.h: * gtk/gtkiconfactory.c: * gtk/Makefile.am: * gtk/stock-icons/{16,24}/gtk-print-paused.{png,svg}: New icon. * modules/printbackends/cups/gtkprintbackendcups.c: * gtk/gtkprintunixdialog.c: Handle paused and job-rejecting printers. svn path=/trunk/; revision=20838
* test content sniffing capability of gioMatthias Clasen2008-07-154-5/+49
| | | | svn path=/trunk/; revision=20837
* Bug 542523 - GtkTextTag should handle setting properties to NULLXavier Claessens2008-07-152-3/+16
| | | | | | | | | | | | 2008-07-15 Xavier Claessens <xclaesse@gmail.com> Bug 542523 - GtkTextTag should handle setting properties to NULL * gtk/gtktexttag.c (gtk_text_tag_set_property): Unset the color when setting it to NULL instead of displaying a warning. svn path=/trunk/; revision=20836
* 2.13.5Chao-Hsiung Liao2008-07-153-2357/+2284
| | | | svn path=/trunk/; revision=20835