]> Dogcows Code - chaz/tint2/blob - src/tooltip/tooltip.c
adjust tooltip position (mrovi)
[chaz/tint2] / src / tooltip / tooltip.c
1 /**************************************************************************
2 *
3 * Copyright (C) 2009 Andreas.Fink (Andreas.Fink85@gmail.com)
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License version 2
7 * as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 **************************************************************************/
17
18 #include <stdio.h>
19 #include <unistd.h>
20 #include <string.h>
21 #include <stdlib.h>
22 #include <cairo.h>
23 #include <cairo-xlib.h>
24
25 #include "server.h"
26 #include "tooltip.h"
27 #include "panel.h"
28 #include "timer.h"
29
30 static int x, y, width, height;
31
32 // the next functions are helper functions for tooltip handling
33 void start_show_timeout();
34 void start_hide_timeout();
35 void stop_tooltip_timeout();
36
37 Tooltip g_tooltip;
38
39
40 void default_tooltip()
41 {
42 // give the tooltip some reasonable default values
43 memset(&g_tooltip, 0, sizeof(Tooltip));
44
45 g_tooltip.font_color.color[0] = 1;
46 g_tooltip.font_color.color[1] = 1;
47 g_tooltip.font_color.color[2] = 1;
48 g_tooltip.font_color.alpha = 1;
49 }
50
51 void cleanup_tooltip()
52 {
53 stop_tooltip_timeout();
54 tooltip_hide(0);
55 tooltip_copy_text(0);
56 if (g_tooltip.window) XDestroyWindow(server.dsp, g_tooltip.window);
57 if (g_tooltip.font_desc) pango_font_description_free(g_tooltip.font_desc);
58 }
59
60
61 void init_tooltip()
62 {
63 if (!g_tooltip.font_desc)
64 g_tooltip.font_desc = pango_font_description_from_string("sans 10");
65
66 XSetWindowAttributes attr;
67 attr.override_redirect = True;
68 attr.event_mask = StructureNotifyMask;
69 attr.colormap = server.colormap;
70 attr.background_pixel = 0;
71 attr.border_pixel = 0;
72 unsigned long mask = CWEventMask|CWColormap|CWBorderPixel|CWBackPixel|CWOverrideRedirect;
73 if (g_tooltip.window) XDestroyWindow(server.dsp, g_tooltip.window);
74 g_tooltip.window = XCreateWindow(server.dsp, server.root_win, 0, 0, 100, 20, 0, server.depth, InputOutput, server.visual, mask, &attr);
75 }
76
77
78 void tooltip_trigger_show(Area* area, Panel* p, XEvent *e)
79 {
80 // Position the tooltip in the center of the area
81 x = area->posx + area->width / 2 + e->xmotion.x_root - e->xmotion.x;
82 y = area->posy + area->height / 2 + e->xmotion.y_root - e->xmotion.y;
83 g_tooltip.panel = p;
84 if (g_tooltip.mapped && g_tooltip.area != area) {
85 tooltip_copy_text(area);
86 tooltip_update();
87 stop_tooltip_timeout();
88 }
89 else if (!g_tooltip.mapped) {
90 start_show_timeout();
91 }
92 }
93
94
95 void tooltip_show(void* arg)
96 {
97 int mx, my;
98 Window w;
99 XTranslateCoordinates( server.dsp, server.root_win, g_tooltip.panel->main_win, x, y, &mx, &my, &w);
100 Area* area = click_area(g_tooltip.panel, mx, my);
101 stop_tooltip_timeout();
102 if (!g_tooltip.mapped && area->_get_tooltip_text) {
103 tooltip_copy_text(area);
104 g_tooltip.mapped = True;
105 XMapWindow(server.dsp, g_tooltip.window);
106 tooltip_update();
107 XFlush(server.dsp);
108 }
109 }
110
111
112 void tooltip_update_geometry()
113 {
114 cairo_surface_t *cs;
115 cairo_t *c;
116 PangoLayout* layout;
117 cs = cairo_xlib_surface_create(server.dsp, g_tooltip.window, server.visual, width, height);
118 c = cairo_create(cs);
119 layout = pango_cairo_create_layout(c);
120 pango_layout_set_font_description(layout, g_tooltip.font_desc);
121 pango_layout_set_text(layout, g_tooltip.tooltip_text, -1);
122 PangoRectangle r1, r2;
123 pango_layout_get_pixel_extents(layout, &r1, &r2);
124 width = 2*g_tooltip.bg->border.width + 2*g_tooltip.paddingx + r2.width;
125 height = 2*g_tooltip.bg->border.width + 2*g_tooltip.paddingy + r2.height;
126
127 Panel* panel = g_tooltip.panel;
128 if (panel_horizontal && panel_position & BOTTOM)
129 y = panel->posy-height;
130 else if (panel_horizontal && panel_position & TOP)
131 y = panel->posy + panel->area.height;
132 else if (panel_position & LEFT)
133 x = panel->posx + panel->area.width;
134 else
135 x = panel->posx - width;
136
137 if (!panel_horizontal)
138 y -= height/2;
139
140 g_object_unref(layout);
141 cairo_destroy(c);
142 cairo_surface_destroy(cs);
143 }
144
145
146 void tooltip_adjust_geometry()
147 {
148 // adjust coordinates and size to not go offscreen
149 // it seems quite impossible that the height needs to be adjusted, but we do it anyway.
150
151 int min_x, min_y, max_width, max_height;
152 Panel* panel = g_tooltip.panel;
153 int screen_width = server.monitor[panel->monitor].x + server.monitor[panel->monitor].width;
154 int screen_height = server.monitor[panel->monitor].y + server.monitor[panel->monitor].height;
155 if ( x+width <= screen_width && y+height <= screen_height && x>=0 && y>=0)
156 return; // no adjustment needed
157
158 if (panel_horizontal) {
159 min_x=0;
160 max_width=screen_width;
161 max_height=screen_height-panel->area.height;
162 if (panel_position & BOTTOM)
163 min_y=0;
164 else
165 min_y=panel->area.height;
166 }
167 else {
168 max_width=screen_width-panel->area.width;
169 min_y=0;
170 max_height=screen_height;
171 if (panel_position & LEFT)
172 min_x=panel->area.width;
173 else
174 min_x=0;
175 }
176
177 if (x+width > server.monitor[panel->monitor].x + server.monitor[panel->monitor].width)
178 x = server.monitor[panel->monitor].x + server.monitor[panel->monitor].width - width;
179 if ( y+height > server.monitor[panel->monitor].y + server.monitor[panel->monitor].height)
180 y = server.monitor[panel->monitor].y + server.monitor[panel->monitor].height - height;
181
182 if (x<min_x)
183 x=min_x;
184 if (width>max_width)
185 width = max_width;
186 if (y<min_y)
187 y=min_y;
188 if (height>max_height)
189 height=max_height;
190 }
191
192 void tooltip_update()
193 {
194 if (!g_tooltip.tooltip_text) {
195 tooltip_hide(0);
196 return;
197 }
198
199 tooltip_update_geometry();
200 tooltip_adjust_geometry();
201 XMoveResizeWindow(server.dsp, g_tooltip.window, x, y, width, height);
202
203 // Stuff for drawing the tooltip
204 cairo_surface_t *cs;
205 cairo_t *c;
206 PangoLayout* layout;
207 cs = cairo_xlib_surface_create(server.dsp, g_tooltip.window, server.visual, width, height);
208 c = cairo_create(cs);
209 Color bc = g_tooltip.bg->back;
210 Border b = g_tooltip.bg->border;
211 if (server.real_transparency) {
212 clear_pixmap(g_tooltip.window, 0, 0, width, height);
213 draw_rect(c, b.width, b.width, width-2*b.width, height-2*b.width, b.rounded-b.width/1.571);
214 cairo_set_source_rgba(c, bc.color[0], bc.color[1], bc.color[2], bc.alpha);
215 }
216 else {
217 cairo_rectangle(c, 0., 0, width, height);
218 cairo_set_source_rgb(c, bc.color[0], bc.color[1], bc.color[2]);
219 }
220 cairo_fill(c);
221 cairo_set_line_width(c, b.width);
222 if (server.real_transparency)
223 draw_rect(c, b.width/2.0, b.width/2.0, width - b.width, height - b.width, b.rounded);
224 else
225 cairo_rectangle(c, b.width/2.0, b.width/2.0, width-b.width, height-b.width);
226 cairo_set_source_rgba(c, b.color[0], b.color[1], b.color[2], b.alpha);
227 cairo_stroke(c);
228
229 Color fc = g_tooltip.font_color;
230 cairo_set_source_rgba(c, fc.color[0], fc.color[1], fc.color[2], fc.alpha);
231 layout = pango_cairo_create_layout(c);
232 pango_layout_set_font_description(layout, g_tooltip.font_desc);
233 pango_layout_set_text(layout, g_tooltip.tooltip_text, -1);
234 PangoRectangle r1, r2;
235 pango_layout_get_pixel_extents(layout, &r1, &r2);
236 pango_layout_set_width(layout, width*PANGO_SCALE);
237 pango_layout_set_height(layout, height*PANGO_SCALE);
238 pango_layout_set_ellipsize(layout, PANGO_ELLIPSIZE_END);
239 // I do not know why this is the right way, but with the below cairo_move_to it seems to be centered (horiz. and vert.)
240 cairo_move_to(c, -r1.x/2+g_tooltip.bg->border.width+g_tooltip.paddingx, -r1.y/2+g_tooltip.bg->border.width+g_tooltip.paddingy);
241 pango_cairo_show_layout (c, layout);
242
243 g_object_unref (layout);
244 cairo_destroy (c);
245 cairo_surface_destroy (cs);
246 }
247
248
249 void tooltip_trigger_hide(Tooltip* tooltip)
250 {
251 if (g_tooltip.mapped) {
252 tooltip_copy_text(0);
253 start_hide_timeout();
254 }
255 else {
256 // tooltip not visible yet, but maybe a timeout is still pending
257 stop_tooltip_timeout();
258 }
259 }
260
261
262 void tooltip_hide(void* arg)
263 {
264 stop_tooltip_timeout();
265 if (g_tooltip.mapped) {
266 g_tooltip.mapped = False;
267 XUnmapWindow(server.dsp, g_tooltip.window);
268 XFlush(server.dsp);
269 }
270 }
271
272
273 void start_show_timeout()
274 {
275 if (g_tooltip.timeout)
276 change_timeout(g_tooltip.timeout, g_tooltip.show_timeout_msec, 0, tooltip_show, 0);
277 else
278 g_tooltip.timeout = add_timeout(g_tooltip.show_timeout_msec, 0, tooltip_show, 0);
279 }
280
281
282 void start_hide_timeout()
283 {
284 if (g_tooltip.timeout)
285 change_timeout(g_tooltip.timeout, g_tooltip.hide_timeout_msec, 0, tooltip_hide, 0);
286 else
287 g_tooltip.timeout = add_timeout(g_tooltip.hide_timeout_msec, 0, tooltip_hide, 0);
288 }
289
290
291 void stop_tooltip_timeout()
292 {
293 if (g_tooltip.timeout) {
294 stop_timeout(g_tooltip.timeout);
295 g_tooltip.timeout = 0;
296 }
297 }
298
299
300 void tooltip_copy_text(Area* area)
301 {
302 free(g_tooltip.tooltip_text);
303 if (area && area->_get_tooltip_text)
304 g_tooltip.tooltip_text = strdup(area->_get_tooltip_text(area));
305 else
306 g_tooltip.tooltip_text = 0;
307 g_tooltip.area = area;
308 }
This page took 0.04731 seconds and 4 git commands to generate.