-rw-r--r-- | core/apps/textedit/textedit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index 2f59ede..019ffee 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp | |||
@@ -504,374 +504,374 @@ void TextEdit::fileOpen() | |||
504 | // QMessageBox::No|QMessageBox::Default ) | 504 | // QMessageBox::No|QMessageBox::Default ) |
505 | // != QMessageBox::Yes ) | 505 | // != QMessageBox::Yes ) |
506 | // return; | 506 | // return; |
507 | // else { | 507 | // else { |
508 | // delete doc; | 508 | // delete doc; |
509 | // doc = 0; | 509 | // doc = 0; |
510 | // } | 510 | // } |
511 | // } | 511 | // } |
512 | menu->hide(); | 512 | menu->hide(); |
513 | editBar->hide(); | 513 | editBar->hide(); |
514 | searchBar->hide(); | 514 | searchBar->hide(); |
515 | clearWState (WState_Reserved1 ); | 515 | clearWState (WState_Reserved1 ); |
516 | editorStack->raiseWidget( fileSelector ); | 516 | editorStack->raiseWidget( fileSelector ); |
517 | fileSelector->reread(); | 517 | fileSelector->reread(); |
518 | updateCaption(); | 518 | updateCaption(); |
519 | } | 519 | } |
520 | 520 | ||
521 | void TextEdit::newFileOpen() | 521 | void TextEdit::newFileOpen() |
522 | { | 522 | { |
523 | browseForFiles=new fileBrowser(this,"fileBrowser",TRUE,0, "*"); | 523 | browseForFiles=new fileBrowser(this,"fileBrowser",TRUE,0, "*"); |
524 | if( browseForFiles->exec() != -1 ) { | 524 | if( browseForFiles->exec() != -1 ) { |
525 | QString selFile= browseForFiles->selectedFileName; | 525 | QString selFile= browseForFiles->selectedFileName; |
526 | QStringList fileList=browseForFiles->fileList; | 526 | QStringList fileList=browseForFiles->fileList; |
527 | qDebug(selFile); | 527 | qDebug(selFile); |
528 | QStringList::ConstIterator f; | 528 | QStringList::ConstIterator f; |
529 | QString fileTemp; | 529 | QString fileTemp; |
530 | for ( f = fileList.begin(); f != fileList.end(); f++ ) { | 530 | for ( f = fileList.begin(); f != fileList.end(); f++ ) { |
531 | fileTemp = *f; | 531 | fileTemp = *f; |
532 | fileTemp.right( fileTemp.length()-5); | 532 | fileTemp.right( fileTemp.length()-5); |
533 | QString fileName = fileTemp; | 533 | QString fileName = fileTemp; |
534 | if( fileName != "Unnamed" || fileName != "Empty Text" ) { | 534 | if( fileName != "Unnamed" || fileName != "Empty Text" ) { |
535 | currentFileName = fileName; | 535 | currentFileName = fileName; |
536 | // qDebug("please open "+currentFileName); | 536 | // qDebug("please open "+currentFileName); |
537 | openFile(fileName ); | 537 | openFile(fileName ); |
538 | } | 538 | } |
539 | } | 539 | } |
540 | } | 540 | } |
541 | delete browseForFiles; | 541 | delete browseForFiles; |
542 | editor->setEdited( true ); | 542 | editor->setEdited( true ); |
543 | } | 543 | } |
544 | 544 | ||
545 | #if 0 | 545 | #if 0 |
546 | void TextEdit::slotFind() | 546 | void TextEdit::slotFind() |
547 | { | 547 | { |
548 | FindDialog frmFind( "Text Editor", this ); | 548 | FindDialog frmFind( "Text Editor", this ); |
549 | connect( &frmFind, SIGNAL(signalFindClicked(const QString &, bool, bool, int)), | 549 | connect( &frmFind, SIGNAL(signalFindClicked(const QString &, bool, bool, int)), |
550 | editor, SLOT(slotDoFind( const QString&,bool,bool))); | 550 | editor, SLOT(slotDoFind( const QString&,bool,bool))); |
551 | 551 | ||
552 | //case sensitive, backwards, [category] | 552 | //case sensitive, backwards, [category] |
553 | 553 | ||
554 | connect( editor, SIGNAL(notFound()), | 554 | connect( editor, SIGNAL(notFound()), |
555 | &frmFind, SLOT(slotNotFound()) ); | 555 | &frmFind, SLOT(slotNotFound()) ); |
556 | connect( editor, SIGNAL(searchWrapped()), | 556 | connect( editor, SIGNAL(searchWrapped()), |
557 | &frmFind, SLOT(slotWrapAround()) ); | 557 | &frmFind, SLOT(slotWrapAround()) ); |
558 | 558 | ||
559 | frmFind.exec(); | 559 | frmFind.exec(); |
560 | 560 | ||
561 | 561 | ||
562 | } | 562 | } |
563 | #endif | 563 | #endif |
564 | 564 | ||
565 | void TextEdit::fileRevert() | 565 | void TextEdit::fileRevert() |
566 | { | 566 | { |
567 | clear(); | 567 | clear(); |
568 | fileOpen(); | 568 | fileOpen(); |
569 | } | 569 | } |
570 | 570 | ||
571 | void TextEdit::editCut() | 571 | void TextEdit::editCut() |
572 | { | 572 | { |
573 | #ifndef QT_NO_CLIPBOARD | 573 | #ifndef QT_NO_CLIPBOARD |
574 | editor->cut(); | 574 | editor->cut(); |
575 | #endif | 575 | #endif |
576 | } | 576 | } |
577 | 577 | ||
578 | void TextEdit::editCopy() | 578 | void TextEdit::editCopy() |
579 | { | 579 | { |
580 | #ifndef QT_NO_CLIPBOARD | 580 | #ifndef QT_NO_CLIPBOARD |
581 | editor->copy(); | 581 | editor->copy(); |
582 | #endif | 582 | #endif |
583 | } | 583 | } |
584 | 584 | ||
585 | void TextEdit::editPaste() | 585 | void TextEdit::editPaste() |
586 | { | 586 | { |
587 | #ifndef QT_NO_CLIPBOARD | 587 | #ifndef QT_NO_CLIPBOARD |
588 | editor->paste(); | 588 | editor->paste(); |
589 | #endif | 589 | #endif |
590 | } | 590 | } |
591 | 591 | ||
592 | void TextEdit::editFind() | 592 | void TextEdit::editFind() |
593 | { | 593 | { |
594 | searchBar->show(); | 594 | searchBar->show(); |
595 | searchVisible = TRUE; | 595 | searchVisible = TRUE; |
596 | searchEdit->setFocus(); | 596 | searchEdit->setFocus(); |
597 | } | 597 | } |
598 | 598 | ||
599 | void TextEdit::findNext() | 599 | void TextEdit::findNext() |
600 | { | 600 | { |
601 | editor->find( searchEdit->text(), FALSE, FALSE ); | 601 | editor->find( searchEdit->text(), FALSE, FALSE ); |
602 | 602 | ||
603 | } | 603 | } |
604 | 604 | ||
605 | void TextEdit::findClose() | 605 | void TextEdit::findClose() |
606 | { | 606 | { |
607 | searchVisible = FALSE; | 607 | searchVisible = FALSE; |
608 | searchBar->hide(); | 608 | searchBar->hide(); |
609 | } | 609 | } |
610 | 610 | ||
611 | void TextEdit::search() | 611 | void TextEdit::search() |
612 | { | 612 | { |
613 | editor->find( searchEdit->text(), FALSE, FALSE ); | 613 | editor->find( searchEdit->text(), FALSE, FALSE ); |
614 | } | 614 | } |
615 | 615 | ||
616 | void TextEdit::newFile( const DocLnk &f ) | 616 | void TextEdit::newFile( const DocLnk &f ) |
617 | { | 617 | { |
618 | DocLnk nf = f; | 618 | DocLnk nf = f; |
619 | nf.setType("text/plain"); | 619 | nf.setType("text/plain"); |
620 | clear(); | 620 | clear(); |
621 | editorStack->raiseWidget( editor ); | 621 | editorStack->raiseWidget( editor ); |
622 | setWState (WState_Reserved1 ); | 622 | setWState (WState_Reserved1 ); |
623 | editor->setFocus(); | 623 | editor->setFocus(); |
624 | doc = new DocLnk(nf); | 624 | doc = new DocLnk(nf); |
625 | qDebug("newFile "+currentFileName); | 625 | qDebug("newFile "+currentFileName); |
626 | updateCaption(currentFileName); | 626 | updateCaption(currentFileName); |
627 | } | 627 | } |
628 | 628 | ||
629 | void TextEdit::openFile( const QString &f ) | 629 | void TextEdit::openFile( const QString &f ) |
630 | { | 630 | { |
631 | bFromDocView = TRUE; | 631 | bFromDocView = TRUE; |
632 | DocLnk nf; | 632 | DocLnk nf; |
633 | nf.setType("text/plain"); | 633 | nf.setType("text/plain"); |
634 | nf.setFile(f); | 634 | nf.setFile(f); |
635 | currentFileName=f; | 635 | currentFileName=f; |
636 | qDebug("openFile string"+currentFileName); | 636 | qDebug("openFile string"+currentFileName); |
637 | 637 | ||
638 | openFile(nf); | 638 | openFile(nf); |
639 | showEditTools(); | 639 | showEditTools(); |
640 | // Show filename in caption | 640 | // Show filename in caption |
641 | QString name = f; | 641 | QString name = f; |
642 | int sep = name.findRev( '/' ); | 642 | int sep = name.findRev( '/' ); |
643 | if ( sep > 0 ) | 643 | if ( sep > 0 ) |
644 | name = name.mid( sep+1 ); | 644 | name = name.mid( sep+1 ); |
645 | updateCaption( name ); | 645 | updateCaption( name ); |
646 | } | 646 | } |
647 | 647 | ||
648 | void TextEdit::openFile( const DocLnk &f ) | 648 | void TextEdit::openFile( const DocLnk &f ) |
649 | { | 649 | { |
650 | // clear(); | 650 | // clear(); |
651 | bFromDocView = TRUE; | 651 | bFromDocView = TRUE; |
652 | FileManager fm; | 652 | FileManager fm; |
653 | QString txt; | 653 | QString txt; |
654 | currentFileName=f.name(); | 654 | currentFileName=f.name(); |
655 | qDebug("openFile doclnk " + currentFileName); | 655 | qDebug("openFile doclnk " + currentFileName); |
656 | if ( !fm.loadFile( f, txt ) ) { | 656 | if ( !fm.loadFile( f, txt ) ) { |
657 | // ####### could be a new file | 657 | // ####### could be a new file |
658 | qDebug( "Cannot open file" ); | 658 | qDebug( "Cannot open file" ); |
659 | 659 | ||
660 | //return; | 660 | //return; |
661 | } | 661 | } |
662 | 662 | ||
663 | fileNew(); | 663 | fileNew(); |
664 | if ( doc ) | 664 | if ( doc ) |
665 | delete doc; | 665 | delete doc; |
666 | doc = new DocLnk(f); | 666 | doc = new DocLnk(f); |
667 | editor->setText(txt); | 667 | editor->setText(txt); |
668 | editor->setEdited( false); | 668 | editor->setEdited( false); |
669 | qDebug("openFile doclnk "+currentFileName); | 669 | qDebug("openFile doclnk "+currentFileName); |
670 | doc->setName(currentFileName); | 670 | doc->setName(currentFileName); |
671 | updateCaption(); | 671 | updateCaption(); |
672 | } | 672 | } |
673 | 673 | ||
674 | void TextEdit::showEditTools() | 674 | void TextEdit::showEditTools() |
675 | { | 675 | { |
676 | // if ( !doc ) | 676 | // if ( !doc ) |
677 | // close(); | 677 | // close(); |
678 | // clear(); | 678 | // clear(); |
679 | fileSelector->hide(); | 679 | fileSelector->hide(); |
680 | menu->show(); | 680 | menu->show(); |
681 | editBar->show(); | 681 | editBar->show(); |
682 | if ( searchVisible ) | 682 | if ( searchVisible ) |
683 | searchBar->show(); | 683 | searchBar->show(); |
684 | // updateCaption(); | 684 | // updateCaption(); |
685 | editorStack->raiseWidget( editor ); | 685 | editorStack->raiseWidget( editor ); |
686 | setWState (WState_Reserved1 ); | 686 | setWState (WState_Reserved1 ); |
687 | } | 687 | } |
688 | 688 | ||
689 | /*! | 689 | /*! |
690 | unprompted save */ | 690 | unprompted save */ |
691 | bool TextEdit::save() | 691 | bool TextEdit::save() |
692 | { | 692 | { |
693 | QString file = doc->file(); | 693 | QString file = doc->file(); |
694 | QString name= doc->name(); | 694 | QString name= doc->name(); |
695 | QString rt = editor->text(); | 695 | QString rt = editor->text(); |
696 | currentFileName= file ; | 696 | currentFileName= name ; |
697 | qDebug("saveFile "+currentFileName); | 697 | qDebug("saveFile "+currentFileName); |
698 | 698 | ||
699 | doc->setName( name); | 699 | doc->setName( name); |
700 | FileManager fm; | 700 | FileManager fm; |
701 | if ( !fm.saveFile( *doc, rt ) ) { | 701 | if ( !fm.saveFile( *doc, rt ) ) { |
702 | return false; | 702 | return false; |
703 | } | 703 | } |
704 | // if(doc) | 704 | // if(doc) |
705 | // delete doc; | 705 | // delete doc; |
706 | // doc = 0; | 706 | // doc = 0; |
707 | editor->setEdited( false ); | 707 | editor->setEdited( false ); |
708 | return true; | 708 | return true; |
709 | } | 709 | } |
710 | 710 | ||
711 | /*! | 711 | /*! |
712 | prompted save */ | 712 | prompted save */ |
713 | bool TextEdit::saveAs() | 713 | bool TextEdit::saveAs() |
714 | { | 714 | { |
715 | qDebug("saveAsFile "+currentFileName); | 715 | qDebug("saveAsFile "+currentFileName); |
716 | 716 | ||
717 | // case of nothing to save... /// there's always something to save | 717 | // case of nothing to save... /// there's always something to save |
718 | // if ( !doc )//|| !bFromDocView) | 718 | // if ( !doc )//|| !bFromDocView) |
719 | // { | 719 | // { |
720 | // qDebug("no doc"); | 720 | // qDebug("no doc"); |
721 | // return true; | 721 | // return true; |
722 | // } | 722 | // } |
723 | if ( !editor->edited() ) { | 723 | if ( !editor->edited() ) { |
724 | delete doc; | 724 | delete doc; |
725 | doc = 0; | 725 | doc = 0; |
726 | return true; | 726 | return true; |
727 | } | 727 | } |
728 | 728 | ||
729 | QString rt = editor->text(); | 729 | QString rt = editor->text(); |
730 | qDebug(currentFileName); | 730 | qDebug(currentFileName); |
731 | 731 | ||
732 | if( currentFileName.isEmpty() || currentFileName == "Unnamed") { | 732 | if( currentFileName.isEmpty() || currentFileName == "Unnamed") { |
733 | qDebug("do silly TT filename thing"); | 733 | qDebug("do silly TT filename thing"); |
734 | if ( doc->name().isEmpty() ) { | 734 | if ( doc->name().isEmpty() ) { |
735 | QString pt = rt.simplifyWhiteSpace(); | 735 | QString pt = rt.simplifyWhiteSpace(); |
736 | int i = pt.find( ' ' ); | 736 | int i = pt.find( ' ' ); |
737 | QString docname = pt; | 737 | QString docname = pt; |
738 | if ( i > 0 ) | 738 | if ( i > 0 ) |
739 | docname = pt.left( i ); | 739 | docname = pt.left( i ); |
740 | // remove "." at the beginning | 740 | // remove "." at the beginning |
741 | while( docname.startsWith( "." ) ) | 741 | while( docname.startsWith( "." ) ) |
742 | docname = docname.mid( 1 ); | 742 | docname = docname.mid( 1 ); |
743 | docname.replace( QRegExp("/"), "_" ); | 743 | docname.replace( QRegExp("/"), "_" ); |
744 | // cut the length. filenames longer than that don't make sense and something goes wrong when they get too long. | 744 | // cut the length. filenames longer than that don't make sense and something goes wrong when they get too long. |
745 | if ( docname.length() > 40 ) | 745 | if ( docname.length() > 40 ) |
746 | docname = docname.left(40); | 746 | docname = docname.left(40); |
747 | if ( docname.isEmpty() ) | 747 | if ( docname.isEmpty() ) |
748 | docname = "Unnamed"; | 748 | docname = "Unnamed"; |
749 | doc->setName(docname); | 749 | doc->setName(docname); |
750 | currentFileName=docname; | 750 | currentFileName=docname; |
751 | } | 751 | } |
752 | } | 752 | } |
753 | 753 | ||
754 | fileSaveDlg=new fileSaver(this,"SaveFile",TRUE,0, currentFileName); | 754 | fileSaveDlg=new fileSaver(this,"SaveFile",TRUE,0, currentFileName); |
755 | qDebug("wanna save filename "+currentFileName); | 755 | qDebug("wanna save filename "+currentFileName); |
756 | fileSaveDlg->exec(); | 756 | fileSaveDlg->exec(); |
757 | if( fileSaveDlg->result() == 1 ) { | 757 | if( fileSaveDlg->result() == 1 ) { |
758 | QString fileNm=fileSaveDlg->selectedFileName; | 758 | QString fileNm=fileSaveDlg->selectedFileName; |
759 | qDebug("saving filename "+fileNm); | 759 | qDebug("saving filename "+fileNm); |
760 | QFileInfo fi(fileNm); | 760 | QFileInfo fi(fileNm); |
761 | currentFileName=fi.fileName(); | 761 | currentFileName=fi.fileName(); |
762 | if(doc) { | 762 | if(doc) { |
763 | qDebug("doclnk exists"); | 763 | qDebug("doclnk exists"); |
764 | // QString file = doc->file(); | 764 | // QString file = doc->file(); |
765 | // doc->removeFiles(); | 765 | // doc->removeFiles(); |
766 | delete doc; | 766 | delete doc; |
767 | DocLnk nf; | 767 | DocLnk nf; |
768 | nf.setType("text/plain"); | 768 | nf.setType("text/plain"); |
769 | nf.setFile( fileNm); | 769 | nf.setFile( fileNm); |
770 | doc = new DocLnk(nf); | 770 | doc = new DocLnk(nf); |
771 | // editor->setText(rt); | 771 | // editor->setText(rt); |
772 | qDebug("openFile doclnk "+currentFileName); | 772 | qDebug("openFile doclnk "+currentFileName); |
773 | } | 773 | } |
774 | doc->setName( currentFileName); | 774 | doc->setName( currentFileName); |
775 | updateCaption( currentFileName); | 775 | updateCaption( currentFileName); |
776 | 776 | ||
777 | FileManager fm; | 777 | FileManager fm; |
778 | if ( !fm.saveFile( *doc, rt ) ) { | 778 | if ( !fm.saveFile( *doc, rt ) ) { |
779 | return false; | 779 | return false; |
780 | } | 780 | } |
781 | // delete doc; | 781 | // delete doc; |
782 | // doc = 0; | 782 | // doc = 0; |
783 | editor->setEdited( false ); | 783 | editor->setEdited( false ); |
784 | } | 784 | } |
785 | if(fileSaveDlg) | 785 | if(fileSaveDlg) |
786 | delete fileSaveDlg; | 786 | delete fileSaveDlg; |
787 | return true; | 787 | return true; |
788 | } | 788 | } |
789 | 789 | ||
790 | void TextEdit::clear() | 790 | void TextEdit::clear() |
791 | { | 791 | { |
792 | delete doc; | 792 | delete doc; |
793 | doc = 0; | 793 | doc = 0; |
794 | editor->clear(); | 794 | editor->clear(); |
795 | } | 795 | } |
796 | 796 | ||
797 | void TextEdit::updateCaption( const QString &name ) | 797 | void TextEdit::updateCaption( const QString &name ) |
798 | { | 798 | { |
799 | if ( !doc ) | 799 | if ( !doc ) |
800 | setCaption( tr("Text Editor") ); | 800 | setCaption( tr("Text Editor") ); |
801 | else { | 801 | else { |
802 | QString s = name; | 802 | QString s = name; |
803 | if ( s.isNull() ) | 803 | if ( s.isNull() ) |
804 | s = doc->name(); | 804 | s = doc->name(); |
805 | if ( s.isEmpty() ) { | 805 | if ( s.isEmpty() ) { |
806 | s = tr( "Unnamed" ); | 806 | s = tr( "Unnamed" ); |
807 | currentFileName=s; | 807 | currentFileName=s; |
808 | } | 808 | } |
809 | 809 | ||
810 | setCaption( s + " - " + tr("Text Editor") ); | 810 | setCaption( s + " - " + tr("Text Editor") ); |
811 | } | 811 | } |
812 | } | 812 | } |
813 | 813 | ||
814 | void TextEdit::setDocument(const QString& fileref) | 814 | void TextEdit::setDocument(const QString& fileref) |
815 | { | 815 | { |
816 | bFromDocView = TRUE; | 816 | bFromDocView = TRUE; |
817 | openFile(DocLnk(fileref)); | 817 | openFile(DocLnk(fileref)); |
818 | // showEditTools(); | 818 | // showEditTools(); |
819 | } | 819 | } |
820 | 820 | ||
821 | void TextEdit::closeEvent( QCloseEvent *e ) | 821 | void TextEdit::closeEvent( QCloseEvent *e ) |
822 | { | 822 | { |
823 | if ( editorStack->visibleWidget() == fileSelector && !bFromDocView ) { | 823 | if ( editorStack->visibleWidget() == fileSelector && !bFromDocView ) { |
824 | e->ignore(); | 824 | e->ignore(); |
825 | repaint(); | 825 | repaint(); |
826 | // fileRevert(); | 826 | // fileRevert(); |
827 | 827 | ||
828 | } else { | 828 | } else { |
829 | bFromDocView = FALSE; | 829 | bFromDocView = FALSE; |
830 | e->accept(); | 830 | e->accept(); |
831 | } | 831 | } |
832 | } | 832 | } |
833 | 833 | ||
834 | void TextEdit::accept() | 834 | void TextEdit::accept() |
835 | { | 835 | { |
836 | close(); | 836 | close(); |
837 | // fileOpen(); //godamn thats obnoxious! lemme out!!! | 837 | // fileOpen(); //godamn thats obnoxious! lemme out!!! |
838 | } | 838 | } |
839 | 839 | ||
840 | void TextEdit::changeFont() { | 840 | void TextEdit::changeFont() { |
841 | FontDatabase fdb; | 841 | FontDatabase fdb; |
842 | QFont defaultFont=editor->font(); | 842 | QFont defaultFont=editor->font(); |
843 | QFontInfo fontInfo(defaultFont); | 843 | QFontInfo fontInfo(defaultFont); |
844 | Config cfg("TextEdit"); | 844 | Config cfg("TextEdit"); |
845 | cfg.setGroup("Font"); | 845 | cfg.setGroup("Font"); |
846 | QString family = cfg.readEntry("Family", fontInfo.family()); | 846 | QString family = cfg.readEntry("Family", fontInfo.family()); |
847 | QString style = cfg.readEntry("Style", fdb.styleString(defaultFont)); | 847 | QString style = cfg.readEntry("Style", fdb.styleString(defaultFont)); |
848 | int i_size = cfg.readNumEntry("Size", fontInfo.pointSize()/10); | 848 | int i_size = cfg.readNumEntry("Size", fontInfo.pointSize()/10); |
849 | QString charSet = cfg.readEntry("CharSet", QFont::encodingName( fontInfo.charSet()) ); | 849 | QString charSet = cfg.readEntry("CharSet", QFont::encodingName( fontInfo.charSet()) ); |
850 | 850 | ||
851 | defaultFont = fdb.font(family,style,i_size,charSet); | 851 | defaultFont = fdb.font(family,style,i_size,charSet); |
852 | 852 | ||
853 | FontDialog *fontDlg; | 853 | FontDialog *fontDlg; |
854 | fontDlg=new FontDialog(this,"FontDialog",TRUE); | 854 | fontDlg=new FontDialog(this,"FontDialog",TRUE); |
855 | 855 | ||
856 | fontDlg->exec(); | 856 | fontDlg->exec(); |
857 | 857 | ||
858 | QFont myFont=fontDlg->selectedFont; | 858 | QFont myFont=fontDlg->selectedFont; |
859 | editor->setFont( myFont); | 859 | editor->setFont( myFont); |
860 | delete fontDlg; | 860 | delete fontDlg; |
861 | 861 | ||
862 | } | 862 | } |
863 | 863 | ||
864 | void TextEdit::editDelete() | 864 | void TextEdit::editDelete() |
865 | { | 865 | { |
866 | switch ( QMessageBox::warning(this,"Text Editor","Do you really want\nto delete the current file\nfrom the disk?\nThis is irreversable!!","Yes","No",0,0,1) ) { | 866 | switch ( QMessageBox::warning(this,"Text Editor","Do you really want\nto delete the current file\nfrom the disk?\nThis is irreversable!!","Yes","No",0,0,1) ) { |
867 | case 0: | 867 | case 0: |
868 | if(doc) { | 868 | if(doc) { |
869 | doc->removeFiles(); | 869 | doc->removeFiles(); |
870 | clear(); | 870 | clear(); |
871 | } | 871 | } |
872 | break; | 872 | break; |
873 | case 1: | 873 | case 1: |
874 | // exit | 874 | // exit |
875 | break; | 875 | break; |
876 | }; | 876 | }; |
877 | } | 877 | } |