]> Pileus Git - ~andy/gtk/log
~andy/gtk
18 years agoUse g_path_get_dirname() instead of the nonportable <libgen.h> and
Tor Lillqvist [Mon, 15 Aug 2005 14:53:00 +0000 (14:53 +0000)]
Use g_path_get_dirname() instead of the nonportable <libgen.h> and

2005-08-15  Tor Lillqvist  <tml@novell.com>

* gtk/updateiconcache.c: Use g_path_get_dirname() instead of
the nonportable <libgen.h> and dirname().

18 years agoPay attention to the libjpeg error code and report OOM errors as such.
Matthias Clasen [Mon, 15 Aug 2005 13:50:27 +0000 (13:50 +0000)]
Pay attention to the libjpeg error code and report OOM errors as such.

2005-08-15  Matthias Clasen  <mclasen@redhat.com>

* io-jpeg.c (fatal_error_handler): Pay attention to the
libjpeg error code and report OOM errors as such.  (#312674,
Tommi Komulainen)

18 years agoUse object data to mark widgets and groups as visited, so that we avoid
Matthias Clasen [Mon, 15 Aug 2005 13:46:32 +0000 (13:46 +0000)]
Use object data to mark widgets and groups as visited, so that we avoid

2005-08-15  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtksizegroup.c: Use object data to mark widgets and
groups as visited, so that we avoid constant extra list
traversals. Also allocate quarks in class_init.  (#311618,
Michael Natterer)

18 years agoUpdated Romanian translation by Misu Moldovan <dumol@gnome.ro>
Mugurel Tudor [Mon, 15 Aug 2005 13:33:13 +0000 (13:33 +0000)]
Updated Romanian translation by Misu Moldovan <dumol@gnome.ro>

2005-08-15  Mugurel Tudor  <mugurelu@gnome.ro>

    * ro.po: Updated Romanian translation
    by Misu Moldovan <dumol@gnome.ro>

18 years agoCorrect the download location for the hicolor icon theme. (#313475, Olexiy
Matthias Clasen [Mon, 15 Aug 2005 13:28:22 +0000 (13:28 +0000)]
Correct the download location for the hicolor icon theme. (#313475, Olexiy

2005-08-15  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkicontheme.c (gtk_icon_theme_lookup_icon): Correct the
download location for the hicolor icon theme. (#313475, Olexiy
Avramchenko)

18 years agoHandle pixmap == NULL when checking for a colormap. (Allin Cottrell).
Owen Taylor [Mon, 15 Aug 2005 12:35:04 +0000 (12:35 +0000)]
Handle pixmap == NULL when checking for a colormap. (Allin Cottrell).

2005-08-15  Owen Taylor  <otaylor@redhat.com>

        * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_back_pixmap):
        * gdk/win32/gdkwindow-win32.c (gdk_window_set_back_pixmap):
        * gdk/x11/gdkwindow-x11.c (gdk_window_set_back_pixmap):
        Handle pixmap == NULL when checking for a colormap.
        (Allin Cottrell).

18 years agoSmall fix for svg icons.
Matthias Clasen [Mon, 15 Aug 2005 03:57:04 +0000 (03:57 +0000)]
Small fix for svg icons.

18 years agoStore only one copy of the pixel data for symlinked icons. To achieve
Matthias Clasen [Mon, 15 Aug 2005 03:52:34 +0000 (03:52 +0000)]
Store only one copy of the pixel data for symlinked icons. To achieve

2005-08-14  Matthias Clasen  <mclasen@redhat.com>

* gtk/updateiconcache.c: Store only one copy of the pixel data
for symlinked icons. To achieve this, maintain a hashtable
mapping pathnames to pixel data, and share the pixel data for
all symlinks resolving to the same pathname. When writing out
the image data, write out the pixel data only the first time
it is met, and store the offset pointing to the first copy
for use in all later cases.
This reduces the size of the Bluecurve icon cache from 40
to 13MB. (#312972)

18 years agoHungarian translation updated.
Gabor Kelemen [Sun, 14 Aug 2005 22:08:26 +0000 (22:08 +0000)]
Hungarian translation updated.

2005-08-15  Gabor Kelemen  <kelemeng@gnome.hu>

* hu.po: Hungarian translation updated.

18 years agoBump version
Matthias Clasen [Sat, 13 Aug 2005 19:43:56 +0000 (19:43 +0000)]
Bump version

18 years ago2.8.0
Matthias Clasen [Sat, 13 Aug 2005 19:34:27 +0000 (19:34 +0000)]
2.8.0

18 years agoTranslation updated by Tino Meinen.
Vincent van Adrighem [Sat, 13 Aug 2005 15:34:36 +0000 (15:34 +0000)]
Translation updated by Tino Meinen.

2005-08-13  Vincent van Adrighem  <adrighem@gnome.org>

* nl.po: Translation updated by Tino Meinen.

18 years agoRequire cairo 0.9.2
Matthias Clasen [Sat, 13 Aug 2005 12:51:54 +0000 (12:51 +0000)]
Require cairo 0.9.2

18 years agoUpdated Indonesian translation
Mohammad DAMT [Sat, 13 Aug 2005 10:08:12 +0000 (10:08 +0000)]
Updated Indonesian translation

2005-08-13  Mohammad DAMT  <mdamt@gnome.org>

        * id.po: Updated Indonesian translation

18 years agoRemove a line without effect.
Matthias Clasen [Fri, 12 Aug 2005 22:53:03 +0000 (22:53 +0000)]
Remove a line without effect.

2005-08-12  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkcheckmenuitem.c (gtk_real_check_menu_item_draw_indicator):
Remove a line without effect.

18 years agoWhen changing the icon theme, defer the resetting of rc styles to an idle,
Matthias Clasen [Fri, 12 Aug 2005 18:39:17 +0000 (18:39 +0000)]
When changing the icon theme, defer the resetting of rc styles to an idle,

2005-08-12  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtkicontheme.c: When changing the icon theme, defer
        the resetting of rc styles to an idle, so that it does
        not happen e.g during expose handling (which is problematic,
        since some widgets, like the toolbar, are changing the
        hierarchy in response to style changes).  (#300539, reported
        by many people, analyzed by Owen Taylor)

18 years agoUpdated Greek Translation
Kostas Papadimas [Fri, 12 Aug 2005 15:14:45 +0000 (15:14 +0000)]
Updated Greek Translation

18 years agogdk/linux-fb/gdkwindow-fb.c (gdk_window_set_back_pixmap)
Owen Taylor [Fri, 12 Aug 2005 13:13:54 +0000 (13:13 +0000)]
gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_back_pixmap)

2005-08-12  Owen Taylor  <otaylor@redhat.com>

        * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_back_pixmap)
        * gdk/win32/gdkwindow-win32.c (gdk_window_set_back_pixmap)
        * gdk/x11/gdkwindow-x11.c (gdk_window_set_back_pixmap): Warn if
        gdk_drawable_get_colormap (pixmap) is NULL and return.

18 years agoImprove an example
Matthias Clasen [Fri, 12 Aug 2005 13:04:04 +0000 (13:04 +0000)]
Improve an example

18 years agoBump version 2.8.0
Matthias Clasen [Fri, 12 Aug 2005 12:58:17 +0000 (12:58 +0000)]
Bump version 2.8.0

18 years agoUpdated Traditional Chinese translation.
Chao-Hsiung Liao [Fri, 12 Aug 2005 11:43:35 +0000 (11:43 +0000)]
Updated Traditional Chinese translation.

2005-08-12  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>

* zh_TW.po: Updated Traditional Chinese translation.

18 years agoUpdated Norwegian bokmål translation. Same.
Terance Sola [Fri, 12 Aug 2005 11:41:10 +0000 (11:41 +0000)]
Updated Norwegian bokmål translation. Same.

2005-08-12  Terance Sola  <terance@lyse.net>

* nb.po: Updated Norwegian bokmål translation.
* no.po: Same.

18 years agoUpdates.
Matthias Clasen [Fri, 12 Aug 2005 03:07:16 +0000 (03:07 +0000)]
Updates.

2005-08-11  Matthias Clasen  <mclasen@redhat.com>

* gtk/building.sgml: Updates.

18 years agoWork around some problems with the gnome-vfs backends which could lead to
Matthias Clasen [Fri, 12 Aug 2005 03:03:44 +0000 (03:03 +0000)]
Work around some problems with the gnome-vfs backends which could lead to

2005-08-11  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkfilechooserdefault.c: Work around some problems
with the gnome-vfs backends which could lead to crashes
in the bookmark handling.  (#310270, Diego Gonzalez, patch
by Michael Meeks)

18 years agodone
Ivan Stojmirov [Thu, 11 Aug 2005 19:07:20 +0000 (19:07 +0000)]
done

18 years agoFix for #312924, by John Finlay.
Kristian Rietveld [Thu, 11 Aug 2005 18:07:47 +0000 (18:07 +0000)]
Fix for #312924, by John Finlay.

2005-08-11  Kristian Rietveld  <kris@gtk.org>

Fix for #312924, by John Finlay.

* gtk/gtkliststore.c (gtk_list_store_increment_stamp),
(gtk_list_store_clear): increment stamp on store clearance.

* gtk/gtktreestore.c (gtk_tree_store_increment_stamp),
(gtk_tree_store_clear): ditto.

18 years agoqueue a draw for the entire widget if any column changes width. (Fixes
Kristian Rietveld [Thu, 11 Aug 2005 17:47:18 +0000 (17:47 +0000)]
queue a draw for the entire widget if any column changes width. (Fixes

2005-08-11  Kristian Rietveld  <kris@gtk.org>

* gtk/gtktreeview.c (gtk_tree_view_size_allocate_columns): queue
a draw for the entire widget if any column changes width. (Fixes
#311026, reported by Frederic Crozat).

18 years agodone
Ivan Stojmirov [Thu, 11 Aug 2005 16:00:23 +0000 (16:00 +0000)]
done

18 years agoRevert to linking against pangowin32 under win32 platform (Owen Taylor).
J. Ali Harlow [Wed, 10 Aug 2005 13:22:33 +0000 (13:22 +0000)]
Revert to linking against pangowin32 under win32 platform (Owen Taylor).

2005-08-10  J. Ali Harlow  <ali@juiblex.co.uk>

        * configure.in: Revert to linking against pangowin32 under win32
platform (Owen Taylor).

18 years agoMake the last change compile.
J. Ali Harlow [Wed, 10 Aug 2005 11:02:29 +0000 (11:02 +0000)]
Make the last change compile.

2005-08-10  J. Ali Harlow  <ali@juiblex.co.uk>

        * gdk/win32/gdkfont-win32.c (gdk_font_from_description_for_display): Make
the last change compile.

18 years agoRemove ambiguities pointed out by gcc.
Matthias Clasen [Wed, 10 Aug 2005 04:15:43 +0000 (04:15 +0000)]
Remove ambiguities pointed out by gcc.

2005-08-10  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_deleted)
(gtk_tree_model_filter_remove_node): Remove ambiguities pointed
out by gcc.

18 years agofix definition of GDK_DEP_CFLAGS so that it doesn't cause build failures
James Henstridge [Wed, 10 Aug 2005 03:35:51 +0000 (03:35 +0000)]
fix definition of GDK_DEP_CFLAGS so that it doesn't cause build failures

2005-08-10  James Henstridge  <james@jamesh.id.au>

* configure.in: fix definition of GDK_DEP_CFLAGS so that it
doesn't cause build failures if $X_PACKAGES is not empty.

18 years agoRemove superfluous call to gdk_window_get_offsets (). (#313051, Bertram
Owen Taylor [Wed, 10 Aug 2005 02:40:10 +0000 (02:40 +0000)]
Remove superfluous call to gdk_window_get_offsets (). (#313051, Bertram

2005-08-09  Owen Taylor  <otaylor@redhat.com>

        * gdk/gdkwindow.c (gdk_window_ref_cairo_surface): Remove superfluous
        call to gdk_window_get_offsets (). (#313051, Bertram Felgenhauer)

18 years agoStrip out all Xft, FreeType, and pangoxft checking. Rewrite X checks to
Owen Taylor [Wed, 10 Aug 2005 02:31:51 +0000 (02:31 +0000)]
Strip out all Xft, FreeType, and pangoxft checking. Rewrite X checks to

2005-08-09  Owen Taylor  <otaylor@redhat.com>

        * configure.in: Strip out all Xft, FreeType, and pangoxft checking.
        Rewrite X checks to use pkg-config as much as possible.

        * gdk/win32/gdkfont-win32.c (gdk_font_from_description_for_display): Make
        this return Arial always to avoid using PangoWin32FontMap. (X11 backend
        has always been returned "fixed" for a long time)

        * gdk/linux-fb/gdkdrawable-fb2.c: Remove draw_glyphs() implementations,
        fall through to the default implementation in terms of Cairo.

        * gdk/linux-fb/gdkdrawable-fb2.c (gdk_fb_draw_text): Use gdk_draw_glyphs()
        on the wrapper rather than gdk_fb_draw_glyphs()

18 years agoUpdated Welsh translation.
Rhys Jones [Tue, 9 Aug 2005 22:18:21 +0000 (22:18 +0000)]
Updated Welsh translation.

2005-08-09  Rhys Jones  <rhys@sucs.org>

* cy.po: Updated Welsh translation.

18 years agoBugfixes.
Hendrik Brandt [Tue, 9 Aug 2005 21:49:36 +0000 (21:49 +0000)]
Bugfixes.

2005-08-09  Hendrik Brandt  <heb@gnome-de.org>

        * de.po: Bugfixes.

18 years agoFixes "notification area leaks space" (bug #312687)
Mark McLoughlin [Tue, 9 Aug 2005 16:30:09 +0000 (16:30 +0000)]
Fixes "notification area leaks space" (bug #312687)

2005-08-09  Mark McLoughlin  <mark@skynet.ie>

        Fixes "notification area leaks space" (bug #312687)

        * gtk/gtksocket-x11.c: (_gtk_socket_windowing_filter_func):
          gtk/gtkplug.c: (_gtk_plug_add_to_socket): don't pass a
        detail to g_signal_emit_by_name()

18 years agoUpdates
Matthias Clasen [Tue, 9 Aug 2005 15:16:43 +0000 (15:16 +0000)]
Updates

2005-08-09  Matthias Clasen  <mclasen@redhat.com>

* NEWS: Updates

18 years agoUse g_quark_from_static_string here.
Matthias Clasen [Tue, 9 Aug 2005 04:49:36 +0000 (04:49 +0000)]
Use g_quark_from_static_string here.

2005-08-09  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtksizegroup.c (get_size_groups, set_size_groups): Use
g_quark_from_static_string here.

18 years agoDeactivate the menu when the button becomes insensitive, and remove dead
Christian Persch [Mon, 8 Aug 2005 18:34:43 +0000 (18:34 +0000)]
Deactivate the menu when the button becomes insensitive, and remove dead

2005-08-08  Christian Persch  <chpe@cvs.gnome.org>

* gtk/gtkmenutoolbutton.c: (gtk_menu_tool_button_state_changed),
(gtk_menu_tool_button_class_init), (popup_menu_under_arrow),
(gtk_menu_tool_button_init):

Deactivate the menu when the button becomes insensitive, and remove
dead code. Fixes bug #312920.

2005-08-08  Matthias Clasen  <mclasen@redhat.com>

18 years agoFix the build
Matthias Clasen [Mon, 8 Aug 2005 18:28:50 +0000 (18:28 +0000)]
Fix the build

18 years agoUse ->priv instead of GTK_MENU_TOOL_BUTTON_GET_PRIVATE. Surviving part of
Christian Persch [Mon, 8 Aug 2005 18:14:26 +0000 (18:14 +0000)]
Use ->priv instead of GTK_MENU_TOOL_BUTTON_GET_PRIVATE. Surviving part of

2005-08-08  Christian Persch  <chpe@cvs.gnome.org>

* gtk/gtkmenutoolbutton.c:
(gtk_menu_tool_button_construct_contents),
(button_state_changed_cb), (menu_position_func),
(arrow_button_toggled_cb):

Use ->priv instead of GTK_MENU_TOOL_BUTTON_GET_PRIVATE.
Surviving part of bug #310589.

18 years agoUpdated Indonesian translation
Mohammad DAMT [Sun, 7 Aug 2005 20:40:11 +0000 (20:40 +0000)]
Updated Indonesian translation

2005-08-07  Mohammad DAMT  <mdamt@gnome.org>

  * id.po: Updated Indonesian translation

18 years agoUpdated Greek translation
Nikos Charonitakis [Sun, 7 Aug 2005 20:37:10 +0000 (20:37 +0000)]
Updated Greek translation

18 years agoTighten up ABI checks a bit
Matthias Clasen [Sun, 7 Aug 2005 13:47:25 +0000 (13:47 +0000)]
Tighten up ABI checks a bit

18 years agoTighten up ABI checking a bit
Matthias Clasen [Sun, 7 Aug 2005 13:46:06 +0000 (13:46 +0000)]
Tighten up ABI checking a bit

18 years agoTighten up ABI checks a bit
Matthias Clasen [Sun, 7 Aug 2005 13:39:55 +0000 (13:39 +0000)]
Tighten up ABI checks a bit

18 years agoDon't export extra stuff
Matthias Clasen [Sun, 7 Aug 2005 13:32:27 +0000 (13:32 +0000)]
Don't export extra stuff

18 years agoAdd new stock images
Matthias Clasen [Sat, 6 Aug 2005 07:03:07 +0000 (07:03 +0000)]
Add new stock images

18 years agoSmall fixes
Matthias Clasen [Sat, 6 Aug 2005 05:12:11 +0000 (05:12 +0000)]
Small fixes

2005-08-06  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtk-sections.txt:
* gtk/Makefile.am:
* gdk-pixbuf/gdk-pixbuf-sections.txt:
* gdk/tmpl/images.sgml: Small fixes

18 years agoAdd bug number to ChangeLog
Søren Sandmann Pedersen [Fri, 5 Aug 2005 21:13:00 +0000 (21:13 +0000)]
Add bug number to ChangeLog

18 years agoSet the relief of the arrow button to the value returned by
Søren Sandmann [Fri, 5 Aug 2005 20:55:48 +0000 (20:55 +0000)]
Set the relief of the arrow button to the value returned by

Fri Aug  5 16:54:19 2005  Søren Sandmann  <sandmann@redhat.com>

* gtk/gtkmenutoolbutton.c
(gtk_menu_tool_button_construct_contents): Set the relief of the
arrow button to the value returned by
gtk_tool_item_get_relief_style(). Patch from Benjamin Berg.

18 years agoUpdated Slovak translation.
Marcel Telka [Fri, 5 Aug 2005 20:55:22 +0000 (20:55 +0000)]
Updated Slovak translation.

2005-08-05  Marcel Telka  <marcel@telka.sk>

* sk.po: Updated Slovak translation.

18 years agoUpdated Norwegian Bokmål translation. Same.
Terance Sola [Fri, 5 Aug 2005 19:54:13 +0000 (19:54 +0000)]
Updated Norwegian Bokmål translation. Same.

2005-08-05  Terance Sola  <terance@lyse.net>

* nb.po: Updated Norwegian Bokmål translation.
* no.po: Same.

18 years agoAdded Telugu translation in po-properties and re-enabled Telugu.
Sunil Mohan Adapa [Thu, 4 Aug 2005 17:37:29 +0000 (17:37 +0000)]
Added Telugu translation in po-properties and re-enabled Telugu.

18 years agoRequire cairo 0.6
Matthias Clasen [Thu, 4 Aug 2005 17:17:13 +0000 (17:17 +0000)]
Require cairo 0.6

18 years agoRemove "te" since it breaks the build.
Christian Persch [Thu, 4 Aug 2005 16:55:13 +0000 (16:55 +0000)]
Remove "te" since it breaks the build.

2005-08-04  Christian Persch  <chpe@cvs.gnome.org>

* configure.in: Remove "te" since it breaks the build.

18 years agoAdded Telugu translations done by Prajasakti Localisation Team <localisation@prajasak...
Sunil Mohan Adapa [Thu, 4 Aug 2005 16:17:03 +0000 (16:17 +0000)]
Added Telugu translations done by Prajasakti Localisation Team <localisation@prajasakti.com>.

18 years agoChange translation of Justify|_Fill to _Blocksatz.
Hendrik Brandt [Thu, 4 Aug 2005 11:31:49 +0000 (11:31 +0000)]
Change translation of Justify|_Fill to _Blocksatz.

2005-08-04  Hendrik Brandt  <heb@gnome-de.org>

        * de.po: Change translation of Justify|_Fill to _Blocksatz.

18 years agoReflect the change of the default theme' name to "Raleigh". Include the
Tor Lillqvist [Thu, 4 Aug 2005 10:00:56 +0000 (10:00 +0000)]
Reflect the change of the default theme' name to "Raleigh". Include the

2005-08-04  Tor Lillqvist  <tml@novell.com>

* gtk-zip.sh.in: Reflect the change of the default theme' name
to "Raleigh". Include the MS-Windows theme's gtkrc file. Include the
theme engine DLLs.

18 years agoBump version
Matthias Clasen [Wed, 3 Aug 2005 19:11:30 +0000 (19:11 +0000)]
Bump version

18 years ago2.7.5
Matthias Clasen [Wed, 3 Aug 2005 18:51:11 +0000 (18:51 +0000)]
2.7.5

18 years agoRemove translation context of progress cell renderer. Remove translation
Hendrik Brandt [Wed, 3 Aug 2005 16:27:17 +0000 (16:27 +0000)]
Remove translation context of progress cell renderer. Remove translation

2005-08-03  Hendrik Brandt  <heb@gnome-de.org>

        * de.po: Remove translation context of progress cell renderer.
        * de.po: Remove translation context from keyboard labels.

18 years agoRemove translation context of progress cell renderer.
Hendrik Brandt [Wed, 3 Aug 2005 14:53:00 +0000 (14:53 +0000)]
Remove translation context of progress cell renderer.

2005-08-03  Hendrik Brandt  <heb@gnome-de.org>

        * de.po: Remove translation context of progress cell renderer.

18 years agoAdd gtk_clipboard_get_type. (#312443, Danny Milo)
Matthias Clasen [Wed, 3 Aug 2005 14:03:30 +0000 (14:03 +0000)]
Add gtk_clipboard_get_type. (#312443, Danny Milo)

2005-08-03  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtk.types: Add gtk_clipboard_get_type. (#312443, Danny Milo)

18 years agoName fixes
Matthias Clasen [Tue, 2 Aug 2005 21:30:34 +0000 (21:30 +0000)]
Name fixes

18 years agoUpdates
Matthias Clasen [Tue, 2 Aug 2005 21:27:46 +0000 (21:27 +0000)]
Updates

18 years agoFix a typo, spotted by David Odin.
Matthias Clasen [Tue, 2 Aug 2005 03:49:39 +0000 (03:49 +0000)]
Fix a typo, spotted by David Odin.

2005-08-01  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkfixed.c (gtk_fixed_put): Fix a typo, spotted by
David Odin.

18 years agoRename the default theme to "Raleigh". (#312254, Thomas Wood)
Matthias Clasen [Mon, 1 Aug 2005 19:21:00 +0000 (19:21 +0000)]
Rename the default theme to "Raleigh". (#312254, Thomas Wood)

2005-08-01  Matthias Clasen  <mclasen@redhat.com>

* gtk/Makefile.am (install-data-local):
* gtk/gtksettings.c (gtk_settings_class_init): Rename the
default theme to "Raleigh".  (#312254, Thomas Wood)

18 years agoCreate the icon window with the correct dimensions. (#312256, Mike
Matthias Clasen [Mon, 1 Aug 2005 17:02:49 +0000 (17:02 +0000)]
Create the icon window with the correct dimensions. (#312256, Mike

2005-08-01  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkdnd.c (set_icon_stock_pixbuf): Create the icon window
with the correct dimensions.  (#312256, Mike Morrison)

18 years agoRemove G_GNUC_NULL_TERMINATED here as well.
Matthias Clasen [Mon, 1 Aug 2005 16:57:42 +0000 (16:57 +0000)]
Remove G_GNUC_NULL_TERMINATED here as well.

2005-08-01  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtktextbuffer.h:
* gtk/gtk.symbols: Remove G_GNUC_NULL_TERMINATED here
as well.

18 years agoUpdate tooltips when reconnecting toolitems. (#312173, Alex Graveley)
Matthias Clasen [Mon, 1 Aug 2005 16:24:30 +0000 (16:24 +0000)]
Update tooltips when reconnecting toolitems. (#312173, Alex Graveley)

2005-08-01  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkuimanager.c (update_node): Update tooltips when
reconnecting toolitems.  (#312173, Alex Graveley)

18 years agoDefine the hint styles to make building against fc < 2.2.92 work.
Matthias Clasen [Mon, 1 Aug 2005 16:11:38 +0000 (16:11 +0000)]
Define the hint styles to make building against fc < 2.2.92 work.

2005-08-01  Matthias Clasen  <mclasen@redhat.com>

* gdk/x11/gdkxftdefaults.c: Define the hint styles to make
building against fc < 2.2.92 work.  (#311839, Damien Carbery)

18 years agoMake tracking the on_all_desktops state work better.
Matthias Clasen [Mon, 1 Aug 2005 16:01:24 +0000 (16:01 +0000)]
Make tracking the on_all_desktops state work better.

2005-08-01  Matthias Clasen  <mclasen@redhat.com>

* gdk/x11/gdkevents-x11.c (gdk_check_wm_desktop_changed): Make
tracking the on_all_desktops state work better.

* gdk/x11/gdkwindow-x11.c (gdk_x11_window_move_to_current_desktop):
Don't do anything if the window is on all desktops.  (#311803,
Elijah Newren)

18 years agountranslate translation context of progress cell renderer
Martin Kretzschmar [Mon, 1 Aug 2005 16:00:40 +0000 (16:00 +0000)]
untranslate translation context of progress cell renderer

18 years agopart of bug #168326
Dom Lachowicz [Mon, 1 Aug 2005 15:29:54 +0000 (15:29 +0000)]
part of bug #168326

18 years agoDon't leak atom names. (#311933, Peter Zelezny)
Matthias Clasen [Mon, 1 Aug 2005 14:21:14 +0000 (14:21 +0000)]
Don't leak atom names. (#311933, Peter Zelezny)

2005-08-01  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkclipboard.c (gtk_clipboard_set_image)
(gtk_clipboard_set_text): Don't leak atom names.  (#311933,
Peter Zelezny)

18 years agoCall gettext_initialization() here as well. (#311612, Dan Winship)
Matthias Clasen [Mon, 1 Aug 2005 13:52:29 +0000 (13:52 +0000)]
Call gettext_initialization() here as well. (#311612, Dan Winship)

2005-08-01  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkmain.c (do_post_parse_initialization): Call
gettext_initialization() here as well.  (#311612, Dan Winship)

18 years agoImplement using FlashWindowEx(). (#309423)
Tor Lillqvist [Mon, 1 Aug 2005 07:19:15 +0000 (07:19 +0000)]
Implement using FlashWindowEx(). (#309423)

2005-08-01  Tor Lillqvist  <tml@novell.com>

* gdk/win32/gdkwindow-win32.c (gdk_window_set_urgency_hint):
Implement using FlashWindowEx(). (#309423)

18 years agoShut up CVS
Manish Singh [Mon, 1 Aug 2005 04:32:05 +0000 (04:32 +0000)]
Shut up CVS

18 years agoBulk change to fi.po: (gnome-fi.org to gnome.fi)
Ilkka Tuohela [Sun, 31 Jul 2005 17:14:26 +0000 (17:14 +0000)]
Bulk change to fi.po: (gnome-fi.org to gnome.fi)

18 years agoTranslation updated by Tino Meinen.
Vincent van Adrighem [Sun, 31 Jul 2005 16:32:27 +0000 (16:32 +0000)]
Translation updated by Tino Meinen.

2005-07-31  Vincent van Adrighem  <adrighem@gnome.org>

* nl.po: Translation updated by Tino Meinen.

18 years agoUpdated Japanese translation for v2.7.4.
Takeshi AIHANA [Sun, 31 Jul 2005 12:53:32 +0000 (12:53 +0000)]
Updated Japanese translation for v2.7.4.

2005-07-31  Takeshi AIHANA <aihana@gnome.gr.jp>

* ja.po: Updated Japanese translation for v2.7.4.

18 years agoUpdated Finnish translation
Ilkka Tuohela [Sun, 31 Jul 2005 11:31:40 +0000 (11:31 +0000)]
Updated Finnish translation

18 years agoupdated
Hans Breuer [Sat, 30 Jul 2005 18:53:44 +0000 (18:53 +0000)]
updated

2005-07-30  Hans Breuer  <hans@breuer.org>

* gtk/makefile.msc.in tests/makefile.msc : updated

18 years agoDo not use | G_PARAM_STATIC_NAME in the type field, makes subclassing
Johan Dahlin [Sat, 30 Jul 2005 14:46:55 +0000 (14:46 +0000)]
Do not use | G_PARAM_STATIC_NAME in the type field, makes subclassing

    * gtk/gtkctree.c (gtk_ctree_class_init): Do not use |
    G_PARAM_STATIC_NAME in the type field, makes subclassing possible.

18 years agoUpdated Japanese translation for v2.7.4.
Takeshi AIHANA [Sat, 30 Jul 2005 12:49:40 +0000 (12:49 +0000)]
Updated Japanese translation for v2.7.4.

2005-07-30  Takeshi AIHANA <aihana@gnome.gr.jp>

* ja.po: Updated Japanese translation for v2.7.4.

18 years agoCosmetic change to my last entry.
Tor Lillqvist [Sat, 30 Jul 2005 05:54:55 +0000 (05:54 +0000)]
Cosmetic change to my last entry.

18 years agoDeclaring the GtkActionEntry arrays static const. Fixes #301612.
Claudio Saavedra [Fri, 29 Jul 2005 18:28:19 +0000 (18:28 +0000)]
Declaring the GtkActionEntry arrays static const. Fixes #301612.

2005-07-29  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

        * docs/reference/gtk/migrating-GtkAction.sgml: Declaring the
        GtkActionEntry arrays static const. Fixes #301612.

18 years agoInclude gtkwin32embed.h in EXTRA_DIST unconditionally. Fixes #311972.
J. Ali Harlow [Fri, 29 Jul 2005 14:06:02 +0000 (14:06 +0000)]
Include gtkwin32embed.h in EXTRA_DIST unconditionally. Fixes #311972.

2005-07-29  J. Ali Harlow  <ali@juiblex.co.uk>

        * gtk/Makefile.am: Include gtkwin32embed.h in EXTRA_DIST
unconditionally. Fixes #311972.

18 years agoUpdate for the new API of the profiler.
Federico Mena Quintero [Fri, 29 Jul 2005 00:38:51 +0000 (00:38 +0000)]
Update for the new API of the profiler.

2005-07-28  Federico Mena Quintero  <federico@ximian.com>

* perf/README: Update for the new API of the profiler.

* perf/gtkwidgetprofiler.[ch]: New files with a widget profiler
object.  This is the old content of timers.[ch] turned into a nice
object, with signals for creation and reporting.  The profiler
needs to maintain some state when reusing the widget, so it's
useful to turn it into a real object.

Break down timing show_all into GTK_WIDGET_PROFILER_REPORT_MAP and
GTK_WIDGET_PROFILER_REPORT_EXPOSE.

* perf/main.c: Refactor to use GtkWidgetProfiler.

* perf/appwindow.c (content_area_new): Make this just create a
notebook, instead of a complex arrangement of panes.

* perf/widgets.h: New header file for all the "create a widget"
utility functions.

* perf/treeview.c: New file.  Moved the tree view part from
appwindow.c over to here; GtkTreeView really needs its own tests.
(tree_view_new): Set the shadow type to IN.

* perf/textview.c: Likewise moved over from appwindow.c, but for
GtkTextView.
(text_view_new): Set the shadow type to IN.

* perf/Makefile.am (testperf_SOURCES): Add the new source files;
remove appwindow.h and timers.[ch].

* perf/timers.[ch]: Removed.

* perf/appwindow.h: Removed.

18 years agoCosmetics.
Tor Lillqvist [Fri, 29 Jul 2005 00:35:21 +0000 (00:35 +0000)]
Cosmetics.

18 years agoRemove ifdeffed out code relating to the gdk-ping message. Use the global
Tor Lillqvist [Fri, 29 Jul 2005 00:23:03 +0000 (00:23 +0000)]
Remove ifdeffed out code relating to the gdk-ping message. Use the global

2005-07-29  Tor Lillqvist  <tml@novell.com>

* gdk/win32/gdkevents-win32.c: Remove ifdeffed out code relating
to the gdk-ping message. Use the global _gdk_display instead of
calling gdk_display_get_default() which would return _gdk_display
anyway.

(append_event, apply_filters, gdk_event_translate): Drop any
GdkDisplay parameter as we only have one display anyway. Use
_gdk_display where needed.

(gdk_event_apply_filters): Delete, move the code into its only
caller, apply_filters().

(generate_button_event): Factor out code from two places in
gdk_event_translate().

(gdk_event_translate): Call generate_button_event() in place of
inline code.

18 years agoNew static function to generate and append the GDK_GRAB_BROKEN events.
Tor Lillqvist [Thu, 28 Jul 2005 23:21:57 +0000 (23:21 +0000)]
New static function to generate and append the GDK_GRAB_BROKEN events.

2005-07-29  Tor Lillqvist  <tml@novell.com>

* gdk/win32/gdkevents-win32.c (generate_grab_broken_event): New
static function to generate and append the GDK_GRAB_BROKEN events.

(gdk_pointer_grab, gdk_keyboard_grab): Generate grab broken events
when overriding a grab inside the application, like in the X11
backend. Final bits of the fix for #107320, hopefully.

(print_event): Handle also GDK_SETTING, GDK_OWNER_CHANGE and
GDK_GRAB_BROKEN events.

(gdk_event_translate): Call generate_grab_broken_event() in place
of inline code.

18 years agoRename from blit_inside_window(), as it now does blitting inside a bitmap,
Tor Lillqvist [Thu, 28 Jul 2005 22:24:19 +0000 (22:24 +0000)]
Rename from blit_inside_window(), as it now does blitting inside a bitmap,

2005-07-29  Tor Lillqvist  <tml@novell.com>

* gdk/win32/gdkdrawable-win32.c (blit_inside_drawable): Rename
from blit_inside_window(), as it now does blitting inside a
bitmap, too. No code change, still just call BitBlt().
(_gdk_win32_blit): Check for source equalling destination
first. (#169508, #131977)
Do away with the superfluous local draw_impl variable, the
parameter to this function is already a GdkDrawableImplWin32*, no
need to copy and cast it.

18 years agoAvoid spurious core pointer events when the tablet pen is lifted.
Robert Ögren [Thu, 28 Jul 2005 21:53:07 +0000 (21:53 +0000)]
Avoid spurious core pointer events when the tablet pen is lifted.

2005-07-28  Robert Ögren  <gtk@roboros.com>

Avoid spurious core pointer events when the tablet pen is lifted.
(#167000)

* gdk/win32/gdkinput-win32.c (set_ignore_core): New static function,
handles delayed unsetting of _gdk_input_ignore_core.
(_gdk_input_other_event): Call set_ignore_core instead of setting
_gdk_input_ignore_core directly.

18 years agoee
Ivan Stojmirov [Thu, 28 Jul 2005 21:29:05 +0000 (21:29 +0000)]
ee

18 years agoUpdated Greek translation
Nikos Charonitakis [Thu, 28 Jul 2005 16:54:40 +0000 (16:54 +0000)]
Updated Greek translation

18 years agoUpdated Finnish translation
Ilkka Tuohela [Thu, 28 Jul 2005 16:36:20 +0000 (16:36 +0000)]
Updated Finnish translation

18 years agoUpdated Hebrew translation.
Yair Hershkovitz [Thu, 28 Jul 2005 16:33:45 +0000 (16:33 +0000)]
Updated Hebrew translation.

2005-07-28  Yair Hershkovitz  <yairhr@gmail.com>

* he.po: Updated Hebrew translation.