summaryrefslogtreecommitdiff
path: root/frontends/amiga/gui_menu.c
Commit message (Collapse)AuthorAgeFilesLines
* Amiga: Add "Enable CSS" item to the Browser menuChris Young2024-01-031-1/+30
| | | | | This allows for a quick toggle of CSS next to the similar JS option Enable CSS has not yet been added to the full prefs GUI
* amiga: Probably support present_cookiesDaniel Silverstone2020-05-231-1/+1
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Make screen pointer accesible through an accessor function onlyChris Young2019-05-101-1/+1
|
* make gui_window_2 private to gui.cChris Young2019-05-081-8/+12
|
* more accessor for gui_window_2Chris Young2019-05-081-2/+2
|
* remove direct access to gui_window_2's gui_windowChris Young2019-05-081-25/+25
|
* accessor for window from gui_window_2Chris Young2019-05-071-8/+8
|
* set menu to window through a functionChris Young2019-05-071-7/+19
|
* Get menu structure directly from gui_windowChris Young2019-05-071-22/+22
|
* Get the shared window's window structure directly from the gui_windowChris Young2019-05-071-1/+1
| | | | In a lot of places gui_window_2 was only being accessed for Window
* Make gui_window private to gui.cChris Young2019-05-071-47/+47
| | | | TODO: ratonalise these accessors
* Browser: Rename function to access bw URL.Michael Drake2018-07-231-2/+2
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* Migrate Amiga local history to corewindowChris Young2017-06-101-1/+1
|
* fix errors from cppcheck in amiga frontendVincent Sanders2017-03-031-1/+1
|
* minor menu fixesChris Young2017-01-151-0/+3
|
* Attempt hotlist menu refreshChris Young2017-01-151-13/+31
|
* Ignore the other check toggle stuff with menuclassChris Young2017-01-151-1/+11
| | | | The one thing we are toggling is actioned immediately when potentially changing the state in the prefs window
* Update JS menu check state when prefs option is toggledChris Young2017-01-151-0/+8
|
* Split up menu.c into generic and gui_window-specific filesChris Young2017-01-151-0/+1084