summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/firstuse.cpp6
-rw-r--r--pics/launcher/firstuse.jpgbin0 -> 12739 bytes
2 files changed, 2 insertions, 4 deletions
diff --git a/core/launcher/firstuse.cpp b/core/launcher/firstuse.cpp
index e9e2d83..acddeea 100644
--- a/core/launcher/firstuse.cpp
+++ b/core/launcher/firstuse.cpp
@@ -429,52 +429,50 @@ void FirstUse::reloadLanguages()
429void FirstUse::paintEvent( QPaintEvent * ) 429void FirstUse::paintEvent( QPaintEvent * )
430{ 430{
431 QPainter p( this ); 431 QPainter p( this );
432 432
433 p.drawPixmap(0,0, splash); 433 p.drawPixmap(0,0, splash);
434 434
435 QFont f = p.font(); 435 QFont f = p.font();
436 f.setPointSize(15); 436 f.setPointSize(15);
437 f.setItalic(FALSE); 437 f.setItalic(FALSE);
438 f.setBold(FALSE); 438 f.setBold(FALSE);
439 p.setFont(f); 439 p.setFont(f);
440 440
441 if ( currApp < 0 ) { 441 if ( currApp < 0 ) {
442 drawText(p, tr( "Tap anywhere on the screen to continue." )); 442 drawText(p, tr( "Tap anywhere on the screen to continue." ));
443 } else if ( settingsTable[currApp].app ) { 443 } else if ( settingsTable[currApp].app ) {
444 if ( waitingForLaunch ) 444 if ( waitingForLaunch )
445 drawText(p, tr("Please wait, loading %1 settings.").arg(tr(settingsTable[currApp].desc)) ); 445 drawText(p, tr("Please wait, loading %1 settings.").arg(tr(settingsTable[currApp].desc)) );
446 } else { 446 } else {
447 drawText(p, tr("Please wait...")); 447 drawText(p, tr("Please wait..."));
448 } 448 }
449} 449}
450 450
451void FirstUse::loadPixmaps() 451void FirstUse::loadPixmaps()
452{ 452{
453 /* create background, tr so can change image with language. 453 splash.convertFromImage( Resource::loadImage("launcher/firstuse")
454 images will likely contain text. */ 454 .smoothScale( width(), height() ) );
455 splash.convertFromImage( Resource::loadImage(tr("FirstUseBackground"))
456 .smoothScale( width(), height() ) );
457 455
458 setBackgroundPixmap(splash); 456 setBackgroundPixmap(splash);
459} 457}
460 458
461void FirstUse::drawText(QPainter &p, const QString &text) 459void FirstUse::drawText(QPainter &p, const QString &text)
462{ 460{
463 QString altered = "<CENTER>" + text + "</CENTER>"; 461 QString altered = "<CENTER>" + text + "</CENTER>";
464 462
465 QSimpleRichText rt(altered, p.font()); 463 QSimpleRichText rt(altered, p.font());
466 rt.setWidth(width() - 20); 464 rt.setWidth(width() - 20);
467 465
468 int h = (height() * 3) / 10; // start at 30% 466 int h = (height() * 3) / 10; // start at 30%
469 if (rt.height() < height() / 2) 467 if (rt.height() < height() / 2)
470 h += ((height() / 2) - rt.height()) / 2; 468 h += ((height() / 2) - rt.height()) / 2;
471 rt.draw(&p, 10, h, QRegion(0,0, width()-20, height()), palette()); 469 rt.draw(&p, 10, h, QRegion(0,0, width()-20, height()), palette());
472} 470}
473 471
474void FirstUse::updateButtons() 472void FirstUse::updateButtons()
475{ 473{
476 if ( currApp >= 0 ) { 474 if ( currApp >= 0 ) {
477 taskBar->show(); 475 taskBar->show();
478 } 476 }
479 477
480 int i = currApp-1; 478 int i = currApp-1;
diff --git a/pics/launcher/firstuse.jpg b/pics/launcher/firstuse.jpg
new file mode 100644
index 0000000..92fb044
--- a/dev/null
+++ b/pics/launcher/firstuse.jpg
Binary files differ