2008-08-02 18:31:32 +04:00
|
|
|
/*
|
2010-02-13 20:31:10 +03:00
|
|
|
* Copyright 2008-2010 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
2008-08-02 18:31:32 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AMIGA_GUI_H
|
|
|
|
#define AMIGA_GUI_H
|
2008-08-09 02:38:13 +04:00
|
|
|
#include <graphics/rastport.h>
|
2008-08-09 19:19:04 +04:00
|
|
|
#include "amiga/object.h"
|
|
|
|
#include <intuition/classusr.h>
|
2008-08-18 23:07:12 +04:00
|
|
|
#include "desktop/browser.h"
|
2008-08-23 20:17:51 +04:00
|
|
|
#include <dos/dos.h>
|
2008-10-05 03:29:17 +04:00
|
|
|
#include "desktop/gui.h"
|
2009-07-09 22:52:55 +04:00
|
|
|
#include "amiga/plotters.h"
|
2008-08-09 02:38:13 +04:00
|
|
|
|
2008-08-09 19:19:04 +04:00
|
|
|
enum
|
|
|
|
{
|
2010-02-13 21:03:05 +03:00
|
|
|
OID_MAIN = 0,
|
|
|
|
OID_VSCROLL,
|
|
|
|
OID_HSCROLL,
|
|
|
|
OID_MENU,
|
|
|
|
OID_LAST, /* for compatibility */
|
|
|
|
GID_MAIN,
|
2008-10-05 17:17:18 +04:00
|
|
|
GID_TABLAYOUT,
|
2008-08-09 19:19:04 +04:00
|
|
|
GID_BROWSER,
|
|
|
|
GID_STATUS,
|
|
|
|
GID_URL,
|
2009-12-19 03:39:52 +03:00
|
|
|
GID_ICON,
|
2008-08-09 19:19:04 +04:00
|
|
|
GID_STOP,
|
|
|
|
GID_RELOAD,
|
|
|
|
GID_HOME,
|
|
|
|
GID_BACK,
|
|
|
|
GID_FORWARD,
|
2008-09-14 02:39:48 +04:00
|
|
|
GID_THROBBER,
|
2009-12-22 02:25:35 +03:00
|
|
|
GID_SEARCH_ICON,
|
2008-10-06 01:20:12 +04:00
|
|
|
GID_CLOSETAB,
|
2010-02-14 03:46:53 +03:00
|
|
|
GID_CLOSETAB_BM,
|
2010-02-14 17:00:33 +03:00
|
|
|
GID_ADDTAB,
|
|
|
|
GID_ADDTAB_BM,
|
2008-10-05 03:29:17 +04:00
|
|
|
GID_TABS,
|
2010-02-14 03:46:53 +03:00
|
|
|
GID_TABS_FLAG,
|
2008-08-31 01:32:05 +04:00
|
|
|
GID_USER,
|
|
|
|
GID_PASS,
|
|
|
|
GID_LOGIN,
|
|
|
|
GID_CANCEL,
|
2008-09-28 00:56:25 +04:00
|
|
|
GID_TREEBROWSER,
|
2008-10-12 01:38:04 +04:00
|
|
|
GID_OPEN,
|
2008-10-14 02:34:54 +04:00
|
|
|
GID_LEFT,
|
2008-10-12 01:38:04 +04:00
|
|
|
GID_UP,
|
|
|
|
GID_DOWN,
|
|
|
|
GID_NEWF,
|
|
|
|
GID_NEWB,
|
|
|
|
GID_DEL,
|
2008-12-14 02:23:24 +03:00
|
|
|
GID_NEXT,
|
|
|
|
GID_PREV,
|
|
|
|
GID_SEARCHSTRING,
|
2009-12-18 02:55:02 +03:00
|
|
|
GID_SHOWALL,
|
|
|
|
GID_CASE,
|
2009-12-23 02:04:59 +03:00
|
|
|
GID_TOOLBARLAYOUT,
|
2009-08-29 03:12:18 +04:00
|
|
|
GID_HSCROLL,
|
2010-02-13 21:03:05 +03:00
|
|
|
GID_LAST
|
2008-08-09 19:19:04 +04:00
|
|
|
};
|
|
|
|
|
2008-12-14 02:23:24 +03:00
|
|
|
struct find_window;
|
2009-03-15 14:21:46 +03:00
|
|
|
struct history_window;
|
2008-12-14 02:23:24 +03:00
|
|
|
|
2008-10-05 03:29:17 +04:00
|
|
|
struct gui_window_2 {
|
2008-08-02 18:31:32 +04:00
|
|
|
struct Window *win;
|
2010-02-14 03:46:53 +03:00
|
|
|
Object *objects[GID_LAST];
|
2008-08-09 19:19:04 +04:00
|
|
|
struct nsObject *node;
|
2008-09-21 02:07:11 +04:00
|
|
|
struct browser_window *bw;
|
2008-08-23 20:17:51 +04:00
|
|
|
bool redraw_required;
|
2008-09-21 02:07:11 +04:00
|
|
|
int throbber_frame;
|
2008-10-05 03:29:17 +04:00
|
|
|
struct List tab_list;
|
2008-10-05 17:17:18 +04:00
|
|
|
ULONG tabs;
|
|
|
|
ULONG next_tab;
|
2008-08-11 21:53:45 +04:00
|
|
|
struct Hook scrollerhook;
|
2008-08-18 23:07:12 +04:00
|
|
|
struct Hook popuphook;
|
|
|
|
struct form_control *control;
|
|
|
|
browser_mouse_state mouse_state;
|
2008-09-01 22:03:40 +04:00
|
|
|
browser_mouse_state key_state;
|
2008-09-14 02:39:48 +04:00
|
|
|
ULONG throbber_update_count;
|
2008-12-14 02:23:24 +03:00
|
|
|
struct find_window *searchwin;
|
2009-01-11 00:31:21 +03:00
|
|
|
ULONG oldh;
|
|
|
|
ULONG oldv;
|
2009-05-31 19:05:26 +04:00
|
|
|
bool redraw_scroll;
|
2009-06-03 23:44:43 +04:00
|
|
|
bool new_content;
|
2009-07-23 15:23:34 +04:00
|
|
|
char *svbuffer;
|
2009-08-29 14:16:19 +04:00
|
|
|
char *status;
|
2009-09-16 02:49:33 +04:00
|
|
|
char *wintitle;
|
2010-03-17 02:55:39 +03:00
|
|
|
char *helphints[GID_LAST];
|
2008-08-02 18:31:32 +04:00
|
|
|
};
|
|
|
|
|
2008-10-05 03:29:17 +04:00
|
|
|
struct gui_window
|
|
|
|
{
|
|
|
|
struct gui_window_2 *shared;
|
|
|
|
int tab;
|
|
|
|
struct Node *tab_node;
|
2008-10-19 15:33:05 +04:00
|
|
|
int c_x;
|
|
|
|
int c_y;
|
|
|
|
int c_h;
|
2010-03-15 22:00:21 +03:00
|
|
|
int c_h_temp;
|
2008-11-09 02:08:55 +03:00
|
|
|
int scrollx;
|
|
|
|
int scrolly;
|
2009-03-15 14:21:46 +03:00
|
|
|
struct history_window *hw;
|
2009-03-28 15:50:19 +03:00
|
|
|
struct List dllist;
|
2009-12-19 16:42:48 +03:00
|
|
|
struct content *favicon;
|
2009-09-06 14:48:14 +04:00
|
|
|
bool throbbing;
|
2010-03-18 01:15:03 +03:00
|
|
|
char *tabtitle;
|
2008-10-05 03:29:17 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
void ami_get_msg(void);
|
2008-10-06 11:07:33 +04:00
|
|
|
void ami_close_all_tabs(struct gui_window_2 *gwin);
|
2008-10-06 21:47:31 +04:00
|
|
|
void ami_quit_netsurf(void);
|
2009-05-31 19:05:26 +04:00
|
|
|
void ami_do_redraw(struct gui_window_2 *g);
|
2009-06-22 02:12:52 +04:00
|
|
|
STRPTR ami_locale_langs(void);
|
2008-10-05 03:29:17 +04:00
|
|
|
|
2008-08-17 20:22:40 +04:00
|
|
|
struct TextFont *origrpfont;
|
2008-08-31 01:32:05 +04:00
|
|
|
struct MinList *window_list;
|
|
|
|
struct Screen *scrn;
|
|
|
|
STRPTR nsscreentitle;
|
2008-09-04 02:02:41 +04:00
|
|
|
struct FileRequester *filereq;
|
2009-01-11 00:31:21 +03:00
|
|
|
struct FileRequester *savereq;
|
2008-09-21 20:28:45 +04:00
|
|
|
struct MsgPort *sport;
|
2008-09-28 00:56:25 +04:00
|
|
|
bool win_destroyed;
|
2008-10-26 02:22:34 +03:00
|
|
|
struct browser_window *curbw;
|
2009-07-07 23:28:34 +04:00
|
|
|
struct gui_globals browserglob;
|
2010-02-13 20:31:10 +03:00
|
|
|
uint32 ami_appid;
|
2008-08-02 18:31:32 +04:00
|
|
|
#endif
|