| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
Instead of making people intiialize a rectangle and then applying border
radius manually, provide a constructor that does it for them.
While doing that, also allow people to instead request the padding box
or the content box.
Refactor all relevant code to use this new constructor.
|
| |
|
| |
|
|
|
|
|
| |
... and replace _gtk_rounded_box_grow() and _gtk_rounded_box_shrink()
with it.
|
|
|
|
|
|
| |
Use gsk_rounded_rect_path() instead.
That's a private GSK function, be we can just include its header.
|
|
|
|
| |
Use GskRoundedRect instead.
|
|
|
|
| |
We have GskCorner now which is identical.
|
|
|
|
|
|
| |
Grips have long been unused in GTK, so remove all support for them.
This removes the GTK_STYLE_CLASS_GRIP and the special
gtk_render_handle() code for drawing those grips.
|
|
|
|
| |
This is long-gone drawing API.
|
|
|
|
| |
Move the icon size lookup API into gtkicontheme.c
|
|
|
|
|
| |
These were all surrounding functions that either call
cairo_save/cairo_restore themselves or don't need to.
|
| |
|
|
|
|
|
|
|
|
| |
The new function, gtk_render_background_get_clip answers the
question: what pixels are affected if I call gtk_render_background ?
The long-term goal is to have APIs that answer this question for
all rendering primitives.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
taking an int instead of GtkIconSize
In https://bugzilla.gnome.org/show_bug.cgi?id=601425 the annotations
were changed to int as they not only take the predefined enum values
but also user defined values registered through gtk_icon_size_register()
As a result the typelib doesn't contain any information about
GtkIconSize for those arguments and the Python docstring only
shows the corresponding Python type "int".
This changes the argument docs to mention the type explicitly
so the Python doc generator can add a link to Gtk.IconSize
which contains the most useful predefined values.
https://bugzilla.gnome.org/show_bug.cgi?id=757411
|
| |
|
|
|
|
| |
The previous renaming commit was incomplete, so here we go again.
|
| |
|
|
|
|
| |
This is a property for icons, so we should name it as such.
|
|
|
|
|
|
|
|
| |
These are not supposed to be supported by gtk-doc¹
¹https://bugzilla.gnome.org/show_bug.cgi?id=758137
https://bugzilla.gnome.org/show_bug.cgi?id=758175
|
|
|
|
|
|
|
| |
It is not necessary for the users of this API, and causes things
to not work as intended. Without this transient node, styling
"notebook header tabs arrow" has the desired effect on notebook
arrows.
|
|
|
|
|
|
|
| |
A GdkPixbuf has no scaling factor, so drawing directly from it can only
using a scale of 1, to avoid blurry, fuzzy icons.
You should be using gtk_render_icon_surface() anyway.
|
|
|
|
| |
Again, our habit of comparing enum values against -1.
|
|
|
|
|
|
|
| |
Instead rely on -gtk-image-effect only. Adwaita should already work this
way.
Relying on state was a leftover feature from the GTK 2 days.
|
|
|
|
| |
Just like normal icons, icon surfaces belong into gtkrendericon.c.
|
| |
|
|
|
|
|
|
|
|
|
| |
The spinner is a regular builtin image now. There is no need to go
through the shadows code manually anymore as regular items do get
shadows automatically.
This also allows simplifying the actual spinner drawing code so that it
actually works.
|
|
|
|
|
| |
This not only reduces code, but also allows for builtin images to have
shadows or be transformed using -gtk-icon-transform.
|
|
|
|
|
| |
Instead, make the buiultin image get those properties itself in the
compute vfunc.
|
|
|
|
|
|
|
|
| |
Instead of supporting every angle, just support top, right, bottom and
left and round the angle to one of those directions.
Adwaita overrides arrows anyway and doesn't even look at the angle, so
this should not be a problem.
|
|
|
|
|
| |
Instead, split the grip into 8 different builtin images (one for each
side and corner).
|
|
|
|
|
| |
We add to the enum to account for the images generated for different
states.
|
|
|
|
|
|
|
|
| |
Also, make it have a generic entry point with
gtk_css_image_builtin_draw().
The only feature lost so is the drawing of shadows for spinners, but
that will come back later.
|
|
|
|
|
|
| |
gtkrenderborder.c now contains the implementation for
gtk_css_style_render_border
gtk_css_style_render_outline
|
| |
|
|
|
|
| |
I want the gtkrender prefix for all filenames about rendering.
|
| |
|
|
|
|
| |
I want the gtkrender prefix for all filenames about rendering.
|
|
|
|
| |
... and move the whole function into gtkthemingbackground.c
|
| |
|
| |
|
|
|
|
|
| |
This is in preparation for iusing GtkCssStyle instead of GtkStyleContext
in render functions.
|
|
|
|
| |
Use _gtk_style_context_peek_property() instead.
|
|
|
|
| |
Use _gtk_style_context_peek_property() instead.
|
|
|
|
|
|
| |
... and make it the default. This takes over the meaning from "none" for
this property in that it draws the fallback builtin image.
"none" now literally means no image will be drawn.
|
|
|
|
| |
Update docs and custom rendering of checkmarks and radio buttons
|
|
|
|
|
|
|
| |
Refactoring for performance in 39097ea2da79fa1ce79fb291dc5588260e992a5f
caused border_width to be uninitialized when rendering border images.
https://bugzilla.gnome.org/show_bug.cgi?id=738483
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
The code did weird things with drawing backgrounds sometimes but not
really. Now it does this:
(1) render a background
(2) render a frame
(3) render an icon
- if no icon exists, draw the generic handle icon
|
|
|
|
|
|
|
|
| |
We want to render a background *and* the current color (if there is
one).
This also adds a custom function gtk_render_add_content_path() which
adds the path of the current content area to a cairo_t.
|