From 97197b497141f0d9a0ccf33b022bc8da256b82aa Mon Sep 17 00:00:00 2001 From: nils Date: Mon, 9 Jan 2012 22:42:24 +0000 Subject: added flipped logo to wizard git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@738 34ebc366-c3a9-4b3c-9f84-69acf7962910 --- wizard.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'wizard.cpp') diff --git a/wizard.cpp b/wizard.cpp index b9fd914..4b64a7d 100644 --- a/wizard.cpp +++ b/wizard.cpp @@ -1,5 +1,4 @@ -/* - * wizard.cpp +/* * wizard.cpp * * Copyright 2008 gpg4usb-team * @@ -40,7 +39,6 @@ Wizard::Wizard(GpgME::GpgContext *ctx, KeyMgmt *keyMgmt, QWidget *parent) #ifndef Q_WS_MAC setWizardStyle(ModernStyle); #endif - setWindowTitle(tr("First Start Wizard")); } @@ -48,6 +46,7 @@ IntroPage::IntroPage(QWidget *parent) : QWizardPage(parent) { setTitle(tr("Introduction")); + setPixmap(QWizard::WatermarkPixmap, QPixmap(":/logo-flipped.png")); topLabel = new QLabel(tr("This wizard will help you getting started with encrypting and decrypting.")); topLabel->setWordWrap(true); @@ -65,6 +64,8 @@ int IntroPage::nextId() const KeyGenPage::KeyGenPage(GpgME::GpgContext *ctx, QWidget *parent) : QWizardPage(parent) { + + setPixmap(QWizard::WatermarkPixmap, QPixmap(":/logo-flipped.png")); mCtx=ctx; setTitle(tr("Key-Generating")); topLabel = new QLabel(tr("First you've got to create an own keypair.
" @@ -110,6 +111,7 @@ void KeyGenPage::showKeyGeneratedMessage() ImportPage::ImportPage(GpgME::GpgContext *ctx, KeyMgmt *keyMgmt, QWidget *parent) : QWizardPage(parent) { + setPixmap(QWizard::WatermarkPixmap, QPixmap(":/logo-flipped.png")); mCtx=ctx; mKeyMgmt=keyMgmt; setTitle(tr("Keyring Import")); -- cgit v1.2.3