Commit Graph

32678 Commits

Author SHA1 Message Date
26f1c08d75 Update French translation 2012-09-09 20:49:05 +02:00
d219565292 Updated Portuguese translation 2012-09-09 01:36:18 +01:00
531c128954 Updated Portuguese translation 2012-09-09 01:33:37 +01:00
0582d9cfd3 Updated Korean translation 2012-09-09 05:20:59 +09:00
dc9cdbd1da Updated Slovenian translation 2012-09-08 21:31:21 +02:00
c3862b18a0 l10n: Updated Persian translation 2012-09-08 15:39:49 +04:30
7a193b82ff Updated properties Lithuanian translation 2012-09-07 20:14:27 +03:00
e7cf6051c4 Updated Belarusian translation. 2012-09-07 18:22:32 +03:00
647cd664b0 Updated Hebrew translation. 2012-09-07 16:51:05 +03:00
0c6b579db4 Updated Hebrew translation. 2012-09-07 16:49:39 +03:00
a19e5a197c Updated Serbian translation 2012-09-07 08:20:47 +02:00
a2e8d4974c Updated Serbian translation 2012-09-07 08:05:46 +02:00
a3902c2473 Updated Slovenian translation 2012-09-06 21:05:47 +02:00
2bb72abf67 Updated Hungarian translation 2012-09-06 15:16:50 +02:00
1d7ab22099 printing: Don't load custom paper sizes in file backend
Resolves #683474.
2012-09-06 14:32:31 +02:00
71c3cc8f09 Updated Hungarian translation 2012-09-06 14:02:23 +02:00
b3630a3074 Updated Indonesian translation 2012-09-06 10:57:03 +07:00
fb3ba7c4ec Updated Greek translations 2012-09-06 02:55:10 +03:00
ce03f114f2 Updated British English translation 2012-09-05 14:11:55 +01:00
4b28471137 Updated Traditional Chinese translation(Hong Kong and Taiwan) 2012-09-05 20:11:59 +08:00
a6a940c680 Updated Arabic translation 2012-09-05 09:05:48 +02:00
22b326bb61 Bump version 2012-09-04 23:16:31 -04:00
591c1a8584 3.5.16 2012-09-04 22:24:06 -04:00
143a600466 menubutton: clear arrow_widget on remove()
So that we clear its pointer also in case somebody else calls
gtk_container_remove() on the button.
Fixes criticals at startup in e.g. Nautilus.
2012-09-04 09:38:28 -04:00
f2ab3af20a Protect sectond call of nsevent hasPreciseScrollingDeltas from pre-Lion 2012-09-03 16:56:46 -07:00
fa029fd787 Bump version 2012-09-03 19:51:27 -04:00
0ad4846793 3.5.14 2012-09-03 16:04:51 -04:00
a866ed7378 gtkimcontexttime.c: Check context_ime->client_window is not NULL
Be a bit more careful in get_pango_attr_list() and
get_utf8_preedit_string() to ensure that the client_window is properly
created before proceeding, to avoid access violation/segfault crashes on
Windows with IME installed, especially when running the pickers demo.

https://bugzilla.gnome.org/show_bug.cgi?id=682919
2012-09-03 16:03:58 -04:00
d05191a010 entry: fix requisition width/height to use the current pango layout
This way, we can ensure that width/height changes due to the use of
gtk_entry_set_attributes() are correctly reflected in the size request.

https://bugzilla.gnome.org/show_bug.cgi?id=683168
2012-09-03 11:45:51 -04:00
afd99d3579 Make spinbutton orientable
https://bugzilla.gnome.org/show_bug.cgi?id=683168
2012-09-03 11:45:51 -04:00
daddcbff3e Remove leftover from text selection handles style update
GTK_STYLE_CLASS_INVERTED_CURSOR_HANDLE is no longer defined
as it was left unused by commit 81045779f6
2012-09-03 17:15:28 +02:00
81045779f6 Improve CSS styling of touch text selection handles
Don't hook on the widget style context and set up instead
a widget path for itself. Also use a common style class
for both handles, with an extra top/bottom class for each
handle.
2012-09-03 17:08:02 +02:00
28bc9c4525 Updated Spanish translation 2012-09-03 16:07:06 +02:00
6f7611b438 Updated Spanish translation 2012-09-03 15:59:53 +02:00
0790aaf011 Updated Spanish translation 2012-09-03 15:59:43 +02:00
a79a7aa5ca Updated Polish translation 2012-09-03 15:58:59 +02:00
e235420aec Updated POTFILES.in 2012-09-03 15:51:38 +02:00
260b587c9c cssvalue: Implement transitioning arrays
Or rather: Implement it for backgrounds, as the animation rules for
arrays vary by property.
2012-09-03 12:54:14 +02:00
e3fc081c5d cssvalue: Pass property ID to transition function
This is to allow animating arrays properly. I'm not really thrilled
about this solution (we leak propertys into the values again...), but
it's the best I can come up with - I prefer it to having N different
array types...
2012-09-03 12:54:14 +02:00
fd7668bfb5 cssvalue: Don't allow empty arrays anymore
CSS arrays aren't empty, even the ones that appear empty contain one
"none" element.
2012-09-03 12:54:14 +02:00
912d5a5c23 cssvalue: Make the array parser no longer parse "none"
Arrays that support it, handle it themselves.
2012-09-03 12:54:14 +02:00
44ba5d253f css: Redo bindings parsing
I want to get away from the ability to have 0-length arrays, all css
arrays are single element.
Even if the element is "none", it is still a "none" element.
2012-09-03 12:54:14 +02:00
21d0db8254 gtkliststore: fix documentation typo 2012-09-03 11:00:15 +03:00
8c3a668d52 Add a way to test touch features
The GTK_TEST_TOUCHSCREEN envvar is now checked in entries
and textviews to allow testing of text handles with other
kinds of devices.
2012-09-03 00:19:46 -04:00
5bda3a001d Implement touch text selection in GtkTextView
GtkTextHandle is used to indicate both the cursor position
and the selection bound, dragging the handles will modify
the selection and scroll if necessary.

Backwards text selection is also blocked for touch devices,
so the handles don't get inverted positions and possibly
obscure portions of the selected text.
2012-09-03 00:19:46 -04:00
d38efb1713 Implement touch text selection in GtkEntry
GtkTextHandle is used to indicate both the cursor position
and the selection bound, dragging the handles will modify
the selection and scroll if necessary.

Backwards text selection is also blocked for touch devices,
so the handles don't get inverted positions (This is more
important though on GtkTextView, as inverted handles may
obscure portions of the selected text, good for consistence
though)
2012-09-03 00:19:46 -04:00
1f7e375c33 Add GtkTextHandle
This is a helper object to allow text widgets to implement
text selection on touch devices. It allows for both cursor
placement and text selection, displaying draggable handles
on/around the cursor and selection bound positions.

Currently, this is private to GTK+, and only available to
GtkEntry and GtkTextView.
2012-09-03 00:19:03 -04:00
8c632417c4 scrolledwindow: don't capture events meant for non-child windows
GtkTextHandle creates temporary override redirect windows, but still
hook to the text widget for events, so those are effectively captured
by GtkScrolledWindow if a text widget is within it
2012-09-02 20:30:53 -04:00
3c99587b5d Updated Lithuanian translation 2012-09-02 15:41:45 +03:00
b2b4f397ff update Punjabi Translation for gtk module 2012-09-02 10:20:22 +05:30