NetSurf
global_history.h
Go to the documentation of this file.
1/*
2 * Copyright 2005 Richard Wilson <info@tinct.net>
3 * Copyright 2010 Stephen Fryatt <stevef@netsurf-browser.org>
4 *
5 * This file is part of NetSurf, http://www.netsurf-browser.org/
6 *
7 * NetSurf is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * NetSurf is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20/**
21 * \file
22 * RISc OS global history interface.
23 */
24
25#ifndef RISCOS_GLOBALHISTORY_H
26#define RISCOS_GLOBALHISTORY_H
27
28/**
29 * initialise the global history window template ready for subsequent use.
30 */
32
33/**
34 * make the global history window visible.
35 *
36 * \return NSERROR_OK on success else appropriate error code on faliure.
37 */
39
40/**
41 * Free any resources allocated for the global history window.
42 *
43 * \return NSERROR_OK on success else appropriate error code on faliure.
44 */
46
47/**
48 * check if window handle is for the global history window
49 */
50bool ro_gui_global_history_check_window(wimp_w window);
51
52/**
53 * check if menu handle is for the global history menu
54 */
55bool ro_gui_global_history_check_menu(wimp_menu *menu);
56
57#endif
58
nserror
Enumeration of error codes.
Definition: errors.h:29
nserror ro_gui_global_history_present(void)
make the global history window visible.
bool ro_gui_global_history_check_menu(wimp_menu *menu)
check if menu handle is for the global history menu
void ro_gui_global_history_initialise(void)
initialise the global history window template ready for subsequent use.
bool ro_gui_global_history_check_window(wimp_w window)
check if window handle is for the global history window
nserror ro_gui_global_history_finalise(void)
Free any resources allocated for the global history window.