Gabor Kelemen
39a9857c00
Updated Hungarian translation
2010-08-31 02:19:45 +02:00
Matthias Clasen
11b47eaa54
Bump version
2010-08-30 15:07:28 -04:00
Martin Schlemmer
1402c861a9
[win32] Properly draw the menu separator for Windows Vista/7.
...
Also adds the bits for transparency.
2010-08-30 20:03:04 +02:00
Martin Schlemmer
e822af1d98
[win32] Use pango_win32_font_description_from_logfontw() to get
...
the system font, instead of the code duplication.
2010-08-30 20:00:53 +02:00
Martin Schlemmer
78d120e299
[win32] Fix some warnings related to type differences and unused variables
2010-08-30 19:59:25 +02:00
Matthias Clasen
a5ee5feed0
Update NEWS for 2.21.7
2010-08-30 13:46:08 -04:00
Szilárd Pfeiffer
65f10fb0f9
modules/other/gail/gailtogglebutton.c: Add/remove indeterminate state
...
GailToggleButton does not set/unset ATK_STATE_INDETERMINATE according to the
value of GtkToggleButton's inconsistent property.
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=626537
(cherry picked from commit 86851b7ad3
)
2010-08-30 12:53:36 -04:00
Matthias Clasen
4e2ade8d6b
Make gdk_keymap_map_virtual_modifiers work early
...
It needs to ensure that we have an uptodate modmap. Bug 616401
(cherry picked from commit d5a8a3c9bc
)
2010-08-30 12:52:40 -04:00
Matthias Clasen
c9c23ef031
Remove depth restriction from gtk_combo_box_set_active_iter docs
...
While it may not work perfectly in menu mode, it works fine for
list mode. Bug 627843.
(cherry picked from commit 2766cd14ad
)
2010-08-30 12:50:25 -04:00
Andika Triwidada
d28a54e7f6
Updated Indonesian translation
2010-08-30 18:23:19 +07:00
Jorge González
50cc4896ad
Updated Spanish translation
2010-08-30 01:03:15 +02:00
Fran Diéguez
8aa07505ae
Updated Galician translations
2010-08-29 22:44:50 +02:00
Philip Withnall
818ef9aaf6
Miscellaneous string fixes
...
Mostly capitalisation fixes. Closes: bgo#528257
2010-08-29 19:05:26 +01:00
Philip Withnall
77d28e3104
Miscellaneous property string fixes
2010-08-29 19:02:00 +01:00
Fridrich Štrba
895b9ff43f
A proper fix for win32 build
2010-08-29 18:16:58 +02:00
Fridrich Štrba
af44019baf
Revert "Fix windows build of the branch"
...
This reverts commit c7e650ae5d
.
2010-08-29 18:16:19 +02:00
Hans Breuer
17269e6c1d
win32: Fix a bunch of c99isms
...
With c89 (which msvc implements) variables still need to be
declared at the beginning of a block.
2010-08-29 14:31:06 +02:00
Hans Breuer
707f1a9a84
win32: Further fixing _gdk_window_impl_new()
...
- attributes->wclass is not consistently set anymore,
use private->input_only instead [1]
- don't put window into parent->children a second time
(now there is no window reference problem anymore)
2010-08-29 14:22:08 +02:00
Matthias Clasen
91ce32602a
Use G_PARAM_DEPRECATED for deprecated shadow properties
...
These have been deprecated for a long time, marking them as such
will make diagnostic mode more useful.
2010-08-28 17:28:59 -04:00
Fridrich Štrba
c7e650ae5d
Fix windows build of the branch
2010-08-28 18:50:45 +02:00
Philip Withnall
a1e8ea6b7f
Update British English translation
2010-08-28 16:05:08 +01:00
Martin Schlemmer
770e308c42
win32: cummulated backport of xp theme fixes from master
2010-08-28 15:14:31 +02:00
Gabor Kelemen
5149e93f97
Updated Hungarian translation
2010-08-28 10:52:28 +02:00
Jorge González
49abec1de8
Updated Spanish translation
2010-08-28 10:18:54 +02:00
Yaron Shahrabani
095343ff8d
Updated Hebrew translation.
2010-08-28 10:39:32 +03:00
Yaron Shahrabani
012d605c23
Updated Hebrew translation.
2010-08-28 10:31:19 +03:00
Fran Diéguez
9596c3fd24
Updated Galician translations
2010-08-27 23:41:27 +02:00
Bruno Brouard
7dc89847a7
Updated French translation
2010-08-27 23:02:20 +02:00
Hans Breuer
e339d36a02
win32: Resurrect some enter/leave notify events for native windows
...
The button highlighting in testgtk works again, even with
GDK_NATIVE_WINDOWS. Unfortunately testgtk:menus still does
not work for the forced-native-window-case.
2010-08-27 21:29:33 +02:00
Hans Breuer
068515ad96
Further fix _gdk_window_impl_new() for win32 and ...
...
Beside fixing _gdk_window_impl_new() as adviced in
http://mail.gnome.org/archives/gtk-devel-list/2010-August/msg00214.html
the patch adds implementations for set_background, set_back_pixmap,
restack_under, restack_toplevel and clear_region methods.
2010-08-27 21:23:59 +02:00
Neil Roberts
2e08524481
win32: Never pass SWP_NOSIZE or SWP_NOMOVE to SetWindowPos
...
In _gdk_window_move_resize_child it tries to decide whether to pass
SWP_NOSIZE and SWP_NOMOVE based on whether the new size and position
is different from the window's existing position. However it seems
that GDK now ends up updating the window's position before calling
_gdk_window_move_resize_child so this would mean it would think the
window never changes size or position so SWP_NOSIZE|SWP_NOMOVE would
always be set. This causes child windows to never be resized.
This patch changes it so that it never passes either flag to
SetWindowPos. I don't know whether this will cause any side effects
but you'd think it shouldn't do any harm to reassert the current size.
https://bugzilla.gnome.org/show_bug.cgi?id=628049
Signed-off-by: Hans Breuer <hans@breuer.org>
2010-08-27 20:38:01 +02:00
Hans Breuer
0e781823cb
Update mscv/win32 build
...
Fix makefiles for separated gdk-pixbuf and declare variable at
the beginning of a block (fix c99ism).
2010-08-27 20:34:23 +02:00
Sergey Orlov
6d0ff4708c
bgo#614006 - GtkFileSystemModel - Make sure to generate node IDs are valid for new files
...
When a file was inserted during the period that the editable row was
active, the node IDs would not get updated correctly.
Signed-off-by: Federico Mena Quintero <federico@novell.com>
2010-08-24 17:14:29 -05:00
Kjartan Maraas
b53e822af7
Updated Norwegian bokmål translation
2010-08-21 11:17:28 +02:00
Matthias Clasen
1cd305e85f
Fix up indices for 2.22 api additions
2010-08-19 18:16:43 -04:00
Stefan Kost
587a1de401
[filechooserentry] don't show misplaced completion popup
...
Override the key-press-event instead of overriding the focus method.
Fixes #627139
2010-08-19 09:35:32 +03:00
Matthias Clasen
67684a05b6
Deprecate GtkWidget::draw-border style property
...
This style property is not used at all in the wild, and handling
it has some performance overhead.
2010-08-18 12:49:34 -04:00
Benjamin Otte
1f905a1c17
testgtk: undef GDK_DISABLE_DEPRECATED
...
We test ctree code here and that code uses pixmaps.
2010-08-17 19:10:51 +02:00
Benjamin Otte
36f931f292
testdnd: Convert to use pixbufs as icons
...
Using Pixmaps is outdated.
2010-08-17 19:07:54 +02:00
Benjamin Otte
d24a6727b8
gtk-demo: Adapt textview example for stipple removal
2010-08-17 19:06:14 +02:00
Matthias Clasen
02520a0781
Bump version
2010-08-16 20:05:25 -04:00
Matthias Clasen
a3689e670e
More NEWS
2010-08-16 18:16:04 -04:00
Matthias Clasen
1d5a6e790a
Fix up some documentation issues
2010-08-16 17:38:23 -04:00
Benjamin Otte
315c23546d
colorsel: Create cursor image using Cairo
2010-08-16 20:01:49 +02:00
Benjamin Otte
9f1cb0798b
API: Add gdk_window_get_background_pattern()
...
This is the suggested way for GTK3 to store a Window's background so it
makes sense to use the same function today already.
2010-08-16 20:01:49 +02:00
Kristian Rietveld
77b703c2fc
quartz: stop offscreen windows code from crashing.
...
This is an adapted version of commit
bde0f9a8f6
on master.
Mainly fixes to properly differentiate bewteen toplevel and offscreen
windows, since these sometimes need different treatment. Furthermore,
usage of gdk_window_get_effective_foo() instead of gdk_window_get_foo()
where applicable.
There is an drawing issue left when scrolling e.g. tree views in
offscreen windows. I think this is likely an issue with
gdk_quartz_draw_drawable() which is used for the copy area code in
offscreen windows. It works fine in master, since this was converted
to Cairo.
2010-08-15 17:34:33 +02:00
Benjamin Otte
370dfc16ca
Remove window background getters again
...
They were added as accessors for 2.22 even though querying the
background wasn't possible previously. As GTK 3.0 will change background
handling, it doesn't make sense at all to expose these getters.
2010-08-15 03:31:37 +02:00
Benjamin Otte
767235aabc
gtk-demo: update drawingarea example
...
Use gdk_window_create_similar_surface() instead of gdk_pixmap_new()
2010-08-12 23:38:17 +02:00
Benjamin Otte
3df3ff9a3a
docs: Add note to gdk_pixmap_new() about create_similar() function
...
gdk_window_create_similar_surface() is basically the replacement for
this function.
2010-08-12 23:34:37 +02:00
Benjamin Otte
997d3aada6
API: Add gdk_window_create_similar_surface()
2010-08-12 23:30:19 +02:00