2005-02-03 16:18:22 +03:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2005 Richard Wilson <info@tinct.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Central repository for URL data (interface).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETSURF_RISCOS_URLCOMPLETE_H_
|
|
|
|
#define _NETSURF_RISCOS_URLCOMPLETE_H_
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "netsurf/riscos/gui.h"
|
|
|
|
|
2005-02-04 06:02:15 +03:00
|
|
|
void ro_gui_url_complete_start(struct gui_window *g);
|
2005-02-03 16:18:22 +03:00
|
|
|
bool ro_gui_url_complete_keypress(struct gui_window *g, int key);
|
|
|
|
void ro_gui_url_complete_resize(struct gui_window *g, wimp_open *open);
|
|
|
|
bool ro_gui_url_complete_close(struct gui_window *g, wimp_i i);
|
|
|
|
void ro_gui_url_complete_redraw(wimp_draw *redraw);
|
2005-02-09 03:16:38 +03:00
|
|
|
void ro_gui_url_complete_mouse_at(wimp_pointer *pointer, bool buttons);
|
2005-02-03 16:18:22 +03:00
|
|
|
|
|
|
|
void url_complete_dump_matches(const char *url);
|
|
|
|
|
|
|
|
#endif
|