From 3694345204f9d8b74a1a52a66a10760b220ec6a7 Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Sun, 30 Jan 2011 19:24:03 +0000 Subject: Implemented Search Dialog svn path=/trunk/netsurf/; revision=11536 --- atari/search.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 atari/search.h (limited to 'atari/search.h') diff --git a/atari/search.h b/atari/search.h new file mode 100644 index 000000000..f7e43dcb6 --- /dev/null +++ b/atari/search.h @@ -0,0 +1,23 @@ +#ifndef NS_ATARI_SEARCH_H +#define NS_ATARI_SEARCH_H + +#define SEARCH_MAX_SLEN 24 + +struct s_search_form_state +{ + char text[32]; + uint32_t flags; +}; + +struct s_search_form_session { + struct browser_window * bw; + WINDOW * formwind; + struct s_search_form_state state; +}; + + +typedef struct s_search_form_session * SEARCH_FORM_SESSION; + +SEARCH_FORM_SESSION open_browser_search(struct gui_window * gw); + +#endif \ No newline at end of file -- cgit v1.2.3