mirror of
https://github.com/lbonn/rofi
synced 2024-11-22 11:53:11 +00:00
e963c3174a
...using zwlr_layer_surface_v1::set_margin. It's only partial because surface margin has effect only when the the window is located on edge of the screen, not in center. Also the anchor property is not implemented, the anchor point is always the edge of the window corresponding to the location property.
48 lines
1.8 KiB
C
48 lines
1.8 KiB
C
/*
|
|
* rofi
|
|
*
|
|
* MIT/X11 License
|
|
* Copyright © 2013-2020 Qball Cow <qball@gmpclient.org>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
#ifndef ROFI_WAYLAND_H
|
|
#define ROFI_WAYLAND_H
|
|
|
|
#include <cairo.h>
|
|
#include <glib.h>
|
|
|
|
#include "display.h"
|
|
|
|
typedef struct _display_buffer_pool display_buffer_pool;
|
|
display_buffer_pool *display_buffer_pool_new(gint width, gint height);
|
|
void display_buffer_pool_free(display_buffer_pool *pool);
|
|
|
|
cairo_surface_t *display_buffer_pool_get_next_buffer(display_buffer_pool *pool);
|
|
void display_surface_commit(cairo_surface_t *surface);
|
|
|
|
gboolean display_get_surface_dimensions(int *width, int *height);
|
|
void display_set_surface_dimensions(int width, int height,
|
|
int x_margin, int y_margin,
|
|
int loc);
|
|
|
|
#endif
|