summaryrefslogtreecommitdiff
path: root/amiga/gui.c
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Write out to the backing store asynchronously."Chris Young2014-11-191-2/+2
| | | | | | This reverts commit 1ddf8215cfde443a48043274cef17e45c68f0c91. Appears to be unsafe to run this in a new process.
* Write out to the backing store asynchronously.Chris Young2014-11-181-2/+2
| | | | | | | | | | | | Despite the fact AmigaOS filesystems run as separate processes, DOS filesystem writes occur synchronously waiting for the disk write to finish before returning. Here we have effectively taken the core's fs backing store and extended it slightly so the store operation is spun off into a new process, running at a lower task priority than NetSurf itself. This stops the UI pauses that occur shortly after loading pages as NetSurf commits the cache to disk. Somewhat experimental, pending more extensive user testing.
* Remove no longer used poll option from schedule runnerChris Young2014-11-171-1/+1
|
* update commentsChris Young2014-11-161-1/+4
|
* Allocate screen title when first needed and keep it private to amiga/gui.cChris Young2014-11-161-6/+15
|
* Make win_destroyed variable private to amiga/gui.cChris Young2014-11-161-16/+16
|
* Replace curbw (current browser_window, used mostly for ARexx support) with ↵Chris Young2014-11-161-8/+8
| | | | cur_gw (current gui_window)
* Remove any pending favicon refresh to avoid a crash on exit/window closeChris Young2014-11-161-0/+1
|
* Fix amiga/gui.c to not ref gui_window via browser_windowChris Young2014-11-161-186/+185
|
* Remove a loop which appears to do nothingChris Young2014-11-161-17/+0
|
* Change clicktab userdata to hold gui_window instead of browser_windowChris Young2014-11-161-31/+30
|
* Don't make the app id a global varChris Young2014-11-161-0/+7
|
* Make the SPACE_RenderBox compatibility functions publicChris Young2014-11-151-3/+4
|
* Use SPACE_RenderBox if available, as SPACE_AreaBox is "dangerous".Chris Young2014-11-151-36/+133
|
* Doxygen cleanups in frontendsVincent Sanders2014-11-111-0/+1
|
* Call open/close timer from schedule init/free functionsChris Young2014-11-101-3/+4
|
* New function for an error requester with the correct imagery which doesn't ↵Chris Young2014-11-101-5/+5
| | | | attempt to do Messages lookup.
* Move some init functions together for the sake of clarityChris Young2014-11-101-11/+6
|
* Move MIME cleanup before NetSurf's internal exit.Chris Young2014-11-101-3/+3
|
* Remove gui_init and merge the contents into main()Chris Young2014-11-101-26/+22
|
* Remove die()Chris Young2014-11-101-12/+24
| | | | Terminating execution abruptly on AmigaOS is dangerous.
* Fix warningsChris Young2014-11-091-1/+1
|
* Terminate execution if an essential library fails to openChris Young2014-11-091-1/+3
|
* Open libraries *before* we need them...Chris Young2014-11-091-2/+3
|
* Fix headersChris Young2014-11-091-0/+1
|
* Add new libs file to centrally open/close required libraries, and move a ↵Chris Young2014-11-091-21/+4
| | | | couple of the existing manual opens to it.
* change url setting api to take an nsurl instead of a text stringVincent Sanders2014-11-021-6/+9
|
* Change contextual content retrieval to browser features.Vincent Sanders2014-11-021-2/+2
| | | | | | | | | | | | | Update the API which allows frontends to acquire the page features (images, link urls or form elements) present at the given coordinates within a browser window. By making this an explicit browser_window API and using the browser.h header for the associated data structure with a more appropriate API naming the usage is much more obvious and contained. Additionally the link url is now passed around as a nsurl stopping it being converted from nsurl to text and back again several times.
* Change min stack (again) to 128KChris Young2014-10-301-1/+1
| | | | It has come to my attention that some websites (eg amigakit.com) are using marginally more than the 96K stack space set previously. This should give plenty of breathing space.
* Update url setting API to return nserror code instead of calling warn_userVincent Sanders2014-10-291-2/+3
|
* Move scroller check into update_extent, where it makes more senseChris Young2014-10-261-1/+2
|
* Check scroller requirements as part of the reformat.Chris Young2014-10-261-7/+4
|
* Avoid a crash on exit in kiosk modeChris Young2014-10-261-1/+3
|
* Expand status bar to entire window widthChris Young2014-10-261-83/+47
|
* Make the new hscroller work properlyChris Young2014-10-261-24/+6
|
* Move the hscrollbar inside the windowChris Young2014-10-261-20/+76
|
* Offset new windows as per style guideChris Young2014-10-261-11/+20
|
* Make window counting a generic functionChris Young2014-10-261-0/+32
|
* Schedule redraws for 1cs to ensure they take place after reformats (which ↵Chris Young2014-10-261-1/+1
| | | | are scheduled by the core for 0cs)
* Don't need redraw_scheduld as the scheduler stops it being scheduled twice ↵Chris Young2014-10-261-5/+0
| | | | anyway
* Fix button update, avoid forward declChris Young2014-10-261-60/+58
|
* Cache size gadget widthChris Young2014-10-251-8/+8
|
* Correct commentChris Young2014-10-251-2/+1
|
* Use the correct size gadget width (thx tboeckel)Chris Young2014-10-251-5/+4
|
* Check scroller requirement after a resizeChris Young2014-10-251-96/+97
|
* Remove the vertical scroll bar if there's nothing to scrollChris Young2014-10-251-19/+26
|
* Remove some old VertProp tagsChris Young2014-10-251-2/+0
|
* Merge branch 'chris/shorter-vscrollbar'Chris Young2014-10-251-27/+106
|\ | | | | | | Move the vertical scroller into the window area and allow it to be removed when eg. framesets are being displayed.
| * Use more sensible default value for size gadget widthChris Young2014-10-251-4/+5
| |
| * Returns bool, not voidChris Young2014-10-251-1/+1
| |