author | llornkcor <llornkcor> | 2002-10-19 01:26:49 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-10-19 01:26:49 (UTC) |
commit | 7871e87fbd796c57374b23ec91890962b2ef1fe9 (patch) (unidiff) | |
tree | bc6cb8493540674ce18bfc017637108d10906cbf | |
parent | a0ea0e7ff2fad769a92136edc1a7381692e7739f (diff) | |
download | opie-7871e87fbd796c57374b23ec91890962b2ef1fe9.zip opie-7871e87fbd796c57374b23ec91890962b2ef1fe9.tar.gz opie-7871e87fbd796c57374b23ec91890962b2ef1fe9.tar.bz2 |
default fileopen to docs dir
-rw-r--r-- | core/apps/textedit/textedit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index 35f9d3c..209c5de 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp | |||
@@ -526,33 +526,33 @@ void TextEdit::fileNew() { | |||
526 | // } | 526 | // } |
527 | newFile(DocLnk()); | 527 | newFile(DocLnk()); |
528 | } | 528 | } |
529 | 529 | ||
530 | void TextEdit::fileOpen() { | 530 | void TextEdit::fileOpen() { |
531 | Config cfg("TextEdit"); | 531 | Config cfg("TextEdit"); |
532 | cfg.setGroup("View"); | 532 | cfg.setGroup("View"); |
533 | // bool b=FALSE; | 533 | // bool b=FALSE; |
534 | 534 | ||
535 | QMap<QString, QStringList> map; | 535 | QMap<QString, QStringList> map; |
536 | map.insert(tr("All"), QStringList() ); | 536 | map.insert(tr("All"), QStringList() ); |
537 | QStringList text; | 537 | QStringList text; |
538 | text << "text/*"; | 538 | text << "text/*"; |
539 | map.insert(tr("Text"), text ); | 539 | map.insert(tr("Text"), text ); |
540 | text << "*"; | 540 | text << "*"; |
541 | map.insert(tr("All"), text ); | 541 | map.insert(tr("All"), text ); |
542 | QString str = OFileDialog::getOpenFileName( 2,"/", QString::null, map); | 542 | QString str = OFileDialog::getOpenFileName( 2, QPEApplication::documentDir(), QString::null, map); |
543 | if(!str.isEmpty() ) | 543 | if(!str.isEmpty() ) |
544 | openFile( str ); | 544 | openFile( str ); |
545 | 545 | ||
546 | } | 546 | } |
547 | 547 | ||
548 | void TextEdit::doSearchBar() { | 548 | void TextEdit::doSearchBar() { |
549 | Config cfg("TextEdit"); | 549 | Config cfg("TextEdit"); |
550 | cfg.setGroup("View"); | 550 | cfg.setGroup("View"); |
551 | if(cfg.readEntry("SearchBar","Closed") != "Opened") | 551 | if(cfg.readEntry("SearchBar","Closed") != "Opened") |
552 | searchBar->hide(); | 552 | searchBar->hide(); |
553 | } | 553 | } |
554 | 554 | ||
555 | #if 0 | 555 | #if 0 |
556 | void TextEdit::slotFind() { | 556 | void TextEdit::slotFind() { |
557 | FindDialog frmFind( tr("Text Editor"), this ); | 557 | FindDialog frmFind( tr("Text Editor"), this ); |
558 | connect( &frmFind, SIGNAL(signalFindClicked(const QString &, bool, bool, int)), | 558 | connect( &frmFind, SIGNAL(signalFindClicked(const QString &, bool, bool, int)), |
@@ -801,33 +801,33 @@ bool TextEdit::saveAs() { | |||
801 | docname = docname.left(40); | 801 | docname = docname.left(40); |
802 | if ( docname.isEmpty() ) | 802 | if ( docname.isEmpty() ) |
803 | docname = tr("Unnamed"); | 803 | docname = tr("Unnamed"); |
804 | doc->setName(docname); | 804 | doc->setName(docname); |
805 | currentFileName=docname; | 805 | currentFileName=docname; |
806 | } | 806 | } |
807 | } | 807 | } |
808 | 808 | ||
809 | QMap<QString, QStringList> map; | 809 | QMap<QString, QStringList> map; |
810 | map.insert(tr("All"), QStringList() ); | 810 | map.insert(tr("All"), QStringList() ); |
811 | QStringList text; | 811 | QStringList text; |
812 | text << "text/*"; | 812 | text << "text/*"; |
813 | map.insert(tr("Text"), text ); | 813 | map.insert(tr("Text"), text ); |
814 | text << "*"; | 814 | text << "*"; |
815 | map.insert(tr("All"), text ); | 815 | map.insert(tr("All"), text ); |
816 | 816 | ||
817 | QString str = OFileDialog::getSaveFileName( 2,"/", QString::null, map); | 817 | QString str = OFileDialog::getSaveFileName( 2,QPEApplication::documentDir(), QString::null, map); |
818 | 818 | ||
819 | if(!str.isEmpty() ) { | 819 | if(!str.isEmpty() ) { |
820 | QString fileNm=str; | 820 | QString fileNm=str; |
821 | 821 | ||
822 | qDebug("saving filename "+fileNm); | 822 | qDebug("saving filename "+fileNm); |
823 | QFileInfo fi(fileNm); | 823 | QFileInfo fi(fileNm); |
824 | currentFileName=fi.fileName(); | 824 | currentFileName=fi.fileName(); |
825 | if(doc) { | 825 | if(doc) { |
826 | // QString file = doc->file(); | 826 | // QString file = doc->file(); |
827 | // doc->removeFiles(); | 827 | // doc->removeFiles(); |
828 | delete doc; | 828 | delete doc; |
829 | DocLnk nf; | 829 | DocLnk nf; |
830 | nf.setType("text/plain"); | 830 | nf.setType("text/plain"); |
831 | nf.setFile( fileNm); | 831 | nf.setFile( fileNm); |
832 | doc = new DocLnk(nf); | 832 | doc = new DocLnk(nf); |
833 | // editor->setText(rt); | 833 | // editor->setText(rt); |