author | llornkcor <llornkcor> | 2002-04-19 23:58:35 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-04-19 23:58:35 (UTC) |
commit | 10c881d21c166bd7d06e96187cabf6cfe44ccdb3 (patch) (unidiff) | |
tree | b27032c8cf19943bdfe2f0def53fab961eeaf62d | |
parent | 221f2cbeaec8f28d39a5f95655f109a4b0fd33fc (diff) | |
download | opie-10c881d21c166bd7d06e96187cabf6cfe44ccdb3.zip opie-10c881d21c166bd7d06e96187cabf6cfe44ccdb3.tar.gz opie-10c881d21c166bd7d06e96187cabf6cfe44ccdb3.tar.bz2 |
frak! fixed symlink icon new location
-rw-r--r-- | noncore/apps/advancedfm/advancedfm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp index 2126745..fed15b4 100644 --- a/noncore/apps/advancedfm/advancedfm.cpp +++ b/noncore/apps/advancedfm/advancedfm.cpp | |||
@@ -338,193 +338,193 @@ void AdvancedFm::populateLocalView() | |||
338 | struct stat st; | 338 | struct stat st; |
339 | dev_t devT; | 339 | dev_t devT; |
340 | mode_t mode; | 340 | mode_t mode; |
341 | DIR *dir; | 341 | DIR *dir; |
342 | int fd = 0; | 342 | int fd = 0; |
343 | struct dirent *mydirent; | 343 | struct dirent *mydirent; |
344 | int i = 1; | 344 | int i = 1; |
345 | if((dir = opendir( currentDir.canonicalPath().latin1())) != NULL) | 345 | if((dir = opendir( currentDir.canonicalPath().latin1())) != NULL) |
346 | while ((mydirent = readdir(dir)) != NULL) { | 346 | while ((mydirent = readdir(dir)) != NULL) { |
347 | lstat( mydirent->d_name, &buf); | 347 | lstat( mydirent->d_name, &buf); |
348 | qDebug(mydirent->d_name); | 348 | qDebug(mydirent->d_name); |
349 | // mode = buf.st_mode; | 349 | // mode = buf.st_mode; |
350 | fileL.sprintf("%s", mydirent->d_name); | 350 | fileL.sprintf("%s", mydirent->d_name); |
351 | // fileS.sprintf("%d, %d", ); //this isn't correct | 351 | // fileS.sprintf("%d, %d", ); //this isn't correct |
352 | devT = buf.st_dev; | 352 | devT = buf.st_dev; |
353 | fileS.sprintf("%d, %d", (int) ( devT >>8) &0xFF, (int)devT &0xFF); | 353 | fileS.sprintf("%d, %d", (int) ( devT >>8) &0xFF, (int)devT &0xFF); |
354 | // fileS.sprintf("%d,%d", devT, devT); | 354 | // fileS.sprintf("%d,%d", devT, devT); |
355 | fileDate.sprintf("%s", ctime( &buf.st_mtime)); | 355 | fileDate.sprintf("%s", ctime( &buf.st_mtime)); |
356 | if( fileL.find(".") == -1 ){ | 356 | if( fileL.find(".") == -1 ){ |
357 | item= new QListViewItem( Local_View, fileL, fileDate, fileS); | 357 | item= new QListViewItem( Local_View, fileL, fileDate, fileS); |
358 | pm = Resource::loadPixmap( "UnknownDocument-14" ); | 358 | pm = Resource::loadPixmap( "UnknownDocument-14" ); |
359 | item->setPixmap( 0,pm); | 359 | item->setPixmap( 0,pm); |
360 | } | 360 | } |
361 | } | 361 | } |
362 | 362 | ||
363 | closedir(dir); | 363 | closedir(dir); |
364 | } | 364 | } |
365 | 365 | ||
366 | Local_View->setSorting( 3,FALSE); | 366 | Local_View->setSorting( 3,FALSE); |
367 | fillCombo( (const QString &) currentDir.canonicalPath()); | 367 | fillCombo( (const QString &) currentDir.canonicalPath()); |
368 | } | 368 | } |
369 | 369 | ||
370 | void AdvancedFm::populateRemoteView() | 370 | void AdvancedFm::populateRemoteView() |
371 | { | 371 | { |
372 | // QList<QListViewItem> * getSelectedItems( QListView * Local_View ); | 372 | // QList<QListViewItem> * getSelectedItems( QListView * Local_View ); |
373 | // QListViewItemIterator it( Remote_View ); | 373 | // QListViewItemIterator it( Remote_View ); |
374 | // for ( ; it.current(); ++it ) { | 374 | // for ( ; it.current(); ++it ) { |
375 | // if ( it.current()->isSelected() ) { | 375 | // if ( it.current()->isSelected() ) { |
376 | // QString strItem = it.current()->text(0); | 376 | // QString strItem = it.current()->text(0); |
377 | // QString localFile = currentRemoteDir.canonicalPath()+"/"+strItem; | 377 | // QString localFile = currentRemoteDir.canonicalPath()+"/"+strItem; |
378 | // QFileInfo fi(localFile); | 378 | // QFileInfo fi(localFile); |
379 | // } | 379 | // } |
380 | // } | 380 | // } |
381 | QPixmap pm; | 381 | QPixmap pm; |
382 | Remote_View->clear(); | 382 | Remote_View->clear(); |
383 | currentRemoteDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); | 383 | currentRemoteDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); |
384 | currentRemoteDir.setMatchAllDirs(TRUE); | 384 | currentRemoteDir.setMatchAllDirs(TRUE); |
385 | currentRemoteDir.setNameFilter(filterStr); | 385 | currentRemoteDir.setNameFilter(filterStr); |
386 | QString fileL, fileS, fileDate; | 386 | QString fileL, fileS, fileDate; |
387 | bool isDir=FALSE; | 387 | bool isDir=FALSE; |
388 | const QFileInfoList *list = currentRemoteDir.entryInfoList( /*QDir::All*/ /*, QDir::SortByMask*/); | 388 | const QFileInfoList *list = currentRemoteDir.entryInfoList( /*QDir::All*/ /*, QDir::SortByMask*/); |
389 | QFileInfoListIterator it(*list); | 389 | QFileInfoListIterator it(*list); |
390 | QFileInfo *fi; | 390 | QFileInfo *fi; |
391 | while ( (fi=it.current()) ) { | 391 | while ( (fi=it.current()) ) { |
392 | if (fi->isSymLink() ){ | 392 | if (fi->isSymLink() ){ |
393 | QString symLink=fi->readLink(); | 393 | QString symLink=fi->readLink(); |
394 | // qDebug("Symlink detected "+symLink); | 394 | // qDebug("Symlink detected "+symLink); |
395 | QFileInfo sym( symLink); | 395 | QFileInfo sym( symLink); |
396 | fileS.sprintf( "%10li", sym.size() ); | 396 | fileS.sprintf( "%10li", sym.size() ); |
397 | fileL.sprintf( "%s -> %s", sym.fileName().data(),sym.absFilePath().data() ); | 397 | fileL.sprintf( "%s -> %s", sym.fileName().data(),sym.absFilePath().data() ); |
398 | fileDate = sym.lastModified().toString(); | 398 | fileDate = sym.lastModified().toString(); |
399 | } else { | 399 | } else { |
400 | // qDebug("Not a dir: "+currentDir.canonicalPath()+fileL); | 400 | // qDebug("Not a dir: "+currentDir.canonicalPath()+fileL); |
401 | fileS.sprintf( "%10li", fi->size() ); | 401 | fileS.sprintf( "%10li", fi->size() ); |
402 | fileL.sprintf( "%s",fi->fileName().data() ); | 402 | fileL.sprintf( "%s",fi->fileName().data() ); |
403 | fileDate= fi->lastModified().toString(); | 403 | fileDate= fi->lastModified().toString(); |
404 | if( QDir(QDir::cleanDirPath( currentRemoteDir.canonicalPath()+"/"+fileL)).exists() ) { | 404 | if( QDir(QDir::cleanDirPath( currentRemoteDir.canonicalPath()+"/"+fileL)).exists() ) { |
405 | fileL+="/"; | 405 | fileL+="/"; |
406 | isDir=TRUE; | 406 | isDir=TRUE; |
407 | // qDebug( fileL); | 407 | // qDebug( fileL); |
408 | } | 408 | } |
409 | } | 409 | } |
410 | if(fileL !="./" && fi->exists()) { | 410 | if(fileL !="./" && fi->exists()) { |
411 | item= new QListViewItem( Remote_View, fileL, fileDate, fileS); | 411 | item= new QListViewItem( Remote_View, fileL, fileDate, fileS); |
412 | QPixmap pm; | 412 | QPixmap pm; |
413 | 413 | ||
414 | if(isDir || fileL.find("/",0,TRUE) != -1) { | 414 | if(isDir || fileL.find("/",0,TRUE) != -1) { |
415 | if( !QDir( fi->filePath() ).isReadable()) | 415 | if( !QDir( fi->filePath() ).isReadable()) |
416 | pm = Resource::loadPixmap( "lockedfolder" ); | 416 | pm = Resource::loadPixmap( "lockedfolder" ); |
417 | else | 417 | else |
418 | pm= Resource::loadPixmap( "folder" ); | 418 | pm= Resource::loadPixmap( "folder" ); |
419 | item->setPixmap( 0,pm ); | 419 | item->setPixmap( 0,pm ); |
420 | } else { | 420 | } else { |
421 | if( !fi->isReadable() ) | 421 | if( !fi->isReadable() ) |
422 | pm = Resource::loadPixmap( "locked" ); | 422 | pm = Resource::loadPixmap( "locked" ); |
423 | else { | 423 | else { |
424 | MimeType mt(fi->filePath()); | 424 | MimeType mt(fi->filePath()); |
425 | pm=mt.pixmap(); //sets the correct pixmap for mimetype | 425 | pm=mt.pixmap(); //sets the correct pixmap for mimetype |
426 | if(pm.isNull()) | 426 | if(pm.isNull()) |
427 | pm = Resource::loadPixmap( "UnknownDocument-14" ); | 427 | pm = Resource::loadPixmap( "UnknownDocument-14" ); |
428 | item->setPixmap( 0,pm); | 428 | item->setPixmap( 0,pm); |
429 | } | 429 | } |
430 | } | 430 | } |
431 | if( fileL.find("->",0,TRUE) != -1) { | 431 | if( fileL.find("->",0,TRUE) != -1) { |
432 | // overlay link image | 432 | // overlay link image |
433 | pm= Resource::loadPixmap( "folder" ); | 433 | pm= Resource::loadPixmap( "folder" ); |
434 | QPixmap lnk = Resource::loadPixmap( "symlink" ); | 434 | QPixmap lnk = Resource::loadPixmap( "opie/symlink" ); |
435 | QPainter painter( &pm ); | 435 | QPainter painter( &pm ); |
436 | painter.drawPixmap( pm.width()-lnk.width(), pm.height()-lnk.height(), lnk ); | 436 | painter.drawPixmap( pm.width()-lnk.width(), pm.height()-lnk.height(), lnk ); |
437 | pm.setMask( pm.createHeuristicMask( FALSE ) ); | 437 | pm.setMask( pm.createHeuristicMask( FALSE ) ); |
438 | item->setPixmap( 0, pm); | 438 | item->setPixmap( 0, pm); |
439 | } | 439 | } |
440 | } isDir=FALSE; | 440 | } isDir=FALSE; |
441 | ++it; | 441 | ++it; |
442 | } | 442 | } |
443 | 443 | ||
444 | if(currentRemoteDir.canonicalPath().find("dev",0,TRUE) != -1) { | 444 | if(currentRemoteDir.canonicalPath().find("dev",0,TRUE) != -1) { |
445 | struct stat buf; | 445 | struct stat buf; |
446 | struct stat st; | 446 | struct stat st; |
447 | mode_t mode; | 447 | mode_t mode; |
448 | DIR *dir; | 448 | DIR *dir; |
449 | int fd = 0; | 449 | int fd = 0; |
450 | struct dirent *mydirent; | 450 | struct dirent *mydirent; |
451 | int i = 1; | 451 | int i = 1; |
452 | if((dir = opendir( currentRemoteDir.canonicalPath().latin1())) != NULL) | 452 | if((dir = opendir( currentRemoteDir.canonicalPath().latin1())) != NULL) |
453 | while ((mydirent = readdir(dir)) != NULL) { | 453 | while ((mydirent = readdir(dir)) != NULL) { |
454 | lstat( mydirent->d_name, &buf); | 454 | lstat( mydirent->d_name, &buf); |
455 | qDebug(mydirent->d_name); | 455 | qDebug(mydirent->d_name); |
456 | // mode = buf.st_mode; | 456 | // mode = buf.st_mode; |
457 | fileL.sprintf("%s", mydirent->d_name); | 457 | fileL.sprintf("%s", mydirent->d_name); |
458 | // fileS.sprintf("%d, %d", ); //this isn't correct | 458 | // fileS.sprintf("%d, %d", ); //this isn't correct |
459 | fileS.sprintf("%d,%d", (int) (buf.st_dev>>8)&0xFF, (int) buf.st_dev &0xFF); | 459 | fileS.sprintf("%d,%d", (int) (buf.st_dev>>8)&0xFF, (int) buf.st_dev &0xFF); |
460 | fileDate.sprintf("%s", ctime( &buf.st_mtime)); | 460 | fileDate.sprintf("%s", ctime( &buf.st_mtime)); |
461 | if( fileL.find(".") == -1 ){ | 461 | if( fileL.find(".") == -1 ){ |
462 | item= new QListViewItem( Remote_View, fileL, fileDate, fileS); | 462 | item= new QListViewItem( Remote_View, fileL, fileDate, fileS); |
463 | pm = Resource::loadPixmap( "UnknownDocument-14" ); | 463 | pm = Resource::loadPixmap( "UnknownDocument-14" ); |
464 | item->setPixmap( 0,pm); | 464 | item->setPixmap( 0,pm); |
465 | } | 465 | } |
466 | } | 466 | } |
467 | 467 | ||
468 | closedir(dir); | 468 | closedir(dir); |
469 | } | 469 | } |
470 | 470 | ||
471 | Remote_View->setSorting( 3,FALSE); | 471 | Remote_View->setSorting( 3,FALSE); |
472 | fillCombo( (const QString &) currentRemoteDir.canonicalPath() ); | 472 | fillCombo( (const QString &) currentRemoteDir.canonicalPath() ); |
473 | } | 473 | } |
474 | 474 | ||
475 | void AdvancedFm::localListClicked(QListViewItem *selectedItem) | 475 | void AdvancedFm::localListClicked(QListViewItem *selectedItem) |
476 | { | 476 | { |
477 | if(selectedItem) { | 477 | if(selectedItem) { |
478 | QString strItem=selectedItem->text(0); | 478 | QString strItem=selectedItem->text(0); |
479 | QString strSize=selectedItem->text(1); | 479 | QString strSize=selectedItem->text(1); |
480 | strSize=strSize.stripWhiteSpace(); | 480 | strSize=strSize.stripWhiteSpace(); |
481 | if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) { //if symlink | 481 | if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) { //if symlink |
482 | // is symlink | 482 | // is symlink |
483 | QString strItem2 = strItem.right( (strItem.length() - strItem.find("->",0,TRUE)) - 4); | 483 | QString strItem2 = strItem.right( (strItem.length() - strItem.find("->",0,TRUE)) - 4); |
484 | if(QDir(strItem2).exists() ) { | 484 | if(QDir(strItem2).exists() ) { |
485 | currentDir.cd(strItem2, TRUE); | 485 | currentDir.cd(strItem2, TRUE); |
486 | populateLocalView(); | 486 | populateLocalView(); |
487 | } | 487 | } |
488 | } else { // not a symlink | 488 | } else { // not a symlink |
489 | if(strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) { | 489 | if(strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) { |
490 | if(QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem)).exists() ) { | 490 | if(QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem)).exists() ) { |
491 | strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem); | 491 | strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem); |
492 | currentDir.cd(strItem,FALSE); | 492 | currentDir.cd(strItem,FALSE); |
493 | populateLocalView(); | 493 | populateLocalView(); |
494 | } else { | 494 | } else { |
495 | currentDir.cdUp(); | 495 | currentDir.cdUp(); |
496 | populateLocalView(); | 496 | populateLocalView(); |
497 | } | 497 | } |
498 | if(QDir(strItem).exists()){ | 498 | if(QDir(strItem).exists()){ |
499 | currentDir.cd(strItem, TRUE); | 499 | currentDir.cd(strItem, TRUE); |
500 | populateLocalView(); | 500 | populateLocalView(); |
501 | } | 501 | } |
502 | } else { | 502 | } else { |
503 | strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem); | 503 | strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem); |
504 | if( QFile::exists(strItem ) ) { | 504 | if( QFile::exists(strItem ) ) { |
505 | // qDebug("upload "+strItem); | 505 | // qDebug("upload "+strItem); |
506 | } | 506 | } |
507 | } //end not symlink | 507 | } //end not symlink |
508 | chdir(strItem.latin1()); | 508 | chdir(strItem.latin1()); |
509 | } | 509 | } |
510 | } | 510 | } |
511 | } | 511 | } |
512 | 512 | ||
513 | void AdvancedFm::remoteListClicked(QListViewItem *selectedItem) | 513 | void AdvancedFm::remoteListClicked(QListViewItem *selectedItem) |
514 | { | 514 | { |
515 | if(selectedItem) { | 515 | if(selectedItem) { |
516 | QString strItem=selectedItem->text(0); | 516 | QString strItem=selectedItem->text(0); |
517 | QString strSize=selectedItem->text(1); | 517 | QString strSize=selectedItem->text(1); |
518 | strSize=strSize.stripWhiteSpace(); | 518 | strSize=strSize.stripWhiteSpace(); |
519 | if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) { //if symlink | 519 | if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) { //if symlink |
520 | // is symlink | 520 | // is symlink |
521 | QString strItem2 = strItem.right( (strItem.length() - strItem.find("->",0,TRUE)) - 4); | 521 | QString strItem2 = strItem.right( (strItem.length() - strItem.find("->",0,TRUE)) - 4); |
522 | if(QDir(strItem2).exists() ) { | 522 | if(QDir(strItem2).exists() ) { |
523 | currentRemoteDir.cd(strItem2, TRUE); | 523 | currentRemoteDir.cd(strItem2, TRUE); |
524 | populateRemoteView(); | 524 | populateRemoteView(); |
525 | } | 525 | } |
526 | } else { // not a symlink | 526 | } else { // not a symlink |
527 | if(strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) { | 527 | if(strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) { |
528 | if(QDir(QDir::cleanDirPath( currentRemoteDir.canonicalPath()+"/"+strItem)).exists() ) { | 528 | if(QDir(QDir::cleanDirPath( currentRemoteDir.canonicalPath()+"/"+strItem)).exists() ) { |
529 | strItem=QDir::cleanDirPath( currentRemoteDir.canonicalPath()+"/"+strItem); | 529 | strItem=QDir::cleanDirPath( currentRemoteDir.canonicalPath()+"/"+strItem); |
530 | currentRemoteDir.cd(strItem,FALSE); | 530 | currentRemoteDir.cd(strItem,FALSE); |