summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/mainwin.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/aqpkg/mainwin.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/aqpkg/mainwin.cpp48
1 files changed, 11 insertions, 37 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
@@ -49,4 +49,5 @@
#include "letterpushbutton.h"
#include "mainwin.h"
+#include "packagewin.h"
#include "settingsimpl.h"
#include "utils.h"
@@ -240,4 +241,7 @@ void MainWindow :: initMainWidget()
packagesList->addColumn( tr( "Packages" ), 225 );
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." ) );
+ QPEApplication::setStylusOperation( packagesList->viewport(), QPEApplication::RightOnHold );
+ connect( packagesList, SIGNAL(rightButtonPressed(QListViewItem *,const QPoint &,int)),
+ this, SLOT(slotDisplayPackage(QListViewItem *)) );
QVBoxLayout *vbox = new QVBoxLayout( networkPkgWindow, 0, -1 );
@@ -672,18 +676,4 @@ void MainWindow :: serverSelected( int, bool raiseProgress )
item->setPixmap( 0, installedIcon );
}
-
- QString destName = "";
- if ( package->getLocalPackage() )
- {
- if ( package->getLocalPackage()->getInstalledTo() )
- destName = package->getLocalPackage()->getInstalledTo()->getDestinationName();
- }
- else
- {
- if ( package->getInstalledTo() )
- destName = package->getInstalledTo()->getDestinationName();
- }
- if ( destName != "" )
- new QCheckListItem( item, QString( tr( "Installed To - %1" ).arg( destName ) ) );
}
else
@@ -692,27 +682,4 @@ void MainWindow :: serverSelected( int, bool raiseProgress )
}
- if ( !package->isPackageStoredLocally() )
- {
- new QCheckListItem( item, QString( tr( "Description - %1" ).arg( package->getDescription() ) ) );
- new QCheckListItem( item, QString( tr( "Size - %1" ).arg( package->getPackageSize() ) ) );
- new QCheckListItem( item, QString( tr( "Section - %1" ).arg( package->getSection() ) ) );
- }
- else
- new QCheckListItem( item, QString( tr( "Filename - %1" ).arg( package->getFilename() ) ) );
-
- if ( serverName == LOCAL_SERVER )
- {
- new QCheckListItem( item, QString( tr( "V. Installed - %1" ).arg( package->getVersion() ) ) );
- }
- else
- {
- new QCheckListItem( item, QString( tr( "V. Available - %1" ).arg( package->getVersion() ) ) );
- if ( package->getLocalPackage() )
- {
- if ( package->isInstalled() )
- new QCheckListItem( item, QString( tr( "V. Installed - %1" ).arg( package->getInstalledVersion() ) ) );
- }
- }
-
packagesList->insertItem( item );
}
@@ -1183,2 +1150,9 @@ void MainWindow :: letterPushed( QString t )
} while ( item != start);
}
+
+void MainWindow :: slotDisplayPackage( QListViewItem *item )
+{
+ QString itemstr( ((QCheckListItem*)item)->text() );
+ PackageWindow *p = new PackageWindow( mgr->getServer( serversList->currentText() )->getPackage( itemstr ) );
+ p->showMaximized();
+}