diff options
author | Victor Kareh <[email protected]> | 2019-05-22 11:12:24 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-06-16 18:12:44 +0200 |
commit | 1949834b11b508af71332ca92ddcce7a9733d1fd (patch) | |
tree | d5d84b1877e06b8daec8777fd2b36eeea4575ebd /src/include | |
parent | 5bef622c7857b7736e706a72619a03fdbe7fa7bb (diff) | |
download | marco-1949834b11b508af71332ca92ddcce7a9733d1fd.tar.bz2 marco-1949834b11b508af71332ca92ddcce7a9733d1fd.tar.xz |
frame: Add "get_corner_radiuses" chain
https://bugzilla.gnome.org/show_bug.cgi?id=628195
upstream commit:
https://gitlab.gnome.org/GNOME/metacity/commit/3994d7a0
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ui.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/ui.h b/src/include/ui.h index 40ae03cf..26d0d462 100644 --- a/src/include/ui.h +++ b/src/include/ui.h @@ -102,6 +102,13 @@ cairo_region_t *meta_ui_get_frame_bounds (MetaUI *ui, int window_width, int window_height); +void meta_ui_get_corner_radiuses (MetaUI *ui, + Window xwindow, + float *top_left, + float *top_right, + float *bottom_left, + float *bottom_right); + void meta_ui_queue_frame_draw (MetaUI *ui, Window xwindow); @@ -111,6 +118,7 @@ void meta_ui_set_frame_title (MetaUI *ui, void meta_ui_update_frame_style (MetaUI *ui, Window window); + void meta_ui_repaint_frame (MetaUI *ui, Window xwindow); |