2008-08-02 18:31:32 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "desktop/gui.h"
|
|
|
|
#include "desktop/netsurf.h"
|
2008-08-03 20:13:57 +04:00
|
|
|
#include "desktop/options.h"
|
2008-08-02 18:31:32 +04:00
|
|
|
#include "utils/messages.h"
|
|
|
|
#include <proto/exec.h>
|
|
|
|
#include <proto/intuition.h>
|
|
|
|
#include "amiga/gui.h"
|
|
|
|
#include "amiga/plotters.h"
|
2008-08-03 20:13:57 +04:00
|
|
|
#include "amiga/schedule.h"
|
|
|
|
#include "amiga/object.h"
|
|
|
|
#include <proto/timer.h>
|
2008-08-09 19:19:04 +04:00
|
|
|
#include "content/urldb.h"
|
|
|
|
#include <libraries/keymap.h>
|
2008-08-10 00:27:36 +04:00
|
|
|
#include "desktop/history_core.h"
|
|
|
|
#include <proto/locale.h>
|
|
|
|
#include <proto/dos.h>
|
2008-08-11 21:53:45 +04:00
|
|
|
#include <intuition/icclass.h>
|
|
|
|
#include <proto/utility.h>
|
2008-08-09 02:38:13 +04:00
|
|
|
#include <proto/graphics.h>
|
2008-08-11 21:53:45 +04:00
|
|
|
#include <proto/Picasso96API.h>
|
2008-08-17 20:22:40 +04:00
|
|
|
#include "render/form.h"
|
|
|
|
#include <graphics/rpattr.h>
|
2008-08-19 22:31:56 +04:00
|
|
|
#include <libraries/gadtools.h>
|
2008-08-22 01:41:42 +04:00
|
|
|
#include <proto/layers.h>
|
|
|
|
#include <proto/asl.h>
|
|
|
|
#include <proto/iffparse.h>
|
|
|
|
#include <datatypes/textclass.h>
|
|
|
|
#include "desktop/selection.h"
|
2008-08-23 20:17:51 +04:00
|
|
|
#include <proto/codesets.h>
|
|
|
|
#include "utils/utf8.h"
|
|
|
|
#include "amiga/utf8.h"
|
2008-08-24 01:56:49 +04:00
|
|
|
#include "amiga/hotlist.h"
|
2008-08-25 17:32:26 +04:00
|
|
|
#include "amiga/menu.h"
|
|
|
|
#include "amiga/options.h"
|
|
|
|
#include <libraries/keymap.h>
|
|
|
|
#include "desktop/textinput.h"
|
2008-08-11 21:53:45 +04:00
|
|
|
|
2008-08-15 21:19:57 +04:00
|
|
|
#ifdef WITH_HUBBUB
|
|
|
|
#include <hubbub/hubbub.h>
|
|
|
|
#endif
|
|
|
|
|
2008-08-09 02:38:13 +04:00
|
|
|
#include <proto/window.h>
|
|
|
|
#include <proto/layout.h>
|
|
|
|
#include <proto/bitmap.h>
|
|
|
|
#include <proto/string.h>
|
2008-08-09 19:19:04 +04:00
|
|
|
#include <proto/button.h>
|
2008-08-11 21:53:45 +04:00
|
|
|
#include <proto/space.h>
|
2008-08-18 23:07:12 +04:00
|
|
|
#include <proto/popupmenu.h>
|
2008-08-23 20:17:51 +04:00
|
|
|
#include <proto/fuelgauge.h>
|
2008-08-09 02:38:13 +04:00
|
|
|
#include <classes/window.h>
|
2008-08-23 20:17:51 +04:00
|
|
|
#include <gadgets/fuelgauge.h>
|
2008-08-09 02:38:13 +04:00
|
|
|
#include <gadgets/layout.h>
|
|
|
|
#include <gadgets/string.h>
|
2008-08-09 19:19:04 +04:00
|
|
|
#include <gadgets/scroller.h>
|
|
|
|
#include <gadgets/button.h>
|
2008-08-09 02:38:13 +04:00
|
|
|
#include <images/bitmap.h>
|
2008-08-11 21:53:45 +04:00
|
|
|
#include <gadgets/space.h>
|
2008-08-18 23:07:12 +04:00
|
|
|
#include <classes/popupmenu.h>
|
2008-08-09 02:38:13 +04:00
|
|
|
#include <reaction/reaction_macros.h>
|
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
struct browser_window *curbw;
|
|
|
|
|
|
|
|
char *default_stylesheet_url;
|
|
|
|
char *adblock_stylesheet_url;
|
|
|
|
struct gui_window *search_current_window = NULL;
|
2008-08-09 19:19:04 +04:00
|
|
|
struct MinList *window_list;
|
|
|
|
|
2008-08-03 20:13:57 +04:00
|
|
|
struct MsgPort *msgport;
|
|
|
|
struct timerequest *tioreq;
|
|
|
|
struct Device *TimerBase;
|
|
|
|
struct TimerIFace *ITimer;
|
2008-08-18 23:07:12 +04:00
|
|
|
struct Library *PopupMenuBase = NULL;
|
|
|
|
struct PopupMenuIFace *IPopupMenu = NULL;
|
2008-08-23 20:17:51 +04:00
|
|
|
struct Library *CodesetsBase = NULL;
|
|
|
|
struct CodesetsIFace *ICodesets = NULL;
|
2008-08-09 02:38:13 +04:00
|
|
|
|
2008-08-18 23:07:12 +04:00
|
|
|
struct Screen *scrn;
|
2008-08-10 13:57:41 +04:00
|
|
|
bool win_destroyed = false;
|
2008-08-22 01:41:42 +04:00
|
|
|
static struct RastPort dummyrp;
|
|
|
|
struct FileRequester *filereq;
|
|
|
|
struct IFFHandle *iffh = NULL;
|
2008-08-23 20:17:51 +04:00
|
|
|
STRPTR nsscreentitle = NULL;
|
2008-08-24 01:56:49 +04:00
|
|
|
struct tree *hotlist;
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2008-08-10 00:27:36 +04:00
|
|
|
void ami_update_buttons(struct gui_window *);
|
2008-08-15 21:19:57 +04:00
|
|
|
void ami_scroller_hook(struct Hook *,Object *,struct IntuiMessage *);
|
2008-08-18 23:07:12 +04:00
|
|
|
uint32 ami_popup_hook(struct Hook *hook,Object *item,APTR reserved);
|
2008-08-15 21:19:57 +04:00
|
|
|
void ami_do_redraw(struct gui_window *g);
|
|
|
|
#ifdef WITH_HUBBUB
|
|
|
|
static void *myrealloc(void *ptr, size_t len, void *pw);
|
|
|
|
#endif
|
2008-08-10 00:27:36 +04:00
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
void gui_init(int argc, char** argv)
|
|
|
|
{
|
2008-08-10 00:27:36 +04:00
|
|
|
struct Locale *locale;
|
|
|
|
char lang[100];
|
|
|
|
bool found=FALSE;
|
|
|
|
int i;
|
|
|
|
BPTR lock=0;
|
|
|
|
|
2008-08-03 20:13:57 +04:00
|
|
|
msgport = AllocSysObjectTags(ASOT_PORT,
|
|
|
|
ASO_NoTrack,FALSE,
|
|
|
|
TAG_DONE);
|
|
|
|
|
|
|
|
tioreq= (struct timerequest *)AllocSysObjectTags(ASOT_IOREQUEST,
|
|
|
|
ASOIOR_Size,sizeof(struct timerequest),
|
|
|
|
ASOIOR_ReplyPort,msgport,
|
|
|
|
ASO_NoTrack,FALSE,
|
|
|
|
TAG_DONE);
|
2008-08-02 18:31:32 +04:00
|
|
|
|
2008-08-03 20:13:57 +04:00
|
|
|
OpenDevice("timer.device",UNIT_VBLANK,(struct IORequest *)tioreq,0);
|
|
|
|
|
|
|
|
TimerBase = (struct Device *)tioreq->tr_node.io_Device;
|
|
|
|
ITimer = (struct TimerIFace *)GetInterface((struct Library *)TimerBase,"main",1,NULL);
|
|
|
|
|
2008-08-18 23:07:12 +04:00
|
|
|
if(PopupMenuBase = OpenLibrary("popupmenu.class",0))
|
|
|
|
{
|
|
|
|
IPopupMenu = (struct PopupMenuIFace *)GetInterface(PopupMenuBase,"main",1,NULL);
|
|
|
|
}
|
|
|
|
|
2008-08-23 20:17:51 +04:00
|
|
|
if(CodesetsBase = OpenLibrary("codesets.library",0))
|
|
|
|
{
|
|
|
|
ICodesets = (struct CodesetsIFace *)GetInterface(CodesetsBase,"main",1,NULL);
|
|
|
|
}
|
|
|
|
|
2008-08-22 01:41:42 +04:00
|
|
|
filereq = (struct FileRequester *)AllocAslRequest(ASL_FileRequest,NULL);
|
|
|
|
|
|
|
|
if(iffh = AllocIFF())
|
|
|
|
{
|
|
|
|
if(iffh->iff_Stream = OpenClipboard(0))
|
|
|
|
{
|
|
|
|
InitIFFasClip(iffh);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-18 23:07:12 +04:00
|
|
|
/* need to do some proper checking that components are opening */
|
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
options_read("Resources/Options");
|
|
|
|
|
|
|
|
verbose_log = option_verbose_log;
|
2008-08-09 19:19:04 +04:00
|
|
|
|
2008-08-23 20:17:51 +04:00
|
|
|
nsscreentitle = ASPrintf("NetSurf %s",netsurf_version);
|
|
|
|
|
2008-08-10 00:27:36 +04:00
|
|
|
if(lock=Lock("Resources/LangNames",ACCESS_READ))
|
2008-08-09 19:19:04 +04:00
|
|
|
{
|
2008-08-10 00:27:36 +04:00
|
|
|
UnLock(lock);
|
|
|
|
messages_load("Resources/LangNames");
|
2008-08-09 19:19:04 +04:00
|
|
|
}
|
2008-08-10 00:27:36 +04:00
|
|
|
|
|
|
|
locale = OpenLocale(NULL);
|
|
|
|
|
|
|
|
for(i=0;i<10;i++)
|
2008-08-09 19:19:04 +04:00
|
|
|
{
|
2008-08-10 00:27:36 +04:00
|
|
|
strcpy(&lang,"Resources/");
|
|
|
|
if(locale->loc_PrefLanguages[i])
|
|
|
|
{
|
|
|
|
strcat(&lang,messages_get(locale->loc_PrefLanguages[i]));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
strcat(&lang,"/messages");
|
2008-08-23 20:17:51 +04:00
|
|
|
// printf("%s\n",lang);
|
2008-08-10 00:27:36 +04:00
|
|
|
if(lock=Lock(lang,ACCESS_READ))
|
|
|
|
{
|
|
|
|
UnLock(lock);
|
|
|
|
found=TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!found)
|
|
|
|
{
|
|
|
|
strcpy(&lang,"Resources/en/messages");
|
2008-08-09 19:19:04 +04:00
|
|
|
}
|
|
|
|
|
2008-08-10 00:27:36 +04:00
|
|
|
CloseLocale(locale);
|
|
|
|
|
|
|
|
messages_load(lang); // check locale language and read appropriate file
|
|
|
|
|
|
|
|
default_stylesheet_url = "file://NetSurf/Resources/default.css"; //"http://www.unsatisfactorysoftware.co.uk/newlook.css"; //path_to_url(buf);
|
|
|
|
adblock_stylesheet_url = "file://NetSurf/Resources/adblock.css";
|
2008-08-15 21:19:57 +04:00
|
|
|
|
|
|
|
#ifdef WITH_HUBBUB
|
|
|
|
if(hubbub_initialise("Resources/Aliases",myrealloc,NULL) != HUBBUB_OK)
|
|
|
|
{
|
|
|
|
die(messages_get("NoMemory"));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-08-12 21:47:35 +04:00
|
|
|
if((!option_cookie_file) || (option_cookie_file[0] == '\0'))
|
2008-08-10 00:27:36 +04:00
|
|
|
option_cookie_file = strdup("Resources/Cookies");
|
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
if((!option_hotlist_file) || (option_hotlist_file[0] == '\0'))
|
|
|
|
option_hotlist_file = strdup("Resources/Hotlist");
|
|
|
|
|
|
|
|
if((!option_url_file) || (option_url_file[0] == '\0'))
|
|
|
|
option_url_file = strdup("Resources/URLs");
|
|
|
|
|
|
|
|
/*
|
2008-08-12 21:47:35 +04:00
|
|
|
if((!option_cookie_jar) || (option_cookie_jar[0] == '\0'))
|
2008-08-15 21:19:57 +04:00
|
|
|
option_cookie_jar = strdup("Resources/CookieJar");
|
2008-08-25 17:32:26 +04:00
|
|
|
*/
|
2008-08-10 00:27:36 +04:00
|
|
|
|
2008-08-12 21:47:35 +04:00
|
|
|
if((!option_ca_bundle) || (option_ca_bundle[0] == '\0'))
|
2008-08-10 13:57:41 +04:00
|
|
|
option_ca_bundle = strdup("devs:curl-ca-bundle.crt");
|
|
|
|
|
2008-08-12 21:47:35 +04:00
|
|
|
if((!option_font_sans) || (option_font_sans[0] == '\0'))
|
2008-08-10 13:57:41 +04:00
|
|
|
option_font_sans = strdup("DejaVu Sans.font");
|
|
|
|
|
2008-08-12 21:47:35 +04:00
|
|
|
if((!option_font_serif) || (option_font_serif[0] == '\0'))
|
2008-08-10 13:57:41 +04:00
|
|
|
option_font_serif = strdup("DejaVu Serif.font");
|
|
|
|
|
2008-08-12 21:47:35 +04:00
|
|
|
if((!option_font_mono) || (option_font_mono[0] == '\0'))
|
2008-08-10 13:57:41 +04:00
|
|
|
option_font_mono = strdup("DejaVu Sans Mono.font");
|
|
|
|
|
2008-08-12 21:47:35 +04:00
|
|
|
if((!option_font_cursive) || (option_font_cursive[0] == '\0'))
|
2008-08-10 13:57:41 +04:00
|
|
|
option_font_cursive = strdup("DejaVu Sans.font");
|
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
if((!option_font_fantasy) || (option_font_fantasy[0] == '\0'))
|
2008-08-10 13:57:41 +04:00
|
|
|
option_font_fantasy = strdup("DejaVu Serif.font");
|
2008-08-10 00:27:36 +04:00
|
|
|
|
2008-08-18 23:07:12 +04:00
|
|
|
if(!option_window_width) option_window_width = 800;
|
|
|
|
if(!option_window_height) option_window_height = 600;
|
|
|
|
if(!option_window_screen_width) option_window_screen_width = 800;
|
|
|
|
if(!option_window_screen_height) option_window_screen_height = 600;
|
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
plot=amiplot;
|
2008-08-03 20:13:57 +04:00
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
ami_init_menulabs();
|
|
|
|
|
2008-08-03 20:13:57 +04:00
|
|
|
schedule_list = NewObjList();
|
2008-08-09 19:19:04 +04:00
|
|
|
window_list = NewObjList();
|
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
urldb_load(option_url_file);
|
2008-08-09 19:19:04 +04:00
|
|
|
urldb_load_cookies(option_cookie_file);
|
2008-08-25 17:32:26 +04:00
|
|
|
hotlist = options_load_tree(option_hotlist_file);
|
2008-08-03 20:13:57 +04:00
|
|
|
|
2008-08-24 01:56:49 +04:00
|
|
|
if(!hotlist) ami_hotlist_init(&hotlist);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_init2(int argc, char** argv)
|
|
|
|
{
|
|
|
|
struct browser_window *bw;
|
2008-08-18 23:07:12 +04:00
|
|
|
ULONG id;
|
2008-08-09 19:19:04 +04:00
|
|
|
// const char *addr = NETSURF_HOMEPAGE; //"http://netsurf-browser.org/welcome/";
|
2008-08-02 18:31:32 +04:00
|
|
|
|
2008-08-22 01:41:42 +04:00
|
|
|
InitRastPort(&dummyrp);
|
|
|
|
dummyrp.BitMap = p96AllocBitMap(1,1,32,
|
|
|
|
BMF_CLEAR | BMF_DISPLAYABLE | BMF_INTERLEAVED,
|
|
|
|
NULL,RGBFB_A8R8G8B8);
|
|
|
|
|
2008-08-12 21:47:35 +04:00
|
|
|
if ((!option_homepage_url) || (option_homepage_url[0] == '\0'))
|
2008-08-09 19:19:04 +04:00
|
|
|
option_homepage_url = strdup(NETSURF_HOMEPAGE);
|
|
|
|
|
2008-08-18 23:07:12 +04:00
|
|
|
/* need some bestmodeid() in here, or grab modeid from options file */
|
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
if(option_modeid)
|
|
|
|
{
|
|
|
|
id = option_modeid;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
id = p96BestModeIDTags(P96BIDTAG_NominalWidth,option_window_screen_width,
|
2008-08-18 23:07:12 +04:00
|
|
|
P96BIDTAG_NominalHeight,option_window_screen_height,
|
|
|
|
P96BIDTAG_Depth,32);
|
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
if(id == INVALID_ID) die(messages_get("NoMode"));
|
|
|
|
}
|
2008-08-18 23:07:12 +04:00
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
if(option_use_wb)
|
|
|
|
{
|
|
|
|
scrn = LockPubScreen("Workbench");
|
|
|
|
UnlockPubScreen(NULL,scrn);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
scrn = OpenScreenTags(NULL,
|
2008-08-18 23:07:12 +04:00
|
|
|
SA_Width,option_window_screen_width,
|
|
|
|
SA_Height,option_window_screen_height,
|
2008-08-09 02:38:13 +04:00
|
|
|
SA_Depth,32,
|
2008-08-18 23:07:12 +04:00
|
|
|
SA_DisplayID,id,
|
2008-08-23 20:17:51 +04:00
|
|
|
SA_Title,nsscreentitle,
|
2008-08-09 02:38:13 +04:00
|
|
|
SA_LikeWorkbench,TRUE,
|
|
|
|
TAG_DONE);
|
2008-08-25 17:32:26 +04:00
|
|
|
}
|
2008-08-09 02:38:13 +04:00
|
|
|
|
2008-08-24 21:17:33 +04:00
|
|
|
bw = browser_window_create(option_homepage_url, 0, 0, true,false); // curbw = temp
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void ami_get_msg(void)
|
|
|
|
{
|
|
|
|
struct IntuiMessage *message = NULL;
|
2008-08-19 22:31:56 +04:00
|
|
|
ULONG class,result,storage = 0,x,y,xs,ys,width=800,height=600;
|
|
|
|
uint16 code;
|
2008-08-11 21:53:45 +04:00
|
|
|
struct IBox *bbox;
|
2008-08-09 19:19:04 +04:00
|
|
|
struct nsObject *node;
|
|
|
|
struct nsObject *nnode;
|
|
|
|
struct gui_window *gwin,*destroywin=NULL;
|
2008-08-19 22:31:56 +04:00
|
|
|
struct MenuItem *item;
|
2008-08-02 18:31:32 +04:00
|
|
|
|
2008-08-09 19:19:04 +04:00
|
|
|
node = (struct nsObject *)window_list->mlh_Head;
|
2008-08-02 18:31:32 +04:00
|
|
|
|
2008-08-09 19:19:04 +04:00
|
|
|
while(nnode=(struct nsObject *)(node->dtz_Node.mln_Succ))
|
2008-08-09 02:38:13 +04:00
|
|
|
{
|
2008-08-09 19:19:04 +04:00
|
|
|
gwin = node->objstruct;
|
|
|
|
|
|
|
|
while((result = RA_HandleInput(gwin->objects[OID_MAIN],&code)) != WMHI_LASTMSG)
|
|
|
|
{
|
|
|
|
|
2008-08-09 02:38:13 +04:00
|
|
|
//printf("class %ld\n",class);
|
2008-08-09 19:19:04 +04:00
|
|
|
switch(result & WMHI_CLASSMASK) // class
|
|
|
|
{
|
|
|
|
case WMHI_MOUSEMOVE:
|
2008-08-11 21:53:45 +04:00
|
|
|
GetAttr(SPACE_AreaBox,gwin->gadgets[GID_BROWSER],&bbox);
|
|
|
|
|
2008-08-10 13:57:41 +04:00
|
|
|
GetAttr(SCROLLER_Top,gwin->objects[OID_HSCROLL],&xs);
|
2008-08-11 21:53:45 +04:00
|
|
|
x = gwin->win->MouseX - bbox->Left +xs;
|
|
|
|
|
2008-08-10 13:57:41 +04:00
|
|
|
GetAttr(SCROLLER_Top,gwin->objects[OID_VSCROLL],&ys);
|
2008-08-11 21:53:45 +04:00
|
|
|
y = gwin->win->MouseY - bbox->Top + ys;
|
2008-08-09 19:19:04 +04:00
|
|
|
|
2008-08-11 21:53:45 +04:00
|
|
|
width=bbox->Width;
|
|
|
|
height=bbox->Height;
|
2008-08-18 23:07:12 +04:00
|
|
|
|
2008-08-11 21:53:45 +04:00
|
|
|
if((x>=xs) && (y>=ys) && (x<width+xs) && (y<height+ys))
|
2008-08-09 19:19:04 +04:00
|
|
|
{
|
2008-08-18 23:07:12 +04:00
|
|
|
if(gwin->mouse_state & BROWSER_MOUSE_PRESS_1)
|
|
|
|
{
|
|
|
|
browser_window_mouse_track(gwin->bw,BROWSER_MOUSE_DRAG_1,x,y);
|
|
|
|
gwin->mouse_state = BROWSER_MOUSE_HOLDING_1 | BROWSER_MOUSE_DRAG_ON;
|
|
|
|
}
|
|
|
|
else if(gwin->mouse_state & BROWSER_MOUSE_PRESS_2)
|
|
|
|
{
|
|
|
|
browser_window_mouse_track(gwin->bw,BROWSER_MOUSE_DRAG_2,x,y);
|
|
|
|
gwin->mouse_state = BROWSER_MOUSE_HOLDING_2 | BROWSER_MOUSE_DRAG_ON;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
browser_window_mouse_track(gwin->bw,gwin->mouse_state,x,y);
|
|
|
|
}
|
2008-08-09 19:19:04 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WMHI_MOUSEBUTTONS:
|
2008-08-11 21:53:45 +04:00
|
|
|
GetAttr(SPACE_AreaBox,gwin->gadgets[GID_BROWSER],(ULONG *)&bbox);
|
2008-08-10 13:57:41 +04:00
|
|
|
GetAttr(SCROLLER_Top,gwin->objects[OID_HSCROLL],&xs);
|
2008-08-11 21:53:45 +04:00
|
|
|
x = gwin->win->MouseX - bbox->Left +xs;
|
2008-08-10 13:57:41 +04:00
|
|
|
GetAttr(SCROLLER_Top,gwin->objects[OID_VSCROLL],&ys);
|
2008-08-11 21:53:45 +04:00
|
|
|
y = gwin->win->MouseY - bbox->Top + ys;
|
2008-08-09 19:19:04 +04:00
|
|
|
|
2008-08-11 21:53:45 +04:00
|
|
|
width=bbox->Width;
|
|
|
|
height=bbox->Height;
|
|
|
|
|
|
|
|
if((x>=xs) && (y>=ys) && (x<width+xs) && (y<height+ys))
|
2008-08-09 19:19:04 +04:00
|
|
|
{
|
2008-08-19 22:31:56 +04:00
|
|
|
//code = code>>16;
|
2008-08-09 19:19:04 +04:00
|
|
|
switch(code)
|
|
|
|
{
|
2008-08-18 23:07:12 +04:00
|
|
|
/* various things aren't implemented here yet, like shift-clicks, ctrl-clicks etc */
|
2008-08-09 19:19:04 +04:00
|
|
|
case SELECTDOWN:
|
|
|
|
browser_window_mouse_click(gwin->bw,BROWSER_MOUSE_PRESS_1,x,y);
|
2008-08-18 23:07:12 +04:00
|
|
|
gwin->mouse_state=BROWSER_MOUSE_PRESS_1;
|
2008-08-09 19:19:04 +04:00
|
|
|
break;
|
|
|
|
case SELECTUP:
|
2008-08-18 23:07:12 +04:00
|
|
|
if(gwin->mouse_state & BROWSER_MOUSE_PRESS_1)
|
|
|
|
{
|
|
|
|
browser_window_mouse_click(gwin->bw,BROWSER_MOUSE_CLICK_1,x,y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
browser_window_mouse_drag_end(gwin->bw,0,x,y);
|
|
|
|
}
|
|
|
|
gwin->mouse_state=0;
|
2008-08-09 19:19:04 +04:00
|
|
|
break;
|
|
|
|
case MIDDLEDOWN:
|
|
|
|
browser_window_mouse_click(gwin->bw,BROWSER_MOUSE_PRESS_2,x,y);
|
2008-08-18 23:07:12 +04:00
|
|
|
gwin->mouse_state=BROWSER_MOUSE_PRESS_2;
|
2008-08-09 19:19:04 +04:00
|
|
|
break;
|
|
|
|
case MIDDLEUP:
|
2008-08-18 23:07:12 +04:00
|
|
|
if(gwin->mouse_state & BROWSER_MOUSE_PRESS_2)
|
|
|
|
{
|
|
|
|
browser_window_mouse_click(gwin->bw,BROWSER_MOUSE_CLICK_2,x,y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
browser_window_mouse_drag_end(gwin->bw,0,x,y);
|
|
|
|
}
|
|
|
|
gwin->mouse_state=0;
|
2008-08-09 19:19:04 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WMHI_GADGETUP:
|
|
|
|
switch(result & WMHI_GADGETMASK) //gadaddr->GadgetID) //result & WMHI_GADGETMASK)
|
|
|
|
{
|
|
|
|
case GID_URL:
|
|
|
|
GetAttr(STRINGA_TextVal,gwin->gadgets[GID_URL],&storage);
|
2008-08-10 00:27:36 +04:00
|
|
|
browser_window_go(gwin->bw,(char *)storage,NULL,true);
|
2008-08-10 13:57:41 +04:00
|
|
|
//printf("%s\n",(char *)storage);
|
2008-08-09 19:19:04 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GID_HOME:
|
2008-08-10 00:27:36 +04:00
|
|
|
browser_window_go(gwin->bw,option_homepage_url,NULL,true);
|
2008-08-09 19:19:04 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GID_STOP:
|
|
|
|
browser_window_stop(gwin->bw);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GID_RELOAD:
|
|
|
|
browser_window_reload(gwin->bw,false);
|
|
|
|
break;
|
2008-08-10 00:27:36 +04:00
|
|
|
|
|
|
|
case GID_BACK:
|
|
|
|
if(history_back_available(gwin->bw->history))
|
|
|
|
{
|
|
|
|
history_back(gwin->bw,gwin->bw->history);
|
|
|
|
}
|
|
|
|
|
|
|
|
ami_update_buttons(gwin);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GID_FORWARD:
|
|
|
|
if(history_forward_available(gwin->bw->history))
|
|
|
|
{
|
|
|
|
history_forward(gwin->bw,gwin->bw->history);
|
|
|
|
}
|
|
|
|
|
|
|
|
ami_update_buttons(gwin);
|
|
|
|
break;
|
2008-08-10 13:57:41 +04:00
|
|
|
|
|
|
|
default:
|
|
|
|
printf("GADGET: %ld\n",(result & WMHI_GADGETMASK));
|
|
|
|
break;
|
2008-08-09 19:19:04 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2008-08-19 22:31:56 +04:00
|
|
|
case WMHI_MENUPICK:
|
|
|
|
item = ItemAddress(gwin->win->MenuStrip,code);
|
|
|
|
while (code != MENUNULL)
|
|
|
|
{
|
|
|
|
ULONG menunum=0,itemnum=0,subnum=0;
|
|
|
|
menunum = MENUNUM(code);
|
|
|
|
itemnum = ITEMNUM(code);
|
|
|
|
subnum = SUBNUM(code);
|
2008-08-24 01:56:49 +04:00
|
|
|
|
2008-08-19 22:31:56 +04:00
|
|
|
switch(menunum)
|
|
|
|
{
|
|
|
|
case 0: // project
|
|
|
|
switch(itemnum)
|
|
|
|
{
|
2008-08-22 01:41:42 +04:00
|
|
|
struct browser_window *bw;
|
|
|
|
|
|
|
|
case 0: // new window
|
2008-08-24 21:17:33 +04:00
|
|
|
bw = browser_window_create(gwin->bw->current_content->url, 0, 0, true, false);
|
2008-08-22 01:41:42 +04:00
|
|
|
break;
|
|
|
|
|
2008-08-26 05:20:01 +04:00
|
|
|
case 2: // save
|
|
|
|
switch(subnum)
|
|
|
|
{
|
|
|
|
BPTR fh=0;
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
save_as_text(gwin->bw->current_content,"ram:ns_text");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
if(fh = FOpen("ram:ns_source",MODE_NEWFILE,0))
|
|
|
|
{
|
|
|
|
FWrite(fh,gwin->bw->current_content->source_data,1,gwin->bw->current_content->source_size);
|
|
|
|
FClose(fh);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
#ifdef WITH_PDF_EXPORT
|
|
|
|
pdf_set_scale(DEFAULT_EXPORT_SCALE);
|
|
|
|
save_as_pdf(gwin->bw->current_content,"ram:ns_pdf");
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 4: // close
|
2008-08-19 22:31:56 +04:00
|
|
|
browser_window_destroy(gwin->bw);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // edit
|
|
|
|
switch(itemnum)
|
|
|
|
{
|
|
|
|
case 0: // copy
|
|
|
|
gui_copy_to_clipboard(gwin->bw->sel);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // paste
|
|
|
|
gui_paste_from_clipboard(gwin,0,0);
|
|
|
|
break;
|
2008-08-25 17:32:26 +04:00
|
|
|
|
|
|
|
case 2: // select all
|
|
|
|
browser_window_key_press(gwin->bw, 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3: // clear selection
|
|
|
|
browser_window_key_press(gwin->bw, 26);
|
|
|
|
break;
|
2008-08-19 22:31:56 +04:00
|
|
|
}
|
|
|
|
break;
|
2008-08-24 01:56:49 +04:00
|
|
|
|
|
|
|
case 2: // hotlist
|
|
|
|
switch(itemnum)
|
|
|
|
{
|
|
|
|
case 0: // add
|
|
|
|
ami_hotlist_add(hotlist->root,gwin->bw->current_content);
|
|
|
|
options_save_tree(hotlist,"Resources/Hotlist","NetSurf hotlist");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // show
|
|
|
|
/* this along with save_tree above is very temporary! */
|
|
|
|
browser_window_go(gwin->bw,"file:///netsurf/resources/hotlist",NULL,true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
case 3: // settings
|
|
|
|
switch(itemnum)
|
|
|
|
{
|
|
|
|
case 0: // snapshot
|
|
|
|
option_window_x = gwin->win->LeftEdge;
|
|
|
|
option_window_y = gwin->win->TopEdge;
|
|
|
|
option_window_width = gwin->win->Width;
|
|
|
|
option_window_height = gwin->win->Height;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // save settings
|
|
|
|
options_write("Resources/Options");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2008-08-19 22:31:56 +04:00
|
|
|
}
|
2008-08-25 17:32:26 +04:00
|
|
|
if(win_destroyed) break;
|
2008-08-19 22:31:56 +04:00
|
|
|
code = item->NextSelect;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2008-08-09 19:19:04 +04:00
|
|
|
case WMHI_VANILLAKEY:
|
|
|
|
storage = result & WMHI_GADGETMASK;
|
|
|
|
|
2008-08-10 13:57:41 +04:00
|
|
|
//printf("%lx\n",storage);
|
2008-08-09 19:19:04 +04:00
|
|
|
|
|
|
|
browser_window_key_press(gwin->bw,storage);
|
|
|
|
break;
|
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
case WMHI_RAWKEY:
|
|
|
|
storage = result & WMHI_GADGETMASK;
|
|
|
|
switch(storage)
|
|
|
|
{
|
|
|
|
case RAWKEY_CRSRUP:
|
|
|
|
browser_window_key_press(gwin->bw,KEY_UP);
|
|
|
|
break;
|
|
|
|
case RAWKEY_CRSRDOWN:
|
|
|
|
browser_window_key_press(gwin->bw,KEY_DOWN);
|
|
|
|
break;
|
|
|
|
case RAWKEY_CRSRLEFT:
|
|
|
|
browser_window_key_press(gwin->bw,KEY_LEFT);
|
|
|
|
break;
|
|
|
|
case RAWKEY_CRSRRIGHT:
|
|
|
|
browser_window_key_press(gwin->bw,KEY_RIGHT);
|
|
|
|
break;
|
|
|
|
case RAWKEY_ESC:
|
|
|
|
browser_window_key_press(gwin->bw,27);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2008-08-11 21:53:45 +04:00
|
|
|
case WMHI_NEWSIZE:
|
|
|
|
GetAttr(SPACE_AreaBox,gwin->gadgets[GID_BROWSER],(ULONG *)&bbox);
|
|
|
|
browser_window_reformat(gwin->bw,bbox->Width,bbox->Height);
|
2008-08-15 21:19:57 +04:00
|
|
|
gwin->redraw_required = true;
|
|
|
|
//gui_window_redraw_window(gwin);
|
2008-08-11 21:53:45 +04:00
|
|
|
break;
|
|
|
|
|
2008-08-19 22:31:56 +04:00
|
|
|
case WMHI_CLOSEWINDOW:
|
2008-08-10 13:57:41 +04:00
|
|
|
browser_window_destroy(gwin->bw);
|
|
|
|
//destroywin=gwin;
|
2008-08-11 21:53:45 +04:00
|
|
|
break;
|
2008-08-09 19:19:04 +04:00
|
|
|
|
2008-08-11 21:53:45 +04:00
|
|
|
default:
|
2008-08-15 21:19:57 +04:00
|
|
|
// printf("class: %ld\n",(result & WMHI_CLASSMASK));
|
2008-08-11 21:53:45 +04:00
|
|
|
break;
|
2008-08-09 19:19:04 +04:00
|
|
|
}
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2008-08-22 01:41:42 +04:00
|
|
|
if(win_destroyed)
|
|
|
|
{
|
|
|
|
/* we can't be sure what state our window_list is in, so let's
|
|
|
|
jump out of the function and start again */
|
|
|
|
|
|
|
|
win_destroyed = false;
|
|
|
|
return;
|
|
|
|
}
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2008-08-22 01:41:42 +04:00
|
|
|
// ReplyMsg((struct Message *)message);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2008-08-17 20:22:40 +04:00
|
|
|
if(gwin->redraw_required)
|
|
|
|
ami_do_redraw(gwin);
|
|
|
|
|
2008-08-10 13:57:41 +04:00
|
|
|
node = nnode;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_multitask(void)
|
|
|
|
{
|
2008-08-09 19:19:04 +04:00
|
|
|
// printf("mtask\n");
|
2008-08-02 18:31:32 +04:00
|
|
|
ami_get_msg();
|
|
|
|
|
|
|
|
/* Commented out the below as we seem to have an odd concept of multitasking
|
|
|
|
where we can't wait for input as other things need to be done.
|
|
|
|
|
|
|
|
ULONG winsignal = 1L << curwin->win->UserPort->mp_SigBit;
|
|
|
|
ULONG signalmask = winsignal;
|
|
|
|
ULONG signals;
|
|
|
|
|
|
|
|
signals = Wait(signalmask);
|
|
|
|
|
|
|
|
if(signals & winsignal)
|
|
|
|
{
|
|
|
|
ami_get_msg();
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_poll(bool active)
|
|
|
|
{
|
|
|
|
// printf("poll\n");
|
|
|
|
ami_get_msg();
|
|
|
|
schedule_run();
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_quit(void)
|
|
|
|
{
|
2008-08-25 17:32:26 +04:00
|
|
|
urldb_save(option_url_file);
|
2008-08-09 19:19:04 +04:00
|
|
|
urldb_save_cookies(option_cookie_file);
|
2008-08-25 17:32:26 +04:00
|
|
|
options_save_tree(hotlist,option_hotlist_file,messages_get("TreeHotlist"));
|
2008-08-09 19:19:04 +04:00
|
|
|
|
2008-08-15 21:19:57 +04:00
|
|
|
#ifdef WITH_HUBBUB
|
|
|
|
hubbub_finalise(myrealloc,NULL);
|
|
|
|
#endif
|
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
if(!option_use_wb) CloseScreen(scrn);
|
2008-08-22 01:41:42 +04:00
|
|
|
p96FreeBitMap(dummyrp.BitMap);
|
2008-08-23 20:17:51 +04:00
|
|
|
FreeVec(nsscreentitle);
|
2008-08-22 01:41:42 +04:00
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
ami_free_menulabs();
|
|
|
|
|
2008-08-22 01:41:42 +04:00
|
|
|
if(iffh->iff_Stream) CloseClipboard((struct ClipboardHandle *)iffh->iff_Stream);
|
|
|
|
if(iffh) FreeIFF(iffh);
|
|
|
|
|
|
|
|
FreeAslRequest(filereq);
|
2008-08-09 02:38:13 +04:00
|
|
|
|
2008-08-23 20:17:51 +04:00
|
|
|
if(ICodesets) DropInterface((struct Interface *)ICodesets);
|
|
|
|
if(CodesetsBase) CloseLibrary(CodesetsBase);
|
|
|
|
|
2008-08-18 23:07:12 +04:00
|
|
|
if(IPopupMenu) DropInterface((struct Interface *)IPopupMenu);
|
|
|
|
if(PopupMenuBase) CloseLibrary(PopupMenuBase);
|
|
|
|
|
2008-08-03 20:13:57 +04:00
|
|
|
if(ITimer)
|
|
|
|
{
|
|
|
|
DropInterface((struct Interface *)ITimer);
|
|
|
|
}
|
|
|
|
|
|
|
|
CloseDevice((struct IORequest *) tioreq);
|
|
|
|
FreeSysObject(ASOT_IOREQUEST,tioreq);
|
|
|
|
FreeSysObject(ASOT_PORT,msgport);
|
|
|
|
|
|
|
|
FreeObjList(schedule_list);
|
2008-08-10 00:27:36 +04:00
|
|
|
FreeObjList(window_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ami_update_buttons(struct gui_window *gwin)
|
|
|
|
{
|
|
|
|
bool back=FALSE,forward=TRUE;
|
|
|
|
|
|
|
|
if(!history_back_available(gwin->bw->history))
|
|
|
|
{
|
|
|
|
back=TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(history_forward_available(gwin->bw->history))
|
|
|
|
{
|
|
|
|
forward=FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefreshSetGadgetAttrs(gwin->gadgets[GID_BACK],gwin->win,NULL,
|
|
|
|
GA_Disabled,back,
|
|
|
|
TAG_DONE);
|
|
|
|
|
|
|
|
RefreshSetGadgetAttrs(gwin->gadgets[GID_FORWARD],gwin->win,NULL,
|
|
|
|
GA_Disabled,forward,
|
|
|
|
TAG_DONE);
|
2008-08-19 22:31:56 +04:00
|
|
|
}
|
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
struct gui_window *gui_create_browser_window(struct browser_window *bw,
|
2008-08-24 21:17:33 +04:00
|
|
|
struct browser_window *clone, bool new_tab)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2008-08-24 21:17:33 +04:00
|
|
|
// tabs are ignored for the moment
|
2008-08-25 17:32:26 +04:00
|
|
|
struct NewMenu *menu;
|
2008-08-02 18:31:32 +04:00
|
|
|
struct gui_window *gwin = NULL;
|
2008-08-10 00:27:36 +04:00
|
|
|
bool closegadg=TRUE;
|
2008-08-25 17:32:26 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
if(bw->browser_window_type == BROWSER_WINDOW_IFRAME)
|
|
|
|
{
|
|
|
|
gwin = bw->parent->window;
|
|
|
|
printf("%lx\n",gwin);
|
|
|
|
return gwin;
|
|
|
|
}
|
|
|
|
*/
|
2008-08-02 18:31:32 +04:00
|
|
|
|
|
|
|
gwin = AllocVec(sizeof(struct gui_window),MEMF_CLEAR);
|
|
|
|
|
2008-08-11 21:53:45 +04:00
|
|
|
gwin->scrollerhook.h_Entry = ami_scroller_hook;
|
|
|
|
gwin->scrollerhook.h_Data = gwin;
|
2008-08-09 02:38:13 +04:00
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
if(!gwin)
|
|
|
|
{
|
2008-08-09 02:38:13 +04:00
|
|
|
printf(messages_get("NoMemory"));
|
2008-08-02 18:31:32 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-25 17:32:26 +04:00
|
|
|
menu = ami_create_menu(bw->browser_window_type);
|
|
|
|
|
2008-08-09 19:19:04 +04:00
|
|
|
switch(bw->browser_window_type)
|
|
|
|
{
|
2008-08-25 17:32:26 +04:00
|
|
|
case BROWSER_WINDOW_IFRAME:
|
2008-08-09 19:19:04 +04:00
|
|
|
case BROWSER_WINDOW_FRAMESET:
|
|
|
|
case BROWSER_WINDOW_FRAME:
|
2008-08-11 21:53:45 +04:00
|
|
|
gwin->objects[OID_MAIN] = WindowObject,
|
2008-08-23 20:17:51 +04:00
|
|
|
WA_ScreenTitle,nsscreentitle,
|
2008-08-11 21:53:45 +04:00
|
|
|
WA_Title, messages_get("NetSurf"),
|
2008-08-25 17:32:26 +04:00
|
|
|
WA_Activate, FALSE,
|
2008-08-11 21:53:45 +04:00
|
|
|
WA_DepthGadget, TRUE,
|
|
|
|
WA_DragBar, TRUE,
|
|
|
|
WA_CloseGadget, FALSE,
|
2008-08-25 17:32:26 +04:00
|
|
|
WA_Width,200,
|
|
|
|
WA_Height,200,
|
2008-08-11 21:53:45 +04:00
|
|
|
WA_SizeGadget, TRUE,
|
|
|
|
WA_CustomScreen,scrn,
|
|
|
|
WA_ReportMouse,TRUE,
|
|
|
|
WA_IDCMP,IDCMP_MENUPICK | IDCMP_MOUSEMOVE | IDCMP_MOUSEBUTTONS |
|
2008-08-25 17:32:26 +04:00
|
|
|
IDCMP_NEWSIZE | IDCMP_VANILLAKEY | IDCMP_RAWKEY | IDCMP_GADGETUP | IDCMP_IDCMPUPDATE,
|
2008-08-11 21:53:45 +04:00
|
|
|
// WINDOW_IconifyGadget, TRUE,
|
2008-08-19 22:31:56 +04:00
|
|
|
WINDOW_NewMenu,menu,
|
2008-08-11 21:53:45 +04:00
|
|
|
WINDOW_HorizProp,1,
|
|
|
|
WINDOW_VertProp,1,
|
|
|
|
WINDOW_IDCMPHook,&gwin->scrollerhook,
|
|
|
|
WINDOW_IDCMPHookBits,IDCMP_IDCMPUPDATE,
|
2008-08-18 23:07:12 +04:00
|
|
|
// WINDOW_Position, WPOS_CENTERSCREEN,
|
2008-08-15 21:19:57 +04:00
|
|
|
// WINDOW_CharSet,106,
|
2008-08-11 21:53:45 +04:00
|
|
|
WINDOW_ParentGroup, gwin->gadgets[GID_MAIN] = VGroupObject,
|
2008-08-15 21:19:57 +04:00
|
|
|
// LAYOUT_CharSet,106,
|
2008-08-11 21:53:45 +04:00
|
|
|
LAYOUT_SpaceOuter, TRUE,
|
|
|
|
LAYOUT_AddChild, gwin->gadgets[GID_BROWSER] = SpaceObject,
|
|
|
|
GA_ID,GID_BROWSER,
|
2008-08-15 21:19:57 +04:00
|
|
|
/*
|
2008-08-11 21:53:45 +04:00
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
GA_Immediate,TRUE,
|
|
|
|
GA_FollowMouse,TRUE,
|
2008-08-15 21:19:57 +04:00
|
|
|
*/
|
2008-08-11 21:53:45 +04:00
|
|
|
SpaceEnd,
|
|
|
|
EndGroup,
|
|
|
|
EndWindow;
|
|
|
|
|
2008-08-10 00:27:36 +04:00
|
|
|
break;
|
2008-08-09 19:19:04 +04:00
|
|
|
case BROWSER_WINDOW_NORMAL:
|
2008-08-10 00:27:36 +04:00
|
|
|
gwin->objects[OID_MAIN] = WindowObject,
|
2008-08-23 20:17:51 +04:00
|
|
|
WA_ScreenTitle,nsscreentitle,
|
2008-08-10 00:27:36 +04:00
|
|
|
WA_Title, messages_get("NetSurf"),
|
|
|
|
WA_Activate, TRUE,
|
|
|
|
WA_DepthGadget, TRUE,
|
|
|
|
WA_DragBar, TRUE,
|
2008-08-11 21:53:45 +04:00
|
|
|
WA_CloseGadget, TRUE,
|
2008-08-10 00:27:36 +04:00
|
|
|
WA_SizeGadget, TRUE,
|
2008-08-25 17:32:26 +04:00
|
|
|
WA_Top,option_window_y,
|
|
|
|
WA_Left,option_window_x,
|
2008-08-18 23:07:12 +04:00
|
|
|
WA_Width,option_window_width,
|
|
|
|
WA_Height,option_window_height,
|
2008-08-10 00:27:36 +04:00
|
|
|
WA_CustomScreen,scrn,
|
|
|
|
WA_ReportMouse,TRUE,
|
|
|
|
WA_IDCMP,IDCMP_MENUPICK | IDCMP_MOUSEMOVE | IDCMP_MOUSEBUTTONS |
|
2008-08-25 17:32:26 +04:00
|
|
|
IDCMP_NEWSIZE | IDCMP_VANILLAKEY | IDCMP_RAWKEY | IDCMP_GADGETUP | IDCMP_IDCMPUPDATE,
|
2008-08-10 00:27:36 +04:00
|
|
|
// WINDOW_IconifyGadget, TRUE,
|
2008-08-19 22:31:56 +04:00
|
|
|
WINDOW_NewMenu,menu,
|
2008-08-10 00:27:36 +04:00
|
|
|
WINDOW_HorizProp,1,
|
|
|
|
WINDOW_VertProp,1,
|
2008-08-11 21:53:45 +04:00
|
|
|
WINDOW_IDCMPHook,&gwin->scrollerhook,
|
|
|
|
WINDOW_IDCMPHookBits,IDCMP_IDCMPUPDATE,
|
2008-08-18 23:07:12 +04:00
|
|
|
// WINDOW_Position, WPOS_CENTERSCREEN,
|
2008-08-15 21:19:57 +04:00
|
|
|
// WINDOW_CharSet,106,
|
2008-08-10 00:27:36 +04:00
|
|
|
WINDOW_ParentGroup, gwin->gadgets[GID_MAIN] = VGroupObject,
|
2008-08-15 21:19:57 +04:00
|
|
|
// LAYOUT_CharSet,106,
|
2008-08-10 00:27:36 +04:00
|
|
|
LAYOUT_SpaceOuter, TRUE,
|
|
|
|
LAYOUT_AddChild, HGroupObject,
|
|
|
|
LAYOUT_AddChild, gwin->gadgets[GID_BACK] = ButtonObject,
|
|
|
|
GA_ID,GID_BACK,
|
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
GA_Disabled,TRUE,
|
|
|
|
BUTTON_Transparent,TRUE,
|
|
|
|
BUTTON_RenderImage,BitMapObject,
|
|
|
|
BITMAP_SourceFile,"TBImages:nav_west",
|
|
|
|
BITMAP_SelectSourceFile,"TBImages:nav_west_s",
|
|
|
|
BITMAP_DisabledSourceFile,"TBImages:nav_west_g",
|
|
|
|
BITMAP_Screen,scrn,
|
|
|
|
BITMAP_Masking,TRUE,
|
|
|
|
BitMapEnd,
|
|
|
|
ButtonEnd,
|
|
|
|
CHILD_WeightedWidth,0,
|
|
|
|
CHILD_WeightedHeight,0,
|
|
|
|
LAYOUT_AddChild, gwin->gadgets[GID_FORWARD] = ButtonObject,
|
|
|
|
GA_ID,GID_FORWARD,
|
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
GA_Disabled,TRUE,
|
|
|
|
BUTTON_Transparent,TRUE,
|
|
|
|
BUTTON_RenderImage,BitMapObject,
|
|
|
|
BITMAP_SourceFile,"TBImages:nav_east",
|
|
|
|
BITMAP_SelectSourceFile,"TBImages:nav_east_s",
|
|
|
|
BITMAP_DisabledSourceFile,"TBImages:nav_east_g",
|
|
|
|
BITMAP_Screen,scrn,
|
|
|
|
BITMAP_Masking,TRUE,
|
|
|
|
BitMapEnd,
|
|
|
|
ButtonEnd,
|
|
|
|
CHILD_WeightedWidth,0,
|
|
|
|
CHILD_WeightedHeight,0,
|
|
|
|
LAYOUT_AddChild, gwin->gadgets[GID_STOP] = ButtonObject,
|
|
|
|
GA_ID,GID_STOP,
|
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
BUTTON_Transparent,TRUE,
|
|
|
|
BUTTON_RenderImage,BitMapObject,
|
|
|
|
BITMAP_SourceFile,"TBImages:stop",
|
|
|
|
BITMAP_SelectSourceFile,"TBImages:stop_s",
|
|
|
|
BITMAP_DisabledSourceFile,"TBImages:stop_g",
|
|
|
|
BITMAP_Screen,scrn,
|
|
|
|
BITMAP_Masking,TRUE,
|
|
|
|
BitMapEnd,
|
|
|
|
ButtonEnd,
|
|
|
|
CHILD_WeightedWidth,0,
|
|
|
|
CHILD_WeightedHeight,0,
|
|
|
|
LAYOUT_AddChild, gwin->gadgets[GID_RELOAD] = ButtonObject,
|
|
|
|
GA_ID,GID_RELOAD,
|
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
BUTTON_Transparent,TRUE,
|
|
|
|
BUTTON_RenderImage,BitMapObject,
|
|
|
|
BITMAP_SourceFile,"TBImages:reload",
|
|
|
|
BITMAP_SelectSourceFile,"TBImages:reload_s",
|
|
|
|
BITMAP_DisabledSourceFile,"TBImages:reload_g",
|
|
|
|
BITMAP_Screen,scrn,
|
|
|
|
BITMAP_Masking,TRUE,
|
|
|
|
BitMapEnd,
|
|
|
|
ButtonEnd,
|
|
|
|
CHILD_WeightedWidth,0,
|
|
|
|
CHILD_WeightedHeight,0,
|
|
|
|
LAYOUT_AddChild, gwin->gadgets[GID_HOME] = ButtonObject,
|
|
|
|
GA_ID,GID_HOME,
|
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
BUTTON_Transparent,TRUE,
|
|
|
|
BUTTON_RenderImage,BitMapObject,
|
|
|
|
BITMAP_SourceFile,"TBImages:home",
|
|
|
|
BITMAP_SelectSourceFile,"TBImages:home_s",
|
|
|
|
BITMAP_DisabledSourceFile,"TBImages:home_g",
|
|
|
|
BITMAP_Screen,scrn,
|
|
|
|
BITMAP_Masking,TRUE,
|
|
|
|
BitMapEnd,
|
|
|
|
ButtonEnd,
|
|
|
|
CHILD_WeightedWidth,0,
|
|
|
|
CHILD_WeightedHeight,0,
|
|
|
|
LAYOUT_AddChild, gwin->gadgets[GID_URL] = StringObject,
|
|
|
|
GA_ID,GID_URL,
|
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
StringEnd,
|
|
|
|
LayoutEnd,
|
2008-08-11 21:53:45 +04:00
|
|
|
CHILD_WeightedHeight,0,
|
|
|
|
LAYOUT_AddChild, gwin->gadgets[GID_BROWSER] = SpaceObject,
|
2008-08-10 00:27:36 +04:00
|
|
|
GA_ID,GID_BROWSER,
|
2008-08-15 21:19:57 +04:00
|
|
|
/*
|
2008-08-10 00:27:36 +04:00
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
GA_Immediate,TRUE,
|
|
|
|
GA_FollowMouse,TRUE,
|
2008-08-15 21:19:57 +04:00
|
|
|
*/
|
2008-08-11 21:53:45 +04:00
|
|
|
SpaceEnd,
|
2008-08-10 00:27:36 +04:00
|
|
|
LAYOUT_AddChild, gwin->gadgets[GID_STATUS] = StringObject,
|
|
|
|
GA_ID,GID_STATUS,
|
|
|
|
GA_ReadOnly,TRUE,
|
|
|
|
StringEnd,
|
|
|
|
CHILD_WeightedHeight,0,
|
|
|
|
EndGroup,
|
|
|
|
EndWindow;
|
|
|
|
|
2008-08-11 21:53:45 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-08-10 13:57:41 +04:00
|
|
|
gwin->win = (struct Window *)RA_OpenWindow(gwin->objects[OID_MAIN]);
|
|
|
|
|
|
|
|
gwin->bw = bw;
|
|
|
|
// curwin = gwin; //test
|
2008-08-11 21:53:45 +04:00
|
|
|
/* not needed - no rendering takes place here. */
|
2008-08-10 13:57:41 +04:00
|
|
|
currp = &gwin->rp; // WINDOW.CLASS: &gwin->rp; //gwin->win->RPort;
|
2008-08-10 00:27:36 +04:00
|
|
|
|
2008-08-11 21:53:45 +04:00
|
|
|
/* below needs to be allocated as big as the screen */
|
2008-08-18 23:07:12 +04:00
|
|
|
gwin->bm = p96AllocBitMap(scrn->Width,scrn->Height,32,
|
2008-08-11 21:53:45 +04:00
|
|
|
BMF_CLEAR | BMF_DISPLAYABLE | BMF_INTERLEAVED,
|
|
|
|
gwin->win->RPort->BitMap,RGBFB_A8R8G8B8);
|
|
|
|
|
|
|
|
InitRastPort(&gwin->rp);
|
|
|
|
gwin->rp.BitMap = gwin->bm;
|
2008-08-19 22:31:56 +04:00
|
|
|
SetDrMd(currp,BGBACKFILL);
|
2008-08-11 21:53:45 +04:00
|
|
|
|
2008-08-17 20:22:40 +04:00
|
|
|
GetRPAttrs(&gwin->rp,RPTAG_Font,&origrpfont,TAG_DONE);
|
|
|
|
|
2008-08-10 13:57:41 +04:00
|
|
|
GetAttr(WINDOW_HorizObject,gwin->objects[OID_MAIN],(ULONG *)&gwin->objects[OID_HSCROLL]);
|
|
|
|
GetAttr(WINDOW_VertObject,gwin->objects[OID_MAIN],(ULONG *)&gwin->objects[OID_VSCROLL]);
|
|
|
|
|
|
|
|
|
|
|
|
RefreshSetGadgetAttrs((APTR)gwin->objects[OID_VSCROLL],gwin->win,NULL,
|
2008-08-15 21:19:57 +04:00
|
|
|
/*
|
2008-08-10 13:57:41 +04:00
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
GA_Immediate,TRUE,
|
2008-08-15 21:19:57 +04:00
|
|
|
*/
|
2008-08-10 13:57:41 +04:00
|
|
|
GA_ID,OID_VSCROLL,
|
2008-08-11 21:53:45 +04:00
|
|
|
ICA_TARGET,ICTARGET_IDCMP,
|
|
|
|
TAG_DONE);
|
|
|
|
|
|
|
|
RefreshSetGadgetAttrs((APTR)gwin->objects[OID_HSCROLL],gwin->win,NULL,
|
2008-08-15 21:19:57 +04:00
|
|
|
/*
|
2008-08-11 21:53:45 +04:00
|
|
|
GA_RelVerify,TRUE,
|
|
|
|
GA_Immediate,TRUE,
|
2008-08-15 21:19:57 +04:00
|
|
|
*/
|
2008-08-11 21:53:45 +04:00
|
|
|
GA_ID,OID_HSCROLL,
|
|
|
|
ICA_TARGET,ICTARGET_IDCMP,
|
2008-08-10 13:57:41 +04:00
|
|
|
TAG_DONE);
|
2008-08-10 00:27:36 +04:00
|
|
|
|
2008-08-09 19:19:04 +04:00
|
|
|
gwin->node = AddObject(window_list,AMINS_WINDOW);
|
|
|
|
gwin->node->objstruct = gwin;
|
2008-08-02 18:31:32 +04:00
|
|
|
|
|
|
|
return gwin;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_destroy(struct gui_window *g)
|
|
|
|
{
|
2008-08-09 19:19:04 +04:00
|
|
|
DisposeObject(g->objects[OID_MAIN]);
|
|
|
|
p96FreeBitMap(g->bm);
|
|
|
|
DelObject(g->node);
|
|
|
|
// FreeVec(g); should be freed by DelObject()
|
|
|
|
|
|
|
|
if(IsMinListEmpty(window_list))
|
|
|
|
{
|
|
|
|
/* last window closed, so exit */
|
2008-08-25 17:32:26 +04:00
|
|
|
netsurf_quit = true;
|
2008-08-09 19:19:04 +04:00
|
|
|
}
|
2008-08-10 13:57:41 +04:00
|
|
|
|
|
|
|
win_destroyed = true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_set_title(struct gui_window *g, const char *title)
|
|
|
|
{
|
2008-08-23 20:17:51 +04:00
|
|
|
SetWindowTitles(g->win,title,nsscreentitle);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_redraw(struct gui_window *g, int x0, int y0, int x1, int y1)
|
|
|
|
{
|
|
|
|
DebugPrintF("REDRAW\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_redraw_window(struct gui_window *g)
|
2008-08-15 21:19:57 +04:00
|
|
|
{
|
|
|
|
g->redraw_required = true;
|
|
|
|
g->redraw_data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_update_box(struct gui_window *g,
|
|
|
|
const union content_msg_data *data)
|
|
|
|
{
|
2008-08-18 23:07:12 +04:00
|
|
|
struct content *c;
|
|
|
|
ULONG hcurrent,vcurrent,xoffset,yoffset,width=800,height=600;
|
|
|
|
struct IBox *bbox;
|
|
|
|
|
|
|
|
GetAttr(SPACE_AreaBox,g->gadgets[GID_BROWSER],(ULONG *)&bbox);
|
|
|
|
GetAttr(SCROLLER_Top,g->objects[OID_HSCROLL],&hcurrent);
|
|
|
|
GetAttr(SCROLLER_Top,g->objects[OID_VSCROLL],&vcurrent);
|
|
|
|
|
|
|
|
DebugPrintF("DOING REDRAW\n");
|
|
|
|
|
|
|
|
c = g->bw->current_content;
|
|
|
|
|
|
|
|
if(!c) return;
|
|
|
|
if (c->locked) return;
|
|
|
|
|
|
|
|
current_redraw_browser = g->bw;
|
|
|
|
|
|
|
|
currp = &g->rp;
|
|
|
|
|
|
|
|
width=bbox->Width;
|
|
|
|
height=bbox->Height;
|
|
|
|
xoffset=bbox->Left;
|
|
|
|
yoffset=bbox->Top;
|
|
|
|
|
2008-08-26 05:20:01 +04:00
|
|
|
plot=amiplot;
|
|
|
|
|
2008-08-18 23:07:12 +04:00
|
|
|
// if (c->type == CONTENT_HTML) scale = 1;
|
|
|
|
|
|
|
|
content_redraw(data->redraw.object,
|
|
|
|
floorf((data->redraw.object_x *
|
|
|
|
g->bw->scale)-hcurrent),
|
|
|
|
ceilf((data->redraw.object_y *
|
|
|
|
g->bw->scale)-vcurrent),
|
|
|
|
data->redraw.object_width *
|
|
|
|
g->bw->scale,
|
|
|
|
data->redraw.object_height *
|
|
|
|
g->bw->scale,
|
|
|
|
0,0,width,height,
|
|
|
|
g->bw->scale,
|
|
|
|
0xFFFFFF);
|
|
|
|
|
|
|
|
current_redraw_browser = NULL;
|
2008-08-22 01:41:42 +04:00
|
|
|
currp = &dummyrp;
|
2008-08-18 23:07:12 +04:00
|
|
|
|
|
|
|
ami_update_buttons(g);
|
|
|
|
|
|
|
|
BltBitMapRastPort(g->bm,0,0,g->win->RPort,xoffset,yoffset,width,height,0x0C0); // this blit needs optimising
|
|
|
|
|
|
|
|
/* doing immedaite redraw here for now
|
2008-08-15 21:19:57 +04:00
|
|
|
g->redraw_required = true;
|
|
|
|
g->redraw_data = data;
|
2008-08-18 23:07:12 +04:00
|
|
|
*/
|
2008-08-15 21:19:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void ami_do_redraw(struct gui_window *g)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2008-08-07 22:44:28 +04:00
|
|
|
struct content *c;
|
2008-08-11 21:53:45 +04:00
|
|
|
ULONG hcurrent,vcurrent,xoffset,yoffset,width=800,height=600;
|
|
|
|
struct IBox *bbox;
|
2008-08-22 01:41:42 +04:00
|
|
|
struct Region *region;
|
2008-08-09 19:19:04 +04:00
|
|
|
|
2008-08-11 21:53:45 +04:00
|
|
|
GetAttr(SPACE_AreaBox,g->gadgets[GID_BROWSER],(ULONG *)&bbox);
|
2008-08-10 13:57:41 +04:00
|
|
|
GetAttr(SCROLLER_Top,g->objects[OID_HSCROLL],&hcurrent);
|
|
|
|
GetAttr(SCROLLER_Top,g->objects[OID_VSCROLL],&vcurrent);
|
2008-08-07 22:44:28 +04:00
|
|
|
|
2008-08-15 21:19:57 +04:00
|
|
|
DebugPrintF("DOING REDRAW\n");
|
2008-08-07 22:44:28 +04:00
|
|
|
|
|
|
|
c = g->bw->current_content;
|
2008-08-10 00:27:36 +04:00
|
|
|
|
|
|
|
if(!c) return;
|
2008-08-18 23:07:12 +04:00
|
|
|
if (c->locked) return;
|
2008-08-10 00:27:36 +04:00
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
current_redraw_browser = g->bw;
|
|
|
|
|
2008-08-10 00:27:36 +04:00
|
|
|
currp = &g->rp;
|
2008-08-22 01:41:42 +04:00
|
|
|
/*
|
|
|
|
layerinfo = NewLayerInfo();
|
2008-08-23 20:17:51 +04:00
|
|
|
layer = CreateLayer(layerinfo,LAYA_BitMap,g->bm,LAYA_StayTop,TRUE,
|
2008-08-22 01:41:42 +04:00
|
|
|
LAYA_MinX,0,LAYA_MinY,0,LAYA_MaxX,1024,LAYA_MaxY,768,TAG_DONE);
|
|
|
|
currp = layer->rp;
|
|
|
|
// region = NewRegion();
|
|
|
|
// InstallClipRegion(layer,region);
|
|
|
|
*/
|
2008-08-11 21:53:45 +04:00
|
|
|
width=bbox->Width;
|
|
|
|
height=bbox->Height;
|
|
|
|
xoffset=bbox->Left;
|
|
|
|
yoffset=bbox->Top;
|
2008-08-26 05:20:01 +04:00
|
|
|
plot = amiplot;
|
2008-08-10 00:27:36 +04:00
|
|
|
|
|
|
|
// if (c->type == CONTENT_HTML) scale = 1;
|
|
|
|
|
2008-08-15 21:19:57 +04:00
|
|
|
/* temp get it to redraw everything ***
|
|
|
|
if(g->redraw_data)
|
|
|
|
{
|
|
|
|
content_redraw(g->redraw_data->redraw.object,
|
|
|
|
floorf((g->redraw_data->redraw.object_x *
|
|
|
|
g->bw->scale)-hcurrent),
|
|
|
|
ceilf((g->redraw_data->redraw.object_y *
|
|
|
|
g->bw->scale)-vcurrent),
|
|
|
|
g->redraw_data->redraw.object_width *
|
|
|
|
g->bw->scale,
|
|
|
|
g->redraw_data->redraw.object_height *
|
|
|
|
g->bw->scale,
|
|
|
|
0,0,width,height,
|
|
|
|
g->bw->scale,
|
|
|
|
0xFFFFFF);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-08-11 21:53:45 +04:00
|
|
|
*/
|
2008-08-15 21:19:57 +04:00
|
|
|
content_redraw(c, -hcurrent,-vcurrent,width,height,
|
|
|
|
0,0,width,height,
|
|
|
|
g->bw->scale,0xFFFFFF);
|
|
|
|
// }
|
2008-08-10 00:27:36 +04:00
|
|
|
|
|
|
|
current_redraw_browser = NULL;
|
2008-08-22 01:41:42 +04:00
|
|
|
currp = &dummyrp;
|
|
|
|
/*
|
|
|
|
// InstallClipRegion(layer,NULL);
|
|
|
|
// DisposeRegion(region);
|
|
|
|
DeleteLayer(0,layer);
|
|
|
|
DisposeLayerInfo(layerinfo);
|
|
|
|
*/
|
2008-08-15 21:19:57 +04:00
|
|
|
ami_update_buttons(g);
|
|
|
|
|
2008-08-11 21:53:45 +04:00
|
|
|
BltBitMapRastPort(g->bm,0,0,g->win->RPort,xoffset,yoffset,width,height,0x0C0);
|
|
|
|
|
2008-08-15 21:19:57 +04:00
|
|
|
g->redraw_required = false;
|
|
|
|
g->redraw_data = NULL;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool gui_window_get_scroll(struct gui_window *g, int *sx, int *sy)
|
|
|
|
{
|
2008-08-19 22:31:56 +04:00
|
|
|
GetAttr(SCROLLER_Top,g->objects[OID_HSCROLL],sx);
|
|
|
|
GetAttr(SCROLLER_Top,g->objects[OID_VSCROLL],sy);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_set_scroll(struct gui_window *g, int sx, int sy)
|
|
|
|
{
|
2008-08-10 13:57:41 +04:00
|
|
|
RefreshSetGadgetAttrs((APTR)g->objects[OID_VSCROLL],g->win,NULL,
|
2008-08-09 19:19:04 +04:00
|
|
|
SCROLLER_Top,sy,
|
|
|
|
TAG_DONE);
|
|
|
|
|
2008-08-10 13:57:41 +04:00
|
|
|
RefreshSetGadgetAttrs((APTR)g->objects[OID_HSCROLL],g->win,NULL,
|
2008-08-09 19:19:04 +04:00
|
|
|
SCROLLER_Top,sx,
|
|
|
|
TAG_DONE);
|
2008-08-19 22:31:56 +04:00
|
|
|
|
|
|
|
g->redraw_required = true;
|
|
|
|
g->redraw_data = NULL;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_scroll_visible(struct gui_window *g, int x0, int y0,
|
|
|
|
int x1, int y1)
|
|
|
|
{
|
2008-08-07 22:44:28 +04:00
|
|
|
printf("scr vis\n");
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_position_frame(struct gui_window *g, int x0, int y0,
|
|
|
|
int x1, int y1)
|
|
|
|
{
|
2008-08-17 20:22:40 +04:00
|
|
|
ChangeWindowBox(g->win,x0,y0,x1-x0,y1-y0);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_get_dimensions(struct gui_window *g, int *width, int *height,
|
|
|
|
bool scaled)
|
|
|
|
{
|
2008-08-11 21:53:45 +04:00
|
|
|
struct IBox *bbox;
|
2008-08-07 22:44:28 +04:00
|
|
|
|
2008-08-11 21:53:45 +04:00
|
|
|
GetAttr(SPACE_AreaBox,g->gadgets[GID_BROWSER],(ULONG *)&bbox);
|
|
|
|
|
|
|
|
*width = bbox->Width;
|
|
|
|
*height = bbox->Height;
|
2008-08-07 22:44:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
if(scaled)
|
|
|
|
{
|
|
|
|
*width /= g->bw->scale;
|
|
|
|
*height /= g->bw->scale;
|
|
|
|
}
|
|
|
|
*/
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_update_extent(struct gui_window *g)
|
|
|
|
{
|
2008-08-17 20:22:40 +04:00
|
|
|
struct IBox *bbox;
|
|
|
|
|
|
|
|
GetAttr(SPACE_AreaBox,g->gadgets[GID_BROWSER],(ULONG *)&bbox);
|
2008-08-09 19:19:04 +04:00
|
|
|
|
2008-08-22 01:41:42 +04:00
|
|
|
/*
|
2008-08-09 19:19:04 +04:00
|
|
|
printf("upd ext %ld,%ld\n",g->bw->current_content->width, // * g->bw->scale,
|
|
|
|
g->bw->current_content->height); // * g->bw->scale);
|
2008-08-22 01:41:42 +04:00
|
|
|
*/
|
2008-08-09 19:19:04 +04:00
|
|
|
|
2008-08-10 13:57:41 +04:00
|
|
|
RefreshSetGadgetAttrs((APTR)g->objects[OID_VSCROLL],g->win,NULL,
|
2008-08-09 19:19:04 +04:00
|
|
|
SCROLLER_Total,g->bw->current_content->height,
|
2008-08-17 20:22:40 +04:00
|
|
|
SCROLLER_Visible,bbox->Height,
|
2008-08-09 19:19:04 +04:00
|
|
|
SCROLLER_Top,0,
|
|
|
|
TAG_DONE);
|
|
|
|
|
2008-08-10 13:57:41 +04:00
|
|
|
RefreshSetGadgetAttrs((APTR)g->objects[OID_HSCROLL],g->win,NULL,
|
2008-08-09 19:19:04 +04:00
|
|
|
SCROLLER_Total,g->bw->current_content->width,
|
2008-08-17 20:22:40 +04:00
|
|
|
SCROLLER_Visible,bbox->Width,
|
2008-08-09 19:19:04 +04:00
|
|
|
SCROLLER_Top,0,
|
|
|
|
TAG_DONE);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_set_status(struct gui_window *g, const char *text)
|
|
|
|
{
|
2008-08-09 19:19:04 +04:00
|
|
|
RefreshSetGadgetAttrs(g->gadgets[GID_STATUS],g->win,NULL,STRINGA_TextVal,text,TAG_DONE);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_set_pointer(struct gui_window *g, gui_pointer_shape shape)
|
|
|
|
{
|
2008-08-07 22:44:28 +04:00
|
|
|
switch(shape)
|
|
|
|
{
|
|
|
|
case GUI_POINTER_WAIT:
|
|
|
|
SetWindowPointer(g->win,
|
|
|
|
WA_BusyPointer,TRUE,
|
|
|
|
WA_PointerDelay,TRUE,
|
|
|
|
TAG_DONE);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
SetWindowPointer(g->win,TAG_DONE);
|
|
|
|
break;
|
|
|
|
}
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_hide_pointer(struct gui_window *g)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_set_url(struct gui_window *g, const char *url)
|
|
|
|
{
|
2008-08-09 19:19:04 +04:00
|
|
|
RefreshSetGadgetAttrs(g->gadgets[GID_URL],g->win,NULL,STRINGA_TextVal,url,TAG_DONE);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_start_throbber(struct gui_window *g)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_stop_throbber(struct gui_window *g)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_place_caret(struct gui_window *g, int x, int y, int height)
|
|
|
|
{
|
2008-08-22 01:41:42 +04:00
|
|
|
struct IBox *bbox;
|
|
|
|
|
|
|
|
GetAttr(SPACE_AreaBox,g->gadgets[GID_BROWSER],(ULONG *)&bbox);
|
|
|
|
|
|
|
|
SetAPen(g->win->RPort,3);
|
|
|
|
RectFill(g->win->RPort,x+bbox->Left,y+bbox->Top,x+bbox->Left+2,y+bbox->Top+height);
|
|
|
|
|
|
|
|
g->c_x = x;
|
|
|
|
g->c_y = y;
|
|
|
|
g->c_h = height;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_remove_caret(struct gui_window *g)
|
|
|
|
{
|
2008-08-22 01:41:42 +04:00
|
|
|
struct IBox *bbox;
|
|
|
|
|
|
|
|
GetAttr(SPACE_AreaBox,g->gadgets[GID_BROWSER],(ULONG *)&bbox);
|
|
|
|
|
|
|
|
BltBitMapRastPort(g->bm,g->c_x,g->c_y,g->win->RPort,bbox->Left+g->c_x,bbox->Top+g->c_y,2,g->c_h,0x0C0);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_new_content(struct gui_window *g)
|
|
|
|
{
|
2008-08-07 22:44:28 +04:00
|
|
|
DebugPrintF("new content\n");
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool gui_window_scroll_start(struct gui_window *g)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool gui_window_box_scroll_start(struct gui_window *g,
|
|
|
|
int x0, int y0, int x1, int y1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool gui_window_frame_resize_start(struct gui_window *g)
|
|
|
|
{
|
2008-08-07 22:44:28 +04:00
|
|
|
printf("resize frame\n");
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_save_as_link(struct gui_window *g, struct content *c)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_window_set_scale(struct gui_window *g, float scale)
|
|
|
|
{
|
2008-08-07 22:44:28 +04:00
|
|
|
printf("set scale\n");
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
struct gui_download_window *gui_download_window_create(const char *url,
|
|
|
|
const char *mime_type, struct fetch *fetch,
|
|
|
|
unsigned int total_size, struct gui_window *gui)
|
|
|
|
{
|
2008-08-22 01:41:42 +04:00
|
|
|
char *fname = AllocVec(1024,MEMF_CLEAR);
|
2008-08-23 20:17:51 +04:00
|
|
|
struct gui_download_window *dw;
|
|
|
|
APTR va[3];
|
2008-08-22 01:41:42 +04:00
|
|
|
|
|
|
|
if(AslRequestTags(filereq,
|
|
|
|
ASLFR_TitleText,messages_get("NetSurf"),
|
|
|
|
ASLFR_Screen,scrn,
|
|
|
|
ASLFR_DoSaveMode,TRUE,
|
2008-08-23 20:17:51 +04:00
|
|
|
ASLFR_InitialFile,FilePart(url),
|
2008-08-22 01:41:42 +04:00
|
|
|
TAG_DONE))
|
|
|
|
{
|
|
|
|
strlcpy(fname,filereq->fr_Drawer,1024);
|
|
|
|
AddPart(fname,filereq->fr_File,1024);
|
|
|
|
}
|
2008-08-23 20:17:51 +04:00
|
|
|
else return NULL;
|
|
|
|
|
|
|
|
dw = AllocVec(sizeof(struct gui_download_window),MEMF_CLEAR);
|
|
|
|
|
|
|
|
dw->size = total_size;
|
|
|
|
dw->downloaded = 0;
|
|
|
|
|
|
|
|
va[0] = dw->downloaded;
|
|
|
|
va[1] = dw->size;
|
|
|
|
va[2] = 0;
|
|
|
|
|
|
|
|
if(!(dw->fh = FOpen(fname,MODE_NEWFILE,0)))
|
|
|
|
{
|
|
|
|
FreeVec(dw);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
dw->objects[OID_MAIN] = WindowObject,
|
|
|
|
WA_ScreenTitle,nsscreentitle,
|
|
|
|
WA_Title, url,
|
|
|
|
WA_Activate, TRUE,
|
|
|
|
WA_DepthGadget, TRUE,
|
|
|
|
WA_DragBar, TRUE,
|
|
|
|
WA_CloseGadget, FALSE,
|
|
|
|
WA_SizeGadget, TRUE,
|
|
|
|
WA_CustomScreen,scrn,
|
|
|
|
WINDOW_IconifyGadget, TRUE,
|
|
|
|
WINDOW_Position, WPOS_CENTERSCREEN,
|
|
|
|
WINDOW_ParentGroup, dw->gadgets[GID_MAIN] = VGroupObject,
|
|
|
|
LAYOUT_AddChild, dw->gadgets[GID_STATUS] = FuelGaugeObject,
|
|
|
|
GA_ID,GID_STATUS,
|
|
|
|
GA_Text,messages_get("amiDownload"),
|
|
|
|
FUELGAUGE_Min,0,
|
|
|
|
FUELGAUGE_Max,total_size,
|
|
|
|
FUELGAUGE_Level,0,
|
|
|
|
FUELGAUGE_Ticks,4,
|
|
|
|
FUELGAUGE_ShortTicks,4,
|
|
|
|
FUELGAUGE_VarArgs,va,
|
|
|
|
FUELGAUGE_Percent,FALSE,
|
|
|
|
FUELGAUGE_Justification,FGJ_CENTER,
|
|
|
|
StringEnd,
|
|
|
|
CHILD_NominalSize,TRUE,
|
|
|
|
CHILD_WeightedHeight,0,
|
|
|
|
EndGroup,
|
|
|
|
EndWindow;
|
|
|
|
|
|
|
|
dw->win = (struct Window *)RA_OpenWindow(dw->objects[OID_MAIN]);
|
|
|
|
|
|
|
|
dw->node = AddObject(window_list,AMINS_DLWINDOW);
|
|
|
|
dw->node->objstruct = dw;
|
|
|
|
|
|
|
|
return dw;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_download_window_data(struct gui_download_window *dw, const char *data,
|
|
|
|
unsigned int size)
|
|
|
|
{
|
2008-08-23 20:17:51 +04:00
|
|
|
APTR va[3];
|
|
|
|
if(!dw) return;
|
|
|
|
|
|
|
|
FWrite(dw->fh,data,1,size);
|
|
|
|
|
|
|
|
dw->downloaded = dw->downloaded + size;
|
|
|
|
|
|
|
|
va[0] = dw->downloaded;
|
|
|
|
va[1] = dw->size;
|
|
|
|
va[2] = 0;
|
|
|
|
|
|
|
|
if(dw->size)
|
|
|
|
{
|
|
|
|
RefreshSetGadgetAttrs(dw->gadgets[GID_STATUS],dw->win,NULL,
|
|
|
|
FUELGAUGE_Level,dw->downloaded,
|
|
|
|
GA_Text,messages_get("amiDownload"),
|
|
|
|
FUELGAUGE_VarArgs,va,
|
|
|
|
TAG_DONE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshSetGadgetAttrs(dw->gadgets[GID_STATUS],dw->win,NULL,
|
|
|
|
FUELGAUGE_Level,dw->downloaded,
|
|
|
|
GA_Text,messages_get("amiDownloadU"),
|
|
|
|
FUELGAUGE_VarArgs,va,
|
|
|
|
TAG_DONE);
|
|
|
|
}
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_download_window_error(struct gui_download_window *dw,
|
|
|
|
const char *error_msg)
|
|
|
|
{
|
2008-08-23 20:17:51 +04:00
|
|
|
warn_user("Unwritten");
|
|
|
|
gui_download_window_done(dw);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_download_window_done(struct gui_download_window *dw)
|
|
|
|
{
|
2008-08-23 20:17:51 +04:00
|
|
|
if(!dw) return;
|
|
|
|
FClose(dw->fh);
|
|
|
|
DisposeObject(dw->objects[OID_MAIN]);
|
|
|
|
DelObject(dw->node);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_drag_save_object(gui_save_type type, struct content *c,
|
|
|
|
struct gui_window *g)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_drag_save_selection(struct selection *s, struct gui_window *g)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_start_selection(struct gui_window *g)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_paste_from_clipboard(struct gui_window *g, int x, int y)
|
|
|
|
{
|
2008-08-22 01:41:42 +04:00
|
|
|
/* This and the other clipboard code is heavily based on the RKRM examples */
|
|
|
|
struct ContextNode *cn;
|
|
|
|
ULONG rlen=0,error;
|
|
|
|
STRPTR readbuf = AllocVec(1024,MEMF_CLEAR);
|
|
|
|
|
|
|
|
if(OpenIFF(iffh,IFFF_READ)) return;
|
|
|
|
if(StopChunk(iffh,ID_FTXT,ID_CHRS)) return;
|
|
|
|
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
error = ParseIFF(iffh,IFFPARSE_SCAN);
|
|
|
|
if(error == IFFERR_EOC) continue;
|
|
|
|
else if(error) break;
|
|
|
|
|
|
|
|
cn = CurrentChunk(iffh);
|
|
|
|
|
|
|
|
if((cn)&&(cn->cn_Type == ID_FTXT)&&(cn->cn_ID == ID_CHRS))
|
|
|
|
{
|
|
|
|
while((rlen = ReadChunkBytes(iffh,readbuf,1024)) > 0)
|
|
|
|
{
|
|
|
|
browser_window_paste_text(g->bw,readbuf,rlen,true);
|
|
|
|
}
|
|
|
|
if(rlen < 0) error = rlen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CloseIFF(iffh);
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool gui_empty_clipboard(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool gui_add_to_clipboard(const char *text, size_t length, bool space)
|
|
|
|
{
|
2008-08-23 20:17:51 +04:00
|
|
|
char *buffer;
|
|
|
|
utf8_to_local_encoding(text,length,&buffer);
|
2008-08-24 21:17:33 +04:00
|
|
|
if(buffer) WriteChunkBytes(iffh,buffer,strlen(buffer));
|
2008-08-23 20:17:51 +04:00
|
|
|
ami_utf8_free(buffer);
|
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool gui_commit_clipboard(void)
|
|
|
|
{
|
2008-08-22 01:41:42 +04:00
|
|
|
if(iffh) CloseIFF(iffh);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_clipboard_copy(const char *text, size_t length, struct box *box,
|
|
|
|
void *handle, const char *whitespace_text,size_t whitespace_length)
|
|
|
|
{
|
2008-08-23 20:17:51 +04:00
|
|
|
if(!(PushChunk(iffh,0,ID_CHRS,IFFSIZE_UNKNOWN)))
|
2008-08-22 01:41:42 +04:00
|
|
|
{
|
2008-08-23 20:17:51 +04:00
|
|
|
if (whitespace_text)
|
|
|
|
{
|
|
|
|
if(!gui_add_to_clipboard(whitespace_text,whitespace_length, false)) return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(text)
|
|
|
|
{
|
|
|
|
if (!gui_add_to_clipboard(text, length, box->space)) return false;
|
|
|
|
}
|
2008-08-22 01:41:42 +04:00
|
|
|
|
2008-08-23 20:17:51 +04:00
|
|
|
PopChunk(iffh);
|
|
|
|
}
|
|
|
|
else
|
2008-08-22 01:41:42 +04:00
|
|
|
{
|
2008-08-23 20:17:51 +04:00
|
|
|
PopChunk(iffh);
|
|
|
|
return false;
|
2008-08-22 01:41:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool gui_copy_to_clipboard(struct selection *s)
|
|
|
|
{
|
2008-08-22 01:41:42 +04:00
|
|
|
if(!(OpenIFF(iffh,IFFF_WRITE)))
|
|
|
|
{
|
|
|
|
if(!(PushChunk(iffh,ID_FTXT,ID_FORM,IFFSIZE_UNKNOWN)))
|
|
|
|
{
|
|
|
|
if (s->defined && selection_traverse(s, ami_clipboard_copy, NULL))
|
|
|
|
{
|
|
|
|
gui_commit_clipboard();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PopChunk(iffh);
|
|
|
|
}
|
|
|
|
CloseIFF(iffh);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_create_form_select_menu(struct browser_window *bw,
|
|
|
|
struct form_control *control)
|
|
|
|
{
|
2008-08-18 23:07:12 +04:00
|
|
|
struct gui_window *gwin = bw->window;
|
2008-08-19 22:31:56 +04:00
|
|
|
struct form_option *opt = control->data.select.items;
|
|
|
|
ULONG i = 0;
|
2008-08-18 23:07:12 +04:00
|
|
|
|
|
|
|
gwin->popuphook.h_Entry = ami_popup_hook;
|
|
|
|
gwin->popuphook.h_Data = gwin;
|
|
|
|
|
|
|
|
gwin->control = control;
|
|
|
|
|
2008-08-19 22:31:56 +04:00
|
|
|
gwin->objects[OID_MENU] = PMMENU(messages_get("NetSurf")),
|
|
|
|
PMA_MenuHandler, &gwin->popuphook,End;
|
2008-08-18 23:07:12 +04:00
|
|
|
|
2008-08-19 22:31:56 +04:00
|
|
|
while(opt)
|
|
|
|
{
|
2008-08-25 17:32:26 +04:00
|
|
|
IDoMethod(gwin->objects[OID_MENU],PM_INSERT,NewObject( POPUPMENU_GetItemClass(), NULL, PMIA_Title, (ULONG)ami_utf8_easy(opt->text),PMIA_ID,i,PMIA_CheckIt,TRUE,PMIA_Checked,opt->selected,TAG_DONE),~0);
|
2008-08-18 23:07:12 +04:00
|
|
|
|
2008-08-19 22:31:56 +04:00
|
|
|
opt = opt->next;
|
|
|
|
i++;
|
|
|
|
}
|
2008-08-18 23:07:12 +04:00
|
|
|
|
|
|
|
IDoMethod(gwin->objects[OID_MENU],PM_OPEN,gwin->win);
|
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_launch_url(const char *url)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool gui_search_term_highlighted(struct gui_window *g,
|
|
|
|
unsigned start_offset, unsigned end_offset,
|
|
|
|
unsigned *start_idx, unsigned *end_idx)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-08-11 21:53:45 +04:00
|
|
|
void ami_scroller_hook(struct Hook *hook,Object *object,struct IntuiMessage *msg)
|
|
|
|
{
|
|
|
|
ULONG gid,x,y;
|
|
|
|
struct gui_window *gwin = hook->h_Data;
|
|
|
|
|
|
|
|
if (msg->Class == IDCMP_IDCMPUPDATE)
|
|
|
|
{
|
|
|
|
gid = GetTagData( GA_ID, 0, msg->IAddress );
|
|
|
|
|
|
|
|
switch( gid )
|
|
|
|
{
|
|
|
|
case OID_HSCROLL:
|
2008-08-15 21:19:57 +04:00
|
|
|
gwin->redraw_required = true;
|
2008-08-11 21:53:45 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OID_VSCROLL:
|
2008-08-15 21:19:57 +04:00
|
|
|
gwin->redraw_required = true;
|
2008-08-11 21:53:45 +04:00
|
|
|
break;
|
|
|
|
}
|
2008-08-15 21:19:57 +04:00
|
|
|
}
|
|
|
|
// ReplyMsg((struct Message *)msg);
|
2008-08-11 21:53:45 +04:00
|
|
|
}
|
|
|
|
|
2008-08-18 23:07:12 +04:00
|
|
|
uint32 ami_popup_hook(struct Hook *hook,Object *item,APTR reserved)
|
|
|
|
{
|
|
|
|
int32 itemid = 0;
|
|
|
|
struct gui_window *gwin = hook->h_Data;
|
|
|
|
|
|
|
|
if(GetAttr(PMIA_ID, item, &itemid))
|
|
|
|
{
|
|
|
|
browser_window_form_select(gwin->bw,gwin->control,itemid);
|
|
|
|
}
|
|
|
|
|
|
|
|
// DisposeObject(gwin->objects[OID_MENU]);
|
|
|
|
|
|
|
|
return itemid;
|
|
|
|
}
|
2008-08-11 21:53:45 +04:00
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
#ifdef WITH_SSL
|
|
|
|
void gui_cert_verify(struct browser_window *bw, struct content *c,
|
|
|
|
const struct ssl_cert_info *certs, unsigned long num)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
2008-08-15 21:19:57 +04:00
|
|
|
|
|
|
|
#ifdef WITH_HUBBUB
|
|
|
|
static void *myrealloc(void *ptr, size_t len, void *pw)
|
|
|
|
{
|
|
|
|
return realloc(ptr, len);
|
|
|
|
}
|
|
|
|
#endif
|