summaryrefslogtreecommitdiff
path: root/noncore/settings/packagemanager/mainwindow.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/packagemanager/mainwindow.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/packagemanager/mainwindow.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/noncore/settings/packagemanager/mainwindow.cpp b/noncore/settings/packagemanager/mainwindow.cpp
index 807bddd..5a942a1 100644
--- a/noncore/settings/packagemanager/mainwindow.cpp
+++ b/noncore/settings/packagemanager/mainwindow.cpp
@@ -36,2 +36,4 @@ _;:, .> :=|. This file is free software; you can
+#include <opie2/ofiledialog.h>
+
#include <qpe/qcopenvelope_qws.h>
@@ -184,2 +186,8 @@ void MainWindow::initUI()
+ a = new QAction( tr( "Install local package" ), Resource::loadPixmap( "folder" ), QString::null, 0, this, 0 );
+ a->setWhatsThis( tr( "Tap here to install a package file located on device." ) );
+ connect( a, SIGNAL(activated()), this, SLOT(slotInstallLocal()) );
+ a->addTo( popup );
+ //a->addTo( &m_toolBar );
+
popup->insertSeparator();
@@ -521,2 +529,24 @@ void MainWindow::slotApply()
+void MainWindow::slotInstallLocal()
+{
+ // Display file open dialog with only package files
+ MimeTypes type;
+ QStringList packages;
+ packages << "application/ipkg";
+ type.insert( tr( "Application Packages" ), packages );
+ QString package = Opie::Ui::OFileDialog::getOpenFileName( Opie::Ui::OFileSelector::NORMAL,
+ "/", QString::null, type );
+ if ( !package.isNull() )
+ {
+ // Install selected file
+ InstallDlg *dlg = new InstallDlg( this, &m_packman, tr( "Install local package" ), true,
+ OPackage::Install, new QStringList( package ) );
+ connect( dlg, SIGNAL(closeInstallDlg()), this, SLOT(slotCloseDlg()) );
+
+ // Display widget
+ m_widgetStack.addWidget( dlg, 3 );
+ m_widgetStack.raiseWidget( dlg );
+ }
+}
+
void MainWindow::slotCloseDlg()