summaryrefslogtreecommitdiff
path: root/amiga/arexx.c
Commit message (Collapse)AuthorAgeFilesLines
* Cleanup amiga include issues introduced as part of core updatesVincent Sanders2016-04-201-3/+5
|
* Add an option to close inactive tabs to the tab bar context menuChris Young2016-01-311-1/+1
|
* Fix some old and new GCC errors/warningsChris Young2016-01-151-1/+1
|
* Change LOG() macro to be varadicVincent Sanders2015-05-281-1/+1
| | | | | | | | | | | | This changes the LOG macro to be varadic removing the need for all callsites to have double bracketing and allows for future improvement on how we use the logging macros. The callsites were changed with coccinelle and the changes checked by hand. Compile tested for several frontends but not all. A formatting annotation has also been added which allows the compiler to check the parameters and types passed to the logging.
* Expand ARexx script locations on NetSurf's process.Chris Young2015-02-211-2/+9
| | | | | This resolves a problem with scripts sometimes not running when they are relative to PROGDIR: and stops PROGDIR: being requested under OS3. Fixes #2271
* Debug loggingChris Young2015-02-151-1/+4
|
* Move everything else over to using the class pointers.Chris Young2015-01-261-2/+3
| | | | Exception: popupmenu.class is still using old _GetClass functions.
* more easy os3 fixesChris Young2015-01-111-1/+3
|
* Use a function to create ready-cleared memoryChris Young2015-01-101-2/+2
|
* Don't include browser_private.hMichael Drake2014-12-041-1/+1
|
* Remove what seems a redundant check for bw->download.Michael Drake2014-12-041-9/+7
|
* Use browser_window_get_url instead of poking inside bw at contents.Michael Drake2014-12-041-3/+3
|
* Use API to get content from browser_window.Michael Drake2014-12-041-1/+2
|
* Fix ARexx for gui_window changesChris Young2014-11-161-52/+53
|
* Replace curbw (current browser_window, used mostly for ARexx support) with ↵Chris Young2014-11-161-15/+15
| | | | cur_gw (current gui_window)
* Fix amiga/arexx.c for new structure layoutChris Young2014-11-161-2/+2
|
* Fix warningsChris Young2014-11-091-9/+7
|
* Make window counting a generic functionChris Young2014-10-261-18/+3
|
* Update amiga frontend for split operation table header changesVincent Sanders2014-10-161-26/+24
|
* split version info into its own header and remove unnecessary nesurf.h includesVincent Sanders2014-10-131-0/+1
| | | | | | | | | The netsurf.h header should *only* contain the registration, core initialisation and finalisation methods. Version information is best placed in its own header. Also remove any unneeded inclusion of this header limiting it to solely the places the relevant API is required.
* Fix cppcheck variableScope warningsChris Young2014-04-051-2/+4
|
* Fix some cppcheck unused/unreadVariablesChris Young2014-04-051-3/+2
|
* Make browser_window_navigate (un)verifiable flag match browser_window_create.Michael Drake2014-02-101-6/+3
|
* Allow tab creation without history clone. Changes browser_window_create and ↵Michael Drake2014-02-101-13/+10
| | | | browser_window_navigate flags.
* Replace AllocVec with AllocVecTags. Remove some instances of MEMF_CLEAR ↵Chris Young2013-10-121-1/+1
| | | | where it is not necessary.
* Fix ARexx OPEN NEWTABChris Young2013-06-181-1/+1
|
* Fix a crash when edit settings if NetSurf is running on the WB screenChris Young2013-05-311-2/+2
| | | | Rename use_pubscreen to make it clearer what the option is for
* move options includeVincent Sanders2013-05-281-1/+1
|
* rename flags for browser_window routines to be shorterVincent Sanders2013-02-181-13/+13
|
* change browser_window_create and refactor all callsitesVincent Sanders2013-02-181-3/+19
|
* browser_window_navigate refactorVincent Sanders2013-02-181-6/+44
|
* Track the mouse pointer on a per-window basisChris Young2013-01-061-6/+2
|
* Change the mouse pointer back to what it was (and what NetSurf thinks it is) ↵Chris Young2013-01-031-2/+7
| | | | instead of to the default pointer. Additionally don't use ami_update_pointer for treeview windows as AmigaOS has a pointer setting per window, but NetSurf is only storing the current one as a single global variable.
* Add ARexx commands HOTLIST OPEN and HOTLIST CLOSEChris Young2012-10-141-2/+17
|
* Include desktop/browser_private.h.Michael Drake2012-08-221-1/+1
|
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-221-5/+5
| | | | svn path=/trunk/netsurf/; revision=13548
* content_get_url -> hlcache_handle_get_url, content__get_url -> content_get_urlJohn Mark Bell2011-12-041-2/+2
| | | | svn path=/trunk/netsurf/; revision=13236
* Fix up for nsurl changes. Untested.Michael Drake2011-10-031-2/+2
| | | | svn path=/trunk/netsurf/; revision=12928
* Fix an issue with GETTITLE returning an incorrect string on occasionChris Young2011-07-031-8/+10
| | | | | | Fix warnings svn path=/trunk/netsurf/; revision=12566
* Avoid compiling arexx.c more than necessaryChris Young2011-06-051-6/+6
| | | | svn path=/trunk/netsurf/; revision=12465
* Make GUI update when back/forward commands used from ARexxChris Young2011-06-031-15/+3
| | | | svn path=/trunk/netsurf/; revision=12455
* Implement ask overwriteChris Young2011-03-261-3/+3
| | | | svn path=/trunk/netsurf/; revision=12135
* Set version using testament.h instead of old ARexx scriptChris Young2011-03-131-10/+11
| | | | svn path=/trunk/netsurf/; revision=12028
* First pass of AmigaOS 3 compatibilityJohn Mark Bell2010-12-301-0/+2
| | | | svn path=/trunk/netsurf/; revision=11155
* Alias W for WINDOW and T for TAB.Chris Young2010-08-281-11/+11
| | | | | | Add documentation on ARexx startup/shutdown scripts svn path=/trunk/netsurf/; revision=10720
* Add ARexx commands CLOSE (close window/tab) and ACTIVE (current window/tab ↵Chris Young2010-08-281-1/+90
| | | | | | | | | | number to pass to other ARexx commands) Add CloseTabs.nsrx script to close all tabs in the current window except the active one svn path=/trunk/netsurf/; revision=10718
* Ensure RC is 0 unless we actually have a fatal error.Chris Young2010-07-231-0/+24
| | | | svn path=/trunk/netsurf/; revision=10659
* Allow targetting any window/tab with ARexx commands. Adds new command ↵Chris Young2010-07-201-39/+168
| | | | | | | | | WINDOWS to find out the number of windows and tabs open. ShowTitles.nsrx is an example of how to use the new functionality. svn path=/trunk/netsurf/; revision=10656
* Add commands BACK, FORWARD, HOME and RELOAD to correspond with the buttons ↵Chris Young2010-07-111-1/+58
| | | | | | on the GUI. svn path=/trunk/netsurf/; revision=10628
* Changes required for new-cacheChris Young2010-03-281-4/+7
| | | | svn path=/trunk/netsurf/; revision=10186