

! ------------- SETTINGS SHARED BY DEV. ENVT. AND ALL PLP APPLICATIONS ON PC ------------
! 
! Format:
!
!	* Comment
!	Line-comment is started by the ! (exclamation mark)
!
!	* Default
!	<class>.<class-variable>: <value>
!
!	* Values
!	Values are in standard term-representation.  Chains may be written
!	as a Prolog list.  Values spanning multiple lines use \<NL> to continue
!	on the next line. Resist temptation to end with a period!
!
! ---------------------------------------------------------------------------------------


! 4.3.08
! Predefined font families created at XPCE startup time. See display->load_fonts.
! This is in fact the XPCE default set so the default values of display.screen_fonts,
! display.courier_fonts, etc can be used. Windows doesn't use XLFD 4th arguments
! like Unix but the defaults seem not to be ok.

display.font_families: [ screen_fonts, courier_fonts, helvetica_fonts, times_fonts, symbol_fonts ]




! 27.02.08
! Binding for the logical (alias) font-names.  If a change is made, propogate it to the other Shared_defaults_*.txt
! file. 
! No need here for 4th (XLFD) arguments for font aliases since they are created from the display_font_families defined above
! - BUT ensure that the font/3 terms really are present in the above lists!
! A nice way to test that these appear ok is dialogs/font_chooser_test.pl

display.system_fonts:					\
   [    normal    := font(helvetica, roman, 12), 	\
 	bold      := font(helvetica, bold,  12), 	\
  	italic    := font(helvetica, oblique, 12), 	\
 	small     := font(helvetica, roman,  10),   	\
	tiny      := font(times, roman, 10), 	 	\
	large     := font(helvetica, roman, 14), 	\
  	boldlarge := font(helvetica, bold, 14),	 	\
  	huge      := font(helvetica, roman, 18), 	\
  	boldhuge  := font(helvetica, bold, 18),		\
  	fixed2    := font(courier,roman, 12),		\
  	symbol    := font(symbol, roman, 13),	 	\
	fixed     := font(screen, roman, 12), 		\
	screen13  := font(screen, roman, 13), 		\
	tt        := font(screen, roman, 12), 		\
	boldtt    := font(screen, bold,  12)		\
   ]


