summaryrefslogtreecommitdiff
path: root/frontends/amiga/gui.c
Commit message (Collapse)AuthorAgeFilesLines
* change browser_window_get_features to use unscaled coordinatesVincent Sanders2019-08-031-2/+1
|
* change browser_window_mouse_track to use unscaled coordinatesVincent Sanders2019-08-031-2/+2
|
* change browser_window_mouse_click to use unscaled coordinatesVincent Sanders2019-08-031-2/+2
| | | | | this means frontends no longer need to scale mouse click events thus simplifying their implementation.
* fix missed get dimensions call in amiga frontendVincent Sanders2019-08-021-1/+1
|
* remove scaled parameter from get_dimensionsVincent Sanders2019-08-021-9/+7
|
* AMIGA: Update to remove rectangle scaling from browser window invalidateVincent Sanders2019-08-011-1/+1
|
* Make SimpleRefresh the default.Chris Young2019-05-121-1/+1
| | | | This reduces memory use.
* Add a render hook to ensure the browser window is redrawn when neededChris Young2019-05-121-0/+19
| | | | This fixes the occasional damaged areas in SimpleRefresh mode
* Mark functions as staticChris Young2019-05-101-20/+19
|
* Hide the message port which is shared amongst all Amiga NetSurf windowsChris Young2019-05-101-1/+7
|
* Make the window list more privateChris Young2019-05-101-2/+55
| | | | TODO: fix arexx.c to not need it
* Make screen pointer accesible through an accessor function onlyChris Young2019-05-101-1/+11
|
* Replace global current gui_window with an accessor functionChris Young2019-05-101-1/+6
|
* try storing form_control in the hook dataChris Young2019-05-081-13/+0
| | | | it doesn't appear to be needed anywhere else
* Make gadget object enum private to gui.cChris Young2019-05-081-0/+39
|
* make gui_window_2 private to gui.cChris Young2019-05-081-13/+60
|
* Pass ptr to clicktab var instead of func callsChris Young2019-05-081-1/+1
|
* more accessor for gui_window_2Chris Young2019-05-081-4/+70
|
* Move ami_(re)set_pointer (back?) into gui.c as they need to set/read the ↵Chris Young2019-05-081-3/+16
| | | | gui_window_2 structure
* throbber crapChris Young2019-05-081-0/+39
|
* get the window title from a gui_windowChris Young2019-05-081-0/+7
|
* set find window functionChris Young2019-05-081-0/+10
|
* Try moving form_control into gui_windowChris Young2019-05-081-4/+3
|
* Accessor for the select menu control pointerChris Young2019-05-081-0/+18
|
* remove direct access to gui_window_2's gui_windowChris Young2019-05-081-1/+13
|
* accessor for window from gui_window_2Chris Young2019-05-071-2/+7
|
* set menu to window through a functionChris Young2019-05-071-0/+9
|
* Get menu structure directly from gui_windowChris Young2019-05-071-0/+7
|
* Get the shared window's window structure directly from the gui_windowChris Young2019-05-071-0/+6
| | | | In a lot of places gui_window_2 was only being accessed for Window
* Make gui_window private to gui.cChris Young2019-05-071-2/+90
| | | | TODO: ratonalise these accessors
* fix several amiga frontend warningsVincent Sanders2019-05-061-1/+0
|
* Fix some bsdsocket.library usageChris Young2019-04-081-0/+6
| | | | NetSurf now builds against libcurl-AmiSSL
* No reason why RISC OS ,type extensions should end up in the Amiga resources ↵Chris Young2019-03-171-15/+1
| | | | any more
* Fix URL + FORCE issue #2635Chris Young2019-03-021-4/+4
|
* Quick fix to convert helphints to correct charsetChris Young2018-09-271-1/+1
| | | | We should probably have our own strings for these
* Minor optChris Young2018-02-271-4/+2
|
* Remove the iconify gadget from the OS3 buildChris Young2017-11-131-0/+2
| | | | It is unlikely to ever work and I'm bored of hearing about it not working.
* 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
|