!Default 3.34 KB
Newer Older
Kevin Bracey's avatar
Kevin Bracey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
; Copyright 1997 Acorn Computers Ltd
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
;     http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
;
;
; Default settings for system specific options. This file is read before the system options files,
; and sets the default values for these options, if not set in the system options file.
;

20 21
	GBLS	module_postfix					; something to appear after the module version

Kevin Bracey's avatar
Kevin Bracey committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
	Option	sixteenmeg, 		false			; if true, assume app space ends at 16 meg.
	Option	Stork,			true			; try saving power by calling Portable_Idle

	Option	Medusa,			true			; support Medusa Memory management
	Option	BounceClose,		false			; debounce close icon
	Option	windowsprite,		true			; use tile_1 for colour 1 work areas
	Option	outlinefont,		true			; replace VDU 5 rendering of text with outline font
	Option	UseDynamicArea,		true    		; use a dynamic area on medusa for the sprite pool
	Option	ChildWindows,		true			; support for nested child windows
	Option	PlotSpritesFromPalette, true			; Use palette entries, not translation table
                                            			; (this means funny paletted sprites plot
                                            			; better in 16bpp+ modes)
	Option	STB,			false			; Running on an STB/NC-like device
	Option	NoCommandPrompt, 	false			; Don't show "Press SPACE..." when closing command
								; window
	Option	DontCheckModeOnInit, 	false			; Don't validate the configured Wimp mode in module
								; init, do it on startup
	Option	ShrinkableAreas, 	false:LAND:Medusa 	; Support shrinkable dynamic areas
	Option	BlendedFonts,		false			; Blend fonts directly with window backgrounds
	Option	KeyboardMenus,		false			; Allow keyboard control of menus
	Option	DeleteRight,		false			; Delete key deletes right
	Option	DisableShiftF12,	false			; Disable Shift-F12 iconbar toggling
	Option	NCMenus,		false			; Use NC menu style
	Option	Twitter,		false			; Anti-twitter on redraws
	Option	TwitterOnlyMenus,	false:LAND:Twitter 	; Anti-twitter only menus
	Option	RegisterWIMPSymbolFont,	true			; Register WIMPSymbol font
	Option	NKmessages1,		false			; message queue optimisation (using lastpointer)
	Option	NKmessages2,		true			; message queue optimisation
								; (remove multiple memory change messages)
	Option	UseAMBControl,		true			; delegate task memory management to OS_AMBControl
	Option	StrongARM,		true
	Option	FPE4,			true			; assume FPE 4.00 or later present
								; Icon bar pops to front when pointer
	Option	PoppingIconBar,		true:LAND::LNOT:DisableShiftF12	; at bottom of screen
	Option	IconiseButton,		false			; Windows given iconise button
	Option	ChocolateScreen,	false			; Clean cached screen after redraw loops
	Option	StretchErrorButtons,	true			; Stretch buttons in error box to fit text

	Option	RegisterMessages,	false
	Option	RegisterTools2D,	false
	Option	RegisterTools3D,	false
	Option	RegisterSprites,	false
	Option	RegisterSprites22,	false
	Option	RegisterTemplates,	false

        END