summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/mainwindow.cpp
Unidiff
Diffstat (limited to 'noncore/unsupported/oipkg/mainwindow.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/mainwindow.cpp26
1 files changed, 17 insertions, 9 deletions
diff --git a/noncore/unsupported/oipkg/mainwindow.cpp b/noncore/unsupported/oipkg/mainwindow.cpp
index b485a03..cb2b4cd 100644
--- a/noncore/unsupported/oipkg/mainwindow.cpp
+++ b/noncore/unsupported/oipkg/mainwindow.cpp
@@ -51,7 +51,7 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f = 0 ) :
51 51
52 ipkg = new PmIpkg( settings, this ); 52 ipkg = new PmIpkg( settings, this );
53 packageList.setSettings( settings ); 53 packageList.setSettings( settings );
54 newList(); 54 getList();
55 setSections(); 55 setSections();
56 setSubSections(); 56 setSubSections();
57 displayList(); 57 displayList();
@@ -66,6 +66,13 @@ void MainWindow::makeMenu()
66 QPopupMenu *cfgMenu = new QPopupMenu( menuBar ); 66 QPopupMenu *cfgMenu = new QPopupMenu( menuBar );
67 // QPopupMenu *sectMenu = new QPopupMenu( menuBar ); 67 // QPopupMenu *sectMenu = new QPopupMenu( menuBar );
68 68
69//#define TOOLBAR
70#ifdef TOOLBAR
71 QPEToolBar *secBar = new QPEToolBar( this );
72 QComboBox *sections = new QComboBox( false, this );
73 secBar->addTo( sections );
74#endif
75
69 contextMenu = new QPopupMenu( this ); 76 contextMenu = new QPopupMenu( this );
70 77
71 setToolBarsMovable( false ); 78 setToolBarsMovable( false );
@@ -134,19 +141,20 @@ MainWindow::~MainWindow()
134void MainWindow::runIpkg() 141void MainWindow::runIpkg()
135{ 142{
136 ipkg->commit( packageList ); 143 ipkg->commit( packageList );
137 ipkg->runIpkg("update"); 144 updateList();
138 packageList.update();
139} 145}
140 146
141void MainWindow::updateList() 147void MainWindow::updateList()
142{ 148{
143 ipkg->runIpkg("update"); 149 // todo: packageList.clear();
144 packageList.update(); 150 ipkg->update();
151 getList();
145} 152}
146 153
147void MainWindow::newList() 154void MainWindow::getList()
148{ 155{
149 packageList.update(); 156 packageList.update();
157 displayList();
150} 158}
151 159
152void MainWindow::filterList() 160void MainWindow::filterList()
@@ -217,17 +225,17 @@ void MainWindow::setSubSections()
217void MainWindow::showSettings() 225void MainWindow::showSettings()
218{ 226{
219 if ( settings->showDialog( 0 ) ) 227 if ( settings->showDialog( 0 ) )
220 newList(); 228 getList();
221} 229}
222void MainWindow::showSettingsSrv() 230void MainWindow::showSettingsSrv()
223{ 231{
224 if ( settings->showDialog( 1 ) ) 232 if ( settings->showDialog( 1 ) )
225 newList(); 233 getList();
226} 234}
227void MainWindow::showSettingsDst() 235void MainWindow::showSettingsDst()
228{ 236{
229 if ( settings->showDialog( 2 ) ) 237 if ( settings->showDialog( 2 ) )
230 newList(); 238 getList();
231} 239}
232 240
233 241