/* * Copyright (c) 2021 Jiri Svoboda * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * - The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** @addtogroup nav * @{ */ /** @file Navigator. * * HelenOS file manager. */ #include #include #include #include #include #include #include #include #include "menu.h" #include "nav.h" #include "panel.h" static void wnd_close(ui_window_t *, void *); static void wnd_kbd(ui_window_t *, void *, kbd_event_t *); static ui_window_cb_t window_cb = { .close = wnd_close, .kbd = wnd_kbd }; /** Window close button was clicked. * * @param window Window * @param arg Argument (navigator) */ static void wnd_close(ui_window_t *window, void *arg) { navigator_t *navigator = (navigator_t *) arg; ui_quit(navigator->ui); } /** Window keyboard event handler. * * @param window Window * @param arg Argument (navigator) * @param event Keyboard event */ static void wnd_kbd(ui_window_t *window, void *arg, kbd_event_t *event) { navigator_t *navigator = (navigator_t *) arg; if (event->type == KEY_PRESS && ((event->mods & KM_ALT) == 0) && ((event->mods & KM_SHIFT) == 0) && (event->mods & KM_CTRL) != 0) { switch (event->key) { case KC_Q: ui_quit(navigator->ui); break; default: break; } } if (event->type == KEY_PRESS && ((event->mods & (KM_CTRL | KM_ALT | KM_SHIFT)) == 0)) { switch (event->key) { case KC_TAB: navigator_switch_panel(navigator); break; default: break; } } ui_window_def_kbd(window, event); } /** Create navigator. * * @param display_spec Display specification * @param rnavigator Place to store pointer to new navigator * @return EOK on success or ane error code */ errno_t navigator_create(const char *display_spec, navigator_t **rnavigator) { navigator_t *navigator; ui_wnd_params_t params; gfx_rect_t rect; unsigned i; errno_t rc; navigator = calloc(1, sizeof(navigator_t)); if (navigator == NULL) return ENOMEM; rc = ui_create(display_spec, &navigator->ui); if (rc != EOK) { printf("Error creating UI on display %s.\n", display_spec); goto error; } ui_wnd_params_init(¶ms); params.caption = "Navigator"; params.style &= ~ui_wds_decorated; params.placement = ui_wnd_place_full_screen; rc = ui_window_create(navigator->ui, ¶ms, &navigator->window); if (rc != EOK) { printf("Error creating window.\n"); goto error; } ui_window_set_cb(navigator->window, &window_cb, (void *) navigator); rc = ui_fixed_create(&navigator->fixed); if (rc != EOK) { printf("Error creating fixed layout.\n"); goto error; } ui_window_add(navigator->window, ui_fixed_ctl(navigator->fixed)); rc = nav_menu_create(navigator->window, &navigator->menu); if (rc != EOK) goto error; rc = ui_fixed_add(navigator->fixed, nav_menu_ctl(navigator->menu)); if (rc != EOK) { printf("Error adding control to layout.\n"); return rc; } for (i = 0; i < 2; i++) { rc = panel_create(navigator->window, i == 0, &navigator->panel[i]); if (rc != EOK) goto error; rect.p0.x = 40 * i; rect.p0.y = 1; rect.p1.x = 40 * (i + 1); rect.p1.y = 24; panel_set_rect(navigator->panel[i], &rect); rc = ui_fixed_add(navigator->fixed, panel_ctl(navigator->panel[i])); if (rc != EOK) { printf("Error adding control to layout.\n"); goto error; } rc = panel_read_dir(navigator->panel[i], "."); if (rc != EOK) { printf("Error reading directory.\n"); goto error; } } rc = ui_window_paint(navigator->window); if (rc != EOK) { printf("Error painting window.\n"); goto error; } *rnavigator = navigator; return EOK; error: navigator_destroy(navigator); return rc; } void navigator_destroy(navigator_t *navigator) { unsigned i; for (i = 0; i < 2; i++) { ui_fixed_remove(navigator->fixed, panel_ctl(navigator->panel[i])); panel_destroy(navigator->panel[i]); } ui_fixed_remove(navigator->fixed, nav_menu_ctl(navigator->menu)); if (navigator->menu != NULL) nav_menu_destroy(navigator->menu); if (navigator->window != NULL) ui_window_destroy(navigator->window); if (navigator->ui != NULL) ui_destroy(navigator->ui); free(navigator); } /** Run navigator on the specified display. */ errno_t navigator_run(const char *display_spec) { navigator_t *navigator; errno_t rc; rc = navigator_create(display_spec, &navigator); if (rc != EOK) return rc; ui_run(navigator->ui); navigator_destroy(navigator); return EOK; } /** Get the currently active navigator panel. * * @param navigator Navigator * @return Currently active panel */ panel_t *navigator_get_active_panel(navigator_t *navigator) { int i; for (i = 0; i < navigator_panels; i++) { if (panel_is_active(navigator->panel[i])) return navigator->panel[i]; } /* This should not happen */ assert(false); return NULL; } /** Switch to another navigator panel. * * Changes the currently active navigator panel to the next panel. * * @param navigator Navigator */ void navigator_switch_panel(navigator_t *navigator) { errno_t rc; if (panel_is_active(navigator->panel[0])) { rc = panel_activate(navigator->panel[1]); if (rc != EOK) return; panel_deactivate(navigator->panel[0]); } else { rc = panel_activate(navigator->panel[0]); if (rc != EOK) return; panel_deactivate(navigator->panel[1]); } } /** @} */