mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-23 23:09:39 +03:00
f1375fe19d
Split out and clean up form submit code. svn path=/import/netsurf/; revision=374
66 lines
2.1 KiB
C
66 lines
2.1 KiB
C
/*
|
|
* 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 2003 Phil Mellor <monkeyson@users.sourceforge.net>
|
|
* Copyright 2003 James Bursa <bursa@users.sourceforge.net>
|
|
*/
|
|
|
|
#ifndef _NETSURF_DESKTOP_GUI_H_
|
|
#define _NETSURF_DESKTOP_GUI_H_
|
|
|
|
typedef enum { GUI_BROWSER_WINDOW, GUI_DOWNLOAD_WINDOW } gui_window_type;
|
|
typedef enum { SAFE, UNSAFE } gui_safety;
|
|
|
|
struct gui_window;
|
|
typedef struct gui_window gui_window;
|
|
|
|
#include "netsurf/desktop/browser.h"
|
|
|
|
struct gui_message
|
|
{
|
|
enum { msg_SET_URL } type;
|
|
union {
|
|
struct {
|
|
char* url;
|
|
} set_url;
|
|
} data;
|
|
};
|
|
|
|
typedef struct gui_message gui_message;
|
|
|
|
gui_window *gui_create_browser_window(struct browser_window *bw);
|
|
gui_window *gui_create_download_window(struct content *content);
|
|
void gui_window_destroy(gui_window* g);
|
|
void gui_window_show(gui_window* g);
|
|
void gui_window_hide(gui_window* g);
|
|
void gui_window_redraw(gui_window* g, unsigned long x0, unsigned long y0,
|
|
unsigned long x1, unsigned long y1);
|
|
void gui_window_redraw_window(gui_window* g);
|
|
void gui_window_set_scroll(gui_window* g, unsigned long sx, unsigned long sy);
|
|
unsigned long gui_window_get_width(gui_window* g);
|
|
void gui_window_set_extent(gui_window* g, unsigned long width, unsigned long height);
|
|
void gui_window_set_status(gui_window* g, const char* text);
|
|
void gui_window_set_title(gui_window* g, char* title);
|
|
|
|
void gui_window_message(gui_window* g, gui_message* msg);
|
|
|
|
void gui_download_window_update_status(gui_window *g);
|
|
void gui_download_window_done(gui_window *g);
|
|
void gui_download_window_error(gui_window *g, const char *error);
|
|
|
|
void gui_init(int argc, char** argv);
|
|
void gui_multitask(void);
|
|
void gui_poll(void);
|
|
|
|
gui_safety gui_window_set_redraw_safety(gui_window* g, gui_safety s);
|
|
|
|
void gui_window_start_throbber(gui_window* g);
|
|
void gui_window_stop_throbber(gui_window* g);
|
|
|
|
void gui_gadget_combo(struct browser_window* bw, struct form_control* g, unsigned long mx, unsigned long my);
|
|
|
|
void gui_window_place_caret(gui_window *g, int x, int y, int height);
|
|
|
|
#endif
|