[214aefb] | 1 | /*
|
---|
| 2 | * Copyright (c) 2021 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 libui
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /**
|
---|
| 33 | * @file Menu
|
---|
| 34 | */
|
---|
| 35 |
|
---|
| 36 | #include <adt/list.h>
|
---|
| 37 | #include <errno.h>
|
---|
| 38 | #include <gfx/color.h>
|
---|
| 39 | #include <gfx/context.h>
|
---|
| 40 | #include <gfx/render.h>
|
---|
| 41 | #include <gfx/text.h>
|
---|
| 42 | #include <io/pos_event.h>
|
---|
| 43 | #include <stdlib.h>
|
---|
| 44 | #include <str.h>
|
---|
| 45 | #include <ui/control.h>
|
---|
| 46 | #include <ui/paint.h>
|
---|
| 47 | #include <ui/menu.h>
|
---|
| 48 | #include <ui/menuentry.h>
|
---|
| 49 | #include <ui/resource.h>
|
---|
| 50 | #include "../private/menubar.h"
|
---|
| 51 | #include "../private/menu.h"
|
---|
| 52 | #include "../private/resource.h"
|
---|
| 53 |
|
---|
| 54 | enum {
|
---|
| 55 | menu_frame_w = 4,
|
---|
| 56 | menu_frame_h = 4,
|
---|
| 57 | menu_frame_w_text = 2,
|
---|
| 58 | menu_frame_h_text = 1
|
---|
| 59 | };
|
---|
| 60 |
|
---|
| 61 | /** Create new menu.
|
---|
| 62 | *
|
---|
| 63 | * @param mbar Menu bar
|
---|
| 64 | * @param caption Caption
|
---|
| 65 | * @param rmenu Place to store pointer to new menu
|
---|
| 66 | * @return EOK on success, ENOMEM if out of memory
|
---|
| 67 | */
|
---|
| 68 | errno_t ui_menu_create(ui_menu_bar_t *mbar, const char *caption,
|
---|
| 69 | ui_menu_t **rmenu)
|
---|
| 70 | {
|
---|
| 71 | ui_menu_t *menu;
|
---|
| 72 |
|
---|
| 73 | menu = calloc(1, sizeof(ui_menu_t));
|
---|
| 74 | if (menu == NULL)
|
---|
| 75 | return ENOMEM;
|
---|
| 76 |
|
---|
| 77 | menu->caption = str_dup(caption);
|
---|
| 78 | if (menu->caption == NULL) {
|
---|
| 79 | free(menu);
|
---|
| 80 | return ENOMEM;
|
---|
| 81 | }
|
---|
| 82 |
|
---|
| 83 | menu->mbar = mbar;
|
---|
| 84 | list_append(&menu->lmenus, &mbar->menus);
|
---|
| 85 | list_initialize(&menu->entries);
|
---|
| 86 |
|
---|
| 87 | *rmenu = menu;
|
---|
| 88 | return EOK;
|
---|
| 89 | }
|
---|
| 90 |
|
---|
| 91 | /** Destroy menu.
|
---|
| 92 | *
|
---|
| 93 | * @param menu Menu or @c NULL
|
---|
| 94 | */
|
---|
| 95 | void ui_menu_destroy(ui_menu_t *menu)
|
---|
| 96 | {
|
---|
| 97 | ui_menu_entry_t *mentry;
|
---|
| 98 |
|
---|
| 99 | if (menu == NULL)
|
---|
| 100 | return;
|
---|
| 101 |
|
---|
| 102 | /* Destroy entries */
|
---|
| 103 | mentry = ui_menu_entry_first(menu);
|
---|
| 104 | while (mentry != NULL) {
|
---|
| 105 | ui_menu_entry_destroy(mentry);
|
---|
| 106 | mentry = ui_menu_entry_first(menu);
|
---|
| 107 | }
|
---|
| 108 |
|
---|
| 109 | list_remove(&menu->lmenus);
|
---|
| 110 | free(menu->caption);
|
---|
| 111 | free(menu);
|
---|
| 112 | }
|
---|
| 113 |
|
---|
| 114 | /** Get first menu in menu bar.
|
---|
| 115 | *
|
---|
| 116 | * @param mbar Menu bar
|
---|
| 117 | * @return First menu or @c NULL if there is none
|
---|
| 118 | */
|
---|
| 119 | ui_menu_t *ui_menu_first(ui_menu_bar_t *mbar)
|
---|
| 120 | {
|
---|
| 121 | link_t *link;
|
---|
| 122 |
|
---|
| 123 | link = list_first(&mbar->menus);
|
---|
| 124 | if (link == NULL)
|
---|
| 125 | return NULL;
|
---|
| 126 |
|
---|
| 127 | return list_get_instance(link, ui_menu_t, lmenus);
|
---|
| 128 | }
|
---|
| 129 |
|
---|
| 130 | /** Get next menu in menu bar.
|
---|
| 131 | *
|
---|
| 132 | * @param cur Current menu
|
---|
| 133 | * @return Next menu or @c NULL if @a cur is the last one
|
---|
| 134 | */
|
---|
| 135 | ui_menu_t *ui_menu_next(ui_menu_t *cur)
|
---|
| 136 | {
|
---|
| 137 | link_t *link;
|
---|
| 138 |
|
---|
| 139 | link = list_next(&cur->lmenus, &cur->mbar->menus);
|
---|
| 140 | if (link == NULL)
|
---|
| 141 | return NULL;
|
---|
| 142 |
|
---|
| 143 | return list_get_instance(link, ui_menu_t, lmenus);
|
---|
| 144 | }
|
---|
| 145 |
|
---|
| 146 | /** Get menu caption.
|
---|
| 147 | *
|
---|
| 148 | * @param menu Menu
|
---|
| 149 | * @return Caption (owned by @a menu)
|
---|
| 150 | */
|
---|
| 151 | const char *ui_menu_caption(ui_menu_t *menu)
|
---|
| 152 | {
|
---|
| 153 | return menu->caption;
|
---|
| 154 | }
|
---|
| 155 |
|
---|
| 156 | /** Get menu geometry.
|
---|
| 157 | *
|
---|
| 158 | * @param menu Menu
|
---|
| 159 | * @param spos Starting position
|
---|
| 160 | * @param geom Structure to fill in with computed geometry
|
---|
| 161 | */
|
---|
| 162 | void ui_menu_get_geom(ui_menu_t *menu, gfx_coord2_t *spos,
|
---|
| 163 | ui_menu_geom_t *geom)
|
---|
| 164 | {
|
---|
| 165 | gfx_coord2_t edim;
|
---|
| 166 | gfx_coord_t frame_w;
|
---|
| 167 | gfx_coord_t frame_h;
|
---|
| 168 |
|
---|
| 169 | if (menu->mbar->res->textmode) {
|
---|
| 170 | frame_w = menu_frame_w_text;
|
---|
| 171 | frame_h = menu_frame_h_text;
|
---|
| 172 | } else {
|
---|
| 173 | frame_w = menu_frame_w;
|
---|
| 174 | frame_h = menu_frame_h;
|
---|
| 175 | }
|
---|
| 176 |
|
---|
[b8b64a8] | 177 | edim.x = ui_menu_entry_calc_width(menu, menu->max_caption_w,
|
---|
| 178 | menu->max_shortcut_w);
|
---|
[f251883] | 179 | edim.y = menu->total_h;
|
---|
[214aefb] | 180 |
|
---|
| 181 | geom->outer_rect.p0 = *spos;
|
---|
| 182 | geom->outer_rect.p1.x = spos->x + edim.x + 2 * frame_w;
|
---|
| 183 | geom->outer_rect.p1.y = spos->y + edim.y + 2 * frame_h;
|
---|
| 184 |
|
---|
| 185 | geom->entries_rect.p0.x = spos->x + frame_w;
|
---|
| 186 | geom->entries_rect.p0.y = spos->y + frame_h;
|
---|
| 187 | geom->entries_rect.p1.x = geom->entries_rect.p0.x + edim.x;
|
---|
| 188 | geom->entries_rect.p1.y = geom->entries_rect.p0.x + edim.y;
|
---|
| 189 | }
|
---|
| 190 |
|
---|
| 191 | /** Get menu rectangle.
|
---|
| 192 | *
|
---|
| 193 | * @param menu Menu
|
---|
| 194 | * @param spos Starting position (top-left corner)
|
---|
| 195 | * @param rect Place to store menu rectangle
|
---|
| 196 | */
|
---|
| 197 | void ui_menu_get_rect(ui_menu_t *menu, gfx_coord2_t *spos, gfx_rect_t *rect)
|
---|
| 198 | {
|
---|
| 199 | ui_menu_geom_t geom;
|
---|
| 200 |
|
---|
| 201 | ui_menu_get_geom(menu, spos, &geom);
|
---|
| 202 | *rect = geom.outer_rect;
|
---|
| 203 | }
|
---|
| 204 |
|
---|
| 205 | /** Paint menu.
|
---|
| 206 | *
|
---|
| 207 | * @param menu Menu
|
---|
| 208 | * @param spos Starting position (top-left corner)
|
---|
| 209 | * @return EOK on success or an error code
|
---|
| 210 | */
|
---|
| 211 | errno_t ui_menu_paint(ui_menu_t *menu, gfx_coord2_t *spos)
|
---|
| 212 | {
|
---|
| 213 | ui_resource_t *res;
|
---|
| 214 | gfx_coord2_t pos;
|
---|
| 215 | ui_menu_entry_t *mentry;
|
---|
| 216 | ui_menu_geom_t geom;
|
---|
| 217 | gfx_rect_t bg_rect;
|
---|
| 218 | errno_t rc;
|
---|
| 219 |
|
---|
| 220 | res = menu->mbar->res;
|
---|
| 221 | ui_menu_get_geom(menu, spos, &geom);
|
---|
| 222 |
|
---|
| 223 | /* Paint menu frame */
|
---|
| 224 |
|
---|
| 225 | rc = gfx_set_color(res->gc, res->wnd_face_color);
|
---|
| 226 | if (rc != EOK)
|
---|
| 227 | goto error;
|
---|
| 228 |
|
---|
| 229 | rc = ui_paint_outset_frame(res, &geom.outer_rect, &bg_rect);
|
---|
| 230 | if (rc != EOK)
|
---|
| 231 | goto error;
|
---|
| 232 |
|
---|
| 233 | /* Paint menu background */
|
---|
| 234 |
|
---|
| 235 | rc = gfx_set_color(res->gc, res->wnd_face_color);
|
---|
| 236 | if (rc != EOK)
|
---|
| 237 | goto error;
|
---|
| 238 |
|
---|
| 239 | rc = gfx_fill_rect(res->gc, &bg_rect);
|
---|
| 240 | if (rc != EOK)
|
---|
| 241 | goto error;
|
---|
| 242 |
|
---|
| 243 | /* Paint entries */
|
---|
| 244 | pos = geom.entries_rect.p0;
|
---|
| 245 |
|
---|
| 246 | mentry = ui_menu_entry_first(menu);
|
---|
| 247 | while (mentry != NULL) {
|
---|
| 248 | rc = ui_menu_entry_paint(mentry, &pos);
|
---|
| 249 | if (rc != EOK)
|
---|
| 250 | goto error;
|
---|
| 251 |
|
---|
| 252 | pos.y += ui_menu_entry_height(mentry);
|
---|
| 253 | mentry = ui_menu_entry_next(mentry);
|
---|
| 254 | }
|
---|
| 255 |
|
---|
| 256 | rc = gfx_update(res->gc);
|
---|
| 257 | if (rc != EOK)
|
---|
| 258 | goto error;
|
---|
| 259 |
|
---|
| 260 | return EOK;
|
---|
| 261 | error:
|
---|
| 262 | return rc;
|
---|
| 263 | }
|
---|
| 264 |
|
---|
| 265 | /** Unpaint menu.
|
---|
| 266 | *
|
---|
| 267 | * @param menu Menu
|
---|
| 268 | * @return EOK on success or an error code
|
---|
| 269 | */
|
---|
| 270 | errno_t ui_menu_unpaint(ui_menu_t *menu)
|
---|
| 271 | {
|
---|
| 272 | ui_resource_expose(menu->mbar->res);
|
---|
| 273 | return EOK;
|
---|
| 274 | }
|
---|
| 275 |
|
---|
[f536a16] | 276 | /** Handle position event in menu.
|
---|
[214aefb] | 277 | *
|
---|
| 278 | * @param menu Menu
|
---|
| 279 | * @param spos Starting position (top-left corner)
|
---|
[0262f16c] | 280 | * @param event Position event
|
---|
| 281 | * @return ui_claimed iff the event was claimed
|
---|
[214aefb] | 282 | */
|
---|
[0262f16c] | 283 | ui_evclaim_t ui_menu_pos_event(ui_menu_t *menu, gfx_coord2_t *spos,
|
---|
| 284 | pos_event_t *event)
|
---|
[214aefb] | 285 | {
|
---|
| 286 | ui_menu_geom_t geom;
|
---|
| 287 | ui_menu_entry_t *mentry;
|
---|
| 288 | gfx_coord2_t pos;
|
---|
[0262f16c] | 289 | gfx_coord2_t epos;
|
---|
| 290 | ui_evclaim_t claimed;
|
---|
[214aefb] | 291 |
|
---|
| 292 | ui_menu_get_geom(menu, spos, &geom);
|
---|
[0262f16c] | 293 | epos.x = event->hpos;
|
---|
| 294 | epos.y = event->vpos;
|
---|
[214aefb] | 295 |
|
---|
| 296 | pos = geom.entries_rect.p0;
|
---|
| 297 |
|
---|
| 298 | mentry = ui_menu_entry_first(menu);
|
---|
| 299 | while (mentry != NULL) {
|
---|
[0262f16c] | 300 | claimed = ui_menu_entry_pos_event(mentry, &pos, event);
|
---|
| 301 | if (claimed == ui_claimed)
|
---|
| 302 | return ui_claimed;
|
---|
[214aefb] | 303 |
|
---|
| 304 | pos.y += ui_menu_entry_height(mentry);
|
---|
| 305 | mentry = ui_menu_entry_next(mentry);
|
---|
| 306 | }
|
---|
[0262f16c] | 307 |
|
---|
[f536a16] | 308 | /* Event inside menu? */
|
---|
| 309 | if (gfx_pix_inside_rect(&epos, &geom.outer_rect)) {
|
---|
| 310 | /* Claim event */
|
---|
[0262f16c] | 311 | return ui_claimed;
|
---|
[f536a16] | 312 | } else {
|
---|
| 313 | /* Press outside menu - close it */
|
---|
| 314 | if (event->type == POS_PRESS)
|
---|
| 315 | ui_menu_bar_select(menu->mbar, NULL, NULL);
|
---|
| 316 | }
|
---|
[0262f16c] | 317 |
|
---|
| 318 | return ui_unclaimed;
|
---|
[214aefb] | 319 | }
|
---|
| 320 |
|
---|
| 321 | /** @}
|
---|
| 322 | */
|
---|