summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/mainwin.cpp
Unidiff
Diffstat (limited to 'noncore/settings/aqpkg/mainwin.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/mainwin.cpp50
1 files changed, 12 insertions, 38 deletions
diff --git a/noncore/settings/aqpkg/mainwin.cpp b/noncore/settings/aqpkg/mainwin.cpp
index fb40d52..1aec6a8 100644
--- a/noncore/settings/aqpkg/mainwin.cpp
+++ b/noncore/settings/aqpkg/mainwin.cpp
@@ -50,2 +50,3 @@
50#include "mainwin.h" 50#include "mainwin.h"
51#include "packagewin.h"
51#include "settingsimpl.h" 52#include "settingsimpl.h"
@@ -232,3 +233,3 @@ void MainWindow :: initMainWidget()
232 serversList = new QComboBox( networkPkgWindow ); 233 serversList = new QComboBox( networkPkgWindow );
233 connect( serversList, SIGNAL( activated( int ) ), this, SLOT( serverSelected( int ) ) ); 234 connect( serversList, SIGNAL(activated(int)), this, SLOT(serverSelected(int)) );
234 QWhatsThis::add( serversList, tr( "Click here to select a package feed." ) ); 235 QWhatsThis::add( serversList, tr( "Click here to select a package feed." ) );
@@ -241,2 +242,5 @@ void MainWindow :: initMainWidget()
241 QWhatsThis::add( packagesList, tr( "This is a listing of all packages for the server feed selected above.\n\nA blue dot next to the package name indicates that the package is currently installed.\n\nA blue dot with a star indicates that a newer version of the package is available from the server feed.\n\nClick inside the box at the left to select a package." ) ); 242 QWhatsThis::add( packagesList, tr( "This is a listing of all packages for the server feed selected above.\n\nA blue dot next to the package name indicates that the package is currently installed.\n\nA blue dot with a star indicates that a newer version of the package is available from the server feed.\n\nClick inside the box at the left to select a package." ) );
243 QPEApplication::setStylusOperation( packagesList->viewport(), QPEApplication::RightOnHold );
244 connect( packagesList, SIGNAL(rightButtonPressed(QListViewItem *,const QPoint &,int)),
245 this, SLOT(slotDisplayPackage(QListViewItem *)) );
242 246
@@ -673,16 +677,2 @@ void MainWindow :: serverSelected( int, bool raiseProgress )
673 } 677 }
674
675 QString destName = "";
676 if ( package->getLocalPackage() )
677 {
678 if ( package->getLocalPackage()->getInstalledTo() )
679 destName = package->getLocalPackage()->getInstalledTo()->getDestinationName();
680 }
681 else
682 {
683 if ( package->getInstalledTo() )
684 destName = package->getInstalledTo()->getDestinationName();
685 }
686 if ( destName != "" )
687 new QCheckListItem( item, QString( tr( "Installed To - %1" ).arg( destName ) ) );
688 } 678 }
@@ -693,25 +683,2 @@ void MainWindow :: serverSelected( int, bool raiseProgress )
693 683
694 if ( !package->isPackageStoredLocally() )
695 {
696 new QCheckListItem( item, QString( tr( "Description - %1" ).arg( package->getDescription() ) ) );
697 new QCheckListItem( item, QString( tr( "Size - %1" ).arg( package->getPackageSize() ) ) );
698 new QCheckListItem( item, QString( tr( "Section - %1" ).arg( package->getSection() ) ) );
699 }
700 else
701 new QCheckListItem( item, QString( tr( "Filename - %1" ).arg( package->getFilename() ) ) );
702
703 if ( serverName == LOCAL_SERVER )
704 {
705 new QCheckListItem( item, QString( tr( "V. Installed - %1" ).arg( package->getVersion() ) ) );
706 }
707 else
708 {
709 new QCheckListItem( item, QString( tr( "V. Available - %1" ).arg( package->getVersion() ) ) );
710 if ( package->getLocalPackage() )
711 {
712 if ( package->isInstalled() )
713 new QCheckListItem( item, QString( tr( "V. Installed - %1" ).arg( package->getInstalledVersion() ) ) );
714 }
715 }
716
717 packagesList->insertItem( item ); 684 packagesList->insertItem( item );
@@ -1184 +1151,8 @@ void MainWindow :: letterPushed( QString t )
1184} 1151}
1152
1153void MainWindow :: slotDisplayPackage( QListViewItem *item )
1154{
1155 QString itemstr( ((QCheckListItem*)item)->text() );
1156 PackageWindow *p = new PackageWindow( mgr->getServer( serversList->currentText() )->getPackage( itemstr ) );
1157 p->showMaximized();
1158}