From f3a1b49dd83f31399ae5eadfd80744d0cbdeeb0a Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sat, 19 Nov 2016 11:22:22 +0000 Subject: add corewindow support for windows frontend --- frontends/windows/global_history.c | 190 +++++++++++++++++++++++++++++++++++++ 1 file changed, 190 insertions(+) create mode 100644 frontends/windows/global_history.c (limited to 'frontends/windows/global_history.c') diff --git a/frontends/windows/global_history.c b/frontends/windows/global_history.c new file mode 100644 index 000000000..0ef09632d --- /dev/null +++ b/frontends/windows/global_history.c @@ -0,0 +1,190 @@ +/* + * Copyright 2016 Vincent Sanders + * + * This file is part of NetSurf, http://www.netsurf-browser.org/ + * + * NetSurf is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * NetSurf is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/** + * \file + * Implementation of win32 cookie manager. + */ + +#include +#include +#include + +#include "utils/log.h" +#include "utils/nsoption.h" +#include "netsurf/keypress.h" +#include "netsurf/plotters.h" +#include "desktop/global_history.h" + +#include "windows/plot.h" +#include "windows/corewindow.h" +#include "windows/global_history.h" + + +struct nsw32_global_history_window { + struct nsw32_corewindow core; +}; + +static struct nsw32_global_history_window *global_history_window = NULL; + +/** + * callback for keypress on global_history window + * + * \param nsw32_cw The nsw32 core window structure. + * \param nskey The netsurf key code + * \return NSERROR_OK on success otherwise apropriate error code + */ +static nserror +nsw32_global_history_key(struct nsw32_corewindow *nsw32_cw, uint32_t nskey) +{ + if (global_history_keypress(nskey)) { + return NSERROR_OK; + } + return NSERROR_NOT_IMPLEMENTED; +} + +/** + * callback for mouse action on global_history window + * + * \param nsw32_cw The nsw32 core window structure. + * \param mouse_state netsurf mouse state on event + * \param x location of event + * \param y location of event + * \return NSERROR_OK on success otherwise apropriate error code + */ +static nserror +nsw32_global_history_mouse(struct nsw32_corewindow *nsw32_cw, + browser_mouse_state mouse_state, + int x, int y) +{ + global_history_mouse_action(mouse_state, x, y); + + return NSERROR_OK; +} + +/** + * callback on draw event for global_history window + * + * \param nsw32_cw The nsw32 core window structure. + * \param r The rectangle of the window that needs updating. + * \return NSERROR_OK on success otherwise apropriate error code + */ +static nserror +nsw32_global_history_draw(struct nsw32_corewindow *nsw32_cw, + int scrollx, + int scrolly, + struct rect *r) +{ + struct redraw_context ctx = { + .interactive = true, + .background_images = true, + .plot = &win_plotters + }; + + global_history_redraw(-scrollx, -scrolly, r, &ctx); + + return NSERROR_OK; +} + + +static nserror +nsw32_global_history_close(struct nsw32_corewindow *nsw32_cw) +{ + ShowWindow(nsw32_cw->hWnd, SW_HIDE); + + return NSERROR_OK; +} + +/** + * Creates the window for the global_history tree. + * + * \return NSERROR_OK on success else appropriate error code on faliure. + */ +static nserror nsw32_global_history_init(HINSTANCE hInstance) +{ + struct nsw32_global_history_window *ncwin; + nserror res; + + if (global_history_window != NULL) { + return NSERROR_OK; + } + + ncwin = malloc(sizeof(struct nsw32_global_history_window)); + if (ncwin == NULL) { + return NSERROR_NOMEM; + } + + ncwin->core.title = "NetSurf Global History"; + ncwin->core.draw = nsw32_global_history_draw; + ncwin->core.key = nsw32_global_history_key; + ncwin->core.mouse = nsw32_global_history_mouse; + ncwin->core.close = nsw32_global_history_close; + + res = nsw32_corewindow_init(hInstance, NULL, &ncwin->core); + if (res != NSERROR_OK) { + free(ncwin); + return res; + } + + res = global_history_init(ncwin->core.cb_table, + (struct core_window *)ncwin); + if (res != NSERROR_OK) { + free(ncwin); + return res; + } + + /* memoise window so it can be represented when necessary + * instead of recreating every time. + */ + global_history_window = ncwin; + + return NSERROR_OK; +} + + +/* exported interface documented in windows/global_history.h */ +nserror nsw32_global_history_present(HINSTANCE hInstance) +{ + nserror res; + + res = nsw32_global_history_init(hInstance); + if (res == NSERROR_OK) { + ShowWindow(global_history_window->core.hWnd, SW_SHOWNORMAL); + } + return res; +} + +/* exported interface documented in windows/global_history.h */ +nserror nsw32_global_history_finalise(void) +{ + nserror res; + + if (global_history_window == NULL) { + return NSERROR_OK; + } + + res = global_history_fini(); + if (res == NSERROR_OK) { + res = nsw32_corewindow_fini(&global_history_window->core); + DestroyWindow(global_history_window->core.hWnd); + free(global_history_window); + global_history_window = NULL; + } + + return res; +} -- cgit v1.2.3