2008-09-29 23:35:30 +04:00
|
|
|
/*
|
2010-07-20 21:20:16 +04:00
|
|
|
* Copyright 2008-2010 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
2008-09-29 23:35:30 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "arexx.h"
|
|
|
|
#include <reaction/reaction_macros.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <proto/intuition.h>
|
|
|
|
#include "desktop/browser.h"
|
2010-07-20 21:20:16 +04:00
|
|
|
#include "desktop/history_core.h"
|
2008-10-06 21:47:31 +04:00
|
|
|
#include "amiga/gui.h"
|
2009-01-11 00:33:34 +03:00
|
|
|
#include <proto/dos.h>
|
2009-03-28 15:50:19 +03:00
|
|
|
#include <proto/exec.h>
|
|
|
|
#include "amiga/download.h"
|
2009-07-04 16:16:22 +04:00
|
|
|
#include "amiga/options.h"
|
2008-09-29 23:35:30 +04:00
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
#include <proto/clicktab.h>
|
|
|
|
#include <gadgets/clicktab.h>
|
|
|
|
|
2008-11-24 11:06:11 +03:00
|
|
|
const char * const verarexx;
|
|
|
|
const int verver;
|
|
|
|
const int verrev;
|
|
|
|
const char * const netsurf_version;
|
|
|
|
const int netsurf_version_major;
|
|
|
|
const int netsurf_version_minor;
|
|
|
|
|
2008-09-29 23:35:30 +04:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
RX_OPEN=0,
|
2008-10-06 21:47:31 +04:00
|
|
|
RX_QUIT,
|
2008-10-26 02:22:34 +03:00
|
|
|
RX_TOFRONT,
|
2008-11-24 11:06:11 +03:00
|
|
|
RX_GETURL,
|
|
|
|
RX_GETTITLE,
|
2009-01-11 00:33:34 +03:00
|
|
|
RX_VERSION,
|
2009-07-04 16:16:22 +04:00
|
|
|
RX_SAVE,
|
2010-07-11 19:34:35 +04:00
|
|
|
RX_PUBSCREEN,
|
|
|
|
RX_BACK,
|
|
|
|
RX_FORWARD,
|
|
|
|
RX_HOME,
|
2010-07-20 21:20:16 +04:00
|
|
|
RX_RELOAD,
|
|
|
|
RX_WINDOWS
|
2008-09-29 23:35:30 +04:00
|
|
|
};
|
|
|
|
|
2008-10-26 02:22:34 +03:00
|
|
|
STATIC char result[100];
|
|
|
|
|
2008-09-29 23:35:30 +04:00
|
|
|
STATIC VOID rx_open(struct ARexxCmd *, struct RexxMsg *);
|
2008-10-06 21:47:31 +04:00
|
|
|
STATIC VOID rx_quit(struct ARexxCmd *, struct RexxMsg *);
|
2008-10-26 02:22:34 +03:00
|
|
|
STATIC VOID rx_tofront(struct ARexxCmd *, struct RexxMsg *);
|
|
|
|
STATIC VOID rx_geturl(struct ARexxCmd *, struct RexxMsg *);
|
2008-11-24 11:06:11 +03:00
|
|
|
STATIC VOID rx_gettitle(struct ARexxCmd *, struct RexxMsg *);
|
|
|
|
STATIC VOID rx_version(struct ARexxCmd *, struct RexxMsg *);
|
2009-01-11 00:33:34 +03:00
|
|
|
STATIC VOID rx_save(struct ARexxCmd *, struct RexxMsg *);
|
2009-07-04 16:16:22 +04:00
|
|
|
STATIC VOID rx_pubscreen(struct ARexxCmd *, struct RexxMsg *);
|
2010-07-11 19:34:35 +04:00
|
|
|
STATIC VOID rx_back(struct ARexxCmd *, struct RexxMsg *);
|
|
|
|
STATIC VOID rx_forward(struct ARexxCmd *, struct RexxMsg *);
|
|
|
|
STATIC VOID rx_home(struct ARexxCmd *, struct RexxMsg *);
|
|
|
|
STATIC VOID rx_reload(struct ARexxCmd *, struct RexxMsg *);
|
2010-07-20 21:20:16 +04:00
|
|
|
STATIC VOID rx_windows(struct ARexxCmd *, struct RexxMsg *);
|
2008-09-29 23:35:30 +04:00
|
|
|
|
|
|
|
STATIC struct ARexxCmd Commands[] =
|
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
{"OPEN",RX_OPEN,rx_open,"URL/A,NEW=NEWWINDOW/S,NEWTAB/S,SAVEAS/K,WINDOW/K/N,TAB/K/N", 0, NULL, 0, 0, NULL },
|
2008-10-06 21:47:31 +04:00
|
|
|
{"QUIT",RX_QUIT,rx_quit,NULL, 0, NULL, 0, 0, NULL },
|
2008-10-26 02:22:34 +03:00
|
|
|
{"TOFRONT",RX_TOFRONT,rx_tofront,NULL, 0, NULL, 0, 0, NULL },
|
2010-07-20 21:20:16 +04:00
|
|
|
{"GETURL",RX_GETURL,rx_geturl, "WINDOW/K/N,TAB/K/N", 0, NULL, 0, 0, NULL },
|
|
|
|
{"GETTITLE",RX_GETTITLE,rx_gettitle, "WINDOW/K/N,TAB/K/N", 0, NULL, 0, 0, NULL },
|
2008-11-24 11:06:11 +03:00
|
|
|
{"VERSION",RX_VERSION,rx_version,"VERSION/N,SVN=REVISION/N,RELEASE/S", 0, NULL, 0, 0, NULL },
|
2010-07-20 21:20:16 +04:00
|
|
|
{"SAVE",RX_SAVE,rx_save,"FILENAME/A,WINDOW/K/N,TAB/K/N", 0, NULL, 0, 0, NULL },
|
2009-07-04 16:16:22 +04:00
|
|
|
{"GETSCREENNAME",RX_PUBSCREEN,rx_pubscreen,NULL, 0, NULL, 0, 0, NULL },
|
2010-07-20 21:20:16 +04:00
|
|
|
{"BACK", RX_BACK, rx_back, "WINDOW/K/N,TAB/K/N", 0, NULL, 0, 0, NULL },
|
|
|
|
{"FORWARD", RX_FORWARD, rx_forward, "WINDOW/K/N,TAB/K/N", 0, NULL, 0, 0, NULL },
|
|
|
|
{"HOME", RX_HOME, rx_home, "WINDOW/K/N,TAB/K/N", 0, NULL, 0, 0, NULL },
|
|
|
|
{"RELOAD", RX_RELOAD, rx_reload, "FORCE/S,WINDOW/K/N,TAB/K/N", 0, NULL, 0, 0, NULL },
|
|
|
|
{"WINDOWS", RX_WINDOWS, rx_windows, "WINDOW/K/N", 0, NULL, 0, 0, NULL },
|
2008-09-29 23:35:30 +04:00
|
|
|
{ NULL, 0, NULL, NULL, 0, NULL, 0, 0, NULL }
|
|
|
|
};
|
|
|
|
|
2008-11-16 17:42:40 +03:00
|
|
|
BOOL ami_arexx_init(void)
|
2008-09-29 23:35:30 +04:00
|
|
|
{
|
|
|
|
if(arexx_obj = ARexxObject,
|
|
|
|
AREXX_HostName,"NETSURF",
|
|
|
|
AREXX_Commands,Commands,
|
|
|
|
AREXX_NoSlot,TRUE,
|
|
|
|
AREXX_ReplyHook,NULL,
|
|
|
|
AREXX_DefExtension,"nsrx",
|
|
|
|
End)
|
|
|
|
{
|
|
|
|
GetAttr(AREXX_SigMask, arexx_obj, &rxsig);
|
2008-11-16 17:42:40 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-02-01 02:45:25 +03:00
|
|
|
/* Create a temporary ARexx port so we can send commands to the NetSurf which
|
2008-11-16 17:42:40 +03:00
|
|
|
* is already running */
|
|
|
|
arexx_obj = ARexxObject,
|
|
|
|
AREXX_HostName,"NETSURF",
|
|
|
|
AREXX_Commands,Commands,
|
|
|
|
AREXX_NoSlot,FALSE,
|
|
|
|
AREXX_ReplyHook,NULL,
|
|
|
|
AREXX_DefExtension,"nsrx",
|
|
|
|
End;
|
|
|
|
return false;
|
2008-09-29 23:35:30 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-26 15:25:26 +03:00
|
|
|
void ami_arexx_handle(void)
|
2008-09-29 23:35:30 +04:00
|
|
|
{
|
|
|
|
RA_HandleRexx(arexx_obj);
|
|
|
|
}
|
|
|
|
|
2008-10-26 15:25:26 +03:00
|
|
|
void ami_arexx_execute(char *script)
|
|
|
|
{
|
|
|
|
IDoMethod(arexx_obj, AM_EXECUTE, script, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ami_arexx_cleanup(void)
|
2008-09-29 23:35:30 +04:00
|
|
|
{
|
|
|
|
if(arexx_obj) DisposeObject(arexx_obj);
|
|
|
|
}
|
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
struct browser_window *ami_find_tab_gwin(struct gui_window_2 *gwin, int tab)
|
|
|
|
{
|
|
|
|
int tabs = 0;
|
|
|
|
struct Node *ctab;
|
|
|
|
struct Node *ntab;
|
|
|
|
struct browser_window *bw;
|
|
|
|
|
|
|
|
if((tab == 0) || (gwin->tabs == 0)) return gwin->bw;
|
|
|
|
|
|
|
|
ctab = GetHead(&gwin->tab_list);
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
tabs++;
|
|
|
|
ntab=GetSucc(ctab);
|
|
|
|
GetClickTabNodeAttrs(ctab,
|
|
|
|
TNA_UserData, &bw,
|
|
|
|
TAG_DONE);
|
|
|
|
if(tabs == tab) return bw;
|
|
|
|
} while(ctab=ntab);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct browser_window *ami_find_tab(int window, int tab)
|
|
|
|
{
|
|
|
|
int windows = 0, tabs = 0;
|
|
|
|
struct nsObject *node, *nnode;
|
|
|
|
struct gui_window_2 *gwin;
|
|
|
|
|
|
|
|
if(!IsMinListEmpty(window_list))
|
|
|
|
{
|
|
|
|
node = (struct nsObject *)GetHead((struct List *)window_list);
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
nnode=(struct nsObject *)GetSucc((struct Node *)node);
|
|
|
|
|
|
|
|
if(node->Type == AMINS_WINDOW)
|
|
|
|
{
|
|
|
|
windows++;
|
|
|
|
if(windows == window)
|
|
|
|
return ami_find_tab_gwin(node->objstruct, tab);
|
|
|
|
}
|
|
|
|
} while(node = nnode);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-09-29 23:35:30 +04:00
|
|
|
STATIC VOID rx_open(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2009-03-28 15:50:19 +03:00
|
|
|
struct dlnode *dln;
|
2010-07-20 21:20:16 +04:00
|
|
|
struct browser_window *bw = curbw;
|
2009-03-28 15:50:19 +03:00
|
|
|
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
if((cmd->ac_ArgList[4]) && (cmd->ac_ArgList[5]))
|
|
|
|
bw = ami_find_tab(*(ULONG *)cmd->ac_ArgList[4], *(ULONG *)cmd->ac_ArgList[5]);
|
|
|
|
|
|
|
|
if(cmd->ac_ArgList[3])
|
2009-02-01 02:45:25 +03:00
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
if(!bw) return;
|
2009-04-14 22:51:10 +04:00
|
|
|
|
2009-03-28 15:50:19 +03:00
|
|
|
dln = AllocVec(sizeof(struct dlnode),MEMF_PRIVATE | MEMF_CLEAR);
|
2010-07-20 21:20:16 +04:00
|
|
|
dln->filename = strdup((char *)cmd->ac_ArgList[3]);
|
2009-03-28 15:50:19 +03:00
|
|
|
dln->node.ln_Name = strdup((char *)cmd->ac_ArgList[0]);
|
|
|
|
dln->node.ln_Type = NT_USER;
|
2010-07-20 21:20:16 +04:00
|
|
|
AddTail(&bw->window->dllist,dln);
|
|
|
|
if(!bw->download) browser_window_download(curbw,(char *)cmd->ac_ArgList[0],NULL);
|
|
|
|
}
|
|
|
|
else if(cmd->ac_ArgList[2])
|
|
|
|
{
|
|
|
|
browser_window_create((char *)cmd->ac_ArgList[0],NULL,NULL,true,true);
|
2009-02-01 02:45:25 +03:00
|
|
|
}
|
|
|
|
else if(cmd->ac_ArgList[1])
|
2008-10-26 02:22:34 +03:00
|
|
|
{
|
|
|
|
browser_window_create((char *)cmd->ac_ArgList[0],NULL,NULL,true,false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
if(bw)
|
2009-09-29 02:17:09 +04:00
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
browser_window_go(bw,(char *)cmd->ac_ArgList[0],NULL,true);
|
2009-09-29 02:17:09 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
browser_window_create((char *)cmd->ac_ArgList[0],NULL,NULL,true,false);
|
|
|
|
}
|
2008-10-26 02:22:34 +03:00
|
|
|
}
|
2008-09-29 23:35:30 +04:00
|
|
|
}
|
2008-10-06 21:47:31 +04:00
|
|
|
|
2009-01-11 00:33:34 +03:00
|
|
|
STATIC VOID rx_save(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
|
|
|
BPTR fh = 0;
|
2010-03-28 19:51:05 +04:00
|
|
|
ULONG source_size;
|
|
|
|
char *source_data;
|
2010-07-20 21:20:16 +04:00
|
|
|
struct browser_window *bw = curbw;
|
|
|
|
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
if((cmd->ac_ArgList[1]) && (cmd->ac_ArgList[2]))
|
|
|
|
bw = ami_find_tab(*(ULONG *)cmd->ac_ArgList[1], *(ULONG *)cmd->ac_ArgList[2]);
|
2009-09-29 02:17:09 +04:00
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
if(!bw) return;
|
|
|
|
|
|
|
|
ami_update_pointer(bw->window->shared->win,GUI_POINTER_WAIT);
|
2009-01-11 00:33:34 +03:00
|
|
|
if(fh = FOpen(cmd->ac_ArgList[0],MODE_NEWFILE,0))
|
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
if(source_data = content_get_source_data(bw->current_content, &source_size))
|
2010-03-28 19:51:05 +04:00
|
|
|
FWrite(fh, source_data, 1, source_size);
|
|
|
|
|
2009-01-11 00:33:34 +03:00
|
|
|
FClose(fh);
|
2010-07-20 21:20:16 +04:00
|
|
|
SetComment(cmd->ac_ArgList[0], content_get_url(bw->current_content));
|
2009-01-11 00:33:34 +03:00
|
|
|
}
|
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
ami_update_pointer(bw->window->shared->win,GUI_POINTER_DEFAULT);
|
2009-01-11 00:33:34 +03:00
|
|
|
}
|
|
|
|
|
2008-10-06 21:47:31 +04:00
|
|
|
STATIC VOID rx_quit(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
2008-10-06 21:47:31 +04:00
|
|
|
ami_quit_netsurf();
|
|
|
|
}
|
2008-10-26 02:22:34 +03:00
|
|
|
|
|
|
|
STATIC VOID rx_tofront(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
2008-10-26 02:22:34 +03:00
|
|
|
ScreenToFront(scrn);
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC VOID rx_geturl(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
struct browser_window *bw = curbw;
|
|
|
|
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
if((cmd->ac_ArgList[0]) && (cmd->ac_ArgList[1]))
|
|
|
|
bw = ami_find_tab(*(ULONG *)cmd->ac_ArgList[0], *(ULONG *)cmd->ac_ArgList[1]);
|
|
|
|
|
|
|
|
if(bw && bw->current_content)
|
2008-10-26 15:25:26 +03:00
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
strcpy(result, content_get_url(bw->current_content));
|
2008-10-26 15:25:26 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-02-01 16:37:32 +03:00
|
|
|
strcpy(result,"");
|
2008-10-26 15:25:26 +03:00
|
|
|
}
|
|
|
|
|
2008-10-26 02:22:34 +03:00
|
|
|
cmd->ac_Result = result;
|
|
|
|
}
|
|
|
|
|
2008-11-24 11:06:11 +03:00
|
|
|
STATIC VOID rx_gettitle(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
struct browser_window *bw = curbw;
|
|
|
|
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
if((cmd->ac_ArgList[0]) && (cmd->ac_ArgList[1]))
|
|
|
|
bw = ami_find_tab(*(ULONG *)cmd->ac_ArgList[0], *(ULONG *)cmd->ac_ArgList[1]);
|
|
|
|
|
|
|
|
if(bw)
|
2008-11-24 11:06:11 +03:00
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
if(bw->window->tabtitle)
|
|
|
|
strcpy(result,bw->window->tabtitle);
|
|
|
|
else
|
|
|
|
strcpy(result,bw->window->shared->win->Title);
|
2008-11-24 11:06:11 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-02-01 16:37:32 +03:00
|
|
|
strcpy(result,"");
|
2008-11-24 11:06:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd->ac_Result = result;
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC VOID rx_version(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
|
|
|
|
2008-11-24 11:06:11 +03:00
|
|
|
if(cmd->ac_ArgList[2])
|
|
|
|
{
|
|
|
|
if(cmd->ac_ArgList[1])
|
|
|
|
{
|
|
|
|
if((netsurf_version_major > *(ULONG *)cmd->ac_ArgList[0]) || ((netsurf_version_minor >= *(ULONG *)cmd->ac_ArgList[1]) && (netsurf_version_major == *(ULONG *)cmd->ac_ArgList[0])))
|
|
|
|
{
|
|
|
|
strcpy(result,"1");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,"0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(cmd->ac_ArgList[0])
|
|
|
|
{
|
|
|
|
if((netsurf_version_major >= *(ULONG *)cmd->ac_ArgList[0]))
|
|
|
|
{
|
|
|
|
strcpy(result,"1");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,"0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,netsurf_version);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(cmd->ac_ArgList[1])
|
|
|
|
{
|
|
|
|
if((verver > *(ULONG *)cmd->ac_ArgList[0]) || ((verrev >= *(ULONG *)cmd->ac_ArgList[1]) && (verver == *(ULONG *)cmd->ac_ArgList[0])))
|
|
|
|
{
|
|
|
|
strcpy(result,"1");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,"0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(cmd->ac_ArgList[0])
|
|
|
|
{
|
|
|
|
if((verver >= *(ULONG *)cmd->ac_ArgList[0]))
|
|
|
|
{
|
|
|
|
strcpy(result,"1");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,"0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,verarexx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd->ac_Result = result;
|
|
|
|
}
|
2009-07-04 16:16:22 +04:00
|
|
|
|
|
|
|
STATIC VOID rx_pubscreen(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
|
|
|
|
2009-07-04 16:16:22 +04:00
|
|
|
if(!option_use_pubscreen || option_use_pubscreen[0] == '\0')
|
|
|
|
{
|
|
|
|
strcpy(result,"NetSurf");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,option_use_pubscreen);
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd->ac_Result = result;
|
|
|
|
}
|
2010-07-11 19:34:35 +04:00
|
|
|
|
|
|
|
STATIC VOID rx_back(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
struct browser_window *bw = curbw;
|
|
|
|
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
if((cmd->ac_ArgList[0]) && (cmd->ac_ArgList[1]))
|
|
|
|
bw = ami_find_tab(*(ULONG *)cmd->ac_ArgList[0], *(ULONG *)cmd->ac_ArgList[1]);
|
|
|
|
|
|
|
|
if(bw)
|
2010-07-11 19:34:35 +04:00
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
if(browser_window_back_available(bw))
|
2010-07-11 19:34:35 +04:00
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
history_back(bw, bw->history);
|
2010-07-11 19:34:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC VOID rx_forward(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
struct browser_window *bw = curbw;
|
|
|
|
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
if((cmd->ac_ArgList[0]) && (cmd->ac_ArgList[1]))
|
|
|
|
bw = ami_find_tab(*(ULONG *)cmd->ac_ArgList[0], *(ULONG *)cmd->ac_ArgList[1]);
|
|
|
|
|
|
|
|
if(bw)
|
2010-07-11 19:34:35 +04:00
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
if(browser_window_forward_available(bw))
|
2010-07-11 19:34:35 +04:00
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
history_forward(bw, bw->history);
|
2010-07-11 19:34:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC VOID rx_home(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
struct browser_window *bw = curbw;
|
|
|
|
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
if((cmd->ac_ArgList[0]) && (cmd->ac_ArgList[1]))
|
|
|
|
bw = ami_find_tab(*(ULONG *)cmd->ac_ArgList[0], *(ULONG *)cmd->ac_ArgList[1]);
|
|
|
|
|
|
|
|
if(bw) browser_window_go(bw, option_homepage_url, NULL, true);
|
2010-07-11 19:34:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
STATIC VOID rx_reload(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
struct browser_window *bw = curbw;
|
|
|
|
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
if((cmd->ac_ArgList[1]) && (cmd->ac_ArgList[2]))
|
|
|
|
bw = ami_find_tab(*(ULONG *)cmd->ac_ArgList[1], *(ULONG *)cmd->ac_ArgList[2]);
|
|
|
|
|
|
|
|
if(bw)
|
2010-07-11 19:34:35 +04:00
|
|
|
{
|
|
|
|
if(cmd->ac_ArgList[0]) /* FORCE */
|
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
browser_window_reload(bw, true);
|
2010-07-11 19:34:35 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-07-20 21:20:16 +04:00
|
|
|
browser_window_reload(bw, false);
|
2010-07-11 19:34:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-20 21:20:16 +04:00
|
|
|
|
|
|
|
STATIC VOID rx_windows(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
|
|
|
int windows = 0, tabs = 0;
|
|
|
|
struct nsObject *node, *nnode;
|
|
|
|
struct gui_window_2 *gwin;
|
|
|
|
|
2010-07-23 21:59:46 +04:00
|
|
|
cmd->ac_RC = 0;
|
|
|
|
|
2010-07-20 21:20:16 +04:00
|
|
|
if(!IsMinListEmpty(window_list))
|
|
|
|
{
|
|
|
|
node = (struct nsObject *)GetHead((struct List *)window_list);
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
nnode=(struct nsObject *)GetSucc((struct Node *)node);
|
|
|
|
|
|
|
|
gwin = node->objstruct;
|
|
|
|
|
|
|
|
if(node->Type == AMINS_WINDOW)
|
|
|
|
{
|
|
|
|
windows++;
|
|
|
|
if((cmd->ac_ArgList[0]) && (*(ULONG *)cmd->ac_ArgList[0] == windows))
|
|
|
|
tabs = gwin->tabs;
|
|
|
|
}
|
|
|
|
} while(node = nnode);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(cmd->ac_ArgList[0]) sprintf(result, "%ld", tabs);
|
|
|
|
else sprintf(result, "%ld", windows);
|
|
|
|
cmd->ac_Result = result;
|
|
|
|
}
|