Tagged Questions
1
vote
2answers
917 views
Fixed width font - Symbian C++ CEikLabel
I want to change the font I am using in a CEikLabel on S60 device
I believe I can do the following
const CFont* aPlainFont = LatinPlain12();
aLabel->SetFont(aPlainFont);
where LatinPlain12 is ...
1
vote
3answers
1k views
Symbian S60 - Scrolling text in a CEikLabel
I have a single line CEikLabel in my application that needs to scroll text.
The simple solution that comes to mind (but possibly naive) would be something like..
[begin pseduo code]
on timer.fire ...