-rw-r--r-- | core/apps/textedit/textedit.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index 571df27..cabeb20 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp | |||
@@ -407,801 +407,802 @@ TextEdit::TextEdit( QWidget *parent, const char *name, WFlags f ) | |||
407 | } else { | 407 | } else { |
408 | openFile(currentFileName); | 408 | openFile(currentFileName); |
409 | } | 409 | } |
410 | } else { | 410 | } else { |
411 | edited1=false; | 411 | edited1=false; |
412 | openDotFile(""); | 412 | openDotFile(""); |
413 | } | 413 | } |
414 | 414 | ||
415 | viewSelection = cfg.readNumEntry( "FileView", 0 ); | 415 | viewSelection = cfg.readNumEntry( "FileView", 0 ); |
416 | } | 416 | } |
417 | 417 | ||
418 | TextEdit::~TextEdit() { | 418 | TextEdit::~TextEdit() { |
419 | owarn << "textedit d'tor" << oendl; | 419 | owarn << "textedit d'tor" << oendl; |
420 | delete editor; | 420 | delete editor; |
421 | } | 421 | } |
422 | 422 | ||
423 | void TextEdit::closeEvent(QCloseEvent *) { | 423 | void TextEdit::closeEvent(QCloseEvent *) { |
424 | if( edited1 && promptExit) | 424 | if( edited1 && promptExit) |
425 | { | 425 | { |
426 | switch( savePrompt() ) | 426 | switch( savePrompt() ) |
427 | { | 427 | { |
428 | case 1: | 428 | case 1: |
429 | { | 429 | { |
430 | saveAs(); | 430 | saveAs(); |
431 | qApp->quit(); | 431 | qApp->quit(); |
432 | } | 432 | } |
433 | break; | 433 | break; |
434 | 434 | ||
435 | case 2: | 435 | case 2: |
436 | { | 436 | { |
437 | qApp->quit(); | 437 | qApp->quit(); |
438 | } | 438 | } |
439 | break; | 439 | break; |
440 | 440 | ||
441 | case -1: | 441 | case -1: |
442 | break; | 442 | break; |
443 | }; | 443 | }; |
444 | } | 444 | } |
445 | else | 445 | else |
446 | qApp->quit(); | 446 | qApp->quit(); |
447 | 447 | ||
448 | } | 448 | } |
449 | 449 | ||
450 | void TextEdit::cleanUp() { | 450 | void TextEdit::cleanUp() { |
451 | 451 | ||
452 | Config cfg ( "TextEdit" ); | 452 | Config cfg ( "TextEdit" ); |
453 | cfg. setGroup ( "Font" ); | 453 | cfg. setGroup ( "Font" ); |
454 | QFont f = editor->font(); | 454 | QFont f = editor->font(); |
455 | cfg.writeEntry ( "Family", f. family ( )); | 455 | cfg.writeEntry ( "Family", f. family ( )); |
456 | cfg.writeEntry ( "Size", f. pointSize ( )); | 456 | cfg.writeEntry ( "Size", f. pointSize ( )); |
457 | cfg.writeEntry ( "Weight", f. weight ( )); | 457 | cfg.writeEntry ( "Weight", f. weight ( )); |
458 | cfg.writeEntry ( "Italic", f. italic ( )); | 458 | cfg.writeEntry ( "Italic", f. italic ( )); |
459 | 459 | ||
460 | cfg.setGroup ( "View" ); | 460 | cfg.setGroup ( "View" ); |
461 | cfg.writeEntry ( "Wrap", editor->wordWrap() == QMultiLineEdit::WidgetWidth ); | 461 | cfg.writeEntry ( "Wrap", editor->wordWrap() == QMultiLineEdit::WidgetWidth ); |
462 | cfg.writeEntry ( "FileView", viewSelection ); | 462 | cfg.writeEntry ( "FileView", viewSelection ); |
463 | 463 | ||
464 | cfg.writeEntry ( "PromptExit", promptExit ); | 464 | cfg.writeEntry ( "PromptExit", promptExit ); |
465 | cfg.writeEntry ( "OpenDesktop", openDesktop ); | 465 | cfg.writeEntry ( "OpenDesktop", openDesktop ); |
466 | cfg.writeEntry ( "FilePermissions", filePerms ); | 466 | cfg.writeEntry ( "FilePermissions", filePerms ); |
467 | cfg.writeEntry ( "SearchBar", useSearchBar ); | 467 | cfg.writeEntry ( "SearchBar", useSearchBar ); |
468 | cfg.writeEntry ( "startNew", startWithNew ); | 468 | cfg.writeEntry ( "startNew", startWithNew ); |
469 | 469 | ||
470 | } | 470 | } |
471 | 471 | ||
472 | 472 | ||
473 | void TextEdit::accept() { | 473 | void TextEdit::accept() { |
474 | if( edited1) | 474 | if( edited1) |
475 | saveAs(); | 475 | saveAs(); |
476 | qApp->quit(); | 476 | qApp->quit(); |
477 | } | 477 | } |
478 | 478 | ||
479 | void TextEdit::zoomIn() { | 479 | void TextEdit::zoomIn() { |
480 | setFontSize(editor->font().pointSize()+1,false); | 480 | setFontSize(editor->font().pointSize()+1,false); |
481 | } | 481 | } |
482 | 482 | ||
483 | void TextEdit::zoomOut() { | 483 | void TextEdit::zoomOut() { |
484 | setFontSize(editor->font().pointSize()-1,true); | 484 | setFontSize(editor->font().pointSize()-1,true); |
485 | } | 485 | } |
486 | 486 | ||
487 | 487 | ||
488 | void TextEdit::setFontSize(int sz, bool round_down_not_up) { | 488 | void TextEdit::setFontSize(int sz, bool round_down_not_up) { |
489 | int s=10; | 489 | int s=10; |
490 | for (int i=0; i<nfontsizes; i++) { | 490 | for (int i=0; i<nfontsizes; i++) { |
491 | if ( fontsize[i] == sz ) { | 491 | if ( fontsize[i] == sz ) { |
492 | s = sz; | 492 | s = sz; |
493 | break; | 493 | break; |
494 | } else if ( round_down_not_up ) { | 494 | } else if ( round_down_not_up ) { |
495 | if ( fontsize[i] < sz ) | 495 | if ( fontsize[i] < sz ) |
496 | s = fontsize[i]; | 496 | s = fontsize[i]; |
497 | } else { | 497 | } else { |
498 | if ( fontsize[i] > sz ) { | 498 | if ( fontsize[i] > sz ) { |
499 | s = fontsize[i]; | 499 | s = fontsize[i]; |
500 | break; | 500 | break; |
501 | } | 501 | } |
502 | } | 502 | } |
503 | } | 503 | } |
504 | 504 | ||
505 | QFont f = editor->font(); | 505 | QFont f = editor->font(); |
506 | f.setPointSize(s); | 506 | f.setPointSize(s); |
507 | editor->setFont(f); | 507 | editor->setFont(f); |
508 | 508 | ||
509 | zin->setEnabled(s != fontsize[nfontsizes-1]); | 509 | zin->setEnabled(s != fontsize[nfontsizes-1]); |
510 | zout->setEnabled(s != fontsize[0]); | 510 | zout->setEnabled(s != fontsize[0]); |
511 | } | 511 | } |
512 | 512 | ||
513 | void TextEdit::setBold(bool y) { | 513 | void TextEdit::setBold(bool y) { |
514 | QFont f = editor->font(); | 514 | QFont f = editor->font(); |
515 | f.setBold(y); | 515 | f.setBold(y); |
516 | editor->setFont(f); | 516 | editor->setFont(f); |
517 | } | 517 | } |
518 | 518 | ||
519 | void TextEdit::setItalic(bool y) { | 519 | void TextEdit::setItalic(bool y) { |
520 | QFont f = editor->font(); | 520 | QFont f = editor->font(); |
521 | f.setItalic(y); | 521 | f.setItalic(y); |
522 | editor->setFont(f); | 522 | editor->setFont(f); |
523 | } | 523 | } |
524 | 524 | ||
525 | void TextEdit::setWordWrap(bool y) { | 525 | void TextEdit::setWordWrap(bool y) { |
526 | bool state = editor->edited(); | 526 | bool state = editor->edited(); |
527 | QString captionStr = caption(); | 527 | QString captionStr = caption(); |
528 | bool b1 = edited1; | 528 | bool b1 = edited1; |
529 | bool b2 = edited; | 529 | bool b2 = edited; |
530 | 530 | ||
531 | editor->setWordWrap(y ? QMultiLineEdit::WidgetWidth : QMultiLineEdit::NoWrap ); | 531 | editor->setWordWrap(y ? QMultiLineEdit::WidgetWidth : QMultiLineEdit::NoWrap ); |
532 | editor->setEdited( state ); | 532 | editor->setEdited( state ); |
533 | edited1=b1; | 533 | edited1=b1; |
534 | edited=b2; | 534 | edited=b2; |
535 | setCaption(captionStr); | 535 | setCaption(captionStr); |
536 | } | 536 | } |
537 | 537 | ||
538 | void TextEdit::setSearchBar(bool b) { | 538 | void TextEdit::setSearchBar(bool b) { |
539 | useSearchBar=b; | 539 | useSearchBar=b; |
540 | Config cfg("TextEdit"); | 540 | Config cfg("TextEdit"); |
541 | cfg.setGroup("View"); | 541 | cfg.setGroup("View"); |
542 | cfg.writeEntry ( "SearchBar", b ); | 542 | cfg.writeEntry ( "SearchBar", b ); |
543 | searchBarAction->setOn(b); | 543 | searchBarAction->setOn(b); |
544 | if(b) | 544 | if(b) |
545 | searchBar->show(); | 545 | searchBar->show(); |
546 | else | 546 | else |
547 | searchBar->hide(); | 547 | searchBar->hide(); |
548 | editor->setFocus(); | 548 | editor->setFocus(); |
549 | } | 549 | } |
550 | 550 | ||
551 | void TextEdit::fileNew() { | 551 | void TextEdit::fileNew() { |
552 | // if( !bFromDocView ) { | 552 | // if( !bFromDocView ) { |
553 | // saveAs(); | 553 | // saveAs(); |
554 | // } | 554 | // } |
555 | newFile(DocLnk()); | 555 | newFile(DocLnk()); |
556 | } | 556 | } |
557 | 557 | ||
558 | void TextEdit::fileOpen() { | 558 | void TextEdit::fileOpen() { |
559 | Config cfg("TextEdit"); | 559 | Config cfg("TextEdit"); |
560 | cfg. setGroup ( "View" ); | 560 | cfg. setGroup ( "View" ); |
561 | QMap<QString, QStringList> map; | 561 | QMap<QString, QStringList> map; |
562 | map.insert(tr("All"), QStringList() ); | 562 | map.insert(tr("All"), QStringList() ); |
563 | QStringList text; | 563 | QStringList text; |
564 | text << "text/*"; | 564 | text << "text/*"; |
565 | map.insert(tr("Text"), text ); | 565 | map.insert(tr("Text"), text ); |
566 | text << "*"; | 566 | text << "*"; |
567 | map.insert(tr("All"), text ); | 567 | map.insert(tr("All"), text ); |
568 | QString str = OFileDialog::getOpenFileName( 2, | 568 | QString str = OFileDialog::getOpenFileName( 2, |
569 | QString::null , | 569 | QString::null , |
570 | QString::null, map); | 570 | QString::null, map); |
571 | if( !str.isEmpty() && QFile(str).exists() && !QFileInfo(str).isDir() ) | 571 | if( !str.isEmpty() && QFile(str).exists() && !QFileInfo(str).isDir() ) |
572 | { | 572 | { |
573 | openFile( str ); | 573 | openFile( str ); |
574 | } | 574 | } |
575 | else | 575 | else |
576 | updateCaption(); | 576 | updateCaption(); |
577 | } | 577 | } |
578 | 578 | ||
579 | void TextEdit::doSearchBar() { | 579 | void TextEdit::doSearchBar() { |
580 | if(!useSearchBar) | 580 | if(!useSearchBar) |
581 | searchBar->hide(); | 581 | searchBar->hide(); |
582 | else | 582 | else |
583 | searchBar->show(); | 583 | searchBar->show(); |
584 | } | 584 | } |
585 | 585 | ||
586 | #if 0 | 586 | #if 0 |
587 | void TextEdit::slotFind() { | 587 | void TextEdit::slotFind() { |
588 | FindDialog frmFind( tr("Text Editor"), this ); | 588 | FindDialog frmFind( tr("Text Editor"), this ); |
589 | connect( &frmFind, SIGNAL(signalFindClicked(const QString&,bool,bool,int)), | 589 | connect( &frmFind, SIGNAL(signalFindClicked(const QString&,bool,bool,int)), |
590 | editor, SLOT(slotDoFind(const QString&,bool,bool))); | 590 | editor, SLOT(slotDoFind(const QString&,bool,bool))); |
591 | 591 | ||
592 | //case sensitive, backwards, [category] | 592 | //case sensitive, backwards, [category] |
593 | 593 | ||
594 | connect( editor, SIGNAL(notFound()), | 594 | connect( editor, SIGNAL(notFound()), |
595 | &frmFind, SLOT(slotNotFound()) ); | 595 | &frmFind, SLOT(slotNotFound()) ); |
596 | connect( editor, SIGNAL(searchWrapped()), | 596 | connect( editor, SIGNAL(searchWrapped()), |
597 | &frmFind, SLOT(slotWrapAround()) ); | 597 | &frmFind, SLOT(slotWrapAround()) ); |
598 | 598 | ||
599 | frmFind.exec(); | 599 | frmFind.exec(); |
600 | 600 | ||
601 | 601 | ||
602 | } | 602 | } |
603 | #endif | 603 | #endif |
604 | 604 | ||
605 | void TextEdit::fileRevert() { | 605 | void TextEdit::fileRevert() { |
606 | clear(); | 606 | clear(); |
607 | fileOpen(); | 607 | fileOpen(); |
608 | } | 608 | } |
609 | 609 | ||
610 | void TextEdit::editCut() { | 610 | void TextEdit::editCut() { |
611 | #ifndef QT_NO_CLIPBOARD | 611 | #ifndef QT_NO_CLIPBOARD |
612 | editor->cut(); | 612 | editor->cut(); |
613 | #endif | 613 | #endif |
614 | } | 614 | } |
615 | 615 | ||
616 | void TextEdit::editCopy() { | 616 | void TextEdit::editCopy() { |
617 | #ifndef QT_NO_CLIPBOARD | 617 | #ifndef QT_NO_CLIPBOARD |
618 | editor->copy(); | 618 | editor->copy(); |
619 | #endif | 619 | #endif |
620 | } | 620 | } |
621 | 621 | ||
622 | void TextEdit::editPaste() { | 622 | void TextEdit::editPaste() { |
623 | #ifndef QT_NO_CLIPBOARD | 623 | #ifndef QT_NO_CLIPBOARD |
624 | editor->paste(); | 624 | editor->paste(); |
625 | #endif | 625 | #endif |
626 | } | 626 | } |
627 | 627 | ||
628 | void TextEdit::editFind() { | 628 | void TextEdit::editFind() { |
629 | searchBar->show(); | 629 | searchBar->show(); |
630 | searchEdit->setFocus(); | 630 | searchEdit->setFocus(); |
631 | } | 631 | } |
632 | 632 | ||
633 | void TextEdit::findNext() { | 633 | void TextEdit::findNext() { |
634 | editor->find( searchEdit->text(), false, false ); | 634 | editor->find( searchEdit->text(), false, false ); |
635 | 635 | ||
636 | } | 636 | } |
637 | 637 | ||
638 | void TextEdit::findClose() { | 638 | void TextEdit::findClose() { |
639 | searchBar->hide(); | 639 | searchBar->hide(); |
640 | } | 640 | } |
641 | 641 | ||
642 | void TextEdit::search() { | 642 | void TextEdit::search() { |
643 | editor->find( searchEdit->text(), false, false ); | 643 | editor->find( searchEdit->text(), false, false ); |
644 | } | 644 | } |
645 | 645 | ||
646 | void TextEdit::newFile( const DocLnk &f ) { | 646 | void TextEdit::newFile( const DocLnk &f ) { |
647 | DocLnk nf = f; | 647 | DocLnk nf = f; |
648 | nf.setType("text/plain"); | 648 | nf.setType("text/plain"); |
649 | clear(); | 649 | clear(); |
650 | setWState (WState_Reserved1 ); | 650 | setWState (WState_Reserved1 ); |
651 | editor->setFocus(); | 651 | editor->setFocus(); |
652 | doc = new DocLnk(nf); | 652 | doc = new DocLnk(nf); |
653 | currentFileName = "Unnamed"; | 653 | currentFileName = "Unnamed"; |
654 | odebug << "newFile "+currentFileName << oendl; | 654 | odebug << "newFile "+currentFileName << oendl; |
655 | updateCaption( currentFileName); | 655 | updateCaption( currentFileName); |
656 | // editor->setEdited( false); | 656 | // editor->setEdited( false); |
657 | } | 657 | } |
658 | 658 | ||
659 | void TextEdit::openDotFile( const QString &f ) { | 659 | void TextEdit::openDotFile( const QString &f ) { |
660 | if(!currentFileName.isEmpty()) { | 660 | if(!currentFileName.isEmpty()) { |
661 | currentFileName=f; | 661 | currentFileName=f; |
662 | 662 | ||
663 | odebug << "openFile dotfile " + currentFileName << oendl; | 663 | odebug << "openFile dotfile " + currentFileName << oendl; |
664 | QString txt; | 664 | QString txt; |
665 | QFile file(f); | 665 | QFile file(f); |
666 | file.open(IO_ReadWrite); | 666 | file.open(IO_ReadWrite); |
667 | QTextStream t(&file); | 667 | QTextStream t(&file); |
668 | while ( !t.atEnd()) { | 668 | while ( !t.atEnd()) { |
669 | txt+=t.readLine()+"\n"; | 669 | txt+=t.readLine()+"\n"; |
670 | } | 670 | } |
671 | editor->setText(txt); | 671 | editor->setText(txt); |
672 | editor->setEdited( false); | 672 | editor->setEdited( false); |
673 | edited1=false; | 673 | edited1=false; |
674 | edited=false; | 674 | edited=false; |
675 | 675 | ||
676 | 676 | ||
677 | } | 677 | } |
678 | updateCaption( currentFileName); | 678 | updateCaption( currentFileName); |
679 | } | 679 | } |
680 | 680 | ||
681 | void TextEdit::openFile( const QString &f ) { | 681 | void TextEdit::openFile( const QString &f ) { |
682 | odebug << "filename is "+ f << oendl; | 682 | odebug << "filename is "+ f << oendl; |
683 | QString filer; | 683 | QString filer; |
684 | QFileInfo fi( f); | 684 | QFileInfo fi( f); |
685 | // bFromDocView = true; | 685 | // bFromDocView = true; |
686 | if(f.find(".desktop",0,true) != -1 && !openDesktop ) | 686 | if(f.find(".desktop",0,true) != -1 && !openDesktop ) |
687 | { | 687 | { |
688 | switch ( QMessageBox::warning(this,tr("Text Editor"),tr("Text Editor has detected<BR>you selected a <B>.desktop</B>file.<BR>Open<B>.desktop</B> file or <B>linked</B> file?"),tr(".desktop File"),tr("Linked Document"),0,1,1) ) | 688 | switch ( QMessageBox::warning(this,tr("Text Editor"),tr("Text Editor has detected<BR>you selected a <B>.desktop</B>file.<BR>Open<B>.desktop</B> file or <B>linked</B> file?"),tr(".desktop File"),tr("Linked Document"),0,1,1) ) |
689 | { | 689 | { |
690 | case 0: //desktop | 690 | case 0: //desktop |
691 | filer = f; | 691 | filer = f; |
692 | break; | 692 | break; |
693 | case 1: //linked | 693 | case 1: //linked |
694 | DocLnk sf(f); | 694 | DocLnk sf(f); |
695 | filer = sf.file(); | 695 | filer = sf.file(); |
696 | break; | 696 | break; |
697 | }; | 697 | }; |
698 | } | 698 | } |
699 | else if(fi.baseName().left(1) == "") | 699 | else if(fi.baseName().left(1) == "") |
700 | { | 700 | { |
701 | odebug << "opening dotfile" << oendl; | 701 | odebug << "opening dotfile" << oendl; |
702 | currentFileName=f; | 702 | currentFileName=f; |
703 | openDotFile(currentFileName); | 703 | openDotFile(currentFileName); |
704 | return; | 704 | return; |
705 | } | 705 | } |
706 | /* | 706 | /* |
707 | * The problem is a file where Config(f).isValid() and it does not | 707 | * The problem is a file where Config(f).isValid() and it does not |
708 | * end with .desktop will be treated as desktop file | 708 | * end with .desktop will be treated as desktop file |
709 | */ | 709 | */ |
710 | else if (f.find(".desktop",0,true) != -1 ) | 710 | else if (f.find(".desktop",0,true) != -1 ) |
711 | { | 711 | { |
712 | DocLnk sf(f); | 712 | DocLnk sf(f); |
713 | filer = sf.file(); | 713 | filer = sf.file(); |
714 | if(filer.right(1) == "/") | 714 | if(filer.right(1) == "/") |
715 | filer = f; | 715 | filer = f; |
716 | 716 | ||
717 | } | 717 | } |
718 | else | 718 | else |
719 | filer = f; | 719 | filer = f; |
720 | 720 | ||
721 | DocLnk nf; | 721 | DocLnk nf; |
722 | nf.setType("text/plain"); | 722 | nf.setType("text/plain"); |
723 | nf.setFile(filer); | 723 | nf.setFile(filer); |
724 | currentFileName=filer; | 724 | currentFileName=filer; |
725 | 725 | ||
726 | nf.setName(fi.baseName()); | 726 | nf.setName(fi.baseName()); |
727 | openFile(nf); | 727 | openFile(nf); |
728 | 728 | ||
729 | odebug << "openFile string "+currentFileName << oendl; | 729 | odebug << "openFile string "+currentFileName << oendl; |
730 | 730 | ||
731 | showEditTools(); | 731 | showEditTools(); |
732 | // Show filename in caption | 732 | // Show filename in caption |
733 | QString name = filer; | 733 | QString name = filer; |
734 | int sep = name.findRev( '/' ); | 734 | int sep = name.findRev( '/' ); |
735 | if ( sep > 0 ) | 735 | if ( sep > 0 ) |
736 | name = name.mid( sep+1 ); | 736 | name = name.mid( sep+1 ); |
737 | updateCaption( name ); | 737 | updateCaption( name ); |
738 | } | 738 | } |
739 | 739 | ||
740 | void TextEdit::openFile( const DocLnk &f ) { | 740 | void TextEdit::openFile( const DocLnk &f ) { |
741 | // clear(); | 741 | // clear(); |
742 | // bFromDocView = true; | 742 | // bFromDocView = true; |
743 | FileManager fm; | 743 | FileManager fm; |
744 | QString txt; | 744 | QString txt; |
745 | currentFileName=f.file(); | 745 | currentFileName=f.file(); |
746 | odebug << "openFile doclnk " + currentFileName << oendl; | 746 | odebug << "openFile doclnk " + currentFileName << oendl; |
747 | if ( !fm.loadFile( f, txt ) ) { | 747 | if ( !fm.loadFile( f, txt ) ) { |
748 | // ####### could be a new file | 748 | // ####### could be a new file |
749 | odebug << "Cannot open file" << oendl; | 749 | odebug << "Cannot open file" << oendl; |
750 | } | 750 | } |
751 | // fileNew(); | 751 | // fileNew(); |
752 | if ( doc ) | 752 | if ( doc ) |
753 | delete doc; | 753 | delete doc; |
754 | doc = new DocLnk(f); | 754 | doc = new DocLnk(f); |
755 | editor->setText(txt); | 755 | editor->setText(txt); |
756 | editor->setEdited( false); | 756 | editor->setEdited( false); |
757 | edited1=false; | 757 | edited1=false; |
758 | edited=false; | 758 | edited=false; |
759 | 759 | ||
760 | doc->setName(currentFileName); | 760 | doc->setName(currentFileName); |
761 | updateCaption(); | 761 | updateCaption(); |
762 | setTimer(); | 762 | setTimer(); |
763 | } | 763 | } |
764 | 764 | ||
765 | void TextEdit::showEditTools() { | 765 | void TextEdit::showEditTools() { |
766 | menu->show(); | 766 | menu->show(); |
767 | editBar->show(); | 767 | editBar->show(); |
768 | if(!useSearchBar) | 768 | if(!useSearchBar) |
769 | searchBar->hide(); | 769 | searchBar->hide(); |
770 | else | 770 | else |
771 | searchBar->show(); | 771 | searchBar->show(); |
772 | setWState (WState_Reserved1 ); | 772 | setWState (WState_Reserved1 ); |
773 | } | 773 | } |
774 | 774 | ||
775 | /*! | 775 | /*! |
776 | unprompted save */ | 776 | unprompted save */ |
777 | bool TextEdit::save() { | 777 | bool TextEdit::save() { |
778 | QString name, file; | 778 | QString name, file; |
779 | odebug << "saveAsFile " + currentFileName << oendl; | 779 | odebug << "saveAsFile " + currentFileName << oendl; |
780 | if(currentFileName.isEmpty()) { | 780 | if(currentFileName.isEmpty()) { |
781 | saveAs(); | 781 | saveAs(); |
782 | return false; | 782 | return false; |
783 | } | 783 | } |
784 | name = currentFileName; | 784 | name = currentFileName; |
785 | if(doc) { | 785 | if(doc) { |
786 | file = doc->file(); | 786 | file = doc->file(); |
787 | odebug << "saver file "+file << oendl; | 787 | odebug << "saver file "+file << oendl; |
788 | name = doc->name(); | 788 | name = doc->name(); |
789 | odebug << "File named "+name << oendl; | 789 | odebug << "File named "+name << oendl; |
790 | } else { | 790 | } else { |
791 | name = file = currentFileName; | 791 | file = currentFileName; |
792 | name = QFileInfo(currentFileName).baseName(); | ||
792 | } | 793 | } |
793 | 794 | ||
794 | QString rt = editor->text(); | 795 | QString rt = editor->text(); |
795 | if( !rt.isEmpty() ) { | 796 | if( !rt.isEmpty() ) { |
796 | if(name.isEmpty()) { | 797 | if(name.isEmpty()) { |
797 | saveAs(); | 798 | saveAs(); |
798 | } else { | 799 | } else { |
799 | currentFileName = name; | 800 | currentFileName = name; |
800 | odebug << "saveFile "+currentFileName << oendl; | 801 | odebug << "saveFile "+currentFileName << oendl; |
801 | 802 | ||
802 | struct stat buf; | 803 | struct stat buf; |
803 | mode_t mode; | 804 | mode_t mode; |
804 | stat(file.latin1(), &buf); | 805 | stat(file.latin1(), &buf); |
805 | mode = buf.st_mode; | 806 | mode = buf.st_mode; |
806 | 807 | ||
807 | if(!fileIs) { | 808 | if(!fileIs) { |
808 | doc->setName( name); | 809 | doc->setName( name); |
809 | FileManager fm; | 810 | FileManager fm; |
810 | if ( !fm.saveFile( *doc, rt ) ) { | 811 | if ( !fm.saveFile( *doc, rt ) ) { |
811 | QMessageBox::message(tr("Text Edit"),tr("Save Failed")); | 812 | QMessageBox::message(tr("Text Edit"),tr("Save Failed")); |
812 | return false; | 813 | return false; |
813 | } | 814 | } |
814 | } else { | 815 | } else { |
815 | odebug << "regular save file" << oendl; | 816 | odebug << "regular save file" << oendl; |
816 | QFile f(file); | 817 | QFile f(file); |
817 | if( f.open(IO_WriteOnly)) { | 818 | if( f.open(IO_WriteOnly)) { |
818 | QCString crt = rt.utf8(); | 819 | QCString crt = rt.utf8(); |
819 | f.writeBlock(crt,crt.length()); | 820 | f.writeBlock(crt,crt.length()); |
820 | } else { | 821 | } else { |
821 | QMessageBox::message(tr("Text Edit"),tr("Write Failed")); | 822 | QMessageBox::message(tr("Text Edit"),tr("Write Failed")); |
822 | return false; | 823 | return false; |
823 | } | 824 | } |
824 | 825 | ||
825 | } | 826 | } |
826 | editor->setEdited( false); | 827 | editor->setEdited( false); |
827 | edited1=false; | 828 | edited1=false; |
828 | edited=false; | 829 | edited=false; |
829 | if(caption().left(1)=="*") | 830 | if(caption().left(1)=="*") |
830 | setCaption(caption().right(caption().length()-1)); | 831 | setCaption(caption().right(caption().length()-1)); |
831 | 832 | ||
832 | 833 | ||
833 | chmod( file.latin1(), mode); | 834 | chmod( file.latin1(), mode); |
834 | } | 835 | } |
835 | return true; | 836 | return true; |
836 | } | 837 | } |
837 | return false; | 838 | return false; |
838 | } | 839 | } |
839 | 840 | ||
840 | /*! | 841 | /*! |
841 | prompted save */ | 842 | prompted save */ |
842 | bool TextEdit::saveAs() { | 843 | bool TextEdit::saveAs() { |
843 | 844 | ||
844 | if(caption() == tr("Text Editor")) | 845 | if(caption() == tr("Text Editor")) |
845 | return false; | 846 | return false; |
846 | odebug << "saveAsFile " + currentFileName << oendl; | 847 | odebug << "saveAsFile " + currentFileName << oendl; |
847 | // case of nothing to save... | 848 | // case of nothing to save... |
848 | // if ( !doc && !currentFileName.isEmpty()) { | 849 | // if ( !doc && !currentFileName.isEmpty()) { |
849 | // //|| !bFromDocView) | 850 | // //|| !bFromDocView) |
850 | // odebug << "no doc" << oendl; | 851 | // odebug << "no doc" << oendl; |
851 | // return true; | 852 | // return true; |
852 | // } | 853 | // } |
853 | // if ( !editor->edited() ) { | 854 | // if ( !editor->edited() ) { |
854 | // delete doc; | 855 | // delete doc; |
855 | // doc = 0; | 856 | // doc = 0; |
856 | // return true; | 857 | // return true; |
857 | // } | 858 | // } |
858 | 859 | ||
859 | QString rt = editor->text(); | 860 | QString rt = editor->text(); |
860 | odebug << currentFileName << oendl; | 861 | odebug << currentFileName << oendl; |
861 | 862 | ||
862 | if( currentFileName.isEmpty() | 863 | if( currentFileName.isEmpty() |
863 | || currentFileName == tr("Unnamed") | 864 | || currentFileName == tr("Unnamed") |
864 | || currentFileName == tr("Text Editor")) { | 865 | || currentFileName == tr("Text Editor")) { |
865 | odebug << "do silly TT filename thing" << oendl; | 866 | odebug << "do silly TT filename thing" << oendl; |
866 | // if ( doc && doc->name().isEmpty() ) { | 867 | // if ( doc && doc->name().isEmpty() ) { |
867 | QString pt = rt.simplifyWhiteSpace(); | 868 | QString pt = rt.simplifyWhiteSpace(); |
868 | int i = pt.find( ' ' ); | 869 | int i = pt.find( ' ' ); |
869 | QString docname = pt; | 870 | QString docname = pt; |
870 | if ( i > 0 ) | 871 | if ( i > 0 ) |
871 | docname = pt.left( i ); | 872 | docname = pt.left( i ); |
872 | // remove "." at the beginning | 873 | // remove "." at the beginning |
873 | while( docname.startsWith( "." ) ) | 874 | while( docname.startsWith( "." ) ) |
874 | docname = docname.mid( 1 ); | 875 | docname = docname.mid( 1 ); |
875 | docname.replace( QRegExp("/"), "_" ); | 876 | docname.replace( QRegExp("/"), "_" ); |
876 | // cut the length. filenames longer than that | 877 | // cut the length. filenames longer than that |
877 | //don't make sense and something goes wrong when they get too long. | 878 | //don't make sense and something goes wrong when they get too long. |
878 | if ( docname.length() > 40 ) | 879 | if ( docname.length() > 40 ) |
879 | docname = docname.left(40); | 880 | docname = docname.left(40); |
880 | if ( docname.isEmpty() ) | 881 | if ( docname.isEmpty() ) |
881 | docname = tr("Unnamed"); | 882 | docname = tr("Unnamed"); |
882 | if(doc) doc->setName(docname); | 883 | if(doc) doc->setName(docname); |
883 | currentFileName=docname; | 884 | currentFileName=docname; |
884 | // } | 885 | // } |
885 | // else | 886 | // else |
886 | // odebug << "hmmmmmm" << oendl; | 887 | // odebug << "hmmmmmm" << oendl; |
887 | } | 888 | } |
888 | 889 | ||
889 | 890 | ||
890 | QMap<QString, QStringList> map; | 891 | QMap<QString, QStringList> map; |
891 | map.insert(tr("All"), QStringList() ); | 892 | map.insert(tr("All"), QStringList() ); |
892 | QStringList text; | 893 | QStringList text; |
893 | text << "text/*"; | 894 | text << "text/*"; |
894 | map.insert(tr("Text"), text ); | 895 | map.insert(tr("Text"), text ); |
895 | text << "*"; | 896 | text << "*"; |
896 | map.insert(tr("All"), text ); | 897 | map.insert(tr("All"), text ); |
897 | 898 | ||
898 | QFileInfo cuFi( currentFileName); | 899 | QFileInfo cuFi( currentFileName); |
899 | QString filee = cuFi.fileName(); | 900 | QString filee = cuFi.fileName(); |
900 | QString dire = cuFi.dirPath(); | 901 | QString dire = cuFi.dirPath(); |
901 | if(dire==".") | 902 | if(dire==".") |
902 | dire = QPEApplication::documentDir(); | 903 | dire = QPEApplication::documentDir(); |
903 | QString str; | 904 | QString str; |
904 | if( !featureAutoSave) { | 905 | if( !featureAutoSave) { |
905 | str = OFileDialog::getSaveFileName( 2, | 906 | str = OFileDialog::getSaveFileName( 2, |
906 | dire, | 907 | dire, |
907 | filee, map); | 908 | filee, map); |
908 | } else | 909 | } else |
909 | str=currentFileName; | 910 | str=currentFileName; |
910 | 911 | ||
911 | if(!str.isEmpty()) { | 912 | if(!str.isEmpty()) { |
912 | QString fileNm=str; | 913 | QString fileNm=str; |
913 | 914 | ||
914 | odebug << "saving filename "+fileNm << oendl; | 915 | odebug << "saving filename "+fileNm << oendl; |
915 | QFileInfo fi(fileNm); | 916 | QFileInfo fi(fileNm); |
916 | currentFileName=fi.fileName(); | 917 | currentFileName=fi.fileName(); |
917 | if(doc) | 918 | if(doc) |
918 | // QString file = doc->file(); | 919 | // QString file = doc->file(); |
919 | // doc->removeFiles(); | 920 | // doc->removeFiles(); |
920 | delete doc; | 921 | delete doc; |
921 | DocLnk nf; | 922 | DocLnk nf; |
922 | nf.setType("text/plain"); | 923 | nf.setType("text/plain"); |
923 | nf.setFile( fileNm); | 924 | nf.setFile( fileNm); |
924 | doc = new DocLnk(nf); | 925 | doc = new DocLnk(nf); |
925 | // editor->setText(rt); | 926 | // editor->setText(rt); |
926 | odebug << "Saving file as "+currentFileName << oendl; | 927 | odebug << "Saving file as "+currentFileName << oendl; |
927 | doc->setName( currentFileName); | 928 | doc->setName( fi.baseName() /*currentFileName*/); |
928 | updateCaption( currentFileName); | 929 | updateCaption( currentFileName); |
929 | 930 | ||
930 | FileManager fm; | 931 | FileManager fm; |
931 | if ( !fm.saveFile( *doc, rt ) ) { | 932 | if ( !fm.saveFile( *doc, rt ) ) { |
932 | QMessageBox::message(tr("Text Edit"),tr("Save Failed")); | 933 | QMessageBox::message(tr("Text Edit"),tr("Save Failed")); |
933 | return false; | 934 | return false; |
934 | } | 935 | } |
935 | 936 | ||
936 | if( filePerms ) { | 937 | if( filePerms ) { |
937 | filePermissions *filePerm; | 938 | filePermissions *filePerm; |
938 | filePerm = new filePermissions(this, | 939 | filePerm = new filePermissions(this, |
939 | tr("Permissions"),true, | 940 | tr("Permissions"),true, |
940 | 0,(const QString &)fileNm); | 941 | 0,(const QString &)fileNm); |
941 | QPEApplication::execDialog( filePerm ); | 942 | QPEApplication::execDialog( filePerm ); |
942 | 943 | ||
943 | if( filePerm) | 944 | if( filePerm) |
944 | delete filePerm; | 945 | delete filePerm; |
945 | } | 946 | } |
946 | // } | 947 | // } |
947 | editor->setEdited( false); | 948 | editor->setEdited( false); |
948 | edited1 = false; | 949 | edited1 = false; |
949 | edited = false; | 950 | edited = false; |
950 | if(caption().left(1)=="*") | 951 | if(caption().left(1)=="*") |
951 | setCaption(caption().right(caption().length()-1)); | 952 | setCaption(caption().right(caption().length()-1)); |
952 | 953 | ||
953 | return true; | 954 | return true; |
954 | } | 955 | } |
955 | odebug << "returning false" << oendl; | 956 | odebug << "returning false" << oendl; |
956 | currentFileName = ""; | 957 | currentFileName = ""; |
957 | return false; | 958 | return false; |
958 | } //end saveAs | 959 | } //end saveAs |
959 | 960 | ||
960 | void TextEdit::clear() { | 961 | void TextEdit::clear() { |
961 | delete doc; | 962 | delete doc; |
962 | doc = 0; | 963 | doc = 0; |
963 | editor->clear(); | 964 | editor->clear(); |
964 | } | 965 | } |
965 | 966 | ||
966 | void TextEdit::updateCaption( const QString &name ) { | 967 | void TextEdit::updateCaption( const QString &name ) { |
967 | 968 | ||
968 | if ( name.isEmpty() ) | 969 | if ( name.isEmpty() ) |
969 | setCaption( tr("Text Editor") ); | 970 | setCaption( tr("Text Editor") ); |
970 | else { | 971 | else { |
971 | QString s = name; | 972 | QString s = name; |
972 | if ( s.isNull() ) | 973 | if ( s.isNull() ) |
973 | s = doc->name(); | 974 | s = doc->name(); |
974 | if ( s.isEmpty() ) { | 975 | if ( s.isEmpty() ) { |
975 | s = tr( "Unnamed" ); | 976 | s = tr( "Unnamed" ); |
976 | currentFileName=s; | 977 | currentFileName=s; |
977 | } | 978 | } |
978 | // if(s.left(1) == "/") | 979 | // if(s.left(1) == "/") |
979 | // s = s.right(s.length()-1); | 980 | // s = s.right(s.length()-1); |
980 | setCaption( tr("%1 - Text Editor").arg( s ) ); | 981 | setCaption( tr("%1 - Text Editor").arg( s ) ); |
981 | } | 982 | } |
982 | } | 983 | } |
983 | 984 | ||
984 | void TextEdit::setDocument(const QString& fileref) { | 985 | void TextEdit::setDocument(const QString& fileref) { |
985 | if(fileref != "Unnamed") { | 986 | if(fileref != "Unnamed") { |
986 | currentFileName=fileref; | 987 | currentFileName=fileref; |
987 | odebug << "setDocument" << oendl; | 988 | odebug << "setDocument" << oendl; |
988 | QFileInfo fi(currentFileName); | 989 | QFileInfo fi(currentFileName); |
989 | odebug << "basename:"+fi.baseName()+": current filenmame "+currentFileName << oendl; | 990 | odebug << "basename:"+fi.baseName()+": current filenmame "+currentFileName << oendl; |
990 | if( (fi.baseName().left(1)).isEmpty() ) { | 991 | if( (fi.baseName().left(1)).isEmpty() ) { |
991 | openDotFile(currentFileName); | 992 | openDotFile(currentFileName); |
992 | 993 | ||
993 | } else { | 994 | } else { |
994 | odebug << "setDoc open" << oendl; | 995 | odebug << "setDoc open" << oendl; |
995 | bFromDocView = true; | 996 | bFromDocView = true; |
996 | openFile(fileref); | 997 | openFile(fileref); |
997 | editor->setEdited(true); | 998 | editor->setEdited(true); |
998 | edited1=false; | 999 | edited1=false; |
999 | edited=true; | 1000 | edited=true; |
1000 | // fromSetDocument=false; | 1001 | // fromSetDocument=false; |
1001 | // doSearchBar(); | 1002 | // doSearchBar(); |
1002 | } | 1003 | } |
1003 | } | 1004 | } |
1004 | updateCaption( currentFileName); | 1005 | updateCaption( currentFileName); |
1005 | } | 1006 | } |
1006 | 1007 | ||
1007 | void TextEdit::changeFont() { | 1008 | void TextEdit::changeFont() { |
1008 | QDialog *d = new QDialog ( this, "FontDialog", true ); | 1009 | QDialog *d = new QDialog ( this, "FontDialog", true ); |
1009 | d-> setCaption ( tr( "Choose font" )); | 1010 | d-> setCaption ( tr( "Choose font" )); |
1010 | QBoxLayout *lay = new QVBoxLayout ( d ); | 1011 | QBoxLayout *lay = new QVBoxLayout ( d ); |
1011 | OFontSelector *ofs = new OFontSelector ( true, d ); | 1012 | OFontSelector *ofs = new OFontSelector ( true, d ); |
1012 | lay-> addWidget ( ofs ); | 1013 | lay-> addWidget ( ofs ); |
1013 | ofs-> setSelectedFont ( editor-> font ( )); | 1014 | ofs-> setSelectedFont ( editor-> font ( )); |
1014 | 1015 | ||
1015 | if ( QPEApplication::execDialog( d ) == QDialog::Accepted ) | 1016 | if ( QPEApplication::execDialog( d ) == QDialog::Accepted ) |
1016 | editor-> setFont ( ofs-> selectedFont ( )); | 1017 | editor-> setFont ( ofs-> selectedFont ( )); |
1017 | delete d; | 1018 | delete d; |
1018 | 1019 | ||
1019 | } | 1020 | } |
1020 | 1021 | ||
1021 | void TextEdit::editDelete() { | 1022 | void TextEdit::editDelete() { |
1022 | switch ( QMessageBox::warning(this,tr("Text Editor"), | 1023 | switch ( QMessageBox::warning(this,tr("Text Editor"), |
1023 | tr("Do you really want<BR>to <B>delete</B> " | 1024 | tr("Do you really want<BR>to <B>delete</B> " |
1024 | "the current file\nfrom the disk?<BR>This is " | 1025 | "the current file\nfrom the disk?<BR>This is " |
1025 | "<B>irreversable!</B>"), | 1026 | "<B>irreversable!</B>"), |
1026 | tr("Yes"),tr("No"),0,0,1) ) { | 1027 | tr("Yes"),tr("No"),0,0,1) ) { |
1027 | case 0: | 1028 | case 0: |
1028 | if(doc) { | 1029 | if(doc) { |
1029 | doc->removeFiles(); | 1030 | doc->removeFiles(); |
1030 | clear(); | 1031 | clear(); |
1031 | setCaption( tr("Text Editor") ); | 1032 | setCaption( tr("Text Editor") ); |
1032 | } | 1033 | } |
1033 | break; | 1034 | break; |
1034 | case 1: | 1035 | case 1: |
1035 | // exit | 1036 | // exit |
1036 | break; | 1037 | break; |
1037 | }; | 1038 | }; |
1038 | } | 1039 | } |
1039 | 1040 | ||
1040 | void TextEdit::changeStartConfig( bool b ) { | 1041 | void TextEdit::changeStartConfig( bool b ) { |
1041 | startWithNew=b; | 1042 | startWithNew=b; |
1042 | Config cfg("TextEdit"); | 1043 | Config cfg("TextEdit"); |
1043 | cfg.setGroup("View"); | 1044 | cfg.setGroup("View"); |
1044 | cfg.writeEntry("startNew",b); | 1045 | cfg.writeEntry("startNew",b); |
1045 | update(); | 1046 | update(); |
1046 | } | 1047 | } |
1047 | 1048 | ||
1048 | void TextEdit::editorChanged() { | 1049 | void TextEdit::editorChanged() { |
1049 | // odebug << "editor changed" << oendl; | 1050 | // odebug << "editor changed" << oendl; |
1050 | if( /*editor->edited() &&*/ /*edited && */!edited1) { | 1051 | if( /*editor->edited() &&*/ /*edited && */!edited1) { |
1051 | setCaption( "*"+caption()); | 1052 | setCaption( "*"+caption()); |
1052 | edited1=true; | 1053 | edited1=true; |
1053 | } | 1054 | } |
1054 | edited=true; | 1055 | edited=true; |
1055 | } | 1056 | } |
1056 | 1057 | ||
1057 | void TextEdit::receive(const QCString&msg, const QByteArray &) { | 1058 | void TextEdit::receive(const QCString&msg, const QByteArray &) { |
1058 | odebug << "QCop "+msg << oendl; | 1059 | odebug << "QCop "+msg << oendl; |
1059 | if ( msg == "setDocument(QString)" ) { | 1060 | if ( msg == "setDocument(QString)" ) { |
1060 | odebug << "bugger all" << oendl; | 1061 | odebug << "bugger all" << oendl; |
1061 | 1062 | ||
1062 | } | 1063 | } |
1063 | 1064 | ||
1064 | } | 1065 | } |
1065 | 1066 | ||
1066 | void TextEdit::doAbout() { | 1067 | void TextEdit::doAbout() { |
1067 | QMessageBox::about(0,tr("Text Edit"),tr("Text Edit is copyright<BR>" | 1068 | QMessageBox::about(0,tr("Text Edit"),tr("Text Edit is copyright<BR>" |
1068 | "2000 Trolltech AS, and<BR>" | 1069 | "2000 Trolltech AS, and<BR>" |
1069 | "2002 by <B>L. J. Potter <BR>llornkcor@handhelds.org</B><BR>" | 1070 | "2002 by <B>L. J. Potter <BR>llornkcor@handhelds.org</B><BR>" |
1070 | "and is licensed under the GPL")); | 1071 | "and is licensed under the GPL")); |
1071 | } | 1072 | } |
1072 | 1073 | ||
1073 | void TextEdit::doPrompt(bool b) { | 1074 | void TextEdit::doPrompt(bool b) { |
1074 | promptExit=b; | 1075 | promptExit=b; |
1075 | Config cfg("TextEdit"); | 1076 | Config cfg("TextEdit"); |
1076 | cfg.setGroup ( "View" ); | 1077 | cfg.setGroup ( "View" ); |
1077 | cfg.writeEntry ( "PromptExit", b); | 1078 | cfg.writeEntry ( "PromptExit", b); |
1078 | } | 1079 | } |
1079 | 1080 | ||
1080 | void TextEdit::doDesktop(bool b) { | 1081 | void TextEdit::doDesktop(bool b) { |
1081 | openDesktop=b; | 1082 | openDesktop=b; |
1082 | Config cfg("TextEdit"); | 1083 | Config cfg("TextEdit"); |
1083 | cfg.setGroup ( "View" ); | 1084 | cfg.setGroup ( "View" ); |
1084 | cfg.writeEntry ( "OpenDesktop", b); | 1085 | cfg.writeEntry ( "OpenDesktop", b); |
1085 | } | 1086 | } |
1086 | 1087 | ||
1087 | void TextEdit::doFilePerms(bool b) { | 1088 | void TextEdit::doFilePerms(bool b) { |
1088 | filePerms=b; | 1089 | filePerms=b; |
1089 | Config cfg("TextEdit"); | 1090 | Config cfg("TextEdit"); |
1090 | cfg.setGroup ( "View" ); | 1091 | cfg.setGroup ( "View" ); |
1091 | cfg.writeEntry ( "FilePermissions", b); | 1092 | cfg.writeEntry ( "FilePermissions", b); |
1092 | } | 1093 | } |
1093 | 1094 | ||
1094 | void TextEdit::editPasteTimeDate() { | 1095 | void TextEdit::editPasteTimeDate() { |
1095 | #ifndef QT_NO_CLIPBOARD | 1096 | #ifndef QT_NO_CLIPBOARD |
1096 | QClipboard *cb = QApplication::clipboard(); | 1097 | QClipboard *cb = QApplication::clipboard(); |
1097 | QDateTime dt = QDateTime::currentDateTime(); | 1098 | QDateTime dt = QDateTime::currentDateTime(); |
1098 | cb->setText( dt.toString()); | 1099 | cb->setText( dt.toString()); |
1099 | editor->paste(); | 1100 | editor->paste(); |
1100 | #endif | 1101 | #endif |
1101 | } | 1102 | } |
1102 | 1103 | ||
1103 | int TextEdit::savePrompt() | 1104 | int TextEdit::savePrompt() |
1104 | { | 1105 | { |
1105 | switch( QMessageBox::information( 0, (tr("Textedit")), | 1106 | switch( QMessageBox::information( 0, (tr("Textedit")), |
1106 | (tr("Textedit detected\n" | 1107 | (tr("Textedit detected\n" |
1107 | "you have unsaved changes\n" | 1108 | "you have unsaved changes\n" |
1108 | "Go ahead and save?\n")), | 1109 | "Go ahead and save?\n")), |
1109 | (tr("Save")), (tr("Don't Save")), (tr("&Cancel")), 2, 2 ) ) | 1110 | (tr("Save")), (tr("Don't Save")), (tr("&Cancel")), 2, 2 ) ) |
1110 | { | 1111 | { |
1111 | case 0: | 1112 | case 0: |
1112 | { | 1113 | { |
1113 | return 1; | 1114 | return 1; |
1114 | } | 1115 | } |
1115 | break; | 1116 | break; |
1116 | 1117 | ||
1117 | case 1: | 1118 | case 1: |
1118 | { | 1119 | { |
1119 | return 2; | 1120 | return 2; |
1120 | } | 1121 | } |
1121 | break; | 1122 | break; |
1122 | 1123 | ||
1123 | case 2: | 1124 | case 2: |
1124 | { | 1125 | { |
1125 | return -1; | 1126 | return -1; |
1126 | } | 1127 | } |
1127 | break; | 1128 | break; |
1128 | }; | 1129 | }; |
1129 | 1130 | ||
1130 | return 0; | 1131 | return 0; |
1131 | } | 1132 | } |
1132 | 1133 | ||
1133 | void TextEdit::timerCrank() | 1134 | void TextEdit::timerCrank() |
1134 | { | 1135 | { |
1135 | if(featureAutoSave && edited1) | 1136 | if(featureAutoSave && edited1) |
1136 | { | 1137 | { |
1137 | if(currentFileName.isEmpty()) | 1138 | if(currentFileName.isEmpty()) |
1138 | { | 1139 | { |
1139 | currentFileName = QDir::homeDirPath()+"/textedit.tmp"; | 1140 | currentFileName = QDir::homeDirPath()+"/textedit.tmp"; |
1140 | saveAs(); | 1141 | saveAs(); |
1141 | } | 1142 | } |
1142 | else | 1143 | else |
1143 | { | 1144 | { |
1144 | // odebug << "autosave" << oendl; | 1145 | // odebug << "autosave" << oendl; |
1145 | save(); | 1146 | save(); |
1146 | } | 1147 | } |
1147 | setTimer(); | 1148 | setTimer(); |
1148 | } | 1149 | } |
1149 | } | 1150 | } |
1150 | 1151 | ||
1151 | void TextEdit::doTimer(bool b) | 1152 | void TextEdit::doTimer(bool b) |
1152 | { | 1153 | { |
1153 | Config cfg("TextEdit"); | 1154 | Config cfg("TextEdit"); |
1154 | cfg.setGroup ( "View" ); | 1155 | cfg.setGroup ( "View" ); |
1155 | cfg.writeEntry ( "autosave", b); | 1156 | cfg.writeEntry ( "autosave", b); |
1156 | featureAutoSave = b; | 1157 | featureAutoSave = b; |
1157 | nAutoSave->setOn(b); | 1158 | nAutoSave->setOn(b); |
1158 | if(b) | 1159 | if(b) |
1159 | { | 1160 | { |
1160 | // odebug << "doTimer true" << oendl; | 1161 | // odebug << "doTimer true" << oendl; |
1161 | setTimer(); | 1162 | setTimer(); |
1162 | } | 1163 | } |
1163 | // else | 1164 | // else |
1164 | // odebug << "doTimer false" << oendl; | 1165 | // odebug << "doTimer false" << oendl; |
1165 | } | 1166 | } |
1166 | 1167 | ||
1167 | void TextEdit::setTimer() | 1168 | void TextEdit::setTimer() |
1168 | { | 1169 | { |
1169 | if(featureAutoSave) | 1170 | if(featureAutoSave) |
1170 | { | 1171 | { |
1171 | // odebug << "setting autosave" << oendl; | 1172 | // odebug << "setting autosave" << oendl; |
1172 | QTimer *timer = new QTimer(this ); | 1173 | QTimer *timer = new QTimer(this ); |
1173 | connect( timer, SIGNAL(timeout()), this, SLOT(timerCrank()) ); | 1174 | connect( timer, SIGNAL(timeout()), this, SLOT(timerCrank()) ); |
1174 | timer->start( 300000, true); //5 minutes | 1175 | timer->start( 300000, true); //5 minutes |
1175 | } | 1176 | } |
1176 | } | 1177 | } |
1177 | 1178 | ||
1178 | void TextEdit::gotoLine() { | 1179 | void TextEdit::gotoLine() { |
1179 | if( editor->length() < 1) | 1180 | if( editor->length() < 1) |
1180 | return; | 1181 | return; |
1181 | QWidget *d = QApplication::desktop(); | 1182 | QWidget *d = QApplication::desktop(); |
1182 | gotoEdit = new QLineEdit( 0, "Goto line"); | 1183 | gotoEdit = new QLineEdit( 0, "Goto line"); |
1183 | 1184 | ||
1184 | gotoEdit->move( (d->width()/2) - ( gotoEdit->width()/2) , (d->height()/2) - (gotoEdit->height()/2)); | 1185 | gotoEdit->move( (d->width()/2) - ( gotoEdit->width()/2) , (d->height()/2) - (gotoEdit->height()/2)); |
1185 | gotoEdit->setFrame(true); | 1186 | gotoEdit->setFrame(true); |
1186 | gotoEdit->show(); | 1187 | gotoEdit->show(); |
1187 | connect (gotoEdit,SIGNAL(returnPressed()), this, SLOT(doGoto())); | 1188 | connect (gotoEdit,SIGNAL(returnPressed()), this, SLOT(doGoto())); |
1188 | } | 1189 | } |
1189 | 1190 | ||
1190 | void TextEdit::doGoto() { | 1191 | void TextEdit::doGoto() { |
1191 | QString number = gotoEdit->text(); | 1192 | QString number = gotoEdit->text(); |
1192 | gotoEdit->hide(); | 1193 | gotoEdit->hide(); |
1193 | 1194 | ||
1194 | if(gotoEdit) { | 1195 | if(gotoEdit) { |
1195 | delete gotoEdit; | 1196 | delete gotoEdit; |
1196 | gotoEdit = 0; | 1197 | gotoEdit = 0; |
1197 | } | 1198 | } |
1198 | 1199 | ||
1199 | bool ok; | 1200 | bool ok; |
1200 | int lineNumber = number.toInt(&ok, 10); | 1201 | int lineNumber = number.toInt(&ok, 10); |
1201 | if( editor->numLines() < lineNumber) | 1202 | if( editor->numLines() < lineNumber) |
1202 | QMessageBox::message(tr("Text Edit"),tr("Not enough lines")); | 1203 | QMessageBox::message(tr("Text Edit"),tr("Not enough lines")); |
1203 | else | 1204 | else |
1204 | { | 1205 | { |
1205 | editor->setCursorPosition(lineNumber, 0, false); | 1206 | editor->setCursorPosition(lineNumber, 0, false); |
1206 | } | 1207 | } |
1207 | } | 1208 | } |