2008-06-03 23:07:09 +04:00
|
|
|
/*
|
2010-10-05 23:14:46 +04:00
|
|
|
* Copyright 2006 Richard Wilson <info@tinct.net>
|
2014-01-03 02:25:23 +04:00
|
|
|
* Copyright 2010, 2013 Stephen Fryatt <stevef@netsurf-browser.org>
|
2008-06-03 23:07:09 +04:00
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
/** \file
|
|
|
|
* Hotlist (interface).
|
|
|
|
*/
|
2008-06-03 23:07:09 +04:00
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
#ifndef _NETSURF_RISCOS_HOTLIST_H_
|
|
|
|
#define _NETSURF_RISCOS_HOTLIST_H_
|
2008-06-03 23:07:09 +04:00
|
|
|
|
2011-10-09 17:32:43 +04:00
|
|
|
/* Hotlist Protocol Messages, which are currently not in OSLib. */
|
|
|
|
|
|
|
|
#ifndef message_HOTLIST_ADD_URL
|
|
|
|
#define message_HOTLIST_ADD_URL 0x4af81
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef message_HOTLIST_CHANGED
|
|
|
|
#define message_HOTLIST_CHANGED 0x4af82
|
|
|
|
#endif
|
|
|
|
|
2014-06-05 18:14:49 +04:00
|
|
|
struct nsurl;
|
|
|
|
|
2016-12-26 16:22:42 +03:00
|
|
|
/**
|
|
|
|
* initialise the hotlist window template ready for subsequent use.
|
|
|
|
*/
|
|
|
|
void ro_gui_hotlist_initialise(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* make the cookie window visible.
|
|
|
|
*
|
|
|
|
* \return NSERROR_OK on success else appropriate error code on faliure.
|
|
|
|
*/
|
|
|
|
nserror ro_gui_hotlist_present(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free any resources allocated for the cookie window.
|
|
|
|
*
|
|
|
|
* \return NSERROR_OK on success else appropriate error code on faliure.
|
|
|
|
*/
|
|
|
|
nserror ro_gui_hotlist_finalise(void);
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
bool ro_gui_hotlist_check_window(wimp_w window);
|
|
|
|
bool ro_gui_hotlist_check_menu(wimp_menu *menu);
|
2016-12-26 16:22:42 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a URL to the hotlist.
|
|
|
|
*
|
|
|
|
* This will be passed on to the core hotlist, then
|
|
|
|
* Message_HotlistAddURL will broadcast to any bookmark applications
|
|
|
|
* via the Hotlist Protocol.
|
|
|
|
*
|
|
|
|
* \param *url The URL to be added.
|
|
|
|
*/
|
2014-06-05 18:14:49 +04:00
|
|
|
void ro_gui_hotlist_add_page(struct nsurl *url);
|
2016-12-26 16:22:42 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clean up RMA storage used by the Message_HotlistAddURL protocol.
|
|
|
|
*/
|
2011-10-09 17:32:43 +04:00
|
|
|
void ro_gui_hotlist_add_cleanup(void);
|
2016-12-26 16:22:42 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a URL from the hotlist.
|
|
|
|
*
|
|
|
|
* This will be passed on to the core hotlist, unless we're configured
|
|
|
|
* to use external hotlists in which case we ignore it.
|
|
|
|
*
|
|
|
|
* \param *url The URL to be removed.
|
|
|
|
*/
|
2014-06-05 18:14:49 +04:00
|
|
|
void ro_gui_hotlist_remove_page(struct nsurl *url);
|
2016-12-26 16:22:42 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Report whether the hotlist contains a given URL.
|
|
|
|
*
|
|
|
|
* This will be passed on to the core hotlist, unless we're configured
|
|
|
|
* to use an external hotlist in which case we always report false.
|
|
|
|
*
|
|
|
|
* \param url The URL to be tested.
|
|
|
|
* \return true if the hotlist contains the URL; else false.
|
|
|
|
*/
|
2014-06-05 18:14:49 +04:00
|
|
|
bool ro_gui_hotlist_has_page(struct nsurl *url);
|
2008-06-03 23:07:09 +04:00
|
|
|
|
|
|
|
#endif
|