-rw-r--r-- | library/qpeapplication.cpp | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index cf437da..f84bc0e 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp | |||
@@ -71,4 +71,6 @@ | |||
71 | #include "network.h" | 71 | #include "network.h" |
72 | #include "fontmanager.h" | 72 | #include "fontmanager.h" |
73 | #include "fontdatabase.h" | ||
74 | |||
73 | #include "power.h" | 75 | #include "power.h" |
74 | #include "alarmserver.h" | 76 | #include "alarmserver.h" |
@@ -386,5 +388,5 @@ public: | |||
386 | if ( disable_suspend > 2 && !powerOnline() && !networkOnline() ) { | 388 | if ( disable_suspend > 2 && !powerOnline() && !networkOnline() ) { |
387 | QWSServer::sendKeyEvent( 0xffff, Qt::Key_F34, FALSE, TRUE, FALSE ); | 389 | QWSServer::sendKeyEvent( 0xffff, Qt::Key_F34, FALSE, TRUE, FALSE ); |
388 | return TRUE; | 390 | return TRUE; |
389 | } | 391 | } |
390 | } | 392 | } |
@@ -505,5 +507,5 @@ QPEApplication::QPEApplication( int& argc, char **argv, Type t ) | |||
505 | int dw = desktop()->width(); | 507 | int dw = desktop()->width(); |
506 | if ( dw < 200 ) { | 508 | if ( dw < 200 ) { |
507 | setFont( QFont( "helvetica", 8 ) ); | 509 | // setFont( QFont( "helvetica", 8 ) ); |
508 | AppLnk::setSmallIconSize(10); | 510 | AppLnk::setSmallIconSize(10); |
509 | AppLnk::setBigIconSize(28); | 511 | AppLnk::setBigIconSize(28); |
@@ -600,5 +602,19 @@ QPEApplication::QPEApplication( int& argc, char **argv, Type t ) | |||
600 | setFont( fn ); | 602 | setFont( fn ); |
601 | } | 603 | } |
604 | else { | ||
605 | Config config( "qpe" ); | ||
606 | config.setGroup( "Appearance" ); | ||
607 | QString familyStr = config.readEntry( "FontFamily", "fixed" ); | ||
608 | QString styleStr = config.readEntry( "FontStyle", "Regular" ); | ||
609 | QString sizeStr = config.readEntry( "FontSize", "10" ); | ||
610 | QString charSetStr = config.readEntry( "FontCharSet", "iso10646-1" ); | ||
611 | bool ok; | ||
612 | int i_size = sizeStr.toInt( &ok, 10 ); | ||
613 | FontDatabase fdb; | ||
614 | QFont selectedFont = fdb.font( familyStr, styleStr, i_size, charSetStr ); | ||
615 | setFont( selectedFont ); | ||
616 | } | ||
602 | } | 617 | } |
618 | |||
603 | #endif | 619 | #endif |
604 | 620 | ||