summaryrefslogtreecommitdiff
authorkergoth <kergoth>2003-04-23 19:08:19 (UTC)
committer kergoth <kergoth>2003-04-23 19:08:19 (UTC)
commitf99c8e576030a7e8e83aa850b09ec69cc6217bb1 (patch) (unidiff)
treec2b4f3cf2c5858bc14c5a72be71f1b4b4e276aad
parent3d0eacfe335f073b2ece67d762e8d182a6329303 (diff)
downloadopie-f99c8e576030a7e8e83aa850b09ec69cc6217bb1.zip
opie-f99c8e576030a7e8e83aa850b09ec69cc6217bb1.tar.gz
opie-f99c8e576030a7e8e83aa850b09ec69cc6217bb1.tar.bz2
Change the default font to Bitstream Vera rather than Helvetica. See http://openzaurus.org/mirror/ for the qpfs in tar.gz and ipk format.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/opie-common.control4
-rw-r--r--library/qpeapplication.cpp8
2 files changed, 6 insertions, 6 deletions
diff --git a/library/opie-common.control b/library/opie-common.control
index 52048a3..1cdd465 100644
--- a/library/opie-common.control
+++ b/library/opie-common.control
@@ -1,10 +1,10 @@
1Package: opie-common 1Package: opie-common
2Files: etc/colors bin/opie-reorgfiles apps/*/.directory etc/mime.types apps/Settings/quit.desktop pics/logo/* 2Files: etc/colors bin/opie-reorgfiles apps/*/.directory etc/mime.types apps/Settings/quit.desktop pics/logo/*
3Priority: required 3Priority: required
4Section: opie/system 4Section: opie/system
5Maintainer: Project Opie <opie@handhelds.org> 5Maintainer: Project Opie <opie@handhelds.org>
6Architecture: arm 6Architecture: arm
7Version: $QPE_VERSION-$SUB_VERSION.2 7Version: $QPE_VERSION-$SUB_VERSION.3
8Depends: libqpe1, qte-fonts, qpf-helvetica 8Depends: libqpe1, qte-fonts, qpf-bitstream-vera
9Replaces: opie-base 9Replaces: opie-base
10Description: Core opie files 10Description: Core opie files
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index 7f8299a..f4bfda9 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -473,107 +473,107 @@ static void setTreble( int t = 0, int percent = -1 )
473 473
474*/ 474*/
475 475
476/*! 476/*!
477 \fn void QPEApplication::appMessage( const QCString& msg, const QByteArray& data ) 477 \fn void QPEApplication::appMessage( const QCString& msg, const QByteArray& data )
478 478
479 This signal is emitted when a message is received on this 479 This signal is emitted when a message is received on this
480 application's QPE/Application/<i>appname</i> \link qcop.html 480 application's QPE/Application/<i>appname</i> \link qcop.html
481 QCop\endlink channel. 481 QCop\endlink channel.
482 482
483 The slot to which you connect this signal uses \a msg and \a data 483 The slot to which you connect this signal uses \a msg and \a data
484 in the following way: 484 in the following way:
485 485
486\code 486\code
487 void MyWidget::receive( const QCString& msg, const QByteArray& data ) 487 void MyWidget::receive( const QCString& msg, const QByteArray& data )
488 { 488 {
489 QDataStream stream( data, IO_ReadOnly ); 489 QDataStream stream( data, IO_ReadOnly );
490 if ( msg == "someMessage(int,int,int)" ) { 490 if ( msg == "someMessage(int,int,int)" ) {
491 int a,b,c; 491 int a,b,c;
492 stream >> a >> b >> c; 492 stream >> a >> b >> c;
493 ... 493 ...
494 } else if ( msg == "otherMessage(QString)" ) { 494 } else if ( msg == "otherMessage(QString)" ) {
495 ... 495 ...
496 } 496 }
497 } 497 }
498\endcode 498\endcode
499 499
500 \sa qcop.html 500 \sa qcop.html
501 Note that messages received here may be processed by qpe application 501 Note that messages received here may be processed by qpe application
502 and emitted as signals, such as flush() and reload(). 502 and emitted as signals, such as flush() and reload().
503*/ 503*/
504 504
505/*! 505/*!
506 Constructs a QPEApplication just as you would construct 506 Constructs a QPEApplication just as you would construct
507 a QApplication, passing \a argc, \a argv, and \a t. 507 a QApplication, passing \a argc, \a argv, and \a t.
508 508
509 For applications, \a t should be the default, GuiClient. Only 509 For applications, \a t should be the default, GuiClient. Only
510 the Qtopia server passes GuiServer. 510 the Qtopia server passes GuiServer.
511*/ 511*/
512QPEApplication::QPEApplication( int & argc, char **argv, Type t ) 512QPEApplication::QPEApplication( int & argc, char **argv, Type t )
513 : QApplication( argc, argv, t ) 513 : QApplication( argc, argv, t )
514{ 514{
515 d = new QPEApplicationData; 515 d = new QPEApplicationData;
516 d->loadTextCodecs(); 516 d->loadTextCodecs();
517 d->loadImageCodecs(); 517 d->loadImageCodecs();
518 int dw = desktop() ->width(); 518 int dw = desktop() ->width();
519 519
520 if ( dw < 200 ) { 520 if ( dw < 200 ) {
521 setFont( QFont( "helvetica", 8 ) ); 521 setFont( QFont( "vera", 8 ) );
522 AppLnk::setSmallIconSize( 10 ); 522 AppLnk::setSmallIconSize( 10 );
523 AppLnk::setBigIconSize( 28 ); 523 AppLnk::setBigIconSize( 28 );
524 } 524 }
525 else if ( dw > 600 ) { 525 else if ( dw > 600 ) {
526 setFont( QFont( "helvetica", 18 ) ); 526 setFont( QFont( "vera", 18 ) );
527 AppLnk::setSmallIconSize( 24 ); 527 AppLnk::setSmallIconSize( 24 );
528 AppLnk::setBigIconSize( 48 ); 528 AppLnk::setBigIconSize( 48 );
529 } 529 }
530 else if ( dw > 200 ) { 530 else if ( dw > 200 ) {
531 setFont( QFont( "helvetica", 10 ) ); 531 setFont( QFont( "vera", 10 ) );
532 AppLnk::setSmallIconSize( 14 ); 532 AppLnk::setSmallIconSize( 14 );
533 AppLnk::setBigIconSize( 32 ); 533 AppLnk::setBigIconSize( 32 );
534 } 534 }
535 535
536 536
537 QMimeSourceFactory::setDefaultFactory( new ResourceMimeFactory ); 537 QMimeSourceFactory::setDefaultFactory( new ResourceMimeFactory );
538 538
539 connect( this, SIGNAL( lastWindowClosed() ), this, SLOT( hideOrQuit() ) ); 539 connect( this, SIGNAL( lastWindowClosed() ), this, SLOT( hideOrQuit() ) );
540#if defined(Q_WS_QWS) && !defined(QT_NO_COP) 540#if defined(Q_WS_QWS) && !defined(QT_NO_COP)
541 541
542 QString qcopfn( "/tmp/qcop-msg-" ); 542 QString qcopfn( "/tmp/qcop-msg-" );
543 qcopfn += QString( argv[ 0 ] ); // append command name 543 qcopfn += QString( argv[ 0 ] ); // append command name
544 544
545 QFile f( qcopfn ); 545 QFile f( qcopfn );
546 if ( f.open( IO_ReadOnly ) ) { 546 if ( f.open( IO_ReadOnly ) ) {
547 flock( f.handle(), LOCK_EX ); 547 flock( f.handle(), LOCK_EX );
548 } 548 }
549 549
550 sysChannel = new QCopChannel( "QPE/System", this ); 550 sysChannel = new QCopChannel( "QPE/System", this );
551 connect( sysChannel, SIGNAL( received( const QCString &, const QByteArray & ) ), 551 connect( sysChannel, SIGNAL( received( const QCString &, const QByteArray & ) ),
552 this, SLOT( systemMessage( const QCString &, const QByteArray & ) ) ); 552 this, SLOT( systemMessage( const QCString &, const QByteArray & ) ) );
553 553
554 QCString channel = QCString( argv[ 0 ] ); 554 QCString channel = QCString( argv[ 0 ] );
555 channel.replace( QRegExp( ".*/" ), "" ); 555 channel.replace( QRegExp( ".*/" ), "" );
556 d->appName = channel; 556 d->appName = channel;
557 channel = "QPE/Application/" + channel; 557 channel = "QPE/Application/" + channel;
558 pidChannel = new QCopChannel( channel, this ); 558 pidChannel = new QCopChannel( channel, this );
559 connect( pidChannel, SIGNAL( received( const QCString &, const QByteArray & ) ), 559 connect( pidChannel, SIGNAL( received( const QCString &, const QByteArray & ) ),
560 this, SLOT( pidMessage( const QCString &, const QByteArray & ) ) ); 560 this, SLOT( pidMessage( const QCString &, const QByteArray & ) ) );
561 561
562 if ( f.isOpen() ) { 562 if ( f.isOpen() ) {
563 d->keep_running = FALSE; 563 d->keep_running = FALSE;
564 QDataStream ds( &f ); 564 QDataStream ds( &f );
565 QCString channel, message; 565 QCString channel, message;
566 QByteArray data; 566 QByteArray data;
567 while ( !ds.atEnd() ) { 567 while ( !ds.atEnd() ) {
568 ds >> channel >> message >> data; 568 ds >> channel >> message >> data;
569 d->enqueueQCop( channel, message, data ); 569 d->enqueueQCop( channel, message, data );
570 } 570 }
571 571
572 flock( f.handle(), LOCK_UN ); 572 flock( f.handle(), LOCK_UN );
573 f.close(); 573 f.close();
574 f.remove(); 574 f.remove();
575 } 575 }
576 576
577 for ( int a = 0; a < argc; a++ ) { 577 for ( int a = 0; a < argc; a++ ) {
578 if ( qstrcmp( argv[ a ], "-preload" ) == 0 ) { 578 if ( qstrcmp( argv[ a ], "-preload" ) == 0 ) {
579 argv[ a ] = argv[ a + 1 ]; 579 argv[ a ] = argv[ a + 1 ];
@@ -991,97 +991,97 @@ void QPEApplication::applyStyle()
991 QString style = config.readEntry( "Style", "Light" ); 991 QString style = config.readEntry( "Style", "Light" );
992 992
993 // don't set a custom style 993 // don't set a custom style
994 if ( nostyle & Opie::Force_Style ) 994 if ( nostyle & Opie::Force_Style )
995 style = "Light"; 995 style = "Light";
996 996
997 internalSetStyle ( style ); 997 internalSetStyle ( style );
998 998
999 // Colors 999 // Colors
1000 QColor bgcolor( config.readEntry( "Background", "#E5E1D5" ) ); 1000 QColor bgcolor( config.readEntry( "Background", "#E5E1D5" ) );
1001 QColor btncolor( config.readEntry( "Button", "#D6CDBB" ) ); 1001 QColor btncolor( config.readEntry( "Button", "#D6CDBB" ) );
1002 QPalette pal( btncolor, bgcolor ); 1002 QPalette pal( btncolor, bgcolor );
1003 QString color = config.readEntry( "Highlight", "#800000" ); 1003 QString color = config.readEntry( "Highlight", "#800000" );
1004 pal.setColor( QColorGroup::Highlight, QColor( color ) ); 1004 pal.setColor( QColorGroup::Highlight, QColor( color ) );
1005 color = config.readEntry( "HighlightedText", "#FFFFFF" ); 1005 color = config.readEntry( "HighlightedText", "#FFFFFF" );
1006 pal.setColor( QColorGroup::HighlightedText, QColor( color ) ); 1006 pal.setColor( QColorGroup::HighlightedText, QColor( color ) );
1007 color = config.readEntry( "Text", "#000000" ); 1007 color = config.readEntry( "Text", "#000000" );
1008 pal.setColor( QColorGroup::Text, QColor( color ) ); 1008 pal.setColor( QColorGroup::Text, QColor( color ) );
1009 color = config.readEntry( "ButtonText", "#000000" ); 1009 color = config.readEntry( "ButtonText", "#000000" );
1010 pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) ); 1010 pal.setColor( QPalette::Active, QColorGroup::ButtonText, QColor( color ) );
1011 color = config.readEntry( "Base", "#FFFFFF" ); 1011 color = config.readEntry( "Base", "#FFFFFF" );
1012 pal.setColor( QColorGroup::Base, QColor( color ) ); 1012 pal.setColor( QColorGroup::Base, QColor( color ) );
1013 1013
1014 pal.setColor( QPalette::Disabled, QColorGroup::Text, 1014 pal.setColor( QPalette::Disabled, QColorGroup::Text,
1015 pal.color( QPalette::Active, QColorGroup::Background ).dark() ); 1015 pal.color( QPalette::Active, QColorGroup::Background ).dark() );
1016 1016
1017 setPalette( pal, TRUE ); 1017 setPalette( pal, TRUE );
1018 1018
1019 // Window Decoration 1019 // Window Decoration
1020 QString dec = config.readEntry( "Decoration", "Qtopia" ); 1020 QString dec = config.readEntry( "Decoration", "Qtopia" );
1021 1021
1022 // don't set a custom deco 1022 // don't set a custom deco
1023 if ( nostyle & Opie::Force_Decoration ) 1023 if ( nostyle & Opie::Force_Decoration )
1024 dec = ""; 1024 dec = "";
1025 1025
1026 //qDebug ( "Setting Deco: %s -- old %s (%d)", dec.latin1(), d-> decorationName.latin1(), nostyle); 1026 //qDebug ( "Setting Deco: %s -- old %s (%d)", dec.latin1(), d-> decorationName.latin1(), nostyle);
1027 1027
1028 if ( dec != d->decorationName ) { 1028 if ( dec != d->decorationName ) {
1029 qwsSetDecoration( new QPEDecoration( dec ) ); 1029 qwsSetDecoration( new QPEDecoration( dec ) );
1030 d->decorationName = dec; 1030 d->decorationName = dec;
1031 } 1031 }
1032 1032
1033 // Font 1033 // Font
1034 QString ff = config.readEntry( "FontFamily", font().family() ); 1034 QString ff = config.readEntry( "FontFamily", font().family() );
1035 int fs = config.readNumEntry( "FontSize", font().pointSize() ); 1035 int fs = config.readNumEntry( "FontSize", font().pointSize() );
1036 1036
1037 // don't set a custom font 1037 // don't set a custom font
1038 if ( nostyle & Opie::Force_Font ) { 1038 if ( nostyle & Opie::Force_Font ) {
1039 ff = "Helvetica"; 1039 ff = "Vera";
1040 fs = 10; 1040 fs = 10;
1041 } 1041 }
1042 1042
1043 setFont ( QFont ( ff, fs ), true ); 1043 setFont ( QFont ( ff, fs ), true );
1044 1044
1045 // revert to global blocking policy ... 1045 // revert to global blocking policy ...
1046 Opie::force_appearance = config. readBoolEntry ( "ForceStyle", false ) ? Opie::Force_All : Opie::Force_None; 1046 Opie::force_appearance = config. readBoolEntry ( "ForceStyle", false ) ? Opie::Force_All : Opie::Force_None;
1047 Opie::force_appearance &= ~nostyle; 1047 Opie::force_appearance &= ~nostyle;
1048} 1048}
1049 1049
1050void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data ) 1050void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data )
1051{ 1051{
1052#ifdef Q_WS_QWS 1052#ifdef Q_WS_QWS
1053 QDataStream stream( data, IO_ReadOnly ); 1053 QDataStream stream( data, IO_ReadOnly );
1054 if ( msg == "applyStyle()" ) { 1054 if ( msg == "applyStyle()" ) {
1055 applyStyle(); 1055 applyStyle();
1056 } 1056 }
1057 else if ( msg == "toggleApplicationMenu()" ) { 1057 else if ( msg == "toggleApplicationMenu()" ) {
1058 QWidget *active = activeWindow ( ); 1058 QWidget *active = activeWindow ( );
1059 1059
1060 if ( active ) { 1060 if ( active ) {
1061 QPEMenuToolFocusManager *man = QPEMenuToolFocusManager::manager ( ); 1061 QPEMenuToolFocusManager *man = QPEMenuToolFocusManager::manager ( );
1062 bool oldactive = man-> isActive ( ); 1062 bool oldactive = man-> isActive ( );
1063 1063
1064 man-> setActive( !man-> isActive() ); 1064 man-> setActive( !man-> isActive() );
1065 1065
1066 if ( !oldactive && !man-> isActive ( )) { // no menubar to toggle -> try O-Menu 1066 if ( !oldactive && !man-> isActive ( )) { // no menubar to toggle -> try O-Menu
1067 QCopEnvelope e ( "QPE/TaskBar", "toggleStartMenu()" ); 1067 QCopEnvelope e ( "QPE/TaskBar", "toggleStartMenu()" );
1068 } 1068 }
1069 } 1069 }
1070 } 1070 }
1071 else if ( msg == "setDefaultRotation(int)" ) { 1071 else if ( msg == "setDefaultRotation(int)" ) {
1072 if ( type() == GuiServer ) { 1072 if ( type() == GuiServer ) {
1073 int r; 1073 int r;
1074 stream >> r; 1074 stream >> r;
1075 setDefaultRotation( r ); 1075 setDefaultRotation( r );
1076 } 1076 }
1077 } 1077 }
1078 else if ( msg == "setCurrentRotation(int)" ) { 1078 else if ( msg == "setCurrentRotation(int)" ) {
1079 int r; 1079 int r;
1080 stream >> r; 1080 stream >> r;
1081 setCurrentRotation( r ); 1081 setCurrentRotation( r );
1082 } 1082 }
1083 else if ( msg == "shutdown()" ) { 1083 else if ( msg == "shutdown()" ) {
1084 if ( type() == GuiServer ) 1084 if ( type() == GuiServer )
1085 shutdown(); 1085 shutdown();
1086 } 1086 }
1087 else if ( msg == "quit()" ) { 1087 else if ( msg == "quit()" ) {