summaryrefslogtreecommitdiff
authordrw <drw>2005-02-22 22:25:39 (UTC)
committer drw <drw>2005-02-22 22:25:39 (UTC)
commit504c5f59c082106028e3dbc9126d7b655908224f (patch) (unidiff)
tree2cf4465cb2a46b0d13f909d073225585ad4e5092
parenta2eea1c6273acd16fed2406493923c52fba19ebc (diff)
downloadopie-504c5f59c082106028e3dbc9126d7b655908224f.zip
opie-504c5f59c082106028e3dbc9126d7b655908224f.tar.gz
opie-504c5f59c082106028e3dbc9126d7b655908224f.tar.bz2
Add support for lists_dir ipkg configuration option, optimize ipkg configuration file read routine, update version to 0.6.2
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/packagemanager/ChangeLog7
-rw-r--r--noncore/settings/packagemanager/README6
-rw-r--r--noncore/settings/packagemanager/TODO6
-rw-r--r--noncore/settings/packagemanager/oconfitem.h2
-rw-r--r--noncore/settings/packagemanager/oipkg.cpp117
-rw-r--r--noncore/settings/packagemanager/oipkgconfigdlg.cpp138
-rw-r--r--noncore/settings/packagemanager/oipkgconfigdlg.h7
-rw-r--r--noncore/settings/packagemanager/opie-packagemanager.control2
8 files changed, 177 insertions, 108 deletions
diff --git a/noncore/settings/packagemanager/ChangeLog b/noncore/settings/packagemanager/ChangeLog
index 38756b1..92b542c 100644
--- a/noncore/settings/packagemanager/ChangeLog
+++ b/noncore/settings/packagemanager/ChangeLog
@@ -1,12 +1,19 @@
12005-02-22 Dan Williams <drw@handhelds.org>
2
3 * Released version 0.6.2
4 * Added support for ipkg configuration option, 'lists_dir'
5 * Make app depend on libipkg-0.99.143, or greater
6 * Optimize ipkg configuration file read routine
7
12005-02-16 Dan Williams <drw@handhelds.org> 82005-02-16 Dan Williams <drw@handhelds.org>
2 9
3 * Fixed stupid bug where last package in status file was not shown as installed when it should be 10 * Fixed stupid bug where last package in status file was not shown as installed when it should be
4 * Removed printf's 11 * Removed printf's
5 12
62005-01-02 Dan Williams <drw@handhelds.org> 132005-01-02 Dan Williams <drw@handhelds.org>
7 14
8 * Released version 0.6.1 15 * Released version 0.6.1
9 * Implemented native package linking code to remove need for ipkg-link 16 * Implemented native package linking code to remove need for ipkg-link
10 * Implement package in OIpkg (removed from InstallDlg) as this is ipkg specific 17 * Implement package in OIpkg (removed from InstallDlg) as this is ipkg specific
11 * Many small code tweaks 18 * Many small code tweaks
12 19
diff --git a/noncore/settings/packagemanager/README b/noncore/settings/packagemanager/README
index ff6d113..9720cb4 100644
--- a/noncore/settings/packagemanager/README
+++ b/noncore/settings/packagemanager/README
@@ -1,24 +1,24 @@
1/************************************************************************ 1/************************************************************************
2/* 2/*
3/* Opie - Package Manager 3/* Opie - Package Manager
4/* ======================== 4/* ========================
5/* Version 0.6.0 5/* Version 0.6.2
6/* 6/*
7/* A package management client for Opie 7/* A package management client for Opie
8/* 8/*
9/************************************************************************ 9/************************************************************************
10 10
11------------------------------------------------------- 11-------------------------------------------------------
12 Release Notes for Opie-PackageManager - January, 2004 12 Release Notes for Opie-PackageManager - February, 2004
13------------------------------------------------------- 13-------------------------------------------------------
14 14
15====================== 15======================
16= To-do = 16= To-do =
17====================== 17======================
18 18
19- See $OPIEDIR/noncore/settings/packagemanager/TODO for more info. 19- See $OPIEDIR/noncore/settings/packagemanager/TODO for more info.
20 20
21====================== 21======================
22= Build = 22= Build =
23====================== 23======================
24 24
@@ -35,21 +35,21 @@ the build system along with the appropriate headers.
35 35
36====================== 36======================
37= Run = 37= Run =
38====================== 38======================
39 39
40- In order to use opie-packagemanager, libipkg must be installed 40- In order to use opie-packagemanager, libipkg must be installed
41 on the system. 41 on the system.
42 42
43====================== 43======================
44= Credits = 44= Credits =
45====================== 45======================
46 46
47- Opie-PackageManager is (C) 2003-2004 Dan Williams 47- Opie-PackageManager is (C) 2003-2005 Dan Williams
48 48
49====================== 49======================
50= Links = 50= Links =
51====================== 51======================
52 52
53- Opie Project: http://opie.handhelds.org 53- Opie Project: http://opie.handhelds.org
54- OpenZaurus Project: http://openzaurus.org 54- OpenZaurus Project: http://openzaurus.org
55- Familiar Project: http://familiar.handhelds.org 55- Familiar Project: http://familiar.handhelds.org
diff --git a/noncore/settings/packagemanager/TODO b/noncore/settings/packagemanager/TODO
index 2512624..dd70b11 100644
--- a/noncore/settings/packagemanager/TODO
+++ b/noncore/settings/packagemanager/TODO
@@ -1,15 +1,13 @@
1/************************************************************************ 1/************************************************************************
2/* 2/*
3/* Opie - Package Manager 3/* Opie - Package Manager
4/* ======================== 4/* ========================
5/* Version 0.6.1 5/* Version 0.6.2
6/* 6/*
7/* A package management client for Opie 7/* A package management client for Opie
8/* 8/*
9/************************************************************************ 9/************************************************************************
10 10
11----------------------------------------------- 11-----------------------------------------------
12 To-do for Opie-PackageManager - January, 2005 12 To-do for Opie-PackageManager - February, 2005
13----------------------------------------------- 13-----------------------------------------------
14
151. Re-work package download dialog
diff --git a/noncore/settings/packagemanager/oconfitem.h b/noncore/settings/packagemanager/oconfitem.h
index 9972c00..b306e93 100644
--- a/noncore/settings/packagemanager/oconfitem.h
+++ b/noncore/settings/packagemanager/oconfitem.h
@@ -29,25 +29,25 @@ _;:, .> :=|. This program is free software; you can
29 29
30*/ 30*/
31 31
32#ifndef OCONFITEM_H 32#ifndef OCONFITEM_H
33#define OCONFITEM_H 33#define OCONFITEM_H
34 34
35#include <qlist.h> 35#include <qlist.h>
36#include <qstring.h> 36#include <qstring.h>
37 37
38class OConfItem 38class OConfItem
39{ 39{
40public: 40public:
41 enum Type { Source, Destination, Option, Arch, NotDefined }; 41 enum Type { Source, Destination, Option, Arch, Other, NotDefined };
42 42
43 OConfItem( Type type = NotDefined, const QString &name = QString::null, 43 OConfItem( Type type = NotDefined, const QString &name = QString::null,
44 const QString &value = QString::null, const QString &features = QString::null, 44 const QString &value = QString::null, const QString &features = QString::null,
45 bool active = true ); 45 bool active = true );
46 46
47 Type type() { return m_type; } 47 Type type() { return m_type; }
48 const QString &name() { return m_name; } 48 const QString &name() { return m_name; }
49 const QString &value() { return m_value; } 49 const QString &value() { return m_value; }
50 const QString &features() { return m_features; } 50 const QString &features() { return m_features; }
51 bool active() { return m_active; } 51 bool active() { return m_active; }
52 52
53 void setType( Type type ) { m_type = type; } 53 void setType( Type type ) { m_type = type; }
diff --git a/noncore/settings/packagemanager/oipkg.cpp b/noncore/settings/packagemanager/oipkg.cpp
index e7e292e..3d2c621 100644
--- a/noncore/settings/packagemanager/oipkg.cpp
+++ b/noncore/settings/packagemanager/oipkg.cpp
@@ -143,44 +143,55 @@ void OIpkg::setConfigItems( OConfItemList *configList )
143 QTextStream confStream( &confFile ); 143 QTextStream confStream( &confFile );
144 confStream << "# Generated by Opie Package Manager\n\n"; 144 confStream << "# Generated by Opie Package Manager\n\n";
145 145
146 OConfItemListIterator it( *m_confInfo ); 146 OConfItemListIterator it( *m_confInfo );
147 for ( ; it.current(); ++it ) 147 for ( ; it.current(); ++it )
148 { 148 {
149 OConfItem *item = it.current(); 149 OConfItem *item = it.current();
150 150
151 // Only write out valid conf items 151 // Only write out valid conf items
152 if ( item->type() != OConfItem::NotDefined ) 152 if ( item->type() != OConfItem::NotDefined )
153 { 153 {
154 QString confLine; 154 QString confLine;
155 QString name = item->name();
155 if ( !item->active() ) 156 if ( !item->active() )
156 confLine = "#"; 157 confLine = "#";
157 158
158 switch ( item->type() ) 159 switch ( item->type() )
159 { 160 {
160 case OConfItem::Source : 161 case OConfItem::Source :
161 { 162 {
162 if ( item->features().contains( "Compressed" ) ) 163 if ( item->features().contains( "Compressed" ) )
163 confLine.append( "src/gz " ); 164 confLine.append( "src/gz" );
164 else 165 else
165 confLine.append( "src " ); 166 confLine.append( "src" );
167 }
168 break;
169 case OConfItem::Destination : confLine.append( "dest" ); break;
170 case OConfItem::Option : confLine.append( "option" ); break;
171 case OConfItem::Arch : confLine.append( "arch" ); break;
172 case OConfItem::Other :
173 {
174 // For options w/type = Other, the mapping is as follows:
175 // name = typeStr (e.g. "lists_dir")
176 // value = value
177 // features = name (from configuration file)
178 confLine.append( item->name() );
179 name = item->features();
166 } 180 }
167 break; 181 break;
168 case OConfItem::Destination : confLine.append( "dest " ); break;
169 case OConfItem::Option : confLine.append( "option " ); break;
170 case OConfItem::Arch : confLine.append( "arch " ); break;
171 default : break; 182 default : break;
172 }; 183 };
173 184
174 confStream << confLine << " " << item->name() << " " << item->value() << "\n"; 185 confStream << confLine << " " << name << " " << item->value() << "\n";
175 } 186 }
176 } 187 }
177 188
178 confFile.close(); 189 confFile.close();
179 } 190 }
180 else 191 else
181 { 192 {
182 // Problem writing to /etc/ipkg.conf, exit before removing other conf files 193 // Problem writing to /etc/ipkg.conf, exit before removing other conf files
183 return; 194 return;
184 } 195 }
185 196
186 // Delete /etc/ipkg/*.conf files (/etc/ipkg.conf should now have all settings 197 // Delete /etc/ipkg/*.conf files (/etc/ipkg.conf should now have all settings
@@ -536,68 +547,82 @@ void OIpkg::loadConfiguration()
536 QFile f( absFile ); 547 QFile f( absFile );
537 if ( f.open( IO_ReadOnly ) ) 548 if ( f.open( IO_ReadOnly ) )
538 { 549 {
539 QTextStream s( &f ); 550 QTextStream s( &f );
540 while ( !s.eof() ) 551 while ( !s.eof() )
541 { 552 {
542 553
543 QString line = s.readLine().simplifyWhiteSpace(); 554 QString line = s.readLine().simplifyWhiteSpace();
544 555
545 // Parse line and save info to the conf options list 556 // Parse line and save info to the conf options list
546 if ( !line.isEmpty() ) 557 if ( !line.isEmpty() )
547 { 558 {
548 if ( !line.startsWith( "#" ) || 559 // Strip leading comment marker if exists
549 line.startsWith( "#src" ) || 560 bool comment = false;
550 line.startsWith( "#dest" ) || 561 if ( line.startsWith( "#" ) )
551 line.startsWith( "#arch" ) ||
552 line.startsWith( "#option" ) )
553 { 562 {
554 int pos = line.find( ' ', 1 ); 563 line.remove( 0, 1 );
555 564 line = line.simplifyWhiteSpace();
556 // Type 565 comment = true;
557 QString typeStr = line.left( pos ); 566 }
558 OConfItem::Type type;
559 QString features;
560 if ( typeStr == "src" || typeStr == "#src" )
561 type = OConfItem::Source;
562 else if ( typeStr == "src/gz" || typeStr == "#src/gz" )
563 {
564 type = OConfItem::Source;
565 features = "Compressed";
566 }
567 else if ( typeStr == "dest" || typeStr == "#dest" )
568 type = OConfItem::Destination;
569 else if ( typeStr == "option" || typeStr == "#option" )
570 type = OConfItem::Option;
571 else if ( typeStr == "arch" || typeStr == "#arch" )
572 type = OConfItem::Arch;
573 else
574 type = OConfItem::NotDefined;
575 ++pos;
576 int endpos = line.find( ' ', pos );
577
578 // Name
579 QString name = line.mid( pos, endpos - pos );
580
581 // Value
582 QString value = "";
583 if ( endpos > -1 )
584 value = line.right( line.length() - endpos - 1 );
585 567
586 // Active 568 bool recognizedOption = true;
587 bool active = !line.startsWith( "#" ); 569 int pos = line.find( ' ', 1 ) + 1;
570 int endpos = line.find( ' ', pos );
571
572 // Name
573 QString name = line.mid( pos, endpos - pos );
574
575 // Value
576 QString value = "";
577 if ( endpos > -1 )
578 value = line.right( line.length() - endpos - 1 );
579
580 // Active
581 bool active = !comment;
582
583 // Type
584 // For options w/type = Other, the mapping is as follows:
585 // name = typeStr (e.g. "lists_dir")
586 // value = value
587 // features = name (from configuration file)
588
589 QString typeStr = line.left( pos - 1 );
590 OConfItem::Type type;
591 QString features;
592 if ( typeStr == "src" )
593 type = OConfItem::Source;
594 else if ( typeStr == "src/gz" )
595 {
596 type = OConfItem::Source;
597 features = "Compressed";
598 }
599 else if ( typeStr == "dest" )
600 type = OConfItem::Destination;
601 else if ( typeStr == "option" )
602 type = OConfItem::Option;
603 else if ( typeStr == "arch" )
604 type = OConfItem::Arch;
605 else if ( typeStr == "lists_dir" )
606 {
607 type = OConfItem::Other;
608 features = name;
609 name = typeStr;
610 }
611 else
612 recognizedOption = false;
588 613
589 // Add to list 614 // Add to list
615 if ( recognizedOption )
590 m_confInfo->append( new OConfItem( type, name, value, features, active ) ); 616 m_confInfo->append( new OConfItem( type, name, value, features, active ) );
591 }
592 } 617 }
593 } 618 }
594 619
595 f.close(); 620 f.close();
596 } 621 }
597 } 622 }
598 623
599 // Load Ipkg execution options from application configuration file 624 // Load Ipkg execution options from application configuration file
600 if ( m_config ) 625 if ( m_config )
601 { 626 {
602 m_config->setGroup( "Ipkg" ); 627 m_config->setGroup( "Ipkg" );
603 m_ipkgExecOptions = m_config->readNumEntry( "ExecOptions", m_ipkgExecOptions ); 628 m_ipkgExecOptions = m_config->readNumEntry( "ExecOptions", m_ipkgExecOptions );
diff --git a/noncore/settings/packagemanager/oipkgconfigdlg.cpp b/noncore/settings/packagemanager/oipkgconfigdlg.cpp
index e6d6a81..7ee2d74 100644
--- a/noncore/settings/packagemanager/oipkgconfigdlg.cpp
+++ b/noncore/settings/packagemanager/oipkgconfigdlg.cpp
@@ -119,24 +119,31 @@ void OIpkgConfigDlg::accept()
119 confItem->setValue( m_proxyUsername->text() ); 119 confItem->setValue( m_proxyUsername->text() );
120 else 120 else
121 m_configs->append( new OConfItem( OConfItem::Option, "proxy_username", 121 m_configs->append( new OConfItem( OConfItem::Option, "proxy_username",
122 m_proxyUsername->text() ) ); 122 m_proxyUsername->text() ) );
123 123
124 confItem = m_ipkg->findConfItem( OConfItem::Option, "proxy_password" ); 124 confItem = m_ipkg->findConfItem( OConfItem::Option, "proxy_password" );
125 if ( confItem ) 125 if ( confItem )
126 confItem->setValue( m_proxyPassword->text() ); 126 confItem->setValue( m_proxyPassword->text() );
127 else 127 else
128 m_configs->append( new OConfItem( OConfItem::Option, "proxy_password", 128 m_configs->append( new OConfItem( OConfItem::Option, "proxy_password",
129 m_proxyPassword->text() ) ); 129 m_proxyPassword->text() ) );
130 130
131 confItem = m_ipkg->findConfItem( OConfItem::Other, "lists_dir" );
132 if ( confItem )
133 confItem->setValue( m_optSourceLists->text() );
134 else
135 m_configs->append( new OConfItem( OConfItem::Other, "lists_dir",
136 m_optSourceLists->text(), "name" ) );
137
131 m_ipkg->setConfigItems( m_configs ); 138 m_ipkg->setConfigItems( m_configs );
132 } 139 }
133 140
134 // Save options configuration 141 // Save options configuration
135 int options = 0; 142 int options = 0;
136 if ( m_optForceDepends->isChecked() ) 143 if ( m_optForceDepends->isChecked() )
137 options |= FORCE_DEPENDS; 144 options |= FORCE_DEPENDS;
138 if ( m_optForceReinstall->isChecked() ) 145 if ( m_optForceReinstall->isChecked() )
139 options |= FORCE_REINSTALL; 146 options |= FORCE_REINSTALL;
140 if ( m_optForceRemove->isChecked() ) 147 if ( m_optForceRemove->isChecked() )
141 options |= FORCE_REMOVE; 148 options |= FORCE_REMOVE;
142 if ( m_optForceOverwrite->isChecked() ) 149 if ( m_optForceOverwrite->isChecked() )
@@ -174,25 +181,25 @@ void OIpkgConfigDlg::initServerWidget()
174 layout->addMultiCellWidget( m_serverList, 0, 0, 0, 2 ); 181 layout->addMultiCellWidget( m_serverList, 0, 0, 0, 2 );
175 182
176 QPushButton *btn = new QPushButton( Resource::loadPixmap( "new" ), tr( "New" ), container ); 183 QPushButton *btn = new QPushButton( Resource::loadPixmap( "new" ), tr( "New" ), container );
177 QWhatsThis::add( btn, tr( "Tap here to create a new entry. Fill in the fields below and then tap on Update." ) ); 184 QWhatsThis::add( btn, tr( "Tap here to create a new entry. Fill in the fields below and then tap on Update." ) );
178 connect( btn, SIGNAL(clicked()), this, SLOT(slotServerNew()) ); 185 connect( btn, SIGNAL(clicked()), this, SLOT(slotServerNew()) );
179 layout->addWidget( btn, 1, 0 ); 186 layout->addWidget( btn, 1, 0 );
180 187
181 m_serverEditBtn = new QPushButton( Resource::loadPixmap( "edit" ), tr( "Edit" ), container ); 188 m_serverEditBtn = new QPushButton( Resource::loadPixmap( "edit" ), tr( "Edit" ), container );
182 m_serverEditBtn->setEnabled( false ); 189 m_serverEditBtn->setEnabled( false );
183 QWhatsThis::add( m_serverEditBtn, tr( "Tap here to edit the entry selected above." ) ); 190 QWhatsThis::add( m_serverEditBtn, tr( "Tap here to edit the entry selected above." ) );
184 connect( m_serverEditBtn, SIGNAL(clicked()), this, SLOT(slotServerEdit()) ); 191 connect( m_serverEditBtn, SIGNAL(clicked()), this, SLOT(slotServerEdit()) );
185 layout->addWidget( m_serverEditBtn, 1, 1 ); 192 layout->addWidget( m_serverEditBtn, 1, 1 );
186 193
187 m_serverDeleteBtn = new QPushButton( Resource::loadPixmap( "trash" ), tr( "Delete" ), container ); 194 m_serverDeleteBtn = new QPushButton( Resource::loadPixmap( "trash" ), tr( "Delete" ), container );
188 m_serverDeleteBtn->setEnabled( false ); 195 m_serverDeleteBtn->setEnabled( false );
189 QWhatsThis::add( m_serverDeleteBtn, tr( "Tap here to delete the entry selected above." ) ); 196 QWhatsThis::add( m_serverDeleteBtn, tr( "Tap here to delete the entry selected above." ) );
190 connect( m_serverDeleteBtn, SIGNAL(clicked()), this, SLOT(slotServerDelete()) ); 197 connect( m_serverDeleteBtn, SIGNAL(clicked()), this, SLOT(slotServerDelete()) );
191 layout->addWidget( m_serverDeleteBtn, 1, 2 ); 198 layout->addWidget( m_serverDeleteBtn, 1, 2 );
192} 199}
193 200
194void OIpkgConfigDlg::initDestinationWidget() 201void OIpkgConfigDlg::initDestinationWidget()
195{ 202{
196 m_destWidget = new QWidget( this ); 203 m_destWidget = new QWidget( this );
197 204
198 // Initialize UI 205 // Initialize UI
@@ -212,25 +219,25 @@ void OIpkgConfigDlg::initDestinationWidget()
212 layout->addMultiCellWidget( m_destList, 0, 0, 0, 2 ); 219 layout->addMultiCellWidget( m_destList, 0, 0, 0, 2 );
213 220
214 QPushButton *btn = new QPushButton( Resource::loadPixmap( "new" ), tr( "New" ), container ); 221 QPushButton *btn = new QPushButton( Resource::loadPixmap( "new" ), tr( "New" ), container );
215 QWhatsThis::add( btn, tr( "Tap here to create a new entry. Fill in the fields below and then tap on Update." ) ); 222 QWhatsThis::add( btn, tr( "Tap here to create a new entry. Fill in the fields below and then tap on Update." ) );
216 connect( btn, SIGNAL(clicked()), this, SLOT(slotDestNew()) ); 223 connect( btn, SIGNAL(clicked()), this, SLOT(slotDestNew()) );
217 layout->addWidget( btn, 1, 0 ); 224 layout->addWidget( btn, 1, 0 );
218 225
219 m_destEditBtn = new QPushButton( Resource::loadPixmap( "edit" ), tr( "Edit" ), container ); 226 m_destEditBtn = new QPushButton( Resource::loadPixmap( "edit" ), tr( "Edit" ), container );
220 m_destEditBtn->setEnabled( false ); 227 m_destEditBtn->setEnabled( false );
221 QWhatsThis::add( m_destEditBtn, tr( "Tap here to edit the entry selected above." ) ); 228 QWhatsThis::add( m_destEditBtn, tr( "Tap here to edit the entry selected above." ) );
222 connect( m_destEditBtn, SIGNAL(clicked()), this, SLOT(slotDestEdit()) ); 229 connect( m_destEditBtn, SIGNAL(clicked()), this, SLOT(slotDestEdit()) );
223 layout->addWidget( m_destEditBtn, 1, 1 ); 230 layout->addWidget( m_destEditBtn, 1, 1 );
224 231
225 m_destDeleteBtn = new QPushButton( Resource::loadPixmap( "trash" ), tr( "Delete" ), container ); 232 m_destDeleteBtn = new QPushButton( Resource::loadPixmap( "trash" ), tr( "Delete" ), container );
226 m_destDeleteBtn->setEnabled( false ); 233 m_destDeleteBtn->setEnabled( false );
227 QWhatsThis::add( m_destDeleteBtn, tr( "Tap here to delete the entry selected above." ) ); 234 QWhatsThis::add( m_destDeleteBtn, tr( "Tap here to delete the entry selected above." ) );
228 connect( m_destDeleteBtn, SIGNAL(clicked()), this, SLOT(slotDestDelete()) ); 235 connect( m_destDeleteBtn, SIGNAL(clicked()), this, SLOT(slotDestDelete()) );
229 layout->addWidget( m_destDeleteBtn, 1, 2 ); 236 layout->addWidget( m_destDeleteBtn, 1, 2 );
230} 237}
231 238
232void OIpkgConfigDlg::initProxyWidget() 239void OIpkgConfigDlg::initProxyWidget()
233{ 240{
234 m_proxyWidget = new QWidget( this ); 241 m_proxyWidget = new QWidget( this );
235 242
236 // Initialize UI 243 // Initialize UI
@@ -288,133 +295,153 @@ void OIpkgConfigDlg::initProxyWidget()
288void OIpkgConfigDlg::initOptionsWidget() 295void OIpkgConfigDlg::initOptionsWidget()
289{ 296{
290 m_optionsWidget = new QWidget( this ); 297 m_optionsWidget = new QWidget( this );
291 298
292 // Initialize UI 299 // Initialize UI
293 QVBoxLayout *vb = new QVBoxLayout( m_optionsWidget ); 300 QVBoxLayout *vb = new QVBoxLayout( m_optionsWidget );
294 QScrollView *sv = new QScrollView( m_optionsWidget ); 301 QScrollView *sv = new QScrollView( m_optionsWidget );
295 vb->addWidget( sv, 0, 0 ); 302 vb->addWidget( sv, 0, 0 );
296 sv->setResizePolicy( QScrollView::AutoOneFit ); 303 sv->setResizePolicy( QScrollView::AutoOneFit );
297 sv->setFrameStyle( QFrame::NoFrame ); 304 sv->setFrameStyle( QFrame::NoFrame );
298 QWidget *container = new QWidget( sv->viewport() ); 305 QWidget *container = new QWidget( sv->viewport() );
299 sv->addChild( container ); 306 sv->addChild( container );
300 QVBoxLayout *layout = new QVBoxLayout( container, 2, 4 ); 307 QGridLayout *layout = new QGridLayout( container, 8, 2, 2, 4 );
301 308
302 m_optForceDepends = new QCheckBox( tr( "Force Depends" ), container ); 309 m_optForceDepends = new QCheckBox( tr( "Force Depends" ), container );
303 QWhatsThis::add( m_optForceDepends, tr( "Tap here to enable or disable the '-force-depends' option for Ipkg." ) ); 310 QWhatsThis::add( m_optForceDepends, tr( "Tap here to enable or disable the '-force-depends' option for Ipkg." ) );
304 layout->addWidget( m_optForceDepends ); 311 layout->addMultiCellWidget( m_optForceDepends, 0, 0, 0, 1 );
305 312
306 m_optForceReinstall = new QCheckBox( tr( "Force Reinstall" ), container ); 313 m_optForceReinstall = new QCheckBox( tr( "Force Reinstall" ), container );
307 QWhatsThis::add( m_optForceReinstall, tr( "Tap here to enable or disable the '-force-reinstall' option for Ipkg." ) ); 314 QWhatsThis::add( m_optForceReinstall, tr( "Tap here to enable or disable the '-force-reinstall' option for Ipkg." ) );
308 layout->addWidget( m_optForceReinstall ); 315 layout->addMultiCellWidget( m_optForceReinstall, 1, 1, 0, 1 );
309 316
310 m_optForceRemove = new QCheckBox( tr( "Force Remove" ), container ); 317 m_optForceRemove = new QCheckBox( tr( "Force Remove" ), container );
311 QWhatsThis::add( m_optForceRemove, tr( "Tap here to enable or disable the '-force-removal-of-dependent-packages' option for Ipkg." ) ); 318 QWhatsThis::add( m_optForceRemove, tr( "Tap here to enable or disable the '-force-removal-of-dependent-packages' option for Ipkg." ) );
312 layout->addWidget( m_optForceRemove ); 319 layout->addMultiCellWidget( m_optForceRemove, 2, 2, 0, 1 );
313 320
314 m_optForceOverwrite = new QCheckBox( tr( "Force Overwrite" ), container ); 321 m_optForceOverwrite = new QCheckBox( tr( "Force Overwrite" ), container );
315 QWhatsThis::add( m_optForceOverwrite, tr( "Tap here to enable or disable the '-force-overwrite' option for Ipkg." ) ); 322 QWhatsThis::add( m_optForceOverwrite, tr( "Tap here to enable or disable the '-force-overwrite' option for Ipkg." ) );
316 layout->addWidget( m_optForceOverwrite ); 323 layout->addMultiCellWidget( m_optForceOverwrite, 3, 3, 0, 1 );
317 324
318 QLabel *l = new QLabel( tr( "Information Level" ), container ); 325 QLabel *l = new QLabel( tr( "Information level:" ), container );
319 QWhatsThis::add( l, tr( "Select information level for Ipkg." ) ); 326 QWhatsThis::add( l, tr( "Select information level for Ipkg." ) );
320 layout->addWidget( l ); 327 layout->addMultiCellWidget( l, 4, 4, 0, 1 );
321 328
322 m_optVerboseIpkg = new QComboBox( container ); 329 m_optVerboseIpkg = new QComboBox( container );
323 QWhatsThis::add( m_optVerboseIpkg, tr( "Select information level for Ipkg." ) ); 330 QWhatsThis::add( m_optVerboseIpkg, tr( "Select information level for Ipkg." ) );
324 m_optVerboseIpkg->insertItem( tr( "Errors only" ) ); 331 m_optVerboseIpkg->insertItem( tr( "Errors only" ) );
325 m_optVerboseIpkg->insertItem( tr( "Normal messages" ) ); 332 m_optVerboseIpkg->insertItem( tr( "Normal messages" ) );
326 m_optVerboseIpkg->insertItem( tr( "Informative messages" ) ); 333 m_optVerboseIpkg->insertItem( tr( "Informative messages" ) );
327 m_optVerboseIpkg->insertItem( tr( "Troubleshooting output" ) ); 334 m_optVerboseIpkg->insertItem( tr( "Troubleshooting output" ) );
328 layout->addWidget( m_optVerboseIpkg ); 335 layout->addMultiCellWidget( m_optVerboseIpkg, 5, 5, 0, 1 );
336
337 l = new QLabel( tr( "Package source lists directory:" ), container );
338 QWhatsThis::add( l, tr( "Enter the directory where package source feed information is stored." ) );
339 layout->addMultiCellWidget( l, 6, 6, 0, 1 );
340
341 m_optSourceLists = new QLineEdit( container );
342 QWhatsThis::add( m_optSourceLists, tr( "Enter the directory where package source feed information is stored." ) );
343 layout->addWidget( m_optSourceLists, 7, 0 );
344 QPushButton *btn = new QPushButton( Resource::loadPixmap( "folder" ), QString::null, container );
345 btn->setMaximumWidth( btn->height() );
346 QWhatsThis::add( btn, tr( "Tap here to select the directory where package source feed information is stored." ) );
347 connect( btn, SIGNAL(clicked()), this, SLOT(slotOptSelectSourceListsPath()) );
348 layout->addWidget( btn, 7, 1 );
329 349
330 layout->addItem( new QSpacerItem( 1, 1, QSizePolicy::Minimum, QSizePolicy::Expanding ) ); 350 layout->addItem( new QSpacerItem( 1, 1, QSizePolicy::Minimum, QSizePolicy::Expanding ) );
331} 351}
332 352
333void OIpkgConfigDlg::initData() 353void OIpkgConfigDlg::initData()
334{ 354{
335 // Read ipkg configuration (server/destination/proxy) information 355 // Read ipkg configuration (server/destination/proxy) information
336 if ( m_ipkg && !m_installOptions ) 356 if ( m_ipkg && !m_installOptions )
337 { 357 {
338 m_configs = m_ipkg->configItems(); 358 m_configs = m_ipkg->configItems();
339 if ( m_configs ) 359 if ( m_configs )
340 { 360 {
341 for ( OConfItemListIterator configIt( *m_configs ); configIt.current(); ++configIt ) 361 for ( OConfItemListIterator configIt( *m_configs ); configIt.current(); ++configIt )
342 { 362 {
343 OConfItem *config = configIt.current(); 363 OConfItem *config = configIt.current();
344 364
345 // Add configuration item to the appropriate dialog controls 365 // Add configuration item to the appropriate dialog controls
346 if ( config ) 366 if ( config )
347 { 367 {
348 if ( config->type() == OConfItem::Source ) 368 switch ( config->type() )
349 { 369 {
350 m_serverList->insertItem( config->name() ); 370 case OConfItem::Source : m_serverList->insertItem( config->name() ); break;
351 } 371 case OConfItem::Destination : m_destList->insertItem( config->name() ); break;
352 else if ( config->type() == OConfItem::Destination ) 372 case OConfItem::Option :
353 { 373 {
354 m_destList->insertItem( config->name() ); 374 if ( config->name() == "http_proxy" )
355 } 375 {
356 else if ( config->type() == OConfItem::Option ) 376 m_proxyHttpServer->setText( config->value() );
357 { 377 m_proxyHttpActive->setChecked( config->active() );
358 if ( config->name() == "http_proxy" ) 378 }
359 { 379 else if ( config->name() == "ftp_proxy" )
360 m_proxyHttpServer->setText( config->value() ); 380 {
361 m_proxyHttpActive->setChecked( config->active() ); 381 m_proxyFtpServer->setText( config->value() );
362 } 382 m_proxyFtpActive->setChecked( config->active() );
363 else if ( config->name() == "ftp_proxy" ) 383 }
364 { 384 else if ( config->name() == "proxy_username" )
365 m_proxyFtpServer->setText( config->value() ); 385 {
366 m_proxyFtpActive->setChecked( config->active() ); 386 m_proxyUsername->setText( config->value() );
367 } 387 }
368 else if ( config->name() == "proxy_username" ) 388 else if ( config->name() == "proxy_password" )
369 { 389 {
370 m_proxyUsername->setText( config->value() ); 390 m_proxyPassword->setText( config->value() );
371 } 391 }
372 else if ( config->name() == "proxy_password" ) 392 }
373 { 393 break;
374 m_proxyPassword->setText( config->value() ); 394 case OConfItem::Other :
375 } 395 {
376 } 396 if ( config->name() == "lists_dir" )
397 m_optSourceLists->setText( config->value() );
398 else // TODO - use proper libipkg define
399 m_optSourceLists->setText( "/usr/lib/ipkg/lists" );
400 }
401 break;
402 default : break;
403 };
377 } 404 }
378 } 405 }
379 } 406 }
380 } 407 }
381 408
382 // Get Ipkg execution options 409 // Get Ipkg execution options
383 int options = m_ipkg->ipkgExecOptions(); 410 int options = m_ipkg->ipkgExecOptions();
384 if ( options & FORCE_DEPENDS ) 411 if ( options & FORCE_DEPENDS )
385 m_optForceDepends->setChecked( true ); 412 m_optForceDepends->setChecked( true );
386 if ( options & FORCE_REINSTALL ) 413 if ( options & FORCE_REINSTALL )
387 m_optForceReinstall->setChecked( true ); 414 m_optForceReinstall->setChecked( true );
388 if ( options & FORCE_REMOVE ) 415 if ( options & FORCE_REMOVE )
389 m_optForceRemove->setChecked( true ); 416 m_optForceRemove->setChecked( true );
390 if ( options & FORCE_OVERWRITE ) 417 if ( options & FORCE_OVERWRITE )
391 m_optForceOverwrite->setChecked( true ); 418 m_optForceOverwrite->setChecked( true );
392 419
393 m_optVerboseIpkg->setCurrentItem( m_ipkg->ipkgExecVerbosity() ); 420 m_optVerboseIpkg->setCurrentItem( m_ipkg->ipkgExecVerbosity() );
394} 421}
395 422
396void OIpkgConfigDlg::slotServerSelected( int index ) 423void OIpkgConfigDlg::slotServerSelected( int index )
397{ 424{
398 m_serverCurrent = index; 425 m_serverCurrent = index;
399 426
400 // Enable Edit and Delete buttons 427 // Enable Edit and Delete buttons
401 m_serverEditBtn->setEnabled( true ); 428 m_serverEditBtn->setEnabled( true );
402 m_serverDeleteBtn->setEnabled( true ); 429 m_serverDeleteBtn->setEnabled( true );
403} 430}
404 431
405void OIpkgConfigDlg::slotServerNew() 432void OIpkgConfigDlg::slotServerNew()
406{ 433{
407 OConfItem *server = new OConfItem( OConfItem::Source ); 434 OConfItem *server = new OConfItem( OConfItem::Source );
408 435
409 OIpkgServerDlg dlg( server, this ); 436 OIpkgServerDlg dlg( server, this );
410 if ( QPEApplication::execDialog( &dlg ) == QDialog::Accepted ) 437 if ( QPEApplication::execDialog( &dlg ) == QDialog::Accepted )
411 { 438 {
412 // Add to configuration option list 439 // Add to configuration option list
413 m_configs->append( server ); 440 m_configs->append( server );
414 m_configs->sort(); 441 m_configs->sort();
415 442
416 // Add to server list 443 // Add to server list
417 m_serverList->insertItem( server->name() ); 444 m_serverList->insertItem( server->name() );
418 m_serverList->setCurrentItem( m_serverList->count() ); 445 m_serverList->setCurrentItem( m_serverList->count() );
419 } 446 }
420 else 447 else
@@ -447,34 +474,34 @@ void OIpkgConfigDlg::slotServerDelete()
447 474
448 // Delete server 475 // Delete server
449 if ( server ) 476 if ( server )
450 { 477 {
451 m_configs->removeRef( server ); 478 m_configs->removeRef( server );
452 m_serverList->removeItem( m_serverCurrent ); 479 m_serverList->removeItem( m_serverCurrent );
453 } 480 }
454} 481}
455 482
456void OIpkgConfigDlg::slotDestSelected( int index ) 483void OIpkgConfigDlg::slotDestSelected( int index )
457{ 484{
458 m_destCurrent = index; 485 m_destCurrent = index;
459 486
460 // Enable Edit and Delete buttons 487 // Enable Edit and Delete buttons
461 m_destEditBtn->setEnabled( true ); 488 m_destEditBtn->setEnabled( true );
462 m_destDeleteBtn->setEnabled( true ); 489 m_destDeleteBtn->setEnabled( true );
463} 490}
464 491
465void OIpkgConfigDlg::slotDestNew() 492void OIpkgConfigDlg::slotDestNew()
466{ 493{
467 OConfItem *dest = new OConfItem( OConfItem::Destination ); 494 OConfItem *dest = new OConfItem( OConfItem::Destination );
468 495
469 OIpkgDestDlg dlg( dest, this ); 496 OIpkgDestDlg dlg( dest, this );
470 if ( QPEApplication::execDialog( &dlg ) == QDialog::Accepted ) 497 if ( QPEApplication::execDialog( &dlg ) == QDialog::Accepted )
471 { 498 {
472 // Add to configuration option list 499 // Add to configuration option list
473 m_configs->append( dest ); 500 m_configs->append( dest );
474 m_configs->sort(); 501 m_configs->sort();
475 502
476 // Add to destination list 503 // Add to destination list
477 m_destList->insertItem( dest->name() ); 504 m_destList->insertItem( dest->name() );
478 m_destList->setCurrentItem( m_destList->count() ); 505 m_destList->setCurrentItem( m_destList->count() );
479 } 506 }
480 else 507 else
@@ -504,61 +531,70 @@ void OIpkgConfigDlg::slotDestDelete()
504{ 531{
505 // Find selected destination in list 532 // Find selected destination in list
506 OConfItem *destination = m_ipkg->findConfItem( OConfItem::Destination, m_destList->currentText() ); 533 OConfItem *destination = m_ipkg->findConfItem( OConfItem::Destination, m_destList->currentText() );
507 534
508 // Delete destination 535 // Delete destination
509 if ( destination ) 536 if ( destination )
510 { 537 {
511 m_configs->removeRef( destination ); 538 m_configs->removeRef( destination );
512 m_destList->removeItem( m_destCurrent ); 539 m_destList->removeItem( m_destCurrent );
513 } 540 }
514} 541}
515 542
543void OIpkgConfigDlg::slotOptSelectSourceListsPath()
544{
545 QString path = Opie::Ui::OFileDialog::getDirectory( 0, m_optSourceLists->text() );
546 if ( path.at( path.length() - 1 ) == '/' )
547 path.truncate( path.length() - 1 );
548 if ( !path.isNull() )
549 m_optSourceLists->setText( path );
550}
551
516OIpkgServerDlg::OIpkgServerDlg( OConfItem *server, QWidget *parent ) 552OIpkgServerDlg::OIpkgServerDlg( OConfItem *server, QWidget *parent )
517 : QDialog( parent, QString::null, true, WStyle_ContextHelp ) 553 : QDialog( parent, QString::null, true, WStyle_ContextHelp )
518 , m_server( server ) 554 , m_server( server )
519{ 555{
520 setCaption( tr( "Edit Server" ) ); 556 setCaption( tr( "Edit Server" ) );
521 557
522 // Initialize UI 558 // Initialize UI
523 QVBoxLayout *layout = new QVBoxLayout( this, 2, 4 ); 559 QVBoxLayout *layout = new QVBoxLayout( this, 2, 4 );
524 560
525 m_active = new QCheckBox( tr( "Active" ), this ); 561 m_active = new QCheckBox( tr( "Active" ), this );
526 QWhatsThis::add( m_active, tr( "Tap here to indicate whether this entry is active or not." ) ); 562 QWhatsThis::add( m_active, tr( "Tap here to indicate whether this entry is active or not." ) );
527 layout->addWidget( m_active ); 563 layout->addWidget( m_active );
528 564
529 layout->addStretch(); 565 layout->addStretch();
530 566
531 QLabel *label = new QLabel( tr( "Name:" ), this ); 567 QLabel *label = new QLabel( tr( "Name:" ), this );
532 QWhatsThis::add( label, tr( "Enter the name of this entry here." ) ); 568 QWhatsThis::add( label, tr( "Enter the name of this entry here." ) );
533 layout->addWidget( label ); 569 layout->addWidget( label );
534 m_name = new QLineEdit( this ); 570 m_name = new QLineEdit( this );
535 QWhatsThis::add( m_name, tr( "Enter the name of this entry here." ) ); 571 QWhatsThis::add( m_name, tr( "Enter the name of this entry here." ) );
536 layout->addWidget( m_name ); 572 layout->addWidget( m_name );
537 573
538 layout->addStretch(); 574 layout->addStretch();
539 575
540 label = new QLabel( tr( "Address:" ), this ); 576 label = new QLabel( tr( "Address:" ), this );
541 QWhatsThis::add( label, tr( "Enter the URL address of this entry here." ) ); 577 QWhatsThis::add( label, tr( "Enter the URL address of this entry here." ) );
542 layout->addWidget( label ); 578 layout->addWidget( label );
543 m_location = new QLineEdit( this ); 579 m_location = new QLineEdit( this );
544 QWhatsThis::add( m_location, tr( "Enter the URL address of this entry here." ) ); 580 QWhatsThis::add( m_location, tr( "Enter the URL address of this entry here." ) );
545 layout->addWidget( m_location ); 581 layout->addWidget( m_location );
546 582
547 layout->addStretch(); 583 layout->addStretch();
548 584
549 m_compressed = new QCheckBox( tr( "Compressed server feed" ), this ); 585 m_compressed = new QCheckBox( tr( "Compressed server feed" ), this );
550 QWhatsThis::add( m_compressed, tr( "Tap here to indicate whether the server support compressed archives or not." ) ); 586 QWhatsThis::add( m_compressed, tr( "Tap here to indicate whether the server support compressed archives or not." ) );
551 layout->addWidget( m_compressed ); 587 layout->addWidget( m_compressed );
552 588
553 // Populate initial information 589 // Populate initial information
554 if ( m_server ) 590 if ( m_server )
555 { 591 {
556 m_name->setText( m_server->name() ); 592 m_name->setText( m_server->name() );
557 m_location->setText( m_server->value() ); 593 m_location->setText( m_server->value() );
558 m_compressed->setChecked( m_server->features().contains( "Compressed" ) ); 594 m_compressed->setChecked( m_server->features().contains( "Compressed" ) );
559 m_active->setChecked( m_server->active() ); 595 m_active->setChecked( m_server->active() );
560 } 596 }
561} 597}
562 598
563void OIpkgServerDlg::accept() 599void OIpkgServerDlg::accept()
564{ 600{
@@ -571,58 +607,58 @@ void OIpkgServerDlg::accept()
571 : m_server->setFeatures( QString::null ); 607 : m_server->setFeatures( QString::null );
572 m_server->setActive( m_active->isChecked() ); 608 m_server->setActive( m_active->isChecked() );
573 609
574 QDialog::accept(); 610 QDialog::accept();
575} 611}
576 612
577OIpkgDestDlg::OIpkgDestDlg( OConfItem *dest, QWidget *parent ) 613OIpkgDestDlg::OIpkgDestDlg( OConfItem *dest, QWidget *parent )
578 : QDialog( parent, QString::null, true, WStyle_ContextHelp ) 614 : QDialog( parent, QString::null, true, WStyle_ContextHelp )
579 , m_dest( dest ) 615 , m_dest( dest )
580{ 616{
581 setCaption( tr( "Edit Destination" ) ); 617 setCaption( tr( "Edit Destination" ) );
582 618
583 // Initialize UI 619 // Initialize UI
584 QVBoxLayout *layout = new QVBoxLayout( this, 2, 4 ); 620 QVBoxLayout *layout = new QVBoxLayout( this, 2, 4 );
585 621
586 m_active = new QCheckBox( tr( "Active" ), this ); 622 m_active = new QCheckBox( tr( "Active" ), this );
587 QWhatsThis::add( m_active, tr( "Tap here to indicate whether this entry is active or not." ) ); 623 QWhatsThis::add( m_active, tr( "Tap here to indicate whether this entry is active or not." ) );
588 layout->addWidget( m_active ); 624 layout->addWidget( m_active );
589 625
590 layout->addStretch(); 626 layout->addStretch();
591 627
592 QLabel *label = new QLabel( tr( "Name:" ), this ); 628 QLabel *label = new QLabel( tr( "Name:" ), this );
593 QWhatsThis::add( label, tr( "Enter the name of this entry here." ) ); 629 QWhatsThis::add( label, tr( "Enter the name of this entry here." ) );
594 layout->addWidget( label ); 630 layout->addWidget( label );
595 m_name = new QLineEdit( this ); 631 m_name = new QLineEdit( this );
596 QWhatsThis::add( m_name, tr( "Enter the name of this entry here." ) ); 632 QWhatsThis::add( m_name, tr( "Enter the name of this entry here." ) );
597 layout->addWidget( m_name ); 633 layout->addWidget( m_name );
598 634
599 layout->addStretch(); 635 layout->addStretch();
600 636
601 label = new QLabel( tr( "Location:" ), this ); 637 label = new QLabel( tr( "Location:" ), this );
602 QWhatsThis::add( label, tr( "Enter the absolute directory path of this entry here." ) ); 638 QWhatsThis::add( label, tr( "Enter the absolute directory path of this entry here." ) );
603 layout->addWidget( label ); 639 layout->addWidget( label );
604 640
605 QHBoxLayout *layout2 = new QHBoxLayout( this, 2, 4 ); 641 QHBoxLayout *layout2 = new QHBoxLayout( this, 2, 4 );
606 layout->addLayout( layout2 ); 642 layout->addLayout( layout2 );
607 643
608 m_location = new QLineEdit( this ); 644 m_location = new QLineEdit( this );
609 QWhatsThis::add( m_location, tr( "Enter the absolute directory path of this entry here." ) ); 645 QWhatsThis::add( m_location, tr( "Enter the absolute directory path of this entry here." ) );
610 layout2->addWidget( m_location ); 646 layout2->addWidget( m_location );
611 QPushButton *btn = new QPushButton( Resource::loadPixmap( "folder" ), QString::null, this ); 647 QPushButton *btn = new QPushButton( Resource::loadPixmap( "folder" ), QString::null, this );
612 btn->setMaximumWidth( btn->height() ); 648 btn->setMaximumWidth( btn->height() );
613 QWhatsThis::add( btn, tr( "Tap here to select the desired location." ) ); 649 QWhatsThis::add( btn, tr( "Tap here to select the desired location." ) );
614 connect( btn, SIGNAL(clicked()), this, SLOT(slotSelectPath()) ); 650 connect( btn, SIGNAL(clicked()), this, SLOT(slotSelectPath()) );
615 layout2->addWidget( btn ); 651 layout2->addWidget( btn );
616 652
617 // Populate initial information 653 // Populate initial information
618 if ( m_dest ) 654 if ( m_dest )
619 { 655 {
620 m_name->setText( m_dest->name() ); 656 m_name->setText( m_dest->name() );
621 m_location->setText( m_dest->value() ); 657 m_location->setText( m_dest->value() );
622 m_active->setChecked( m_dest->active() ); 658 m_active->setChecked( m_dest->active() );
623 } 659 }
624} 660}
625 661
626void OIpkgDestDlg::accept() 662void OIpkgDestDlg::accept()
627{ 663{
628 // Save information entered 664 // Save information entered
diff --git a/noncore/settings/packagemanager/oipkgconfigdlg.h b/noncore/settings/packagemanager/oipkgconfigdlg.h
index 0fb2e16..9e23b62 100644
--- a/noncore/settings/packagemanager/oipkgconfigdlg.h
+++ b/noncore/settings/packagemanager/oipkgconfigdlg.h
@@ -90,74 +90,77 @@ private:
90 QCheckBox *m_proxyHttpActive; // Activate HTTP proxy check box 90 QCheckBox *m_proxyHttpActive; // Activate HTTP proxy check box
91 QLineEdit *m_proxyFtpServer; // FTP proxy server edit box 91 QLineEdit *m_proxyFtpServer; // FTP proxy server edit box
92 QCheckBox *m_proxyFtpActive; // Activate FTP proxy check box 92 QCheckBox *m_proxyFtpActive; // Activate FTP proxy check box
93 QLineEdit *m_proxyUsername; // Proxy server username edit box 93 QLineEdit *m_proxyUsername; // Proxy server username edit box
94 QLineEdit *m_proxyPassword; // Proxy server password edit box 94 QLineEdit *m_proxyPassword; // Proxy server password edit box
95 95
96 // Options configuration UI controls 96 // Options configuration UI controls
97 QCheckBox *m_optForceDepends; // Force depends ipkg option checkbox 97 QCheckBox *m_optForceDepends; // Force depends ipkg option checkbox
98 QCheckBox *m_optForceReinstall; // Force reinstall ipkg option checkbox 98 QCheckBox *m_optForceReinstall; // Force reinstall ipkg option checkbox
99 QCheckBox *m_optForceRemove; // Force remove ipkg option checkbox 99 QCheckBox *m_optForceRemove; // Force remove ipkg option checkbox
100 QCheckBox *m_optForceOverwrite; // Force overwrite ipkg option checkbox 100 QCheckBox *m_optForceOverwrite; // Force overwrite ipkg option checkbox
101 QComboBox *m_optVerboseIpkg; // Ipkg verbosity option selection 101 QComboBox *m_optVerboseIpkg; // Ipkg verbosity option selection
102 QLineEdit *m_optSourceLists; // Ipkg source lists destination directory
102 103
103 void initServerWidget(); 104 void initServerWidget();
104 void initDestinationWidget(); 105 void initDestinationWidget();
105 void initProxyWidget(); 106 void initProxyWidget();
106 void initOptionsWidget(); 107 void initOptionsWidget();
107 108
108 void initData(); 109 void initData();
109 110
110private slots: 111private slots:
111 void slotServerSelected( int index ); 112 void slotServerSelected( int index );
112 void slotServerNew(); 113 void slotServerNew();
113 void slotServerEdit(); 114 void slotServerEdit();
114 void slotServerDelete(); 115 void slotServerDelete();
115 116
116 void slotDestSelected( int index ); 117 void slotDestSelected( int index );
117 void slotDestNew(); 118 void slotDestNew();
118 void slotDestEdit(); 119 void slotDestEdit();
119 void slotDestDelete(); 120 void slotDestDelete();
121
122 void slotOptSelectSourceListsPath();
120}; 123};
121 124
122class OIpkgServerDlg : public QDialog 125class OIpkgServerDlg : public QDialog
123{ 126{
124 Q_OBJECT 127 Q_OBJECT
125 128
126public: 129public:
127 OIpkgServerDlg( OConfItem *server = 0l, QWidget *parent = 0l ); 130 OIpkgServerDlg( OConfItem *server = 0l, QWidget *parent = 0l );
128 131
129protected slots: 132protected slots:
130 void accept(); 133 void accept();
131 134
132private: 135private:
133 OConfItem *m_server; 136 OConfItem *m_server;
134 137
135 // UI controls 138 // UI controls
136 QLineEdit *m_name; // Server name edit box 139 QLineEdit *m_name; // Server name edit box
137 QLineEdit *m_location; // Server location URL edit box 140 QLineEdit *m_location; // Server location URL edit box
138 QCheckBox *m_compressed; // Indicates whether the server is a 'src/gz' feed 141 QCheckBox *m_compressed; // Indicates whether the server is a 'src/gz' feed
139 QCheckBox *m_active; // Indicates whether the server is activated 142 QCheckBox *m_active; // Indicates whether the server is activated
140}; 143};
141 144
142class OIpkgDestDlg : public QDialog 145class OIpkgDestDlg : public QDialog
143{ 146{
144 Q_OBJECT 147 Q_OBJECT
145 148
146public: 149public:
147 OIpkgDestDlg( OConfItem *dest = 0l, QWidget *parent = 0l ); 150 OIpkgDestDlg( OConfItem *dest = 0l, QWidget *parent = 0l );
148 151
149protected slots: 152protected slots:
150 void accept(); 153 void accept();
151 154
152private: 155private:
153 OConfItem *m_dest; 156 OConfItem *m_dest;
154 157
155 // UI controls 158 // UI controls
156 QLineEdit *m_name; // Destination name edit box 159 QLineEdit *m_name; // Destination name edit box
157 QLineEdit *m_location; // Destination location URL edit box 160 QLineEdit *m_location; // Destination location URL edit box
158 QCheckBox *m_active; // Indicates whether the destination is activated 161 QCheckBox *m_active; // Indicates whether the destination is activated
159 162
160private slots: 163private slots:
161 void slotSelectPath(); 164 void slotSelectPath();
162}; 165};
163 166
diff --git a/noncore/settings/packagemanager/opie-packagemanager.control b/noncore/settings/packagemanager/opie-packagemanager.control
index 5da7a84..94348dd 100644
--- a/noncore/settings/packagemanager/opie-packagemanager.control
+++ b/noncore/settings/packagemanager/opie-packagemanager.control
@@ -1,10 +1,10 @@
1Package: opie-packagemanager 1Package: opie-packagemanager
2Files: plugins/application/libpackagemanager.so* bin/packagemanager pics/packagemanager apps/Settings/packagemanager.desktop 2Files: plugins/application/libpackagemanager.so* bin/packagemanager pics/packagemanager apps/Settings/packagemanager.desktop
3Priority: optional 3Priority: optional
4Section: opie/settings 4Section: opie/settings
5Depends: task-opie-minimal, libopiecore2, libopieui2, libipkg (>=0.99.143) 5Depends: task-opie-minimal, libopiecore2, libopieui2, libipkg (>=0.99.143)
6Replaces: packagemanager 6Replaces: packagemanager
7Architecture: arm 7Architecture: arm
8Maintainer: Dan Williams (drw@handhelds.org) 8Maintainer: Dan Williams (drw@handhelds.org)
9Description: Opie package management client 9Description: Opie package management client
10Version: 0.6.1$EXTRAVERSION 10Version: 0.6.2$EXTRAVERSION