summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/pmipkg.cpp
authortille <tille>2002-05-01 14:00:09 (UTC)
committer tille <tille>2002-05-01 14:00:09 (UTC)
commite729a9bdd9f37f4bd610d10122f002a0540c93ed (patch) (side-by-side diff)
treea23696d8742a36b57256281dc7e2f7848407be61 /noncore/unsupported/oipkg/pmipkg.cpp
parent7e5615473c1d103db66f42ae60bf9ed57d52566c (diff)
downloadopie-e729a9bdd9f37f4bd610d10122f002a0540c93ed.zip
opie-e729a9bdd9f37f4bd610d10122f002a0540c93ed.tar.gz
opie-e729a9bdd9f37f4bd610d10122f002a0540c93ed.tar.bz2
added ipkgfind remote query
Diffstat (limited to 'noncore/unsupported/oipkg/pmipkg.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/pmipkg.cpp52
1 files changed, 25 insertions, 27 deletions
diff --git a/noncore/unsupported/oipkg/pmipkg.cpp b/noncore/unsupported/oipkg/pmipkg.cpp
index 9f6429a..fe200f5 100644
--- a/noncore/unsupported/oipkg/pmipkg.cpp
+++ b/noncore/unsupported/oipkg/pmipkg.cpp
@@ -210,34 +210,31 @@ void PmIpkg::processLinkDir( QString file, QString dest )
}
}
-void PmIpkg::commit( PackageList pl )
+void PmIpkg::loadList( PackageList pl )
{
- int sizecount = 0;
- to_install.clear();
- to_remove.clear();
- QString rem="<b>"+tr("To remove:")+"</b><br>\n";
- QString inst="<b>"+tr("To install:")+"</b><br>\n";
for( Package *pack = pl.first();pack ; (pack = pl.next()) )
- {
- if ( pack && (pack->name() != "") && pack)
- {
- if ( pack->toInstall() )
- {
+ {
+ if ( pack && (pack->name() != "") && pack)
+ {
+ if ( pack->toInstall() )
to_install.append( pack );
- sizecount += pack->size().toInt();
- inst += pack->name()+"\t("+tr("on ")+pack->dest()+")<br>";
- }
- if ( pack->toRemove() )
- {
+ if ( pack->toRemove() )
to_remove.append( pack );
- sizecount += 1;
- rem += pack->name()+"<br>";
- }
- }
- }
+ }
+ }
+}
+void PmIpkg::commit( PackageList pl )
+{
+ sizecount = 0;
+ QString rem="<b>"+tr("To remove:")+"</b><br>\n";
+ QString inst="<b>"+tr("To install:")+"</b><br>\n";
+ loadList(pl);
+ for (uint i=0; i < to_remove.count(); i++)
+ sizecount += 1;
+ for (uint i=0; i < to_install.count(); i++)
+ sizecount += to_install.at(i)->size().toInt();
startDialog();
-
}
void PmIpkg::startDialog()
@@ -266,7 +263,7 @@ void PmIpkg::startDialog()
}
QGroupBox *GroupBox1 = new QGroupBox( installDialog, "Ipkg" );
- GroupBox1->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)3, (QSizePolicy::SizeType)3, GroupBox1->sizePolicy().hasHeightForWidth() ) );
+ GroupBox1->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)3, (QSizePolicy::SizeType)3, GroupBox1->sizePolicy().mayShrinkVertically() ) );
GroupBox1->setTitle( tr( "Ipkg options" ) );
GroupBox1->setColumnLayout(0, Qt::Vertical );
GroupBox1->layout()->setSpacing( 0 );
@@ -275,10 +272,10 @@ void PmIpkg::startDialog()
GroupBox1Layout->setAlignment( Qt::AlignTop );
GroupBox1Layout->setSpacing( 3 );
GroupBox1Layout->setMargin( 3 );
-
_force_depends = new QCheckBox( GroupBox1, "_force_depends" );
_force_depends->setText( tr( "-force-depends" ) );
_force_depends->setAutoResize( TRUE );
+ _force_depends->setChecked(true);
GroupBox1Layout->addWidget( _force_depends, 0, 0 );
_force_reinstall = new QCheckBox( GroupBox1, "_force_reinstall" );
_force_reinstall->setText( tr( "-force-reinstall" ) );
@@ -319,8 +316,8 @@ void PmIpkg::remove()
out("<b>"+tr("Removing")+"<br>"+tr("please wait")+"</b><br><hr>");
QStringList *fileList;
- for (Package *it=to_remove.first(); it != 0; it=to_remove.next() )
- {
+ for (Package *it=to_remove.first(); it != 0; it=to_remove.next() )
+ {
if ( it->link() )fileList = getList( it->name(), it->dest() );
if ( runIpkg("remove " + it->name()) == 0)
{
@@ -333,6 +330,7 @@ void PmIpkg::remove()
processFileList( fileList, it->dest() );
}
it->processed();
+
out("<br><hr>");
}else{
out("<b>"+tr("Error while removing")+"</b><hr>"+it->name());
@@ -351,7 +349,7 @@ void PmIpkg::install()
for (Package *it=to_install.first(); it != 0; it=to_install.next() )
{
- if ( runIpkg("install " + it->getPackageName(), it->dest() ) == 0 )
+ if ( runIpkg("install " + it->installName(), it->dest() ) == 0 )
{
runwindow->progress->setProgress( it->size().toInt() + runwindow->progress->progress());
linkOpp = createLink;