SVN: PLDSetupAssistant/PLDSetupAssistant.cpp

shadzik shadzik at pld-linux.org
Tue May 11 14:48:58 CEST 2010


Author: shadzik
Date: Tue May 11 14:48:57 2010
New Revision: 11452

Modified:
   PLDSetupAssistant/PLDSetupAssistant.cpp
Log:
- add wizard image


Modified: PLDSetupAssistant/PLDSetupAssistant.cpp
==============================================================================
--- PLDSetupAssistant/PLDSetupAssistant.cpp	(original)
+++ PLDSetupAssistant/PLDSetupAssistant.cpp	Tue May 11 14:48:57 2010
@@ -143,9 +143,16 @@
     tabWidget->addTab(authors, i18nc("Authors","&Authors"));
     tabWidget->addTab(thanks, i18nc("Thanks To","&Thanks"));
     
+    QLabel *image = new QLabel;
+    image->setPixmap(KStandardDirs::locate("data", "pldsetupassistant/pld_wizard.png"));
+
+    QHBoxLayout *midLayout = new QHBoxLayout;
+    midLayout->addWidget(image);
+    midLayout->addWidget(tabWidget);
+
     QVBoxLayout *layout = new QVBoxLayout(this);
     layout->addWidget(titleWidget);
-    layout->addWidget(tabWidget);
+    layout->addLayout(midLayout);
     layout->setMargin(0);
     
     QWidget *widget = new QWidget(this);


More information about the pld-cvs-commit mailing list