Timm Bäder
cfbac153a3
overlay: Fix coordinates in child_update_style_classes
...
Both main child and all others are in the same coordinate space, so no
need to add the parent position here.
2018-03-04 19:12:04 +01:00
Timm Bäder
ddcc9b9f2f
overlay: Don't chain up in size_allocate
...
The GtkBin size_allocate implementation will allocate a size to the main
child, which GtkOverlay already does.
2018-03-04 19:12:04 +01:00
Timm Bäder
8ebec46db5
entry: Remove priv pointer
2018-03-04 19:12:04 +01:00
Timm Bäder
71ae2fae2e
container: Remove unused struct member
2018-03-04 19:12:04 +01:00
Timm Bäder
1596c61003
testsuite: Remove GL text test case
...
This was just testing that text nodes do alpha correctly, but the test
even breaks if the default font is different from the one that was used
to create the reference image, so drop it for now.
2018-03-04 19:12:04 +01:00
Timm Bäder
891c37a4cb
label: Simplify ensure_layout()
...
use an early return for an already existing layout.
2018-03-04 19:12:04 +01:00
Christoph Reiter
8c2c748c11
gtkimcontextxim: fix gtk_im_context_xim_set_client_widget not handling widget=NULL
...
gtk_im_context_set_client_widget() allows passing NULL as widget to signal that
the widget no longer exists. The xim implementation didn't handle that
case which led to the test suite on gitlab-ci failing.
2018-03-04 18:40:12 +01:00
Christoph Reiter
235ff253ff
Merge branch 'gi-a11y' into 'master'
...
Include gtk/gtk-a11y.h in introspection file.
See merge request GNOME/gtk!43
2018-03-04 10:10:20 +00:00
Christoph Reiter
331c4b5954
Merge branch 'include-gtkstackaccessible' into 'master'
...
a11y: Include gtkstackaccessible.h in gtk-a11y.h
See merge request GNOME/gtk!41
2018-03-04 09:43:34 +00:00
Tomasz Miąsko
7ba53de1e8
Include gtk/gtk-a11y.h in introspection file.
...
The gir XML file contains description of types and functions from
gtk/gtk-a11y.h. Indicate that this header should be included in addition
to gtk/gtk.h in applications written in C. #56
2018-03-03 20:51:30 +01:00
Tomasz Miąsko
c2b4da128a
a11y: Include gtkstackaccessible.h in gtk-a11y.h
2018-03-03 20:01:54 +01:00
Bruce Cowan
ec2cdac298
Update British English translation
...
(cherry picked from commit 3059df0d4d
)
2018-03-02 22:09:58 +00:00
Piotr Drąg
ce2b6d9eb7
Update POTFILES.skip
2018-03-02 21:27:43 +01:00
Piotr Drąg
d8956aeff2
Update POTFILES.skip
2018-03-02 21:26:21 +01:00
Benjamin Otte
634717d0b9
gtk: Remove unused header files in gtk/ui/
2018-03-02 02:00:25 +01:00
Benjamin Otte
88de098711
entry: Remove cursor adjustment APIs
2018-03-02 02:00:25 +01:00
Benjamin Otte
4ac3f916d0
css: Parse hex colors with alpha value
...
The CSS color spec version 4 introduces this, support has hit Safari,
Chrome and Firefox, so this looks like a feature that's here to stay.
https://drafts.csswg.org/css-color/#hex-notation
2018-03-02 02:00:24 +01:00
Piotr Drąg
67b959f1a7
Update POTFILES.in
2018-03-01 18:38:05 +01:00
Christoph Reiter
48f68bb881
Merge branch 'quartz-missing-config-include-gtk4' into 'master'
...
macos: Fix missing gdk symbol exports for gtk dnd
See merge request GNOME/gtk!39
2018-03-01 13:46:26 +00:00
Christoph Reiter
26e2af26ed
macos: export gdk_quartz_drag_source_context()
...
It's used in the gtk dnd code but not exported in gdk.
Append a "_libgtk_only" suffix as with other internal exports and
export the symbol.
See #32
2018-03-01 14:36:44 +01:00
Emmanuele Bassi
78c130543c
ci: Store the logs on build failure
...
We should save the logs directory when the CI pipeline fails, so that we
have a chance at debugging the failure.
2018-03-01 17:09:22 +07:00
Emmanuele Bassi
4b33cc5f89
ci: Update the configuration options
...
The options were renamed in commit 7b32900c55
.
2018-03-01 17:08:27 +07:00
Emmanuele Bassi
6fa2c7e3b7
xim: Use NULL-safe string comparison
...
The locale string may be NULL.
2018-03-01 16:44:02 +07:00
Matthias Clasen
32873cc94b
Merge branch 'wip/matthiasc/immodule-cleanup' into 'master'
...
Convert immodules to use an extension point
See merge request GNOME/gtk!34
2018-03-01 06:38:39 +00:00
Timm Bäder
881046b46e
entry: Simplify cursor management
...
Since cursors are per-widget now and the icons are widgets, we can just
set the cursors once.
2018-02-28 10:35:31 +01:00
Christoph Reiter
94d6d56913
macos: Fix gdk_quartz_drag_context_get_dragging_info_libgtk_only symbol export
...
The header got included without config.h being included first which resulted in the
wrong _GDK_EXTERN macro being used. As a result some symbols weren't exported
and starting a DnD action would crash in the linker.
This patch adds config.h includes in all places where clang complained about
_GDK_EXTERN redefinitions.
See #32 for more info.
2018-02-27 20:04:34 +01:00
Patrick Griffis
971f46e1f2
build: Error if no backends enabled
2018-02-27 13:42:28 -05:00
Timm Bäder
d2b5436462
gl: Make blur nodes with radius ∈ ]0; 1[
...
Otherwise, the radius here ends up being 0 and we don't draw anything at
all.
2018-02-27 14:22:08 +01:00
Timm Bäder
cac3e7705d
gsk: Increase blur node bounds by blur radius
...
Otherwise, the resulting node will be too small and the result looks
clipped.
2018-02-27 14:12:25 +01:00
Timm Bäder
c02090b1f6
tests: Add testblur
2018-02-27 12:51:07 +01:00
Timm Bäder
1355c9ae88
scale: Remove priv pointer
2018-02-27 12:39:04 +01:00
Timm Bäder
813ccb6378
emojichooser: Only measure reference emoji once
...
Doing that once for every emoji is pretty slow and unnecessary as the
width does not change.
2018-02-27 11:45:34 +01:00
Timm Bäder
3c33e541cd
entry: Add motion controller
...
Do the mouse cursor un-obscuring in the ::motion handler instead of in
the ->event handler. We don't get rid of the GtkWidgetClass::event
handler altogether that way, but it's a step in the right direction.
2018-02-27 11:05:04 +01:00
Timm Bäder
83c74ff7d0
spinbutton: Fold function into only caller
2018-02-27 10:30:14 +01:00
Timm Bäder
7c59ac2e4a
spinbutton: Remove unused macro
2018-02-27 10:30:14 +01:00
Timm Bäder
67258c69f0
checkbutton: Don't reorder non-existent indicator widget
2018-02-26 18:23:20 +01:00
Timm Bäder
9db76cebb4
entry: Check gdk_event_get_coords return value
...
We use the x/y values later on to decide what to do with the event.
2018-02-26 12:57:17 +01:00
Timm Bäder
354eab70da
entry: Allocate icons at full height
...
Makes for a larger hit area for pointing devices. If vertical centering
is still desired, GtkWidget:halign can be set on the icon widgets.
2018-02-26 12:53:49 +01:00
Timm Bäder
a9cd2d8181
widget: Simplify set_style_context
...
No need to use widget->priv later if we already define a priv pointer
before.
2018-02-26 08:42:38 +01:00
Timm Bäder
c7294ab90e
button: Remove priv pointer
...
This way we can also move the GtkButtonPrivate definition into
gtkbutton.c
2018-02-25 16:47:20 +01:00
Timm Bäder
94493414b5
filechooserwidget: Make the location entry hexpand
2018-02-25 16:47:20 +01:00
Timm Bäder
fef4f0704a
textview: Use content size when validating contents
2018-02-25 16:47:20 +01:00
Timm Bäder
dc1612b865
contentsformat: Avoid a GPtrArray
...
We know how many items this array will have in advance, so just malloc
enough.
2018-02-25 16:47:20 +01:00
Timm Bäder
7d7045bc35
widget: Remove some unneeded prototypes
2018-02-25 16:47:20 +01:00
Matthias Clasen
04cc589a61
fix the build
2018-02-24 21:44:03 -05:00
Matthias Clasen
ef556689f8
Update docs for changed options
2018-02-24 21:34:40 -05:00
Matthias Clasen
ca794f909a
Update docs for immodules
2018-02-24 21:34:40 -05:00
Matthias Clasen
15cc20e7b5
Always include platform immodules
...
No need to load these as gio modules, we just include
them in libgtk.
2018-02-24 21:34:40 -05:00
Matthias Clasen
29bcc38ae6
Convert immodules to use an extension point
...
Add an extension point called gtk-im-module, which requires
the type GtkIMContext. Simplify the loading by using GIO
infrastructure. Drop the locale filtering for now, I don't
think it is really necessary nowadays.
Convert existing platform modules to gio modules.
Sill to do: Drop the conditional build machinery.
Either always include them, or never.
2018-02-24 21:34:40 -05:00
Matthias Clasen
e6bf832514
Don't mention papi in options docs
...
The papi print backend has been removed.
2018-02-24 21:31:52 -05:00