summaryrefslogtreecommitdiff
authordrw <drw>2004-11-16 18:19:09 (UTC)
committer drw <drw>2004-11-16 18:19:09 (UTC)
commit64dabf8fbdc8593611b3438e6c9f5d3d7c40016f (patch) (unidiff)
tree3ed2679418f82bb69c9ecff7213d0c97817a9c4a
parent47a5c043c7ee0647da508ee63b5b8ec27205a9c3 (diff)
downloadopie-64dabf8fbdc8593611b3438e6c9f5d3d7c40016f.zip
opie-64dabf8fbdc8593611b3438e6c9f5d3d7c40016f.tar.gz
opie-64dabf8fbdc8593611b3438e6c9f5d3d7c40016f.tar.bz2
Remove commented out code
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/packagemanager/oipkgconfigdlg.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/noncore/settings/packagemanager/oipkgconfigdlg.cpp b/noncore/settings/packagemanager/oipkgconfigdlg.cpp
index 25052f8..886430f 100644
--- a/noncore/settings/packagemanager/oipkgconfigdlg.cpp
+++ b/noncore/settings/packagemanager/oipkgconfigdlg.cpp
@@ -418,224 +418,223 @@ void OIpkgConfigDlg::initData()
418 else if ( config->name() == "proxy_username" ) 418 else if ( config->name() == "proxy_username" )
419 { 419 {
420 m_proxyUsername->setText( config->value() ); 420 m_proxyUsername->setText( config->value() );
421 } 421 }
422 else if ( config->name() == "proxy_password" ) 422 else if ( config->name() == "proxy_password" )
423 { 423 {
424 m_proxyPassword->setText( config->value() ); 424 m_proxyPassword->setText( config->value() );
425 } 425 }
426 } 426 }
427 } 427 }
428 } 428 }
429 } 429 }
430 } 430 }
431 431
432 // Get Ipkg execution options 432 // Get Ipkg execution options
433 int options = m_ipkg->ipkgExecOptions(); 433 int options = m_ipkg->ipkgExecOptions();
434 if ( options & FORCE_DEPENDS ) 434 if ( options & FORCE_DEPENDS )
435 m_optForceDepends->setChecked( true ); 435 m_optForceDepends->setChecked( true );
436 if ( options & FORCE_REINSTALL ) 436 if ( options & FORCE_REINSTALL )
437 m_optForceReinstall->setChecked( true ); 437 m_optForceReinstall->setChecked( true );
438 if ( options & FORCE_REMOVE ) 438 if ( options & FORCE_REMOVE )
439 m_optForceRemove->setChecked( true ); 439 m_optForceRemove->setChecked( true );
440 if ( options & FORCE_OVERWRITE ) 440 if ( options & FORCE_OVERWRITE )
441 m_optForceOverwrite->setChecked( true ); 441 m_optForceOverwrite->setChecked( true );
442 442
443 m_optVerboseIpkg->setCurrentItem( m_ipkg->ipkgExecVerbosity() ); 443 m_optVerboseIpkg->setCurrentItem( m_ipkg->ipkgExecVerbosity() );
444} 444}
445 445
446OConfItem *OIpkgConfigDlg::findConfItem( OConfItem::Type type, const QString &name ) 446OConfItem *OIpkgConfigDlg::findConfItem( OConfItem::Type type, const QString &name )
447{ 447{
448 // Find selected server in list 448 // Find selected server in list
449 OConfItemListIterator configIt( *m_configs ); 449 OConfItemListIterator configIt( *m_configs );
450 OConfItem *config = 0x0; 450 OConfItem *config = 0x0;
451 for ( ; configIt.current(); ++configIt ) 451 for ( ; configIt.current(); ++configIt )
452 { 452 {
453 config = configIt.current(); 453 config = configIt.current();
454 if ( config->type() == type && config->name() == name ) 454 if ( config->type() == type && config->name() == name )
455 break; 455 break;
456 } 456 }
457 457
458 if ( config && config->type() == type && config->name() == name ) 458 if ( config && config->type() == type && config->name() == name )
459 return config; 459 return config;
460 460
461 return 0x0; 461 return 0x0;
462} 462}
463 463
464void OIpkgConfigDlg::slotServerEdit( int index ) 464void OIpkgConfigDlg::slotServerEdit( int index )
465{ 465{
466 m_serverNew = false; 466 m_serverNew = false;
467 m_serverCurrent = index; 467 m_serverCurrent = index;
468 468
469 // Find selected server in list 469 // Find selected server in list
470 OConfItem *server = findConfItem( OConfItem::Source, m_serverList->currentText() ); 470 OConfItem *server = findConfItem( OConfItem::Source, m_serverList->currentText() );
471 471
472 // Display server details 472 // Display server details
473 if ( server ) 473 if ( server )
474 { 474 {
475 m_serverCurrName = server->name(); 475 m_serverCurrName = server->name();
476 m_serverName->setText( server->name() ); 476 m_serverName->setText( server->name() );
477 m_serverLocation->setText( server->value() ); 477 m_serverLocation->setText( server->value() );
478 m_serverActive->setChecked( server->active() ); 478 m_serverActive->setChecked( server->active() );
479 m_serverName->setFocus(); 479 m_serverName->setFocus();
480 } 480 }
481} 481}
482 482
483void OIpkgConfigDlg::slotServerNew() 483void OIpkgConfigDlg::slotServerNew()
484{ 484{
485 m_serverNew = true; 485 m_serverNew = true;
486 486
487 m_serverName->setText( QString::null ); 487 m_serverName->setText( QString::null );
488 m_serverLocation->setText( QString::null ); 488 m_serverLocation->setText( QString::null );
489 m_serverActive->setChecked( true ); 489 m_serverActive->setChecked( true );
490 m_serverName->setFocus(); 490 m_serverName->setFocus();
491} 491}
492 492
493void OIpkgConfigDlg::slotServerDelete() 493void OIpkgConfigDlg::slotServerDelete()
494{ 494{
495 // Find selected server in list 495 // Find selected server in list
496 OConfItem *server = findConfItem( OConfItem::Source, m_serverList->currentText() ); 496 OConfItem *server = findConfItem( OConfItem::Source, m_serverList->currentText() );
497 497
498 // Delete server 498 // Delete server
499 if ( server ) 499 if ( server )
500 { 500 {
501 m_configs->removeRef( server ); 501 m_configs->removeRef( server );
502 m_serverList->removeItem( m_serverCurrent ); 502 m_serverList->removeItem( m_serverCurrent );
503 } 503 }
504} 504}
505 505
506void OIpkgConfigDlg::slotServerUpdate() 506void OIpkgConfigDlg::slotServerUpdate()
507{ 507{
508 QString newName = m_serverName->text(); 508 QString newName = m_serverName->text();
509 509
510 // Convert any spaces to underscores 510 // Convert any spaces to underscores
511 newName.replace( QRegExp( " " ), "_" ); 511 newName.replace( QRegExp( " " ), "_" );
512 512
513 if ( !m_serverNew ) 513 if ( !m_serverNew )
514 { 514 {
515 // Find selected server in list 515 // Find selected server in list
516 OConfItem *server = findConfItem( OConfItem::Source, m_serverCurrName ); 516 OConfItem *server = findConfItem( OConfItem::Source, m_serverCurrName );
517 517
518 // Delete server 518 // Delete server
519 if ( server ) 519 if ( server )
520 { 520 {
521 // Update url 521 // Update url
522 server->setValue( m_serverLocation->text() ); 522 server->setValue( m_serverLocation->text() );
523 server->setActive( m_serverActive->isChecked() ); 523 server->setActive( m_serverActive->isChecked() );
524 524
525 // Check if server name has changed, if it has then we need to replace the key in the map 525 // Check if server name has changed, if it has then we need to replace the key in the map
526 if ( m_serverCurrName != newName ) 526 if ( m_serverCurrName != newName )
527 { 527 {
528 // Update server name 528 // Update server name
529 server->setName( newName ); 529 server->setName( newName );
530 530
531 // Update list box 531 // Update list box
532 m_serverList->changeItem( newName, m_serverCurrent ); 532 m_serverList->changeItem( newName, m_serverCurrent );
533 } 533 }
534 } 534 }
535 } 535 }
536 else 536 else
537 { 537 {
538 // Add new destination to configuration list 538 // Add new destination to configuration list
539 m_configs->append( new OConfItem( OConfItem::Source, newName, 539 m_configs->append( new OConfItem( OConfItem::Source, newName,
540 m_serverLocation->text(), m_serverActive->isChecked() ) ); 540 m_serverLocation->text(), m_serverActive->isChecked() ) );
541 m_configs->sort(); 541 m_configs->sort();
542 542
543 m_serverList->insertItem( newName ); 543 m_serverList->insertItem( newName );
544 m_serverList->setCurrentItem( m_serverList->count() ); 544 m_serverList->setCurrentItem( m_serverList->count() );
545 m_serverNew = false; 545 m_serverNew = false;
546// m_serverList->insertItem( newName );
547 } 546 }
548} 547}
549 548
550void OIpkgConfigDlg::slotDestEdit( int index ) 549void OIpkgConfigDlg::slotDestEdit( int index )
551{ 550{
552 m_destNew = false; 551 m_destNew = false;
553 m_destCurrent = index; 552 m_destCurrent = index;
554 553
555 // Find selected destination in list 554 // Find selected destination in list
556 OConfItem *destination = findConfItem( OConfItem::Destination, m_destList->currentText() ); 555 OConfItem *destination = findConfItem( OConfItem::Destination, m_destList->currentText() );
557 556
558 // Display destination details 557 // Display destination details
559 if ( destination ) 558 if ( destination )
560 { 559 {
561 m_destCurrName = destination->name(); 560 m_destCurrName = destination->name();
562 m_destName->setText( destination->name() ); 561 m_destName->setText( destination->name() );
563 m_destLocation->setText( destination->value() ); 562 m_destLocation->setText( destination->value() );
564 m_destActive->setChecked( destination->active() ); 563 m_destActive->setChecked( destination->active() );
565 m_destName->setFocus(); 564 m_destName->setFocus();
566 } 565 }
567} 566}
568 567
569void OIpkgConfigDlg::slotDestNew() 568void OIpkgConfigDlg::slotDestNew()
570{ 569{
571 m_destNew = true; 570 m_destNew = true;
572 571
573 m_destName->setText( QString::null ); 572 m_destName->setText( QString::null );
574 m_destLocation->setText( QString::null ); 573 m_destLocation->setText( QString::null );
575 m_destActive->setChecked( true ); 574 m_destActive->setChecked( true );
576 m_destName->setFocus(); 575 m_destName->setFocus();
577} 576}
578 577
579void OIpkgConfigDlg::slotDestDelete() 578void OIpkgConfigDlg::slotDestDelete()
580{ 579{
581 // Find selected destination in list 580 // Find selected destination in list
582 OConfItem *destination = findConfItem( OConfItem::Destination, m_destList->currentText() ); 581 OConfItem *destination = findConfItem( OConfItem::Destination, m_destList->currentText() );
583 582
584 // Delete destination 583 // Delete destination
585 if ( destination ) 584 if ( destination )
586 { 585 {
587 m_configs->removeRef( destination ); 586 m_configs->removeRef( destination );
588 m_destList->removeItem( m_destCurrent ); 587 m_destList->removeItem( m_destCurrent );
589 } 588 }
590} 589}
591 590
592void OIpkgConfigDlg::slotDestSelectPath() 591void OIpkgConfigDlg::slotDestSelectPath()
593{ 592{
594 QString path = Opie::Ui::OFileDialog::getDirectory( 0, m_destLocation->text() ); 593 QString path = Opie::Ui::OFileDialog::getDirectory( 0, m_destLocation->text() );
595 if ( path.at( path.length() - 1 ) == '/' ) 594 if ( path.at( path.length() - 1 ) == '/' )
596 path.truncate( path.length() - 1 ); 595 path.truncate( path.length() - 1 );
597 m_destLocation->setText( path ); 596 m_destLocation->setText( path );
598} 597}
599 598
600void OIpkgConfigDlg::slotDestUpdate() 599void OIpkgConfigDlg::slotDestUpdate()
601{ 600{
602 QString newName = m_destName->text(); 601 QString newName = m_destName->text();
603 602
604 // Convert any spaces to underscores 603 // Convert any spaces to underscores
605 newName.replace( QRegExp( " " ), "_" ); 604 newName.replace( QRegExp( " " ), "_" );
606 605
607 if ( !m_destNew ) 606 if ( !m_destNew )
608 { 607 {
609 // Find selected destination in list 608 // Find selected destination in list
610 OConfItem *destination = findConfItem( OConfItem::Destination, m_destCurrName ); 609 OConfItem *destination = findConfItem( OConfItem::Destination, m_destCurrName );
611 610
612 // Display destination details 611 // Display destination details
613 if ( destination ) 612 if ( destination )
614 { 613 {
615 // Update url 614 // Update url
616 destination->setValue( m_destLocation->text() ); 615 destination->setValue( m_destLocation->text() );
617 destination->setActive( m_destActive->isChecked() ); 616 destination->setActive( m_destActive->isChecked() );
618 617
619 // Check if destination name has changed, if it has then we need to replace the key in the map 618 // Check if destination name has changed, if it has then we need to replace the key in the map
620 if ( m_destCurrName != newName ) 619 if ( m_destCurrName != newName )
621 { 620 {
622 // Update destination name 621 // Update destination name
623 destination->setName( newName ); 622 destination->setName( newName );
624 623
625 // Update list box 624 // Update list box
626 m_destList->changeItem( newName, m_destCurrent ); 625 m_destList->changeItem( newName, m_destCurrent );
627 } 626 }
628 } 627 }
629 } 628 }
630 else 629 else
631 { 630 {
632 // Add new destination to configuration list 631 // Add new destination to configuration list
633 m_configs->append( new OConfItem( OConfItem::Destination, newName, 632 m_configs->append( new OConfItem( OConfItem::Destination, newName,
634 m_destLocation->text(), m_destActive->isChecked() ) ); 633 m_destLocation->text(), m_destActive->isChecked() ) );
635 m_configs->sort(); 634 m_configs->sort();
636 635
637 m_destList->insertItem( newName ); 636 m_destList->insertItem( newName );
638 m_destList->setCurrentItem( m_destList->count() ); 637 m_destList->setCurrentItem( m_destList->count() );
639 m_destNew = false; 638 m_destNew = false;
640 } 639 }
641} 640}