source: mainline/uspace/app/taskbar/taskbar.c@ f9ae472

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

Load start menu from file using libstartmenu

  • Property mode set to 100644
File size: 7.2 KB
Line 
1/*
2 * Copyright (c) 2023 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/resource.h>
42#include <ui/ui.h>
43#include <ui/window.h>
44#include <wndmgt.h>
45#include "clock.h"
46#include "taskbar.h"
47#include "tbsmenu.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 errno_t rc;
101
102 taskbar = calloc(1, sizeof(taskbar_t));
103 if (taskbar == NULL) {
104 rc = ENOMEM;
105 goto error;
106 }
107
108 rc = ui_create(display_spec, &taskbar->ui);
109 if (rc != EOK) {
110 printf("Error creating UI on display %s.\n", display_spec);
111 goto error;
112 }
113
114 rc = ui_get_rect(taskbar->ui, &scr_rect);
115 if (rc != EOK) {
116 if (str_cmp(display_spec, UI_DISPLAY_NULL) != 0) {
117 printf("Error getting screen dimensions.\n");
118 goto error;
119 }
120
121 /* For the sake of unit tests */
122 scr_rect.p0.x = 0;
123 scr_rect.p0.y = 0;
124 scr_rect.p1.x = 100;
125 scr_rect.p1.y = 100;
126 }
127
128 ui_wnd_params_init(&params);
129 params.caption = "Task Bar";
130 params.placement = ui_wnd_place_bottom_left;
131
132 /* Window has no titlebar */
133 params.style &= ~ui_wds_titlebar;
134
135 /* Window is not obscured by other windows */
136 params.flags |= ui_wndf_topmost;
137
138 /* Prevent taskbar window from being listed in taskbar */
139 params.flags |= ui_wndf_system;
140
141 /* Make maximized windows avoid taskbar */
142 params.flags |= ui_wndf_avoid;
143
144 params.rect.p0.x = 0;
145 params.rect.p0.y = 0;
146 params.rect.p1.x = scr_rect.p1.x - scr_rect.p0.x;
147
148 if (ui_is_textmode(taskbar->ui)) {
149 params.rect.p1.y = 1;
150 params.style &= ~ui_wds_frame;
151 } else {
152 params.rect.p1.y = 32;
153 }
154
155 rc = ui_window_create(taskbar->ui, &params, &taskbar->window);
156 if (rc != EOK) {
157 printf("Error creating window.\n");
158 goto error;
159 }
160
161 ui_window_set_cb(taskbar->window, &window_cb, (void *)taskbar);
162
163 rc = ui_fixed_create(&taskbar->fixed);
164 if (rc != EOK) {
165 printf("Error creating fixed layout.\n");
166 goto error;
167 }
168
169 rc = tbsmenu_create(taskbar->window, taskbar->fixed, &taskbar->tbsmenu);
170 if (rc != EOK) {
171 printf("Error creating start menu.\n");
172 goto error;
173 }
174
175 rc = tbsmenu_load(taskbar->tbsmenu, "/cfg/startmenu.sif");
176 if (rc != EOK) {
177 printf("Error loading start menu from '%s'.\n",
178 "/cfg/startmenu.sif");
179 goto error;
180 }
181
182 if (ui_is_textmode(taskbar->ui)) {
183 rect.p0.x = params.rect.p0.x + 1;
184 rect.p0.y = 0;
185 rect.p1.x = params.rect.p0.x + 9;
186 rect.p1.y = 1;
187 } else {
188 rect.p0.x = params.rect.p0.x + 5;
189 rect.p0.y = 4;
190 rect.p1.x = params.rect.p0.x + 84;
191 rect.p1.y = 32 - 4;
192 }
193
194 tbsmenu_set_rect(taskbar->tbsmenu, &rect);
195
196 rc = wndlist_create(taskbar->window, taskbar->fixed, &taskbar->wndlist);
197 if (rc != EOK) {
198 printf("Error creating window list.\n");
199 goto error;
200 }
201
202 if (ui_is_textmode(taskbar->ui)) {
203 rect.p0.x = params.rect.p0.x + 10;
204 rect.p0.y = 0;
205 rect.p1.x = params.rect.p1.x - 10;
206 rect.p1.y = 1;
207 } else {
208 rect.p0.x = params.rect.p0.x + 90;
209 rect.p0.y = 4;
210 rect.p1.x = params.rect.p1.x - 84;
211 rect.p1.y = 32 - 4;
212 }
213 wndlist_set_rect(taskbar->wndlist, &rect);
214
215 rc = wndlist_open_wm(taskbar->wndlist, wndmgt_svc);
216 if (rc != EOK) {
217 printf("Error attaching window management service.\n");
218 goto error;
219 }
220
221 rc = taskbar_clock_create(taskbar->window, &taskbar->clock);
222 if (rc != EOK)
223 goto error;
224
225 if (ui_is_textmode(taskbar->ui)) {
226 rect.p0.x = params.rect.p1.x - 10;
227 rect.p0.y = 0;
228 rect.p1.x = params.rect.p1.x;
229 rect.p1.y = 1;
230 } else {
231 rect.p0.x = params.rect.p1.x - 80;
232 rect.p0.y = 4;
233 rect.p1.x = params.rect.p1.x - 4;
234 rect.p1.y = 32 - 4;
235 }
236
237 taskbar_clock_set_rect(taskbar->clock, &rect);
238
239 rc = ui_fixed_add(taskbar->fixed, taskbar_clock_ctl(taskbar->clock));
240 if (rc != EOK) {
241 printf("Error adding control to layout.\n");
242 taskbar_clock_destroy(taskbar->clock);
243 goto error;
244 }
245
246 ui_window_add(taskbar->window, ui_fixed_ctl(taskbar->fixed));
247
248 rc = ui_window_paint(taskbar->window);
249 if (rc != EOK) {
250 printf("Error painting window.\n");
251 goto error;
252 }
253
254 *rtaskbar = taskbar;
255 return EOK;
256error:
257 if (taskbar->clock != NULL)
258 taskbar_clock_destroy(taskbar->clock);
259 if (taskbar->wndlist != NULL)
260 wndlist_destroy(taskbar->wndlist);
261 if (taskbar->tbsmenu != NULL)
262 tbsmenu_destroy(taskbar->tbsmenu);
263 if (taskbar->window != NULL)
264 ui_window_destroy(taskbar->window);
265 if (taskbar->ui != NULL)
266 ui_destroy(taskbar->ui);
267 return rc;
268
269}
270
271/** Destroy task bar. */
272void taskbar_destroy(taskbar_t *taskbar)
273{
274 ui_fixed_remove(taskbar->fixed, taskbar_clock_ctl(taskbar->clock));
275 taskbar_clock_destroy(taskbar->clock);
276 wndlist_destroy(taskbar->wndlist);
277 tbsmenu_destroy(taskbar->tbsmenu);
278 ui_window_destroy(taskbar->window);
279 ui_destroy(taskbar->ui);
280}
281
282/** @}
283 */
Note: See TracBrowser for help on using the repository browser.