summaryrefslogtreecommitdiff
path: root/noncore
Unidiff
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluebase.cpp39
-rw-r--r--noncore/net/opietooth/manager/obexftpdialog.cpp0
2 files changed, 28 insertions, 11 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp
index 58f97fa..85385d8 100644
--- a/noncore/net/opietooth/manager/bluebase.cpp
+++ b/noncore/net/opietooth/manager/bluebase.cpp
@@ -673,125 +673,142 @@ void BlueBase::startScan()
673 QObject::connect( scan, SIGNAL( selectedDevices(const QValueList<RemoteDevice>&) ), 673 QObject::connect( scan, SIGNAL( selectedDevices(const QValueList<RemoteDevice>&) ),
674 this, SLOT( addSearchedDevices(const QValueList<RemoteDevice>&) ) ); 674 this, SLOT( addSearchedDevices(const QValueList<RemoteDevice>&) ) );
675 675
676 QPEApplication::showDialog( scan ); 676 QPEApplication::showDialog( scan );
677} 677}
678 678
679 679
680/** 680/**
681 * Set the informations about the local device in information Tab 681 * Set the informations about the local device in information Tab
682 */ 682 */
683void BlueBase::setInfo() 683void BlueBase::setInfo()
684{ 684{
685 StatusLabel->setText( status() ); 685 StatusLabel->setText( status() );
686} 686}
687 687
688 688
689/** 689/**
690 * Decontructor 690 * Decontructor
691 */ 691 */
692BlueBase::~BlueBase() 692BlueBase::~BlueBase()
693{ 693{
694 writeSavedDevices(); 694 writeSavedDevices();
695 if (forwarder) { 695 if (forwarder) {
696#if defined(Q_WS_QWS) && !defined(QT_NO_COP) 696#if defined(Q_WS_QWS) && !defined(QT_NO_COP)
697 QCopEnvelope("QPE/System", "setScreenSaverMode(int)" ) 697 {
698 << QPEApplication::Enable; 698 odebug << "SUSP: Enable suspend mode" << oendl;
699 QCopEnvelope e("QPE/System", "setScreenSaverMode(int)" );
700 e << QPEApplication::Enable;
701 }
699#endif 702#endif
700 delete forwarder; 703 delete forwarder;
701 forwarder = NULL; 704 forwarder = NULL;
702 } 705 }
703 delete m_iconLoader; 706 delete m_iconLoader;
704} 707}
705 708
706 709
707/** 710/**
708 * find searches the ListView for a BTDeviceItem containig 711 * find searches the ListView for a BTDeviceItem containig
709 * the same Device if found return true else false 712 * the same Device if found return true else false
710 * @param dev RemoteDevice to find 713 * @param dev RemoteDevice to find
711 * @return returns true if found 714 * @return returns true if found
712 */ 715 */
713bool BlueBase::find( const RemoteDevice& rem ) 716bool BlueBase::find( const RemoteDevice& rem )
714{ 717{
715 QListViewItemIterator it( devicesView ); 718 QListViewItemIterator it( devicesView );
716 BTListItem* item; 719 BTListItem* item;
717 BTDeviceItem* device; 720 BTDeviceItem* device;
718 for (; it.current(); ++it ) 721 for (; it.current(); ++it )
719 { 722 {
720 item = (BTListItem*) it.current(); 723 item = (BTListItem*) it.current();
721 if ( item->typeId() != BTListItem::Device ) 724 if ( item->typeId() != BTListItem::Device )
722 continue; 725 continue;
723 726
724 device = (BTDeviceItem*)item; 727 device = (BTDeviceItem*)item;
725 if ( rem.equals( device->remoteDevice() ) ) 728 if ( rem.equals( device->remoteDevice() ) )
726 return true; 729 return true;
727 } 730 }
728 return false; // not found 731 return false; // not found
729} 732}
730 733
731/** 734/**
732 * Start process of the cell phone forwarding 735 * Start process of the cell phone forwarding
733 */ 736 */
734void BlueBase::doForward() 737void BlueBase::doForward()
735{ 738{
736 if (forwarder && forwarder->isRunning()) { 739 if (forwarder && forwarder->isRunning()) {
737 runButton->setText("start gateway"); 740 runButton->setText("start gateway");
738 forwarder->stop(); 741 forwarder->stop();
739 delete forwarder; 742 delete forwarder;
740 forwarder = NULL; 743 forwarder = NULL;
744#if defined(Q_WS_QWS) && !defined(QT_NO_COP)
745 {
746 odebug << "SUSP: Enable suspend mode" << oendl;
747 QCopEnvelope e("QPE/System", "setScreenSaverMode(int)" );
748 e << QPEApplication::Enable;
749 }
750#endif
741 return; 751 return;
742 } 752 }
743 QString str = serDevName->text(); 753 QString str = serDevName->text();
744 forwarder = new SerialForwarder(str, speeds[serSpeed->currentItem()].val); 754 forwarder = new SerialForwarder(str, speeds[serSpeed->currentItem()].val);
745 connect(forwarder, SIGNAL(processExited(Opie::Core::OProcess*)),
746 this, SLOT(forwardExited(Opie::Core::OProcess*)));
747 if (forwarder->start(OProcess::NotifyOnExit) < 0) { 755 if (forwarder->start(OProcess::NotifyOnExit) < 0) {
748 QMessageBox::critical(this, tr("Forwarder Error"), 756 QMessageBox::critical(this, tr("Forwarder Error"),
749 tr("Forwarder start error:") + tr(strerror(errno))); 757 tr("Forwarder start error:") + tr(strerror(errno)));
750 return; 758 return;
751 } 759 }
760 connect(forwarder, SIGNAL(processExited(Opie::Core::OProcess*)),
761 this, SLOT(forwardExited(Opie::Core::OProcess*)));
752 runButton->setText("stop gateway"); 762 runButton->setText("stop gateway");
753#if defined(Q_WS_QWS) && !defined(QT_NO_COP) 763#if defined(Q_WS_QWS) && !defined(QT_NO_COP)
754 QCopEnvelope("QPE/System", "setScreenSaverMode(int)") 764 {
755 << QPEApplication::DisableSuspend; 765 odebug << "SUSP: Disable suspend mode" << oendl;
766 QCopEnvelope e("QPE/System", "setScreenSaverMode(int)");
767 e << QPEApplication::DisableSuspend;
768 }
756#endif 769#endif
757} 770}
758 771
759/** 772/**
760 * React on the process end 773 * React on the process end
761 */ 774 */
762void BlueBase::forwardExit(Opie::Core::OProcess* proc) 775void BlueBase::forwardExit(Opie::Core::OProcess* proc)
763{ 776{
777 odebug << "Process exited" << oendl;
764#if defined(Q_WS_QWS) && !defined(QT_NO_COP) 778#if defined(Q_WS_QWS) && !defined(QT_NO_COP)
765 QCopEnvelope("QPE/System", "setScreenSaverMode(int)" ) 779 if (forwarder) {
766 << QPEApplication::Enable; 780 delete forwarder;
781 forwarder = NULL;
782 runButton->setText("start gateway");
783 odebug << "SUSP: Enable suspend mode" << oendl;
784 QCopEnvelope e("QPE/System", "setScreenSaverMode(int)" );
785 e << QPEApplication::Enable;
786 }
767#endif 787#endif
768 if (proc->exitStatus() != 0) 788 if (proc->exitStatus() != 0)
769 QMessageBox::critical(this, tr("Forwarder Error"), 789 QMessageBox::critical(this, tr("Forwarder Error"),
770 tr("Forwarder start error")); 790 tr("Forwarder start error"));
771 delete proc;
772 forwarder = NULL;
773 runButton->setText("start gateway");
774} 791}
775 792
776/** 793/**
777 * Encrypt entered passkey 794 * Encrypt entered passkey
778 * doit - do encryption of the key 795 * doit - do encryption of the key
779 */ 796 */
780void BlueBase::doEncrypt(bool doit) 797void BlueBase::doEncrypt(bool doit)
781{ 798{
782 passkeyLine->setEchoMode((doit)? QLineEdit::Password: QLineEdit::Normal); 799 passkeyLine->setEchoMode((doit)? QLineEdit::Password: QLineEdit::Normal);
783} 800}
784 801
785/** 802/**
786 * Start services edit dialog 803 * Start services edit dialog
787 */ 804 */
788void BlueBase::editServices() 805void BlueBase::editServices()
789{ 806{
790 QString conf = "/etc/default/bluetooth"; 807 QString conf = "/etc/default/bluetooth";
791//// Use for debugging purposes 808//// Use for debugging purposes
792//// QString conf = "/mnt/net/opie/bin/bluetooth"; 809//// QString conf = "/mnt/net/opie/bin/bluetooth";
793 ServicesDialog svcEdit(conf, this, "ServicesDialog", true, 810 ServicesDialog svcEdit(conf, this, "ServicesDialog", true,
794 WStyle_ContextHelp); 811 WStyle_ContextHelp);
795 812
796 if (QPEApplication::execDialog(&svcEdit) == QDialog::Accepted) 813 if (QPEApplication::execDialog(&svcEdit) == QDialog::Accepted)
797 { 814 {
diff --git a/noncore/net/opietooth/manager/obexftpdialog.cpp b/noncore/net/opietooth/manager/obexftpdialog.cpp
index fd2015e..2f04ecf 100644
--- a/noncore/net/opietooth/manager/obexftpdialog.cpp
+++ b/noncore/net/opietooth/manager/obexftpdialog.cpp