| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
| |
* don't lose track of previous X error handler
if nested traps are pushed
* free any remaining traps when display
is finalized
Test will fail unless bug 630032 is closed so
gdk_display_close() works.
https://bugzilla.gnome.org/show_bug.cgi?id=630033
|
|
|
|
|
|
|
|
| |
* _gdk_device_set_associated_device() did not allow NULL device
* GdkDisplay should dispose device manager to avoid devices
trying to touch the display in finalize
* GdkDeviceManagerXI did not ref devices in id hash
* GdkDisplayX11 did not ref devices in ->input_devices
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* add per-display gdk_x11_display_error_trap_push()
(X11-specific because gdk_error_trap_push() probably
should have been)
* make gdk_error_trap_push() handle only GDK displays
not displays opened without a GDK wrapper
* make gdk_error_trap_pop() and gdk_x11_display_error_trap_pop()
automatically sync only if needed, so manual gdk_flush() is not
required
* add gdk_error_trap_pop_ignored() which just asynchronously
ignores errors, so never needs to sync
* add G_GNUC_WARN_UNUSED_RESULT to plain pop(), because
if you use plain pop() and don't need the return value,
the async gdk_error_trap_pop_ignored() should be used
instead. This results in lots of warnings to clean
up in a later patch.
The main objective here was to avoid the need to sync just
to ignore an error. Now, syncing is automatic, and only
happens when we need to know the error code.
https://bugzilla.gnome.org/show_bug.cgi?id=629608
|
| |
|
|
|
|
|
|
| |
No need to do a manual free list these days.
https://bugzilla.gnome.org/show_bug.cgi?id=629608
|
|
|
|
|
|
|
| |
(there are actual docs in the template file, these were some kind of
pre-gtk-doc comments without useful info)
https://bugzilla.gnome.org/show_bug.cgi?id=629608
|
| |
|
|
|
|
|
|
| |
Private sources include private headers which we may not be able
to parse properly since some of them use unsupported syntax such
as objective-c.
|
|
|
|
|
| |
GtkTextLayout is internal and unsupported, do not include
it in the gir
|
| |
|
|
|
|
|
|
| |
Use gtk_cell_size_request_get_size() instead
https://bugzilla.gnome.org/show_bug.cgi?id=629785
|
|
|
|
|
|
| |
Use gtk_cell_size_request_get_size() instead
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=629785
|
|
|
|
| |
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=323904
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=629733
|
| |
|
| |
|
|
|
|
|
| |
The doc comments (with annotations) for some of the gdk api are down
in x11/ sources, so we need to scan those too, when building Gdk-3.0.gir.
|
|
|
|
| |
The goi scanner warns about these nowadays.
|
| |
|
|
|
|
|
|
| |
And adjust the getters and setters to match. Also include some
documentation by Havoc Pennington about adjustment of size requests
and allocations.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
This was added to the test only for the sake of making it
easier to reproduce a bug with scrolled windows (bug 629778).
Expected behaviour: The vertical scrollbar should dissapear as soon
as the required height for the full allocation width (without any
vertical scrollbar) is small enough to not need a scrollbar.
|
|
|
|
| |
Fixes build if it isn't available. Bug #629748.
|
|
|
|
|
| |
No idea of the widget embedding crack has worked in recent versions,
even less now. But at least it now compiles.
|
|
|
|
|
|
|
|
| |
Seems commit 7b42d4feda5448cf4f929aeb79f56ba9e524ac39 makes
GtkSpinner a direct subclass of GtkWidget but forgets to
update the header file to include gtkwidget.h instead and
declare the instance and class structures properly (assuming
this was just a missed file in the commit).
|
|
|
|
| |
Otherwise hiding the spinner won't stop it
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=629598
Signed-off-by: Javier Jardón <jjardon@gnome.org>
Signed-off-by: Tristan Van Berkom <tristanvb@openismus.com>
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
height-for-width widgets.
When grouping height-for-width trading widgets (wrapping labels for instance)
vertically; the height for the minimum width will always be used for the entire
group... this patch warns about this in the docs.
|
|
|
|
|
|
| |
Originally the GtkSizeRequestIface patches left GtkSizeGroup working
only by bumping the minimum sizes - this commit fixes size groups to take
both minimum and natural requests into account.
|
| |
|
|
|
|
|
| |
A drawing area is not meant to be subclassed from. It also doesn't
provide any feature a spinner would need either.
|
|
|
|
| |
Doing size requests in expose is broken.
|
|
|
|
| |
Also remove redundant double definition.
|
| |
|
|
|
|
| |
No magic numbers in the code please
|
| |
|
|
|
|
| |
GtkWidget alignment properties make this unnecessary in new containers.
|
|
|
|
| |
GtkWidget margins make this unnecessary in new containers.
|
| |
|
| |
|