1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
! XPCE 5.0 Class Variable defaults for colour and monochrome displays
! Author: Jan Wielemaker, University of Amsterdam
! Modified: Tue Dec 7 14:15:04 1999
! Added alias for symbol-font
!
! See README.customise before changing this file.
! Binding for the logical font-names. You can bind any name to any
! font here.
display.system_fonts: [ normal := font(helvetica, roman, 12), \
bold := font(helvetica, bold, 12), \
italic := font(helvetica, oblique, 12), \
small := font(helvetica, roman, 10), \
large := font(helvetica, roman, 14), \
boldlarge := font(helvetica, bold, 14), \
huge := font(helvetica, roman, 18), \
boldhuge := font(helvetica, bold, 18), \
fixed := font(screen, roman, 13), \
tt := font(screen, roman, 13), \
boldtt := font(screen, bold, 13), \
symbol := font(symbol, roman, 12) \
]
! This one is often slow on colour displays. Prefer the beep then.
*.visual_bell: when(@colour_display, @off, @on)
! Set this to @on if you want searching in the editor to be case-sensitive
! by default.
! editor.exact_case: @on
!Use the following resources if you prefer the X11 (xterm) scrollbars
!scroll_bar.look: x
!scroll_bar.distance: - @_win_pen
!scroll_bar.elevation: when(@colour_display, \
! 1, \
! elevation(@nil, 1, @grey50_image))
! Finally, parse the user's defaults file.
#include ~/.xpce/Defaults
|