libxputty  0.1
A damn tiny abstraction Layer to create X11 window/widgets with cairo surfaces
xtooltip_private.h
Go to the documentation of this file.
1 /*
2  * 0BSD
3  *
4  * BSD Zero Clause License
5  *
6  * Copyright (c) 2019 Hermann Meyer
7  *
8  * Permission to use, copy, modify, and/or distribute this software for any
9  * purpose with or without fee is hereby granted.
10 
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
12  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13  * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
14  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
16  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17  * PERFORMANCE OF THIS SOFTWARE.
18  *
19  */
20 
21 #pragma once
22 
23 #ifndef XTOOLTIP_PRIVATE_H_
24 #define XTOOLTIP_PRIVATE_H_
25 
26 #include "xtooltip.h"
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
32 
33 /**
34  * @brief _get_width - get the width of a tooltip text and resize the
35  * tooltip widget to match the size
36  * @param *w - the tooltip Widget_t
37  * @return void
38  */
39 
40 void _get_width(Widget_t *w);
41 
42 /**
43  * @brief _draw_tooltip - draw tooltip on expose call
44  * @param *w_ - the tooltip to draw
45  * @param *user_data - attached user_data
46  * @return void
47  */
48 
49 void _draw_tooltip(void *w_, void* user_data);
50 
51 #ifdef __cplusplus
52 }
53 #endif
54 
55 #endif //XTOOLTIP_PRIVATE_H_
_get_width
void _get_width(Widget_t *w)
_get_width - get the width of a tooltip text and resize the tooltip widget to match the size
Definition: xtooltip_private.c:25
Widget_t
Widget_t - struct to hold the basic Widget_t info.
Definition: xwidget.h:298
xtooltip.h
_draw_tooltip
void _draw_tooltip(void *w_, void *user_data)
_draw_tooltip - draw tooltip on expose call
Definition: xtooltip_private.c:32