source: mainline/uspace/app/taskbar/taskbar.c@ 29a5a99

ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 29a5a99 was 29a5a99, checked in by Jiri Svoboda <jiri@…>, 3 years ago

Maximized windows should avoid task bar

  • Property mode set to 100644
File size: 7.1 KB
Line 
1/*
2 * Copyright (c) 2022 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup taskbar
30 * @{
31 */
32/** @file Task Bar
33 */
34
35#include <gfx/coord.h>
36#include <io/pos_event.h>
37#include <stdio.h>
38#include <stdlib.h>
39#include <str.h>
40#include <ui/fixed.h>
41#include <ui/label.h>
42#include <ui/resource.h>
43#include <ui/ui.h>
44#include <ui/window.h>
45#include <wndmgt.h>
46#include "clock.h"
47#include "taskbar.h"
48#include "wndlist.h"
49
50static void taskbar_wnd_close(ui_window_t *, void *);
51static void taskbar_wnd_pos(ui_window_t *, void *, pos_event_t *);
52
53static ui_window_cb_t window_cb = {
54 .close = taskbar_wnd_close,
55 .pos = taskbar_wnd_pos
56};
57
58/** Window close button was clicked.
59 *
60 * @param window Window
61 * @param arg Argument (taskbar)
62 */
63static void taskbar_wnd_close(ui_window_t *window, void *arg)
64{
65 taskbar_t *taskbar = (taskbar_t *) arg;
66
67 ui_quit(taskbar->ui);
68}
69
70/** Window received position event.
71 *
72 * @param window Window
73 * @param arg Argument (taskbar)
74 * @param event Position event
75 */
76static void taskbar_wnd_pos(ui_window_t *window, void *arg, pos_event_t *event)
77{
78 taskbar_t *taskbar = (taskbar_t *) arg;
79
80 /* Remember ID of device that sent the last event */
81 taskbar->wndlist->ev_pos_id = event->pos_id;
82
83 ui_window_def_pos(window, event);
84}
85
86/** Create task bar.
87 *
88 * @param display_spec Display specification
89 * @param wndmgt_svc Window management service (or WNDMGT_DEFAULT)
90 * @param rtaskbar Place to store pointer to new task bar
91 * @return @c EOK on success or an error coe
92 */
93errno_t taskbar_create(const char *display_spec, const char *wndmgt_svc,
94 taskbar_t **rtaskbar)
95{
96 ui_wnd_params_t params;
97 taskbar_t *taskbar = NULL;
98 gfx_rect_t scr_rect;
99 gfx_rect_t rect;
100 ui_resource_t *ui_res;
101 errno_t rc;
102
103 taskbar = calloc(1, sizeof(taskbar_t));
104 if (taskbar == NULL) {
105 rc = ENOMEM;
106 goto error;
107 }
108
109 rc = ui_create(display_spec, &taskbar->ui);
110 if (rc != EOK) {
111 printf("Error creating UI on display %s.\n", display_spec);
112 goto error;
113 }
114
115 rc = ui_get_rect(taskbar->ui, &scr_rect);
116 if (rc != EOK) {
117 if (str_cmp(display_spec, UI_DISPLAY_NULL) != 0) {
118 printf("Error getting screen dimensions.\n");
119 goto error;
120 }
121
122 /* For the sake of unit tests */
123 scr_rect.p0.x = 0;
124 scr_rect.p0.y = 0;
125 scr_rect.p1.x = 100;
126 scr_rect.p1.y = 100;
127 }
128
129 ui_wnd_params_init(&params);
130 params.caption = "Task Bar";
131 params.placement = ui_wnd_place_bottom_left;
132
133 /* Window has no titlebar */
134 params.style &= ~ui_wds_titlebar;
135
136 /* Window is not obscured by other windows */
137 params.flags |= ui_wndf_topmost;
138
139 /* Prevent taskbar window from being listed in taskbar */
140 params.flags |= ui_wndf_system;
141
142 /* Make maximized windows avoid taskbar */
143 params.flags |= ui_wndf_avoid;
144
145 params.rect.p0.x = 0;
146 params.rect.p0.y = 0;
147 params.rect.p1.x = scr_rect.p1.x - scr_rect.p0.x;
148
149 if (ui_is_textmode(taskbar->ui)) {
150 params.rect.p1.y = 1;
151 params.style &= ~ui_wds_frame;
152 } else {
153 params.rect.p1.y = 32;
154 }
155
156 rc = ui_window_create(taskbar->ui, &params, &taskbar->window);
157 if (rc != EOK) {
158 printf("Error creating window.\n");
159 goto error;
160 }
161
162 ui_window_set_cb(taskbar->window, &window_cb, (void *)taskbar);
163 ui_res = ui_window_get_res(taskbar->window);
164
165 rc = ui_fixed_create(&taskbar->fixed);
166 if (rc != EOK) {
167 printf("Error creating fixed layout.\n");
168 goto error;
169 }
170
171 rc = ui_label_create(ui_res, "HelenOS", &taskbar->label);
172 if (rc != EOK) {
173 printf("Error creating label.\n");
174 goto error;
175 }
176
177 ui_window_get_app_rect(taskbar->window, &rect);
178 if (ui_is_textmode(taskbar->ui)) {
179 rect.p0.x += 1;
180 } else {
181 rect.p0.x += 10;
182 }
183 ui_label_set_rect(taskbar->label, &rect);
184 ui_label_set_halign(taskbar->label, gfx_halign_left);
185 ui_label_set_valign(taskbar->label, gfx_valign_center);
186
187 rc = ui_fixed_add(taskbar->fixed, ui_label_ctl(taskbar->label));
188 if (rc != EOK) {
189 printf("Error adding control to layout.\n");
190 ui_label_destroy(taskbar->label);
191 goto error;
192 }
193
194 rc = wndlist_create(taskbar->window, taskbar->fixed, &taskbar->wndlist);
195 if (rc != EOK) {
196 printf("Error creating window list.\n");
197 goto error;
198 }
199
200 if (ui_is_textmode(taskbar->ui)) {
201 rect.p0.x = params.rect.p0.x + 9;
202 rect.p0.y = 0;
203 rect.p1.x = params.rect.p1.x - 10;
204 rect.p1.y = 1;
205 } else {
206 rect.p0.x = params.rect.p0.x + 90;
207 rect.p0.y = 4;
208 rect.p1.x = params.rect.p1.x - 84;
209 rect.p1.y = 32 - 4;
210 }
211 wndlist_set_rect(taskbar->wndlist, &rect);
212
213 rc = wndlist_open_wm(taskbar->wndlist, wndmgt_svc);
214 if (rc != EOK) {
215 printf("Error attaching window management service.\n");
216 goto error;
217 }
218
219 rc = taskbar_clock_create(taskbar->window, &taskbar->clock);
220 if (rc != EOK)
221 goto error;
222
223 if (ui_is_textmode(taskbar->ui)) {
224 rect.p0.x = params.rect.p1.x - 10;
225 rect.p0.y = 0;
226 rect.p1.x = params.rect.p1.x;
227 rect.p1.y = 1;
228 } else {
229 rect.p0.x = params.rect.p1.x - 80;
230 rect.p0.y = 4;
231 rect.p1.x = params.rect.p1.x - 4;
232 rect.p1.y = 32 - 4;
233 }
234
235 taskbar_clock_set_rect(taskbar->clock, &rect);
236
237 rc = ui_fixed_add(taskbar->fixed, taskbar_clock_ctl(taskbar->clock));
238 if (rc != EOK) {
239 printf("Error adding control to layout.\n");
240 taskbar_clock_destroy(taskbar->clock);
241 goto error;
242 }
243
244 ui_window_add(taskbar->window, ui_fixed_ctl(taskbar->fixed));
245
246 rc = ui_window_paint(taskbar->window);
247 if (rc != EOK) {
248 printf("Error painting window.\n");
249 goto error;
250 }
251
252 *rtaskbar = taskbar;
253 return EOK;
254error:
255 if (taskbar->clock != NULL)
256 taskbar_clock_destroy(taskbar->clock);
257 if (taskbar->wndlist != NULL)
258 wndlist_destroy(taskbar->wndlist);
259 if (taskbar->window != NULL)
260 ui_window_destroy(taskbar->window);
261 if (taskbar->ui != NULL)
262 ui_destroy(taskbar->ui);
263 return rc;
264
265}
266
267/** Destroy task bar. */
268void taskbar_destroy(taskbar_t *taskbar)
269{
270 ui_fixed_remove(taskbar->fixed, taskbar_clock_ctl(taskbar->clock));
271 taskbar_clock_destroy(taskbar->clock);
272 ui_window_destroy(taskbar->window);
273 ui_destroy(taskbar->ui);
274}
275
276/** @}
277 */
Note: See TracBrowser for help on using the repository browser.