summaryrefslogtreecommitdiff
authorandyq <andyq>2002-11-03 01:19:52 (UTC)
committer andyq <andyq>2002-11-03 01:19:52 (UTC)
commit485fae36510cb42690c9df55fae64312b1e656ae (patch) (unidiff)
treea629829c2fdee60af78cb78184f4d6c27f384c89
parentd04882e254eb91aa26fb46bf49c438d12fcda862 (diff)
downloadopie-485fae36510cb42690c9df55fae64312b1e656ae.zip
opie-485fae36510cb42690c9df55fae64312b1e656ae.tar.gz
opie-485fae36510cb42690c9df55fae64312b1e656ae.tar.bz2
Added search for package feature
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/mainwin.cpp9
-rw-r--r--noncore/settings/aqpkg/mainwin.h1
-rw-r--r--noncore/settings/aqpkg/networkpkgmgr.cpp34
-rw-r--r--noncore/settings/aqpkg/networkpkgmgr.h2
4 files changed, 44 insertions, 2 deletions
diff --git a/noncore/settings/aqpkg/mainwin.cpp b/noncore/settings/aqpkg/mainwin.cpp
index 9f19dfa..0b5a5eb 100644
--- a/noncore/settings/aqpkg/mainwin.cpp
+++ b/noncore/settings/aqpkg/mainwin.cpp
@@ -1,95 +1,104 @@
1/*************************************************************************** 1/***************************************************************************
2 mainwin.cpp - description 2 mainwin.cpp - description
3 ------------------- 3 -------------------
4 begin : Mon Aug 26 13:32:30 BST 2002 4 begin : Mon Aug 26 13:32:30 BST 2002
5 copyright : (C) 2002 by Andy Qua 5 copyright : (C) 2002 by Andy Qua
6 email : andy.qua@blueyonder.co.uk 6 email : andy.qua@blueyonder.co.uk
7 ***************************************************************************/ 7 ***************************************************************************/
8 8
9/*************************************************************************** 9/***************************************************************************
10 * * 10 * *
11 * This program is free software; you can redistribute it and/or modify * 11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by * 12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or * 13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. * 14 * (at your option) any later version. *
15 * * 15 * *
16 ***************************************************************************/ 16 ***************************************************************************/
17 17
18#include <qmenubar.h> 18#include <qmenubar.h>
19#include <qpopupmenu.h> 19#include <qpopupmenu.h>
20#include <qmessagebox.h> 20#include <qmessagebox.h>
21 21
22#include "mainwin.h" 22#include "mainwin.h"
23#include "datamgr.h" 23#include "datamgr.h"
24#include "networkpkgmgr.h" 24#include "networkpkgmgr.h"
25#include "settingsimpl.h" 25#include "settingsimpl.h"
26#include "helpwindow.h" 26#include "helpwindow.h"
27#include "utils.h" 27#include "utils.h"
28#include "global.h" 28#include "global.h"
29 29
30MainWindow :: MainWindow( QWidget *p, char *name ) 30MainWindow :: MainWindow( QWidget *p, char *name )
31 :QMainWindow( p, name ) 31 :QMainWindow( p, name )
32{ 32{
33#ifdef QWS 33#ifdef QWS
34 showMaximized(); 34 showMaximized();
35#endif 35#endif
36 36
37 setCaption( "AQPkg - Package Manager" ); 37 setCaption( "AQPkg - Package Manager" );
38 38
39 // Create our menu 39 // Create our menu
40 QPopupMenu *help = new QPopupMenu( this ); 40 QPopupMenu *help = new QPopupMenu( this );
41 help->insertItem( "&General", this, SLOT(displayHelp()), Qt::CTRL+Qt::Key_H ); 41 help->insertItem( "&General", this, SLOT(displayHelp()), Qt::CTRL+Qt::Key_H );
42 help->insertItem( "&About", this, SLOT(displayAbout()), Qt::CTRL+Qt::Key_A ); 42 help->insertItem( "&About", this, SLOT(displayAbout()), Qt::CTRL+Qt::Key_A );
43 43
44 QPopupMenu *settings = new QPopupMenu( this ); 44 QPopupMenu *settings = new QPopupMenu( this );
45 settings->insertItem( "&Settings", this, SLOT(displaySettings()), Qt::CTRL+Qt::Key_S ); 45 settings->insertItem( "&Settings", this, SLOT(displaySettings()), Qt::CTRL+Qt::Key_S );
46 46
47 QPopupMenu *edit = new QPopupMenu( this );
48 edit->insertItem( "&Search", this, SLOT(searchForPackage()), Qt::CTRL+Qt::Key_F );
49
47 // Create the main menu 50 // Create the main menu
48 QMenuBar *menu = menuBar(); //new QMenuBar( this ); 51 QMenuBar *menu = menuBar(); //new QMenuBar( this );
49 menu->insertItem( "&Settings", settings ); 52 menu->insertItem( "&Settings", settings );
53 menu->insertItem( "&Edit", edit );
50 menu->insertItem( "&Help", help ); 54 menu->insertItem( "&Help", help );
51 55
52 mgr = new DataManager(); 56 mgr = new DataManager();
53 mgr->loadServers(); 57 mgr->loadServers();
54 58
55 stack = new QWidgetStack( this ); 59 stack = new QWidgetStack( this );
56 60
57 networkPkgWindow = new NetworkPackageManager( mgr, stack ); 61 networkPkgWindow = new NetworkPackageManager( mgr, stack );
58 stack->addWidget( networkPkgWindow, 1 ); 62 stack->addWidget( networkPkgWindow, 1 );
59 63
60 setCentralWidget( stack ); 64 setCentralWidget( stack );
61 stack->raiseWidget( networkPkgWindow ); 65 stack->raiseWidget( networkPkgWindow );
62} 66}
63 67
64MainWindow :: ~MainWindow() 68MainWindow :: ~MainWindow()
65{ 69{
66 delete networkPkgWindow; 70 delete networkPkgWindow;
67} 71}
68 72
69void MainWindow :: setDocument( const QString &doc ) 73void MainWindow :: setDocument( const QString &doc )
70{ 74{
71 // Remove path from package 75 // Remove path from package
72 QString package = Utils::getPackageNameFromIpkFilename( doc ); 76 QString package = Utils::getPackageNameFromIpkFilename( doc );
73 cout << "Selecting package " << package << endl; 77 cout << "Selecting package " << package << endl;
74 networkPkgWindow->selectLocalPackage( package ); 78 networkPkgWindow->selectLocalPackage( package );
75} 79}
76 80
77void MainWindow :: displaySettings() 81void MainWindow :: displaySettings()
78{ 82{
79 SettingsImpl *dlg = new SettingsImpl( mgr, this, "Settings", true ); 83 SettingsImpl *dlg = new SettingsImpl( mgr, this, "Settings", true );
80 if ( dlg->showDlg( 0 ) ) 84 if ( dlg->showDlg( 0 ) )
81 networkPkgWindow->updateData(); 85 networkPkgWindow->updateData();
82 delete dlg; 86 delete dlg;
83} 87}
84 88
85void MainWindow :: displayHelp() 89void MainWindow :: displayHelp()
86{ 90{
87 HelpWindow *dlg = new HelpWindow( this ); 91 HelpWindow *dlg = new HelpWindow( this );
88 dlg->exec(); 92 dlg->exec();
89 delete dlg; 93 delete dlg;
90} 94}
91 95
96void MainWindow :: searchForPackage()
97{
98 networkPkgWindow->searchForPackage();
99}
100
92void MainWindow :: displayAbout() 101void MainWindow :: displayAbout()
93{ 102{
94 QMessageBox::about( this, "About AQPkg", VERSION_TEXT ); 103 QMessageBox::about( this, "About AQPkg", VERSION_TEXT );
95} 104}
diff --git a/noncore/settings/aqpkg/mainwin.h b/noncore/settings/aqpkg/mainwin.h
index a9e290c..9fa0eca 100644
--- a/noncore/settings/aqpkg/mainwin.h
+++ b/noncore/settings/aqpkg/mainwin.h
@@ -1,48 +1,49 @@
1/*************************************************************************** 1/***************************************************************************
2 mainwin.h - description 2 mainwin.h - description
3 ------------------- 3 -------------------
4 begin : Mon Aug 26 13:32:30 BST 2002 4 begin : Mon Aug 26 13:32:30 BST 2002
5 copyright : (C) 2002 by Andy Qua 5 copyright : (C) 2002 by Andy Qua
6 email : andy.qua@blueyonder.co.uk 6 email : andy.qua@blueyonder.co.uk
7 ***************************************************************************/ 7 ***************************************************************************/
8 8
9/*************************************************************************** 9/***************************************************************************
10 * * 10 * *
11 * This program is free software; you can redistribute it and/or modify * 11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by * 12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or * 13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. * 14 * (at your option) any later version. *
15 * * 15 * *
16 ***************************************************************************/ 16 ***************************************************************************/
17 17
18#ifndef MAINWIN_H 18#ifndef MAINWIN_H
19#define MAINWIN_H 19#define MAINWIN_H
20 20
21#include <qmainwindow.h> 21#include <qmainwindow.h>
22#include <qwidgetstack.h> 22#include <qwidgetstack.h>
23 23
24 24
25class NetworkPackageManager; 25class NetworkPackageManager;
26class DataManager; 26class DataManager;
27 27
28class MainWindow :public QMainWindow 28class MainWindow :public QMainWindow
29{ 29{
30 Q_OBJECT 30 Q_OBJECT
31public: 31public:
32 32
33 MainWindow( QWidget *p = 0, char *name = 0 ); 33 MainWindow( QWidget *p = 0, char *name = 0 );
34 ~MainWindow(); 34 ~MainWindow();
35 35
36private: 36private:
37 DataManager *mgr; 37 DataManager *mgr;
38 38
39 QWidgetStack *stack; 39 QWidgetStack *stack;
40 NetworkPackageManager *networkPkgWindow; 40 NetworkPackageManager *networkPkgWindow;
41 41
42public slots: 42public slots:
43 void setDocument( const QString &doc ); 43 void setDocument( const QString &doc );
44 void displayHelp(); 44 void displayHelp();
45 void searchForPackage();
45 void displayAbout(); 46 void displayAbout();
46 void displaySettings(); 47 void displaySettings();
47}; 48};
48#endif 49#endif
diff --git a/noncore/settings/aqpkg/networkpkgmgr.cpp b/noncore/settings/aqpkg/networkpkgmgr.cpp
index ccce401..78d3df5 100644
--- a/noncore/settings/aqpkg/networkpkgmgr.cpp
+++ b/noncore/settings/aqpkg/networkpkgmgr.cpp
@@ -409,129 +409,129 @@ void NetworkPackageManager :: downloadPackage()
409 int pos = name.find( "*" ); 409 int pos = name.find( "*" );
410 name.truncate( pos ); 410 name.truncate( pos );
411 411
412 // if (there is a (installed), remove it 412 // if (there is a (installed), remove it
413 pos = name.find( "(installed)" ); 413 pos = name.find( "(installed)" );
414 if ( pos > 0 ) 414 if ( pos > 0 )
415 name.truncate( pos - 1 ); 415 name.truncate( pos - 1 );
416 416
417 ipkg.setPackage( name ); 417 ipkg.setPackage( name );
418 ipkg.runIpkg( ); 418 ipkg.runIpkg( );
419 } 419 }
420 } 420 }
421 } 421 }
422 else if ( download->text() == "Remove" ) 422 else if ( download->text() == "Remove" )
423 { 423 {
424 doUpdate = false; 424 doUpdate = false;
425 for ( QCheckListItem *item = (QCheckListItem *)packagesList->firstChild(); 425 for ( QCheckListItem *item = (QCheckListItem *)packagesList->firstChild();
426 item != 0 ; 426 item != 0 ;
427 item = (QCheckListItem *)item->nextSibling() ) 427 item = (QCheckListItem *)item->nextSibling() )
428 { 428 {
429 if ( item->isOn() ) 429 if ( item->isOn() )
430 { 430 {
431 QString name = item->text(); 431 QString name = item->text();
432 int pos = name.find( "*" ); 432 int pos = name.find( "*" );
433 name.truncate( pos ); 433 name.truncate( pos );
434 434
435 // if (there is a (installed), remove it 435 // if (there is a (installed), remove it
436 pos = name.find( "(installed)" ); 436 pos = name.find( "(installed)" );
437 if ( pos > 0 ) 437 if ( pos > 0 )
438 name.truncate( pos - 1 ); 438 name.truncate( pos - 1 );
439 439
440 Package *p = dataMgr->getServer( serversList->currentText() )->getPackage( name ); 440 Package *p = dataMgr->getServer( serversList->currentText() )->getPackage( name );
441 441
442 QString msgtext; 442 QString msgtext;
443 msgtext.sprintf( "Are you sure you wish to delete\n%s?", (const char *)p->getPackageName() ); 443 msgtext.sprintf( "Are you sure you wish to delete\n%s?", (const char *)p->getPackageName() );
444 if ( QMessageBox::information( this, "Are you sure?", 444 if ( QMessageBox::information( this, "Are you sure?",
445 msgtext, "No", "Yes" ) == 1 ) 445 msgtext, "No", "Yes" ) == 1 )
446 { 446 {
447 doUpdate = true; 447 doUpdate = true;
448 QFile f( p->getFilename() ); 448 QFile f( p->getFilename() );
449 f.remove(); 449 f.remove();
450 } 450 }
451 } 451 }
452 } 452 }
453 } 453 }
454 454
455 if ( doUpdate ) 455 if ( doUpdate )
456 { 456 {
457 dataMgr->reloadServerData(); 457 dataMgr->reloadServerData();
458 serverSelected( -1 ); 458 serverSelected( -1 );
459 } 459 }
460} 460}
461 461
462 462
463void NetworkPackageManager :: applyChanges() 463void NetworkPackageManager :: applyChanges()
464{ 464{
465 stickyOption = ""; 465 stickyOption = "";
466 466
467 // First, write out ipkg_conf file so that ipkg can use it 467 // First, write out ipkg_conf file so that ipkg can use it
468 dataMgr->writeOutIpkgConf(); 468 dataMgr->writeOutIpkgConf();
469 469
470 // Now for each selected item 470 // Now for each selected item
471 // deal with it 471 // deal with it
472 472
473 vector<InstallData> workingPackages; 473 vector<InstallData> workingPackages;
474 for ( QCheckListItem *item = (QCheckListItem *)packagesList->firstChild(); 474 for ( QCheckListItem *item = (QCheckListItem *)packagesList->firstChild();
475 item != 0 ; 475 item != 0 ;
476 item = (QCheckListItem *)item->nextSibling() ) 476 item = (QCheckListItem *)item->nextSibling() )
477 { 477 {
478 if ( item->isOn() ) 478 if ( item->isOn() )
479 { 479 {
480 InstallData data = dealWithItem( item ); 480 InstallData data = dealWithItem( item );
481 workingPackages.push_back( data ); 481 workingPackages.push_back( data );
482 } 482 }
483 } 483 }
484 484
485 if ( workingPackages.size() == 0 ) 485 if ( workingPackages.size() == 0 )
486 { 486 {
487 // Nothing to do 487 // Nothing to do
488 QMessageBox::information( this, "Nothing to do", 488 QMessageBox::information( this, "Nothing to do",
489 "No packages selected", "OK" ); 489 "No packages selected", "OK" );
490 490
491 return; 491 return;
492 } 492 }
493 493
494 // do the stuff 494 // do the stuff
495 InstallDlgImpl dlg( workingPackages, dataMgr, this, "Install", true ); 495 InstallDlgImpl dlg( workingPackages, dataMgr, this, "Install", true );
496 dlg.showDlg(); 496 dlg.showDlg();
497 497
498 // Reload data 498 // Reload data
499 dataMgr->reloadServerData(); 499 dataMgr->reloadServerData();
500 serverSelected(-1); 500 serverSelected(-1);
501 501
502#ifdef QWS 502#ifdef QWS
503 // Finally let the main system update itself 503 // Finally let the main system update itself
504 QCopEnvelope e("QPE/System", "linkChanged(QString)"); 504 QCopEnvelope e("QPE/System", "linkChanged(QString)");
505 QString lf = QString::null; 505 QString lf = QString::null;
506 e << lf; 506 e << lf;
507#endif 507#endif
508} 508}
509 509
510// decide what to do - either remove, upgrade or install 510// decide what to do - either remove, upgrade or install
511// Current rules: 511// Current rules:
512// If not installed - install 512// If not installed - install
513// If installed and different version available - upgrade 513// If installed and different version available - upgrade
514// If installed and version up to date - remove 514// If installed and version up to date - remove
515InstallData NetworkPackageManager :: dealWithItem( QCheckListItem *item ) 515InstallData NetworkPackageManager :: dealWithItem( QCheckListItem *item )
516{ 516{
517 QString name = item->text(); 517 QString name = item->text();
518 int pos = name.find( "*" ); 518 int pos = name.find( "*" );
519 name.truncate( pos ); 519 name.truncate( pos );
520 520
521 // if (there is a (installed), remove it 521 // if (there is a (installed), remove it
522 pos = name.find( "(installed)" ); 522 pos = name.find( "(installed)" );
523 if ( pos > 0 ) 523 if ( pos > 0 )
524 name.truncate( pos - 1 ); 524 name.truncate( pos - 1 );
525 525
526 // Get package 526 // Get package
527 Server *s = dataMgr->getServer( serversList->currentText() ); 527 Server *s = dataMgr->getServer( serversList->currentText() );
528 Package *p = s->getPackage( name ); 528 Package *p = s->getPackage( name );
529 529
530 // If the package has a filename then it is a local file 530 // If the package has a filename then it is a local file
531 if ( p->isPackageStoredLocally() ) 531 if ( p->isPackageStoredLocally() )
532 name = p->getFilename(); 532 name = p->getFilename();
533 533
534 QString option; 534 QString option;
535 QString dest = "root"; 535 QString dest = "root";
536 if ( !p->isInstalled() ) 536 if ( !p->isInstalled() )
537 { 537 {
@@ -612,64 +612,96 @@ InstallData NetworkPackageManager :: dealWithItem( QCheckListItem *item )
612 // option 0 = Remove 612 // option 0 = Remove
613 item.option = "D"; 613 item.option = "D";
614 break; 614 break;
615 case 1: // Quit or Escape 615 case 1: // Quit or Escape
616 item.option = secondOption; 616 item.option = secondOption;
617 break; 617 break;
618 } 618 }
619 } 619 }
620 else 620 else
621 { 621 {
622// item.option = stickyOption; 622// item.option = stickyOption;
623 } 623 }
624 } 624 }
625 625
626 626
627 // Check if we are reinstalling the same version 627 // Check if we are reinstalling the same version
628 if ( item.option != "R" ) 628 if ( item.option != "R" )
629 item.recreateLinks = true; 629 item.recreateLinks = true;
630 else 630 else
631 item.recreateLinks = false; 631 item.recreateLinks = false;
632 632
633 // User hit cancel (on dlg - assume remove) 633 // User hit cancel (on dlg - assume remove)
634 return item; 634 return item;
635 } 635 }
636} 636}
637 637
638void NetworkPackageManager :: displayText( const QString &t ) 638void NetworkPackageManager :: displayText( const QString &t )
639{ 639{
640 cout << t << endl; 640 cout << t << endl;
641} 641}
642 642
643 643
644void NetworkPackageManager :: letterPushed( QString t ) 644void NetworkPackageManager :: letterPushed( QString t )
645{ 645{
646 QCheckListItem *top = (QCheckListItem *)packagesList->firstChild(); 646 QCheckListItem *top = (QCheckListItem *)packagesList->firstChild();
647 QCheckListItem *start = (QCheckListItem *)packagesList->currentItem(); 647 QCheckListItem *start = (QCheckListItem *)packagesList->currentItem();
648 if ( packagesList->firstChild() == 0 ) 648 if ( packagesList->firstChild() == 0 )
649 return; 649 return;
650 650
651 QCheckListItem *item; 651 QCheckListItem *item;
652 if ( start == 0 ) 652 if ( start == 0 )
653 { 653 {
654 item = (QCheckListItem *)packagesList->firstChild(); 654 item = (QCheckListItem *)packagesList->firstChild();
655 start = top; 655 start = top;
656 } 656 }
657 else 657 else
658 item = (QCheckListItem *)start->nextSibling(); 658 item = (QCheckListItem *)start->nextSibling();
659 659
660 if ( item == 0 ) 660 if ( item == 0 )
661 item = (QCheckListItem *)packagesList->firstChild(); 661 item = (QCheckListItem *)packagesList->firstChild();
662 do 662 do
663 { 663 {
664 if ( item->text().lower().startsWith( t.lower() ) ) 664 if ( item->text().lower().startsWith( t.lower() ) )
665 { 665 {
666 packagesList->setSelected( item, true ); 666 packagesList->setSelected( item, true );
667 packagesList->ensureItemVisible( item ); 667 packagesList->ensureItemVisible( item );
668 break; 668 break;
669 } 669 }
670 670
671 item = (QCheckListItem *)item->nextSibling(); 671 item = (QCheckListItem *)item->nextSibling();
672 if ( !item ) 672 if ( !item )
673 item = (QCheckListItem *)packagesList->firstChild(); 673 item = (QCheckListItem *)packagesList->firstChild();
674 } while ( item != start); 674 } while ( item != start);
675} 675}
676
677
678void NetworkPackageManager :: searchForPackage()
679{
680 bool ok = FALSE;
681 QString searchText = InputDialog::getText( "Search for package", "Enter package to search for", QString::null, &ok, this ).lower();
682 if ( ok && !searchText.isEmpty() )
683 {
684 cout << "searching for " << searchText << endl;
685 // look through package list for text startng at current position
686 vector<InstallData> workingPackages;
687 QCheckListItem *start = (QCheckListItem *)packagesList->currentItem();
688 if ( start != 0 )
689 start = (QCheckListItem *)start->nextSibling();
690
691 if ( start == 0 )
692 start = (QCheckListItem *)packagesList->firstChild();
693
694 for ( QCheckListItem *item = start; item != 0 ;
695 item = (QCheckListItem *)item->nextSibling() )
696 {
697 cout << "checking " << item->text().lower() << endl;
698 if ( item->text().lower().find( searchText ) != -1 )
699 {
700 cout << "matched " << item->text() << endl;
701 packagesList->ensureItemVisible( item );
702 packagesList->setCurrentItem( item );
703 break;
704 }
705 }
706 }
707} \ No newline at end of file
diff --git a/noncore/settings/aqpkg/networkpkgmgr.h b/noncore/settings/aqpkg/networkpkgmgr.h
index 3c437b4..3a111ff 100644
--- a/noncore/settings/aqpkg/networkpkgmgr.h
+++ b/noncore/settings/aqpkg/networkpkgmgr.h
@@ -1,78 +1,78 @@
1/*************************************************************************** 1/***************************************************************************
2 networkpkgmgr.h - description 2 networkpkgmgr.h - description
3 ------------------- 3 -------------------
4 begin : Mon Aug 26 13:32:30 BST 2002 4 begin : Mon Aug 26 13:32:30 BST 2002
5 copyright : (C) 2002 by Andy Qua 5 copyright : (C) 2002 by Andy Qua
6 email : andy.qua@blueyonder.co.uk 6 email : andy.qua@blueyonder.co.uk
7 ***************************************************************************/ 7 ***************************************************************************/
8 8
9/*************************************************************************** 9/***************************************************************************
10 * * 10 * *
11 * This program is free software; you can redistribute it and/or modify * 11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by * 12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or * 13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. * 14 * (at your option) any later version. *
15 * * 15 * *
16 ***************************************************************************/ 16 ***************************************************************************/
17 17
18#ifndef NETWORKPKGMGR_H 18#ifndef NETWORKPKGMGR_H
19#define NETWORKPKGMGR_H 19#define NETWORKPKGMGR_H
20 20
21#include <qlayout.h> 21#include <qlayout.h>
22#include <qpushbutton.h> 22#include <qpushbutton.h>
23#include <qwidget.h> 23#include <qwidget.h>
24#include <qcombobox.h> 24#include <qcombobox.h>
25#include <qlistview.h> 25#include <qlistview.h>
26 26
27#include "datamgr.h" 27#include "datamgr.h"
28#include "progressdlg.h" 28#include "progressdlg.h"
29class InstallData; 29class InstallData;
30 30
31/** NetworkPackageManager is the base class of the project */ 31/** NetworkPackageManager is the base class of the project */
32class NetworkPackageManager : public QWidget 32class NetworkPackageManager : public QWidget
33{ 33{
34 Q_OBJECT 34 Q_OBJECT
35public: 35public:
36 /** construtor */ 36 /** construtor */
37 NetworkPackageManager( DataManager *dataManager, QWidget* parent=0, const char *name=0); 37 NetworkPackageManager( DataManager *dataManager, QWidget* parent=0, const char *name=0);
38 /** destructor */ 38 /** destructor */
39 ~NetworkPackageManager(); 39 ~NetworkPackageManager();
40 40
41 void selectLocalPackage( const QString &pkg ); 41 void selectLocalPackage( const QString &pkg );
42 void updateData(); 42 void updateData();
43 43 void searchForPackage();
44private: 44private:
45 DataManager *dataMgr; 45 DataManager *dataMgr;
46 46
47 QComboBox *serversList; 47 QComboBox *serversList;
48 QListView *packagesList; 48 QListView *packagesList;
49 QPushButton *update; 49 QPushButton *update;
50 QPushButton *upgrade; 50 QPushButton *upgrade;
51 QPushButton *download; 51 QPushButton *download;
52 QPushButton *apply; 52 QPushButton *apply;
53 53
54 ProgressDlg *progressDlg; 54 ProgressDlg *progressDlg;
55 QString currentlySelectedServer; 55 QString currentlySelectedServer;
56 56
57 bool showJumpTo; 57 bool showJumpTo;
58 int timerId; 58 int timerId;
59 59
60 void timerEvent ( QTimerEvent * ); 60 void timerEvent ( QTimerEvent * );
61 61
62 void initGui(); 62 void initGui();
63 void setupConnections(); 63 void setupConnections();
64 void showProgressDialog( char *initialText ); 64 void showProgressDialog( char *initialText );
65 InstallData dealWithItem( QCheckListItem *item ); 65 InstallData dealWithItem( QCheckListItem *item );
66 QString stickyOption; 66 QString stickyOption;
67 67
68public slots: 68public slots:
69 void serverSelected( int index ); 69 void serverSelected( int index );
70 void applyChanges(); 70 void applyChanges();
71 void upgradePackages(); 71 void upgradePackages();
72 void downloadPackage(); 72 void downloadPackage();
73 void updateServer(); 73 void updateServer();
74 void displayText( const QString &t ); 74 void displayText( const QString &t );
75 void letterPushed( QString t ); 75 void letterPushed( QString t );
76}; 76};
77 77
78#endif 78#endif