summaryrefslogtreecommitdiff
path: root/noncore/apps/advancedfm/advancedfm.cpp
authorllornkcor <llornkcor>2003-09-08 22:22:00 (UTC)
committer llornkcor <llornkcor>2003-09-08 22:22:00 (UTC)
commite485a3bd44b3cc70280e03eb8a7958a5252cdd6a (patch) (unidiff)
treecce07d76c2a9060a774898af46e7c8dc8c7b3403 /noncore/apps/advancedfm/advancedfm.cpp
parentb3299bab3370865e0e498fd2f7f84f3abbd17e77 (diff)
downloadopie-e485a3bd44b3cc70280e03eb8a7958a5252cdd6a.zip
opie-e485a3bd44b3cc70280e03eb8a7958a5252cdd6a.tar.gz
opie-e485a3bd44b3cc70280e03eb8a7958a5252cdd6a.tar.bz2
changes for osplitter functionality
Diffstat (limited to 'noncore/apps/advancedfm/advancedfm.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/advancedfm/advancedfm.cpp345
1 files changed, 158 insertions, 187 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp
index 91318f1..2fc4b49 100644
--- a/noncore/apps/advancedfm/advancedfm.cpp
+++ b/noncore/apps/advancedfm/advancedfm.cpp
@@ -42,2 +42,4 @@
42 42
43#include <qpe/qpemessagebox.h>
44
43#include <sys/stat.h> 45#include <sys/stat.h>
@@ -69,4 +71,3 @@ AdvancedFm::~AdvancedFm() {
69 71
70void AdvancedFm::cleanUp() 72void AdvancedFm::cleanUp() {
71{
72 QString sfile=QDir::homeDirPath(); 73 QString sfile=QDir::homeDirPath();
@@ -81,11 +82,4 @@ void AdvancedFm::cleanUp()
81 82
82void AdvancedFm::tabChanged(QWidget *w) 83void AdvancedFm::tabChanged(QWidget *) {
83{ 84// qWarning("tab changed");
84 if( w == tab)
85 whichTab = 1;
86 else
87 whichTab = 2;
88
89// qDebug("tab changed %d", whichTab );
90
91 QString path = CurrentDir()->canonicalPath(); 85 QString path = CurrentDir()->canonicalPath();
@@ -93,4 +87,9 @@ void AdvancedFm::tabChanged(QWidget *w)
93 87
94 viewMenu->setItemChecked(viewMenu->idAt(0),TRUE); 88 if(whichTab == 1) {
95 viewMenu->setItemChecked(viewMenu->idAt(1),FALSE); 89 viewMenu->setItemChecked(viewMenu->idAt(0), true);
90 viewMenu->setItemChecked(viewMenu->idAt(1), false);
91 } else {
92 viewMenu->setItemChecked(viewMenu->idAt(0), false);
93 viewMenu->setItemChecked(viewMenu->idAt(1), true);
94 }
96 95
@@ -98,4 +97,4 @@ void AdvancedFm::tabChanged(QWidget *w)
98 97
99 setCaption("AdvancedFm :: "+fs+" :: " 98 setCaption(tr("AdvancedFm :: ")+fs+" :: "
100 +checkDiskSpace( (const QString &) path )+ " kB free" ); 99 +checkDiskSpace( (const QString &) path )+ tr(" kB free") );
101 chdir( path.latin1()); 100 chdir( path.latin1());
@@ -104,4 +103,3 @@ void AdvancedFm::tabChanged(QWidget *w)
104 103
105void AdvancedFm::populateView() 104void AdvancedFm::populateView() {
106{
107 QPixmap pm; 105 QPixmap pm;
@@ -110,3 +108,3 @@ void AdvancedFm::populateView()
110 QString path = thisDir->canonicalPath(); 108 QString path = thisDir->canonicalPath();
111 109// qWarning("path is "+path);
112 thisView->clear(); 110 thisView->clear();
@@ -117,4 +115,4 @@ void AdvancedFm::populateView()
117 QString fs= getFileSystemType((const QString &) path); 115 QString fs= getFileSystemType((const QString &) path);
118 setCaption("AdvancedFm :: "+fs+" :: " 116 setCaption(tr("AdvancedFm :: ")+fs+" :: "
119 +checkDiskSpace((const QString &) path)+" kB free" ); 117 +checkDiskSpace((const QString &) path)+ tr(" kB free") );
120 bool isDir=FALSE; 118 bool isDir=FALSE;
@@ -135,2 +133,3 @@ void AdvancedFm::populateView()
135 if( QDir(QDir::cleanDirPath( path +"/"+fileL)).exists() ) { 133 if( QDir(QDir::cleanDirPath( path +"/"+fileL)).exists() ) {
134// if(fileL == "..")
136 fileL+="/"; 135 fileL+="/";
@@ -213,20 +212,22 @@ void AdvancedFm::populateView()
213 212
214void AdvancedFm::rePopulate() 213void AdvancedFm::rePopulate() {
215{
216 int tmpTab = whichTab;
217 qDebug("%d", tmpTab);
218
219 for(int i =1; i < 3; i++)
220 {
221 TabWidget->setCurrentWidget(i - 1);
222 populateView(); 214 populateView();
223 } 215 setOtherTabCurrent();
224 TabWidget->setCurrentWidget( tmpTab - 1); 216 populateView();
217
218// int tmpTab = whichTab;
219// // qDebug("%d", tmpTab);
220
221// for(int i =1; i < 3; i++) {
222// TabWidget->setCurrentWidget(i - 1);
223// populateView();
224// }
225// TabWidget->setCurrentWidget( tmpTab - 1);
225} 226}
226 227
227void AdvancedFm::ListClicked(QListViewItem *selectedItem) 228void AdvancedFm::ListClicked(QListViewItem *selectedItem) {
228{ 229//qWarning("listclicked");
229 if(selectedItem) 230 if(selectedItem) {
230 {
231 QString strItem=selectedItem->text(0); 231 QString strItem=selectedItem->text(0);
232// qWarning(strItem);
232 QString strSize=selectedItem->text(1); 233 QString strSize=selectedItem->text(1);
@@ -236,4 +237,3 @@ void AdvancedFm::ListClicked(QListViewItem *selectedItem)
236 237
237 if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 )//if symlink 238 if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) {//if symlink
238 {
239 strItem2 = dealWithSymName((const QString&)strItem); 239 strItem2 = dealWithSymName((const QString&)strItem);
@@ -243,4 +243,3 @@ void AdvancedFm::ListClicked(QListViewItem *selectedItem)
243 243
244 if( strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) 244 if( strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) {
245 {
246 245
@@ -250,4 +249,3 @@ void AdvancedFm::ListClicked(QListViewItem *selectedItem)
250 249
251 if( isDirectory ) 250 if( isDirectory ) {
252 {
253 CurrentDir()->cd( strItem, TRUE); 251 CurrentDir()->cd( strItem, TRUE);
@@ -260,3 +258,4 @@ void AdvancedFm::ListClicked(QListViewItem *selectedItem)
260 258
261void AdvancedFm::ListPressed( int mouse, QListViewItem *, const QPoint& , int ) { 259void AdvancedFm::ListPressed( int mouse, QListViewItem *item, const QPoint& , int ) {
260 dealWithSchmooSchmaa( item->listView());
262 switch (mouse) { 261 switch (mouse) {
@@ -264,4 +263,3 @@ void AdvancedFm::ListPressed( int mouse, QListViewItem *, const QPoint& , int )
264 { 263 {
265 if(renameBox != 0 ) 264 if(renameBox != 0 ) {
266 {
267 cancelRename(); 265 cancelRename();
@@ -276,4 +274,5 @@ void AdvancedFm::ListPressed( int mouse, QListViewItem *, const QPoint& , int )
276 274
277void AdvancedFm::switchToLocalTab() 275
278{ 276void AdvancedFm::switchToLocalTab() {
277//qWarning("switch to local view");
279 TabWidget->setCurrentWidget(0); 278 TabWidget->setCurrentWidget(0);
@@ -282,4 +281,4 @@ void AdvancedFm::switchToLocalTab()
282 281
283void AdvancedFm::switchToRemoteTab() 282void AdvancedFm::switchToRemoteTab() {
284{ 283//qWarning("switch to local view");
285 TabWidget->setCurrentWidget(1); 284 TabWidget->setCurrentWidget(1);
@@ -288,4 +287,3 @@ void AdvancedFm::switchToRemoteTab()
288 287
289void AdvancedFm::readConfig() 288void AdvancedFm::readConfig() {
290{
291 Config cfg("AdvancedFm"); 289 Config cfg("AdvancedFm");
@@ -293,4 +291,3 @@ void AdvancedFm::readConfig()
293 291
294void AdvancedFm::writeConfig() 292void AdvancedFm::writeConfig() {
295{
296 Config cfg("AdvancedFm"); 293 Config cfg("AdvancedFm");
@@ -298,11 +295,7 @@ void AdvancedFm::writeConfig()
298 295
299void AdvancedFm::currentPathComboChanged() 296void AdvancedFm::currentPathComboChanged() {
300{ 297 if(QDir( currentPathCombo->lineEdit()->text()).exists()) {
301 if(QDir( currentPathCombo->lineEdit()->text()).exists())
302 {
303 CurrentDir()->setPath( currentPathCombo->lineEdit()->text() ); 298 CurrentDir()->setPath( currentPathCombo->lineEdit()->text() );
304 populateView(); 299 populateView();
305 } 300 } else {
306 else
307 {
308 QMessageBox::message(tr("Note"),tr("That directory does not exist")); 301 QMessageBox::message(tr("Note"),tr("That directory does not exist"));
@@ -311,10 +304,7 @@ void AdvancedFm::currentPathComboChanged()
311 304
312void AdvancedFm::fillCombo(const QString &currentPath) 305void AdvancedFm::fillCombo(const QString &currentPath) {
313{ 306
314// qDebug("%d",TabWidget->currentTab()); 307 if ( whichTab == 1) {
315 if ( whichTab == 1)
316 {
317 currentPathCombo->lineEdit()->setText( currentPath); 308 currentPathCombo->lineEdit()->setText( currentPath);
318 if( localDirPathStringList.grep( currentPath,TRUE).isEmpty() ) 309 if( localDirPathStringList.grep( currentPath,TRUE).isEmpty() ) {
319 {
320 currentPathCombo->clear(); 310 currentPathCombo->clear();
@@ -323,8 +313,5 @@ void AdvancedFm::fillCombo(const QString &currentPath)
323 } 313 }
324 } 314 } else {
325 else
326 {
327 currentPathCombo->lineEdit()->setText( currentPath); 315 currentPathCombo->lineEdit()->setText( currentPath);
328 if( remoteDirPathStringList.grep( currentPath,TRUE).isEmpty() ) 316 if( remoteDirPathStringList.grep( currentPath,TRUE).isEmpty() ) {
329 {
330 currentPathCombo->clear(); 317 currentPathCombo->clear();
@@ -336,4 +323,3 @@ void AdvancedFm::fillCombo(const QString &currentPath)
336 323
337void AdvancedFm::currentPathComboActivated(const QString & currentPath) 324void AdvancedFm::currentPathComboActivated(const QString & currentPath) {
338{
339 chdir( currentPath.latin1() ); 325 chdir( currentPath.latin1() );
@@ -344,4 +330,3 @@ void AdvancedFm::currentPathComboActivated(const QString & currentPath)
344 330
345QStringList AdvancedFm::getPath() 331QStringList AdvancedFm::getPath() {
346{
347 QStringList strList; 332 QStringList strList;
@@ -350,6 +335,4 @@ QStringList AdvancedFm::getPath()
350 QListViewItemIterator it( thisView ); 335 QListViewItemIterator it( thisView );
351 for ( ; it.current(); ++it ) 336 for ( ; it.current(); ++it ) {
352 { 337 if ( it.current()->isSelected() ) {
353 if ( it.current()->isSelected() )
354 {
355 strList << it.current()->text(0); 338 strList << it.current()->text(0);
@@ -361,4 +344,3 @@ QStringList AdvancedFm::getPath()
361 344
362void AdvancedFm::homeButtonPushed() 345void AdvancedFm::homeButtonPushed() {
363{
364 QString current = QDir::homeDirPath(); 346 QString current = QDir::homeDirPath();
@@ -370,4 +352,3 @@ void AdvancedFm::homeButtonPushed()
370 352
371void AdvancedFm::docButtonPushed() 353void AdvancedFm::docButtonPushed() {
372{
373 QString current = QPEApplication::documentDir(); 354 QString current = QPEApplication::documentDir();
@@ -379,4 +360,3 @@ void AdvancedFm::docButtonPushed()
379 360
380void AdvancedFm::SDButtonPushed() 361void AdvancedFm::SDButtonPushed() {
381{
382 QString current = "/mnt/card";// this can change so fix 362 QString current = "/mnt/card";// this can change so fix
@@ -388,4 +368,3 @@ void AdvancedFm::SDButtonPushed()
388 368
389void AdvancedFm::CFButtonPushed() 369void AdvancedFm::CFButtonPushed() {
390{
391 QString current; 370 QString current;
@@ -402,4 +381,3 @@ void AdvancedFm::CFButtonPushed()
402 381
403void AdvancedFm::doAbout() 382void AdvancedFm::doAbout() {
404{
405 QMessageBox::message("AdvancedFm",tr("Advanced FileManager\n" 383 QMessageBox::message("AdvancedFm",tr("Advanced FileManager\n"
@@ -410,8 +388,20 @@ void AdvancedFm::doAbout()
410 388
411void AdvancedFm::keyPressEvent( QKeyEvent *e) 389void AdvancedFm::keyPressEvent( QKeyEvent *e) {
412{ 390// qWarning("key %d", e->key());
413// e->accept(); 391// if( CurrentView()->hasFocus() )
414 if( CurrentView()->hasFocus() )
415 { 392 {
416 switch ( e->key() ) { 393 switch ( e->key() ) {
394 case Key_Left:
395 upDir();
396 break;
397 case Key_Next:
398 break;
399 case Key_Return:
400 case Key_Enter:
401 navigateToSelected();
402 break;
403 case Key_Tab: {
404 setOtherTabCurrent();
405 }
406 break;
417 case Key_Delete: 407 case Key_Delete:
@@ -486,4 +476,3 @@ void AdvancedFm::keyPressEvent( QKeyEvent *e)
486 476
487void AdvancedFm::keyReleaseEvent( QKeyEvent *e) 477void AdvancedFm::keyReleaseEvent( QKeyEvent *e) {
488{
489 if( CurrentView()->hasFocus() ) 478 if( CurrentView()->hasFocus() )
@@ -493,4 +482,3 @@ void AdvancedFm::keyReleaseEvent( QKeyEvent *e)
493 482
494void AdvancedFm::QPEButtonPushed() 483void AdvancedFm::QPEButtonPushed() {
495{
496 QString current = QPEApplication::qpeDir(); 484 QString current = QPEApplication::qpeDir();
@@ -502,4 +490,3 @@ void AdvancedFm::QPEButtonPushed()
502 490
503void AdvancedFm::parsetab(const QString &fileName) 491void AdvancedFm::parsetab(const QString &fileName) {
504{
505 492
@@ -509,6 +496,4 @@ void AdvancedFm::parsetab(const QString &fileName)
509 FILE *mntfp = setmntent( fileName.latin1(), "r" ); 496 FILE *mntfp = setmntent( fileName.latin1(), "r" );
510 if ( mntfp ) 497 if ( mntfp ) {
511 { 498 while ( (me = getmntent( mntfp )) != 0 ) {
512 while ( (me = getmntent( mntfp )) != 0 )
513 {
514 QString deviceName = me->mnt_fsname; 499 QString deviceName = me->mnt_fsname;
@@ -516,4 +501,3 @@ void AdvancedFm::parsetab(const QString &fileName)
516 QString mountDir = me->mnt_dir; 501 QString mountDir = me->mnt_dir;
517 if(deviceName != "none") 502 if(deviceName != "none") {
518 {
519 if( fsList.contains(filesystemType) == 0 503 if( fsList.contains(filesystemType) == 0
@@ -530,4 +514,3 @@ void AdvancedFm::parsetab(const QString &fileName)
530 514
531QString AdvancedFm::getFileSystemType(const QString &currentText) 515QString AdvancedFm::getFileSystemType(const QString &currentText) {
532{
533 parsetab("/etc/mtab"); //why did TT forget filesystem type? 516 parsetab("/etc/mtab"); //why did TT forget filesystem type?
@@ -547,4 +530,3 @@ QString AdvancedFm::getFileSystemType(const QString &currentText)
547 530
548QString AdvancedFm::getDiskSpace( const QString &path) 531QString AdvancedFm::getDiskSpace( const QString &path) {
549{
550 struct statfs fss; 532 struct statfs fss;
@@ -566,4 +548,3 @@ QString AdvancedFm::getDiskSpace( const QString &path)
566 548
567void AdvancedFm::showFileMenu() 549void AdvancedFm::showFileMenu() {
568{
569 QString curApp; 550 QString curApp;
@@ -579,9 +560,6 @@ void AdvancedFm::showFileMenu()
579 560
580 if ( QFileInfo(fi).isDir() ) 561 if ( QFileInfo(fi).isDir() ) {
581 {
582 m->insertSeparator(); 562 m->insertSeparator();
583 m->insertItem( tr( "Change Directory" ), this, SLOT( doDirChange() )); 563 m->insertItem( tr( "Change Directory" ), this, SLOT( doDirChange() ));
584 } 564 } else {
585 else
586 {
587 565
@@ -636,5 +614,4 @@ void AdvancedFm::showFileMenu()
636 614
637void AdvancedFm::cancelMenuTimer() 615void AdvancedFm::cancelMenuTimer() {
638{ 616
639// qDebug("selectionChanged: cancel menu timer");
640 if( menuTimer.isActive() ) 617 if( menuTimer.isActive() )
@@ -643,7 +620,5 @@ void AdvancedFm::cancelMenuTimer()
643 620
644QString AdvancedFm::checkDiskSpace(const QString &path) 621QString AdvancedFm::checkDiskSpace(const QString &path) {
645{
646 struct statfs fss; 622 struct statfs fss;
647 if ( !statfs( path.latin1(), &fss ) ) 623 if ( !statfs( path.latin1(), &fss ) ) {
648 {
649 int blkSize = fss.f_bsize; 624 int blkSize = fss.f_bsize;
@@ -663,4 +638,3 @@ QString AdvancedFm::checkDiskSpace(const QString &path)
663 638
664void AdvancedFm::addToDocs() 639void AdvancedFm::addToDocs() {
665{
666 QStringList strListPaths = getPath(); 640 QStringList strListPaths = getPath();
@@ -684,4 +658,3 @@ void AdvancedFm::addToDocs()
684 658
685void AdvancedFm::customDirsToMenu() 659void AdvancedFm::customDirsToMenu() {
686{
687 660
@@ -699,5 +672,3 @@ void AdvancedFm::customDirsToMenu()
699 672
700void AdvancedFm::dirMenuSelected(int item) 673void AdvancedFm::dirMenuSelected(int item) {
701{
702 qDebug("menu item %d", item);
703 switch(item) 674 switch(item)
@@ -723,4 +694,3 @@ void AdvancedFm::dirMenuSelected(int item)
723 694
724void AdvancedFm::addCustomDir() 695void AdvancedFm::addCustomDir() {
725{
726 Config cfg("AdvancedFm"); 696 Config cfg("AdvancedFm");
@@ -733,6 +703,4 @@ void AdvancedFm::addCustomDir()
733 bool addIt=true; 703 bool addIt=true;
734 for ( QStringList::Iterator it = list.begin(); it != list.end(); ++it ) 704 for ( QStringList::Iterator it = list.begin(); it != list.end(); ++it ) {
735 { 705 if( dir == (*it)) {
736 if( dir == (*it))
737 {
738 addIt=false; 706 addIt=false;
@@ -740,4 +708,3 @@ void AdvancedFm::addCustomDir()
740 } 708 }
741 if(addIt) 709 if(addIt) {
742 {
743 menuButton->insertItem(dir); 710 menuButton->insertItem(dir);
@@ -751,4 +718,3 @@ void AdvancedFm::addCustomDir()
751 718
752void AdvancedFm::removeCustomDir() 719void AdvancedFm::removeCustomDir() {
753{
754// qDebug("remove custom dir"); 720// qDebug("remove custom dir");
@@ -763,17 +729,11 @@ void AdvancedFm::removeCustomDir()
763//first remove list 729//first remove list
764 if(list.grep(dir,true).isEmpty()) 730 if(list.grep(dir,true).isEmpty()) {
765 {
766 QMessageBox::message(tr( "AdvancedFm" ), 731 QMessageBox::message(tr( "AdvancedFm" ),
767 tr("Cannot remove current directory\nfrom bookmarks.\nIt is not bookmarked!")); 732 tr("Cannot remove current directory\nfrom bookmarks.\nIt is not bookmarked!"));
768 } 733 } else {
769 else 734 for ( QStringList::Iterator it = list.begin(); it != list.end(); ++it ) {
770 { 735 if((*it) != dir) {
771 for ( QStringList::Iterator it = list.begin(); it != list.end(); ++it ) 736//current item is not our current dir, so add it to temp list
772 {
773 if((*it) != dir)//current item is not our current dir, so add it to temp list
774 {
775 list2 <<(*it); 737 list2 <<(*it);
776 } 738 } else {
777 else
778 {
779// customDirMenu->removeItem( ramble); 739// customDirMenu->removeItem( ramble);
@@ -793,4 +753,3 @@ void AdvancedFm::removeCustomDir()
793 753
794void AdvancedFm::gotoCustomDir(const QString &dir) 754void AdvancedFm::gotoCustomDir(const QString &dir) {
795{
796// qDebug("gotoCustomDir(const QString &dir) " +dir ); 755// qDebug("gotoCustomDir(const QString &dir) " +dir );
@@ -800,12 +759,8 @@ void AdvancedFm::gotoCustomDir(const QString &dir)
800// } 759// }
801 if( dir == s_addBookmark) 760 if( dir == s_addBookmark) {
802 {
803 addCustomDir(); 761 addCustomDir();
804 } 762 }
805 if( dir == s_removeBookmark) 763 if( dir == s_removeBookmark) {
806 {
807 removeCustomDir( ); 764 removeCustomDir( );
808 } 765 } else {
809 else
810 {
811 gotoDirectory( dir); 766 gotoDirectory( dir);
@@ -821,10 +776,7 @@ void AdvancedFm::gotoCustomDir(const QString &dir)
821 776
822QDir *AdvancedFm::CurrentDir() 777QDir *AdvancedFm::CurrentDir() {
823{ 778
824 if ( whichTab == 1) 779 if ( whichTab == 1) {
825 {
826 return &currentDir; 780 return &currentDir;
827 } 781 } else {
828 else
829 {
830 return &currentRemoteDir; 782 return &currentRemoteDir;
@@ -833,10 +785,6 @@ QDir *AdvancedFm::CurrentDir()
833 785
834QDir *AdvancedFm::OtherDir() 786QDir *AdvancedFm::OtherDir() {
835{ 787 if ( whichTab == 1) {
836 if ( whichTab == 1)
837 {
838 return &currentRemoteDir; 788 return &currentRemoteDir;
839 } 789 } else {
840 else
841 {
842 return &currentDir; 790 return &currentDir;
@@ -845,12 +793,13 @@ QDir *AdvancedFm::OtherDir()
845 793
846QListView * AdvancedFm::CurrentView() 794QListView * AdvancedFm::CurrentView() {
847{ 795 if ( whichTab == 1) {
848 if ( whichTab == 1) 796// qWarning("CurrentView Tab 1");
849 return Local_View; 797 return Local_View;
850 else 798 } else {
799// qWarning("CurrentView Tab 2");
851 return Remote_View; 800 return Remote_View;
852} 801}
802}
853 803
854QListView * AdvancedFm::OtherView() 804QListView * AdvancedFm::OtherView() {
855{
856 if ( whichTab == 1) 805 if ( whichTab == 1)
@@ -861,15 +810,18 @@ QListView * AdvancedFm::OtherView()
861 810
862void AdvancedFm::setOtherTabCurrent() 811void AdvancedFm::setOtherTabCurrent() {
863{ 812// qWarning("setOtherTabCurrent()");
864 if ( whichTab == 1) 813 if ( whichTab == 1) {
865 TabWidget->setCurrentWidget(1); 814 TabWidget->setCurrentWidget(1);
866 else 815 } else {
867 TabWidget->setCurrentWidget(0); 816 TabWidget->setCurrentWidget(0);
868} 817}
818 OtherView()->setFocus();
819 OtherView()->setSelected( CurrentView()->firstChild(), true);
820}
869 821
870void AdvancedFm::qcopReceive(const QCString &msg, const QByteArray &data) { 822void AdvancedFm::qcopReceive(const QCString &msg, const QByteArray &data) {
871 qDebug("qcop message "+msg ); 823// qDebug("qcop message "+msg );
872 QDataStream stream ( data, IO_ReadOnly ); 824 QDataStream stream ( data, IO_ReadOnly );
873 if ( msg == "openDirectory(QString)" ) { 825 if ( msg == "openDirectory(QString)" ) {
874 qDebug("received"); 826// qDebug("received");
875 QString file; 827 QString file;
@@ -886,3 +838,3 @@ void AdvancedFm::qcopReceive(const QCString &msg, const QByteArray &data) {
886void AdvancedFm::gotoDirectory(const QString &file) { 838void AdvancedFm::gotoDirectory(const QString &file) {
887 839// qWarning("goto dir "+file);
888 QString curDir = file; 840 QString curDir = file;
@@ -920 +872,20 @@ void AdvancedFm::findFile(const QString &fileName) {
920} 872}
873
874void AdvancedFm::slotSwitchMenu(int ) {
875// qDebug("Switch %d", item);
876 // viewMenu->setItemChecked(item, true);
877}
878
879void AdvancedFm::dealWithSchmooSchmaa(QWidget *w) {
880 tabChanged( w);
881 if( w == Local_View) {
882 Remote_View->clearFocus();
883 } else {
884 Local_View->clearFocus();
885 }
886}
887
888void AdvancedFm::navigateToSelected() {
889 if( !CurrentView()->currentItem()) return;
890 doDirChange();
891}