/* * Copyright 2017 Chris Young * * 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 Amiga cookie viewer using core windows. */ #include #include #include #include #include #include #include #include #include #include "desktop/cookie_manager.h" #include "netsurf/keypress.h" #include "netsurf/plotters.h" #include "utils/log.h" #include "utils/messages.h" #include "utils/nsoption.h" #include "amiga/cookies.h" #include "amiga/corewindow.h" #include "amiga/libs.h" #include "amiga/utf8.h" enum { /* Project menu */ AMI_COOKIE_M_PROJECT = 0, AMI_COOKIE_M_TEST, AMI_COOKIE_M_LAST }; /** * Amiga cookie viewer window context */ struct ami_cookie_window { /** Amiga core window context */ struct ami_corewindow core; struct ami_menu_data *menu_data[AMI_COOKIE_M_LAST + 1]; struct Menu *imenu; /* Intuition menu */ }; static struct ami_cookie_window *cookie_window = NULL; static void ami_cookies_menu_free(struct ami_cookie_window *cookie_win) { SetAttrs(cookie_win->core.objects[GID_CW_WIN], WINDOW_MenuStrip, NULL, TAG_DONE); ami_menu_free_labs(cookie_win->menu_data, AMI_COOKIE_M_LAST); FreeMenus(cookie_win->imenu); } /** * destroy a previously created cookie view */ static void ami_cookies_destroy(struct ami_corewindow *ami_cw) { nserror res; if(cookie_window == NULL) return; res = cookie_manager_fini(); if (res == NSERROR_OK) { ami_cookies_menu_free(cookie_window); res = ami_corewindow_fini(&cookie_window->core); /* closes the window for us, frees cookie_win */ cookie_window = NULL; } } /** * callback for mouse action for cookie viewer on core window * * \param ami_cw The Amiga 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 ami_cookies_mouse(struct ami_corewindow *ami_cw, browser_mouse_state mouse_state, int x, int y) { cookie_manager_mouse_action(mouse_state, x, y); return NSERROR_OK; } /** * callback for keypress for cookies viewer on core window * * \param example_cw The Amiga core window structure. * \param nskey The netsurf key code * \return NSERROR_OK on success otherwise apropriate error code */ static nserror ami_cookies_key(struct ami_corewindow *ami_cw, uint32_t nskey) { if (cookie_manager_keypress(nskey)) { return NSERROR_OK; } return NSERROR_NOT_IMPLEMENTED; } /** * callback on draw event for cookies viewer on core window * * \param ami_cw The Amiga core window structure. * \param r The rectangle of the window that needs updating. * \param ctx The drawing context * \return NSERROR_OK on success otherwise apropriate error code */ static nserror ami_cookies_draw(struct ami_corewindow *ami_cw, int x, int y, struct rect *r, struct redraw_context *ctx) { cookie_manager_redraw(x, y, r, ctx); return NSERROR_OK; } /** * menu stuff */ /* menu hook functions */ HOOKF(void, ami_cookies_menu_item_project_test, APTR, window, struct IntuiMessage *) { } /* menu setup */ static void ami_cookies_menulabs(struct ami_menu_data **md) { /* not real menu items */ ami_menu_alloc_item(md, AMI_COOKIE_M_PROJECT, NM_TITLE, "Project", 0, NULL, NULL, NULL, 0); ami_menu_alloc_item(md, AMI_COOKIE_M_TEST, NM_ITEM, "TEST", 'N', "TBImages:list_app", ami_cookies_menu_item_project_test, NULL, 0); ami_menu_alloc_item(md, AMI_COOKIE_M_LAST, NM_END, NULL, 0, NULL, NULL, NULL, 0); } static struct Menu * ami_cookies_menu_create(struct ami_cookie_window *cookie_win) { ami_cookies_menulabs(cookie_win->menu_data); cookie_win->imenu = ami_menu_layout(cookie_win->menu_data, AMI_COOKIE_M_LAST); if(cookie_win->imenu == NULL) return NULL; return cookie_win->imenu; } static nserror ami_cookies_create_window(struct ami_cookie_window *cookie_win) { struct ami_corewindow *ami_cw = (struct ami_corewindow *)&cookie_win->core; ami_cw->objects[GID_CW_WIN] = WindowObj, WA_ScreenTitle, ami_gui_get_screen_title(), WA_Title, ami_cw->wintitle, WA_Activate, TRUE, WA_DepthGadget, TRUE, WA_DragBar, TRUE, WA_CloseGadget, TRUE, WA_SizeGadget, TRUE, WA_SizeBRight, TRUE, WA_Top, nsoption_int(cookies_window_ypos), WA_Left, nsoption_int(cookies_window_xpos), WA_Width, nsoption_int(cookies_window_xsize), WA_Height, nsoption_int(cookies_window_ysize), WA_PubScreen, scrn, WA_ReportMouse, TRUE, WA_IDCMP, IDCMP_MOUSEMOVE | IDCMP_MOUSEBUTTONS | IDCMP_NEWSIZE | IDCMP_RAWKEY | IDCMP_GADGETUP | IDCMP_IDCMPUPDATE | IDCMP_EXTENDEDMOUSE | IDCMP_SIZEVERIFY, WINDOW_IDCMPHook, &ami_cw->idcmp_hook, WINDOW_IDCMPHookBits, IDCMP_IDCMPUPDATE | IDCMP_EXTENDEDMOUSE, WINDOW_SharedPort, sport, WINDOW_HorizProp, 1, WINDOW_VertProp, 1, WINDOW_UserData, cookie_win, WINDOW_MenuStrip, ami_cookies_menu_create(cookie_win), WINDOW_IconifyGadget, FALSE, WINDOW_Position, WPOS_CENTERSCREEN, WINDOW_ParentGroup, ami_cw->objects[GID_CW_MAIN] = LayoutVObj, LAYOUT_AddChild, ami_cw->objects[GID_CW_DRAW] = SpaceObj, GA_ID, GID_CW_DRAW, SPACE_Transparent, TRUE, SPACE_BevelStyle, BVS_DISPLAY, GA_RelVerify, TRUE, SpaceEnd, EndGroup, EndWindow; if(ami_cw->objects[GID_CW_WIN] == NULL) { return NSERROR_NOMEM; } return NSERROR_OK; } /* exported interface documented in amiga/cookies.h */ nserror ami_cookies_present(void) { struct ami_cookie_window *ncwin; nserror res; if(cookie_window != NULL) { //windowtofront() return NSERROR_OK; } ncwin = calloc(1, sizeof(struct ami_cookie_window)); if (ncwin == NULL) { return NSERROR_NOMEM; } ncwin->core.wintitle = ami_utf8_easy((char *)messages_get("Cookies")); res = ami_cookies_create_window(ncwin); if (res != NSERROR_OK) { LOG("SSL UI builder init failed"); ami_utf8_free(ncwin->core.wintitle); free(ncwin); return res; } /* initialise Amiga core window */ ncwin->core.draw = ami_cookies_draw; ncwin->core.key = ami_cookies_key; ncwin->core.mouse = ami_cookies_mouse; ncwin->core.close = ami_cookies_destroy; ncwin->core.event = NULL; res = ami_corewindow_init(&ncwin->core); if (res != NSERROR_OK) { ami_utf8_free(ncwin->core.wintitle); DisposeObject(ncwin->core.objects[GID_CW_WIN]); free(ncwin); return res; } res = cookie_manager_init(ncwin->core.cb_table, (struct core_window *)ncwin); if (res != NSERROR_OK) { ami_utf8_free(ncwin->core.wintitle); DisposeObject(ncwin->core.objects[GID_CW_WIN]); free(ncwin); return res; } cookie_window = ncwin; return NSERROR_OK; }