| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
Always have Since: annotations at the very bottom, use the correct
ClassName::signal-name/ClassName:property-name syntax, fix a few typos
in type names, wrong function names, non-existing type names, etc.
|
|
|
|
|
|
|
| |
Document that it is best to explicitly set width-chars and
max-width-chars to avoid surprises.
https://bugzilla.gnome.org/show_bug.cgi?id=727294
|
|
|
|
|
|
|
|
| |
When the spinbutton grows larger, distribute horizontal size to the
entry and vertical size to the buttons.
Obviously, horizontal size only matters for horizontal spinbuttons and
vertical for vertical spinbuttons.
|
|
|
|
|
| |
This really messes up rendering in Adwaita because the code now renders
the spinbutton's entry node when it didn't before.
|
|
|
|
|
|
| |
If we want to do special sizing for the text, we need to do it for the
text. Otherwise paddings, borders and entyr icons will screw up
everything.
|
|
|
|
|
| |
This is a big and somewhat evil hack: We replace the entry's gadget's
node with the spinbutton's entry node.
|
|
|
|
|
| |
Use gtk_css_gadget_set_state in all the places where we previously
were getting a node from a gadget, just to call gtk_css_node_set_state.
|
| |
|
|
|
|
|
|
| |
Use a gadget for the entry. Selection and progress still
just use a CSS node. Most things seem to work correctly
with non-zero margin or padding.
|
| |
|
|
|
|
| |
Note that we don't use it yet.
|
|
|
|
|
|
|
|
| |
Instead of having old and new style, now have a GtkCssStyleChange opaque
object that will compute the changes you are interested in for you.
This simplifies change signal handlers quite a bit and avoids lots of
repeated computation in every signal handler.
|
|
|
|
| |
Instead, use the widget's context.
|
|
|
|
| |
Instead use the window of the owner widget.
|
|
|
|
|
| |
Note that the caller needs to ensure the widget lives as long as the
iconhelper as the iconhelper will not ref the widget.
|
|
|
|
|
| |
When introducing handlers for state_flags_changed in the node
transitions, chaining up was forgotten.
|
| |
|
|
|
|
|
|
|
|
| |
We can't use up_panel and down_panel as differentiators for the buttons,
because these window system resources don't exist before realize().
Just use a one-off enum for this purpose.
https://bugzilla.gnome.org/show_bug.cgi?id=758094
|
|
|
|
|
|
| |
Use G_PARAM_DEPRECATED with deprecated style properties.
This will make it easier to identify and remove such stale
properties from css, since it will now trigger warnings.
|
|
|
|
| |
No code change.
|
|
|
|
|
| |
We need to update the entry_node state, and we should
update the node state initially.
|
| |
|
| |
|
|
|
|
| |
Also fix Adwaita to not use .entry anymore
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit creates entry and button subnodes for the buttons
in GtkSpinButton. The nodes are ordered like this for horizontal
spinbutton
+ entry
+ image.left
+ image.right
+ progress
+ button.down
+ button.up
and like this for vertical ones:
spinbutton
+ button.down
+ entry
+ button.up
This arrangement requires cooperation from GtkEntry to place
the entry subnodes correctly, and some small changes in the theme.
This commit also fixes progress rendering in vertical spin buttons.
|
| |
|
|
|
|
| |
Use g_clear_object in a few places.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
These days exposure happens only on the native windows (generally the
toplevel window) and is propagated down recursively. The expose event
is only useful for backwards compat, and in fact, for double buffered
widgets we totally ignore the event (and non-double buffering breaks
on wayland).
So, by not setting the mask we avoid emitting these events and then
later ignoring them.
We still keep it on eventbox, fixed and layout as these are used
in weird ways that want backwards compat.
|
|
|
|
|
|
| |
Make these go to the lower/upper boundary of the adjustment, like
Ctrl-PageUp/PageDown already do.
https://bugzilla.gnome.org/show_bug.cgi?id=309300
|
|
|
|
| |
This is just an unnecessary indirection.
|
|
|
|
|
|
| |
It is deprecated and no longer needed, and,as observed in
https://bugzilla.gnome.org/show_bug.cgi?id=746253 it
interferes with turning off event compression.
|
|
|
|
|
|
|
|
| |
Commit c5905b13b97012fc9e9424718bdce34e0989f512 changed the semantics of
this vfunc and get_entry_size but I only fixed one of them in the
spinbutton subclass.
https://bugzilla.gnome.org/show_bug.cgi?id=746282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
With the 3.0 transition, this code went from just querying the entry's
height request to doing a full size request.
Then it got code to revert the features that a full size request does.
And then it grew code that manually computed the baseline.
Avoid this and just do what happened back in the days: Do a regular
height request.
This changes the semantics of the get_frame_size() vfunc wrt its
behavior towards subclasses overwriting the get_height() vfuncs, but I'm
happy to live with that.
|
|
|
|
| |
Use the style contexts current state when querying it.
|
|
|
|
|
|
|
| |
Failure to do so results in custom styling leaking through in
the inspector. This is pretty obvious, now that the inspector
is using a separate display connection and is generally isolated
from style changes.
|
|
|
|
|
| |
No need to explicitly specify a parser function, it will be
correctly guessed from the property type.
|
|
|
|
|
|
|
|
|
| |
With the recent save-is-child changes, using
gtk_style_context_get_padding (context, different_state)
will now open a subelement.
This is not what we want, so we check the state whenever we get the
button contexts.
|
|
|
|
|
|
|
| |
This code was relying on the previous GtkGestureSingle::touch-only default
value.
https://bugzilla.gnome.org/show_bug.cgi?id=734285
|
|
|
|
|
|
|
|
| |
A spin button really needs an adjustment to work. So don't let the
user unset the adjustment by passing NULL to
gtk_spin_button_set_adjustment.
https://bugzilla.gnome.org/show_bug.cgi?id=734660
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changing adjustment via the property setter would not emit
value-changed, however changing it via gtk_spin_button_configure would.
This inconsistency had the following side-effects:
- Setting an adjustment with a different value would not update the
value shown by the spin button.
- Creating a spin button like this (common in GtkBuilder XML) will
not show the initial value:
g_object_new (GTK_TYPE_SPIN_BUTTON, "adjustment", adj, NULL);
Let's use the same code path (ie. gtk_spin_button_configure) for all
public facing API for setting adjustment. The code that handled the
details of swapping out the old adjustment with the new has been split
into an unset_adjustment method and the rest has been folded into
gtk_spin_button_configure.
A spin button really needs an adjustment to work, so we don't need
most of the NULL checks. However we do need to check in
unset_adjustment because setting a new adjustment during object
creation might try to unset a non-existent one.
https://bugzilla.gnome.org/show_bug.cgi?id=734660
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=734649
|
|
|
|
|
| |
Based on a patch by Gergely Polonkai,
https://bugzilla.gnome.org/show_bug.cgi?id=733174
|
| |
|
|
|
|
|
| |
This was an omission, horizontal/vertical would only be set
when the orientation is changed.
|
| |
|
|
|
|
|
|
|
|
| |
Event controllers now auto-attach, and the GtkCapturePhase only determines
when are events dispatched, but all controllers are managed by the widget wrt
grabs.
All callers have been updated.
|
|
|
|
|
|
|
|
|
|
|
| |
Those get in the middle more than help on these widgets, the widget
is already packed with clickable areas and having handles (and their
invisible clickable area around) hovering above don't help, plus the
purpose in most likely numeric values is a bit doubtful.
All touch events are either consumed by the up/down panels, or
the swipe gesture, all GtkEntry handling of touch events on the text
window is avoided, so handles to not appear anymore.
|
|
|
|
|
| |
The gesture must be able to catch first events for it to be seen
as recognized in event handlers.
|
|
|
|
|
| |
It is unnecessary to have those process events manually, just attach
those to the bubble phase.
|