summaryrefslogtreecommitdiff
path: root/gtk/gtkrender.c
Commit message (Collapse)AuthorAgeFilesLines
* roundedbox: Add gtk_rounded_boxes_init_for_style()Benjamin Otte2016-12-201-45/+0
| | | | | | | | | 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.
* gtk: Remove GtkJunctionSidesBenjamin Otte2016-12-201-49/+11
|
* gtk: Remove unused argument from functionBenjamin Otte2016-12-201-3/+1
|
* gsk: Add gsk_rounded_rect_shrink()Benjamin Otte2016-12-201-1/+1
| | | | | ... and replace _gtk_rounded_box_grow() and _gtk_rounded_box_shrink() with it.
* roundedbox: Remove _gtk_rounded_box_path()Benjamin Otte2016-12-201-1/+3
| | | | | | Use gsk_rounded_rect_path() instead. That's a private GSK function, be we can just include its header.
* gtk: Remove GtkRoundedBox structBenjamin Otte2016-12-201-1/+1
| | | | Use GskRoundedRect instead.
* gtk: Get rid of GtkCssCornerBenjamin Otte2016-12-201-12/+12
| | | | We have GskCorner now which is identical.
* API: Remove everything relating to "grip"Benjamin Otte2016-11-161-25/+1
| | | | | | 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.
* API: Remove gtk_render_extension()Benjamin Otte2016-11-161-84/+0
| | | | This is long-gone drawing API.
* Remove GtkIconFactoryTimm Bäder2016-10-161-99/+0
| | | | Move the icon size lookup API into gtkicontheme.c
* gtkrender: Remove superfluous cairo_save/restore callsTimm Bäder2016-05-051-82/+0
| | | | | These were all surrounding functions that either call cairo_save/cairo_restore themselves or don't need to.
* cssimagebuiltin: Remove icons that don't draw anything anymoreBenjamin Otte2016-05-031-4/+4
|
* Add a function to get affected area for backgroundMatthias Clasen2016-01-201-0/+33
| | | | | | | | 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.
* Mention GtkIconSize in all docs where the argument/return is annotated as ↵Christoph Reiter2016-01-041-2/+3
| | | | | | | | | | | | | | | | | | 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
* iconhelper: Pass only the CssStyle when loading iconsetsBenjamin Otte2015-12-091-37/+27
|
* css: Leftover renaming gtk-image-effect => icon-effectBenjamin Otte2015-12-041-1/+1
| | | | The previous renaming commit was incomplete, so here we go again.
* render: Split out icon-effect apply functionBenjamin Otte2015-12-041-65/+12
|
* css: Rename -gtk-image-effect to -gtk-icon-effectBenjamin Otte2015-12-021-5/+5
| | | | This is a property for icons, so we should name it as such.
* Fix character entitiesPhillip Wood2015-11-191-1/+1
| | | | | | | | 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
* Don't use a transient node in gtk_render_arrow()Matthias Clasen2015-11-081-4/+0
| | | | | | | 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.
* docs: Clarify gtk_render_icon()'s behaviourEmmanuele Bassi2015-11-041-0/+7
| | | | | | | 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.
* Silence another compiler warningMatthias Clasen2015-03-221-1/+1
| | | | Again, our habit of comparing enum values against -1.
* render: Make image effect not depend on stateBenjamin Otte2015-03-181-11/+13
| | | | | | | 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.
* render: Split icon surface rendering outBenjamin Otte2015-01-201-36/+12
| | | | Just like normal icons, icon surfaces belong into gtkrendericon.c.
* render: Split icon rendering into its own fileBenjamin Otte2015-01-201-51/+7
|
* render: Remove spinner special-casesBenjamin Otte2015-01-201-50/+0
| | | | | | | | | 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.
* render: Render builtin images as regular CSS imagesBenjamin Otte2015-01-201-80/+17
| | | | | This not only reduces code, but also allows for builtin images to have shadows or be transformed using -gtk-icon-transform.
* render: Don't require passing CSS properties to builtin imagesBenjamin Otte2015-01-201-151/+6
| | | | | Instead, make the buiultin image get those properties itself in the compute vfunc.
* render: Only render 4 different arrowsBenjamin Otte2015-01-201-4/+26
| | | | | | | | 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.
* render: Don't pass junction sides to builtin imageBenjamin Otte2015-01-201-9/+29
| | | | | Instead, split the grip into 8 different builtin images (one for each side and corner).
* render: Extend builtin images to account for statesBenjamin Otte2015-01-201-11/+49
| | | | | We add to the enum to account for the images generated for different states.
* render: Move code for rendering builtin imagesBenjamin Otte2015-01-201-656/+162
| | | | | | | | 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.
* render: Move border rendering into its own fileBenjamin Otte2015-01-201-454/+19
| | | | | | gtkrenderborder.c now contains the implementation for gtk_css_style_render_border gtk_css_style_render_outline
* render: Remove unused headerBenjamin Otte2015-01-201-1/+0
|
* render: Rename gtkborderimage.[ch]Benjamin Otte2015-01-201-1/+1
| | | | I want the gtkrender prefix for all filenames about rendering.
* render: Use a GtkCssStyle instead of GtkStyleContext for focusBenjamin Otte2015-01-201-12/+14
|
* render: Rename gtkthemingbackground.[ch]Benjamin Otte2015-01-201-1/+1
| | | | I want the gtkrender prefix for all filenames about rendering.
* render: Take a GtkCssStyle for rendering framesBenjamin Otte2015-01-201-100/+92
| | | | ... and move the whole function into gtkthemingbackground.c
* borderimage: Use a GtkCssStyle instead of GtkStyleContextBenjamin Otte2015-01-201-1/+1
|
* themingbackground: Use a GtkCssStyle instead of GtkStyleContextBenjamin Otte2015-01-201-2/+2
|
* roundedbox: Take a GtkCssStyle instead of a GtkStyleContextBenjamin Otte2015-01-201-3/+3
| | | | | This is in preparation for iusing GtkCssStyle instead of GtkStyleContext in render functions.
* render: Replace gtk_style_context_get_border/padding()Benjamin Otte2015-01-191-5/+12
| | | | Use _gtk_style_context_peek_property() instead.
* render: Get rid of gtk_style_context_get_color()Benjamin Otte2015-01-191-20/+12
| | | | Use _gtk_style_context_peek_property() instead.
* css: Add "-gtk-icon-source: builtin"Benjamin Otte2014-10-211-0/+4
| | | | | | ... 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.
* render: We use CHECKED now, not ACTIVEBenjamin Otte2014-10-211-6/+6
| | | | Update docs and custom rendering of checkmarks and radio buttons
* render: Fix uninitialized variablesBenjamin Otte2014-10-151-7/+8
| | | | | | | Refactoring for performance in 39097ea2da79fa1ce79fb291dc5588260e992a5f caused border_width to be uninitialized when rendering border images. https://bugzilla.gnome.org/show_bug.cgi?id=738483
* render: Optimize the no-borders case to exit earlyBenjamin Otte2014-10-101-13/+22
|
* render: Make rendering the background a single functionBenjamin Otte2014-10-081-14/+10
|
* render: Overhaul gtk_render_handle()Benjamin Otte2014-10-081-17/+9
| | | | | | | | | | 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
* colorswatch: Render background properlyBenjamin Otte2014-10-081-0/+44
| | | | | | | | 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.