summaryrefslogtreecommitdiff
path: root/frontends/amiga/gui.c
Commit message (Collapse)AuthorAgeFilesLines
* Button disable state updates should now work correctly on OS3Chris Young2017-09-261-4/+2
|
* rationalise history icon bitmap handling to ensure correct lifetimeVincent Sanders2017-09-101-4/+3
|
* Finalise nslog layer properly in closedownDaniel Silverstone2017-09-101-0/+3
|
* Fixup everything the semantic patch missedVincent Sanders2017-09-071-1/+2
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-34/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* Don't double-convert stringChris Young2017-06-281-3/+1
|
* cleanup use of internal frames scrollbar widget headerVincent Sanders2017-06-111-1/+6
|
* Migrate Amiga local history to corewindowChris Young2017-06-101-1/+1
|
* Update documentation removing junk and moving to markdown for most text filesVincent Sanders2017-06-091-1/+1
|
* fixup errors introduced in set_scroll API changeVincent Sanders2017-04-261-15/+33
|
* update amiga frontend to new set_scroll APIVincent Sanders2017-04-261-3/+18
|
* update amiga frontend to remove reformat APIVincent Sanders2017-04-261-29/+20
|
* Amiga: Update for core hotlist API change.Michael Drake2017-04-251-2/+3
|
* update amiga frontend invalidate window API changeVincent Sanders2017-04-191-35/+48
|
* Adjust the requested class versions to be the minimum required.Chris Young2017-04-161-1/+8
| | | | | | | Some features of later versions are used but are either restricted to OS4 only, or runtime version checks select the appropriate routines. Where the lowest required version cannot be determined, the version provided in the ClassAct 3.3 archive is requested. Bugs may mean these older classes do not work as expected. In addition, restrict the opening of listbrowser.gadget and the custom Stringview class to OS4 only.
* Allow for more varied notification backmsgsChris Young2017-03-211-1/+2
|
* fix errors from cppcheck in amiga frontendVincent Sanders2017-03-031-0/+3
|
* Try to ensure we get the correct type of native BitMapChris Young2017-02-131-2/+2
|
* Remove direct_render, only ever used for debuggingChris Young2017-02-131-29/+2
|
* Make gui_globals less... globalChris Young2017-02-131-0/+3
|
* Get render bitmap size via functionChris Young2017-02-131-2/+4
|
* Manage shared pens internally unless we need multiple lists (eg. per ↵Chris Young2017-02-131-3/+3
| | | | browser_window)
* Alloc gui_global structure when initialisingChris Young2017-02-131-15/+15
|
* Remove use of global context data from Amiga frontendChris Young2017-02-131-14/+5
|
* Perform dynamic update of Hotlist menu when using MenuClass menusChris Young2017-01-161-1/+1
| | | | Currently updates on closing the Hotlist window, but could be persuaded to update on every hotlist drag if deemed necessary.
* disable dynamic hotlist menu updateChris Young2017-01-151-1/+1
| | | | menuclass doesn't appear to be working as advertised
* minor menu fixesChris Young2017-01-151-2/+1
|
* Attempt hotlist menu refreshChris Young2017-01-151-1/+2
|
* Split up menu.c into generic and gui_window-specific filesChris Young2017-01-151-12/+12
|
* Share menuclass object with all browser windowsChris Young2017-01-151-1/+0
|
* Replace OnMenu/OffMenu with MenuClass compatible abstractionChris Young2017-01-141-11/+7
|
* Queue redraws for SimpleRefresh browser windowsChris Young2017-01-081-12/+13
|
* Support SimpleRefresh corewindowsChris Young2017-01-081-1/+1
| | | | These queue redraws unlike the main browser window, which seems to work a bit better than redrawing immediately.
* Remove old tree implementationChris Young2017-01-081-2/+0
|
* Conversion of Amiga hotlist manager to corewindowChris Young2017-01-061-5/+11
|
* Migrate global history to corewindowChris Young2017-01-061-2/+5
|
* Merge branch 'master' of git://git.netsurf-browser.org/netsurf into ↵Chris Young2017-01-031-1/+1
|\ | | | | | | chris/amiga-corewindow
| * re-structure menu code to make it useable elsewhere in the frontendChris Young2017-01-031-1/+1
| |
* | Basic conversion of cookie manager to core windowChris Young2017-01-031-2/+11
|/ | | | slightly broken; blank window until resized; scroll bar wrong; no menu
* show/hide scrollbars as requiredChris Young2017-01-021-4/+6
| | | | move the sslcert scrollbars into the window as per the style guide
* migrate sslcert to use corewindowChris Young2017-01-021-1/+1
| | | | predictably blank
* Amga core window redrawChris Young2017-01-011-1/+1
| | | | This almost certainly will not work properly
* Process mouse moves and qualifier keysChris Young2017-01-011-6/+13
| | | | | NB: we are doing mouse moves differently by using an IDCMP hook on space.gadget, as this gives us co-ordinates relative to the render area GID_DRAW object when the window is defined will need tagging ICA_TARGET, ICTARGET_IDCMP
* Don't unmap ExtMem immediately as:Chris Young2016-12-311-1/+6
| | | | | (a) it is upsetting the gif decoder (although I suspect it is caused by the OS struggling with the excessive remaps) (b) We are probably going to need to map it back in imminently for display
* Revert "Disable ExtMem in palette-mapped modes"Chris Young2016-12-311-4/+0
| | | | This reverts commit 4db40c3f27d0ade8fc76f57cd383e5ff52ad7c93.
* Disable ExtMem in palette-mapped modesChris Young2016-12-311-0/+4
| | | | Something handling palette mapped images causes a freeze.
* move tree compatability layer to amiga frontendVincent Sanders2016-12-311-1/+1
|
* Simply the event loop for the shared message portChris Young2016-12-311-69/+15
| | | | | This now simply calls the event callback for each window, which returns TRUE is the window was closed during event processing. The window loop now restarts if any windows were closed, which fixes a potential rare issue with delayed event processing.
* Update local history window to use event callbackChris Young2016-12-311-1/+1
|
* Update print window to use event callbackChris Young2016-12-311-1/+1
|