tests/arthur/data/qps/fonts.qps
author Craig Heath <craigh@symbian.org>
Wed, 16 Jun 2010 16:18:05 +0100
branchGCC_SURGE
changeset 26 8776df5ac359
parent 0 1918ee327afb
permissions -rw-r--r--
Bug 2955. Workaround for lack of atomic operations in GCCE standard libraries (fall back to default use of Mutex)

begin_block drawtexts
setPen red
drawLine 0 20 width 20
setPen blue

setFont "times" 12
drawText 0 20 "(times)"

setFont "times" 12 bold
drawText 100 20 "(times, 12, bold)"

setFont "times" 12 normal italic
drawText 250 20 "(times, 12, italic)"

setFont "times" 12 bold italic
drawText 400 20 "(times, 12, bold, italic)"

translate 0 20

setPen red
drawLine 0 20 width 20
setPen green

setFont "helvetica" 12
drawText 0 20 "(helvetica)"

setFont "helvetica" 12 bold
drawText 100 20 "(helvetica, 12, bold)"

setFont "helvetica" 12 normal italic
drawText 250 20 "(helvetica, 12, italic)"

setFont "helvetica" 12 bold italic
drawText 400 20 "(helvetica, 12, bold, italic)"

translate 0 20

setPen red
drawLine 0 20 width 20
setPen orange

setFont "courier" 12
drawText 0 20 "(courier)"

setFont "courier" 12 bold
drawText 100 20 "(courier, 12, b)"

setFont "courier" 12 normal italic
drawText 250 20 "(courier, 12, i)"

setFont "courier" 12 bold italic
drawText 400 20 "(courier, 12, bi)"
end_block 

# Repeat with scale
translate 0 100
scale 1 2
repeat_block drawtexts

# Repeat with rotation
resetMatrix
translate 100 300
rotate 20
repeat_block drawtexts