diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-01-09 22:42:24 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-01-09 22:42:24 +0000 |
commit | 97197b497141f0d9a0ccf33b022bc8da256b82aa (patch) | |
tree | 1c744c422b56fa76a87ccf7e2b909c84945e3cfb | |
parent | updated TODO (diff) | |
download | gpg4usb-97197b497141f0d9a0ccf33b022bc8da256b82aa.tar.gz gpg4usb-97197b497141f0d9a0ccf33b022bc8da256b82aa.zip |
added flipped logo to wizard
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@738 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r-- | gpg4usb.qrc | 2 | ||||
-rw-r--r-- | release/icons/gpg4usb-logo_flipped.png | bin | 0 -> 8570 bytes | |||
-rw-r--r-- | wizard.cpp | 8 |
3 files changed, 7 insertions, 3 deletions
diff --git a/gpg4usb.qrc b/gpg4usb.qrc index 0885c28..73632b3 100644 --- a/gpg4usb.qrc +++ b/gpg4usb.qrc @@ -3,5 +3,7 @@ <file alias="tray.png">release/icons/keymgmt.png</file> <file alias="help.png">release/icons/help.png</file> <file alias="button_copy.png">release/icons/button_copy.png</file> + <file alias="logo.png">release/icons/gpg4usb-logo.png</file> + <file alias="logo-flipped.png">release/icons/gpg4usb-logo_flipped.png</file> </qresource> </RCC> diff --git a/release/icons/gpg4usb-logo_flipped.png b/release/icons/gpg4usb-logo_flipped.png Binary files differnew file mode 100644 index 0000000..0e044da --- /dev/null +++ b/release/icons/gpg4usb-logo_flipped.png @@ -1,5 +1,4 @@ -/* - * wizard.cpp +/* * wizard.cpp * * Copyright 2008 gpg4usb-team <[email protected]> * @@ -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.<br/>" @@ -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")); |