summaryrefslogtreecommitdiff
path: root/amiga/options.h
Commit message (Collapse)AuthorAgeFilesLines
* non-working "always show tabbar" optionChris Young2012-12-091-0/+3
|
* Warn when closing multiple tabsChris Young2012-12-081-0/+3
|
* Allow the size of the web search gadget to be user-setChris Young2012-12-061-0/+3
|
* Remove font_unicode_list - font_unicode is a list now.Chris Young2012-11-081-3/+0
|
* Now the graphics.library plotters are feature-complete, use them by default.Chris Young2012-10-241-1/+1
|
* set the redraw to non-tiled by default. people can play with these settings ↵Chris Young2012-09-221-2/+2
| | | | if they are low on memory.
* allow font anti-aliasing to be switched off in true-colour modesChris Young2012-08-121-0/+3
|
* Change default mask threshold to something more sensibleChris Young2012-08-121-1/+1
|
* allow tweaking threshold where alpha turns to maskChris Young2012-08-101-0/+3
|
* allow setting dithering quality 0-2Chris Young2012-08-051-0/+3
|
* Run NetSurf at priority 0 by default, dropping to priority -1 whenChris Young2012-06-041-0/+3
| | | | | | downloading. svn path=/trunk/netsurf/; revision=13955
* Allow a comma-separated list of fonts to be specified in font_unicode_listChris Young2012-05-091-0/+3
| | | | | | | | | | | to provide more preferred fonts. eg. if a user has dedicated Japanese and Korean fonts available they might want a config like: font_unicode:Japanese font_unicode_list:Korean,Code2000 This will scan Japanese and Korean fonts first, then fill in any blanks with Code2000 (followed by alphabetically all other fonts installed) svn path=/trunk/netsurf/; revision=13917
* Use font_unicode option as preferred (first scanned) font. Ideally need toChris Young2012-05-051-1/+4
| | | | | | | expand this so multiple fonts can be specified. Allow disabling of scanning other fonts. Add stubs for a scanning progress GUI. svn path=/trunk/netsurf/; revision=13907
* Integrate Unicode font scanner into NetSurf.Chris Young2012-05-051-0/+3
| | | | | | | | NetSurf will now use any available font when trying to print characters that are missing from the current font. TODO: Preferred font list. svn path=/trunk/netsurf/; revision=13905
* Make simple refresh a configurable optionChris Young2012-04-281-0/+3
| | | | svn path=/trunk/netsurf/; revision=13896
* Re-jig URL launch as would never have fallen back to using openurl.library.Chris Young2012-04-181-3/+6
| | | | | | Add it as an option instead. svn path=/trunk/netsurf/; revision=13882
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-221-156/+162
| | | | svn path=/trunk/netsurf/; revision=13548
* More reasonable tile size defaultsChris Young2012-03-031-2/+2
| | | | svn path=/trunk/netsurf/; revision=13506
* allow both x and y dimensions of redraw tiles to be configuredChris Young2012-02-291-4/+7
| | | | svn path=/trunk/netsurf/; revision=13502
* Add tiled refresh, with tiles of max size option_redraw_tile_size. ThisChris Young2012-02-251-1/+4
| | | | | | | | | reduces the size of our off-screen bitmap and associated memory. Only works with browser windows at present. History and treeviews still have full window refresh/bitmap. Setting the option to 0 brings back the old behaviour. svn path=/trunk/netsurf/; revision=13468
* option_screen_compositing to enable switching compositing for NetSurf's ownChris Young2012-02-241-0/+3
| | | | | | | | | | | | | | | | | | | screen on/off. Some experimentation with compositing and simple/smart refresh reveals that simple refresh windows with compositing on for the screen behave the same as smart refresh windows. Smart refresh windows with compositing off use more gfx memory than when compositing is on. Simple refresh windows with compositing off will probably be more memory efficient, as we are using an off-screen bitmap to render the browsing area anyway. However due to this bitmap being re-used over multiple tabs/windows, it does not always reflect what should be on the window, so performing a redraw of damaged areas may be the only option. Need to read damaged regions from layer (probably through struct Region *DamageList) and check on performance vs memory or make the window refresh type configurable. Simple refresh code #ifdefed out for now for further investigation later. svn path=/trunk/netsurf/; revision=13464
* Default X and Y aspect ratio to 0. This will make NetSurf assume that the ↵Chris Young2012-01-061-2/+2
| | | | | | | | screen has square pixels, which is true in 99% of cases on OS4. svn path=/trunk/netsurf/; revision=13377
* Reimplement the previous hotlist menu refresh code, as the bug causing the ↵Chris Young2011-11-071-1/+4
| | | | | | | | previous problems was fixed ages ago. Make the timing configurable for now but default to off. svn path=/trunk/netsurf/; revision=13135
* Be more flexible with the aspect ratios we correct to.Chris Young2011-10-111-3/+6
| | | | svn path=/trunk/netsurf/; revision=13036
* Default search ico should only come from themeChris Young2011-10-081-3/+0
| | | | svn path=/trunk/netsurf/; revision=13011
* Change option to get accepted languages from Locale into a checkbox so it ↵Chris Young2011-09-111-1/+4
| | | | | | | | updates at startup svn path=/trunk/netsurf/; revision=12787
* Avoid calling AllocSignal() until the last minute, as it causes PM_OPEN to ↵Chris Young2011-09-021-4/+1
| | | | | | | | | | initiate an Intuition or Input deadlock. Re-enable context menus as they are now safe. Remove sticky context menus option as this can be set in GUI prefs as a global option. svn path=/trunk/netsurf/; revision=12698
* Correct aspect ratio correctly and support widescreen displaysChris Young2011-07-171-1/+4
| | | | svn path=/trunk/netsurf/; revision=12607
* When opening new tabs next to the active one, open them sequentially until ↵Chris Young2011-07-021-1/+1
| | | | | | | | | the tab is switched away from. This is more akin to how Firefox etc do it. Make this the default. svn path=/trunk/netsurf/; revision=12561
* Add an option to open new tabs next to the current tab. Needs some ↵Chris Young2011-07-021-0/+3
| | | | | | | | | additional logic as opening multiple tabs results in the new tabs being in reverse order to that expected. svn path=/trunk/netsurf/; revision=12559
* disable context menus until i figure out why they have suddenly started crashingChris Young2011-06-171-1/+1
| | | | svn path=/trunk/netsurf/; revision=12487
* remove no_iframesChris Young2011-06-151-3/+0
| | | | svn path=/trunk/netsurf/; revision=12482
* Sticky menus shouldn't be default as they are non-standardChris Young2011-05-081-1/+1
| | | | svn path=/trunk/netsurf/; revision=12309
* Make Y DPI a configurable option. Default is 72 (AmigaOS standard)Chris Young2011-04-251-1/+4
| | | | svn path=/trunk/netsurf/; revision=12237
* Implement ask overwriteChris Young2011-03-261-1/+1
| | | | svn path=/trunk/netsurf/; revision=12135
* Direct rendering. Testing only; has problems with inline image placement, greyChris Young2011-03-051-1/+4
| | | | | | | | background for all text, won't work with Cairo renderer, may crash with certain gfx lib operations (AreaFill). However, seems to be much faster in 16-bit mode than off-screen buffered rendering. svn path=/trunk/netsurf/; revision=11913
* Enable selection of rendering engine (graphics.library, Cairo) at runtime, ↵Chris Young2011-03-051-2/+5
| | | | | | | | if we're compiled with Cairo support. svn path=/trunk/netsurf/; revision=11912
* Disable IFrames by default as they are a pop-up nightmareChris Young2011-01-041-1/+1
| | | | svn path=/trunk/netsurf/; revision=11207
* Allow snapshotting of treeview windowsChris Young2010-12-191-2/+38
| | | | svn path=/trunk/netsurf/; revision=11096
* Merge treeview-redux to trunkJohn Mark Bell2010-10-051-3/+0
| | | | svn path=/trunk/netsurf/; revision=10865
* Change "cache native bitmaps" default back to 0. The userbase's graphics ↵Chris Young2010-09-281-1/+1
| | | | | | | | cards are worse than anticipated. svn path=/trunk/netsurf/; revision=10853
* Debug plotters. It appears that the odd slowness on some sites (eg. ↵Chris Young2010-08-301-1/+1
| | | | | | | | sourceforge.net) can be eliminated by setting option_cache_bitmaps to 2, so make that the default. svn path=/trunk/netsurf/; revision=10722
* Add startup and shutdown ARexx scripts (default to startup.nsrx and ↵Chris Young2010-08-281-0/+6
| | | | | | | | shutdown.nsrx) Remove PROGDIR: from arexx_dir default as AM_EXECUTE can't find files in PROGDIR: svn path=/trunk/netsurf/; revision=10719
* Add option to control whether drags have icons or just a pointer change.Chris Young2010-07-291-1/+4
| | | | svn path=/trunk/netsurf/; revision=10672
* Amiga font code revamped and fixed. Will now fall back to a different font ↵Chris Young2010-05-061-1/+4
| | | | | | | | | | | if the character isn't present in the current one, this needs a complete or near-complete Unicode font in order to be useful - Code2000 and Bitstream Cyberbit are auto-detected by NetSurf on startup if none is configured. Japanese websites now display correctly, along with Japanese characters within Google UK search results etc. svn path=/trunk/netsurf/; revision=10551
* Remove verbose_log from options fileChris Young2010-04-031-3/+0
| | | | | | Copy libz as I've built 1.2.4 and it has faster gzip code svn path=/trunk/netsurf/; revision=10230
* Search and a couple of other new optionsChris Young2009-12-231-0/+3
| | | | svn path=/trunk/netsurf/; revision=9756
* Non-functional search barChris Young2009-12-211-0/+3
| | | | svn path=/trunk/netsurf/; revision=9754
* Simple web search implementationChris Young2009-12-181-2/+7
| | | | svn path=/trunk/netsurf/; revision=9735
* Amiga print UIChris Young2009-11-011-0/+3
| | | | svn path=/trunk/netsurf/; revision=9655