keygenwizard.cc00001 #include <kdialog.h>
00002 #include <klocale.h>
00003
00004
00005
00006
00007
00008
00009
00010
00011 #include "keygenwizard.h"
00012
00013 #include <qvariant.h>
00014 #include <kdialog.h>
00015 #include <qlabel.h>
00016 #include <qlayout.h>
00017 #include <qtooltip.h>
00018 #include <qwhatsthis.h>
00019
00020
00021
00022
00023
00024 KGWizardPage1::KGWizardPage1( QWidget* parent, const char* name, WFlags fl )
00025 : QWidget( parent, name, fl )
00026 {
00027 if ( !name )
00028 setName( "KGWizardPage1" );
00029 KGWizardPage1Layout = new QGridLayout( this, 1, 1, KDialog::marginHint(), KDialog::spacingHint(), "KGWizardPage1Layout");
00030
00031 TextLabel1 = new QLabel( this, "TextLabel1" );
00032 TextLabel1->setTextFormat( QLabel::RichText );
00033 TextLabel1->setScaledContents( FALSE );
00034 TextLabel1->setAlignment( int( QLabel::WordBreak | QLabel::AlignVCenter | QLabel::AlignLeft ) );
00035
00036 KGWizardPage1Layout->addWidget( TextLabel1, 0, 0 );
00037 languageChange();
00038 resize( QSize(345, 142).expandedTo(minimumSizeHint()) );
00039 clearWState( WState_Polished );
00040 }
00041
00042
00043
00044
00045 KGWizardPage1::~KGWizardPage1()
00046 {
00047
00048 }
00049
00050
00051
00052
00053
00054 void KGWizardPage1::languageChange()
00055 {
00056 TextLabel1->setText( tr2i18n( "You have indicated that you wish to obtain or purchase a secure certificate. This wizard is intended to guide you through the procedure. You may cancel at any time, and this will abort the transaction." ) );
00057 }
00058
00059 #include "keygenwizard.moc"
|