-rw-r--r-- | core/apps/textedit/textedit.cpp | 28 | ||||
-rw-r--r-- | core/apps/textedit/textedit.h | 2 |
2 files changed, 27 insertions, 3 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index 84888c1..19449cb 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp @@ -349,8 +349,10 @@ TextEdit::TextEdit( QWidget *parent, const char *name, WFlags f ) nStart = new QAction( tr("Start with new file"), QString::null, 0, this, 0 ); connect( nStart, SIGNAL( toggled(bool) ), this, SLOT( changeStartConfig(bool) ) ); nStart->setToggleAction(TRUE); nStart->addTo( font ); + font->insertSeparator(); + font->insertItem(tr("About"), this, SLOT( doAbout()) ); mb->insertItem( tr( "File" ), file ); mb->insertItem( tr( "Edit" ), edit ); mb->insertItem( tr( "View" ), font ); @@ -411,8 +413,9 @@ TextEdit::TextEdit( QWidget *parent, const char *name, WFlags f ) fileNew(); } else { fileOpen(); } + viewSelection = cfg.readNumEntry( "FileView", 0 ); } void TextEdit::cleanUp() @@ -529,9 +532,9 @@ void TextEdit::fileOpen() QString fileName = fileTemp; if( fileName != "Unnamed" || fileName != "Empty Text" ) { currentFileName = fileName; qDebug("please open "+currentFileName); - openFile(str ); + openFile(currentFileName ); } } viewSelection = browseForFiles->SelectionCombo->currentItem(); } @@ -662,10 +665,12 @@ void TextEdit::openFile( const QString &f ) DocLnk sf(f); filer = sf.file(); break; } - } else + } else { filer = f; + fileIs = TRUE; + } DocLnk nf; nf.setType("text/plain"); nf.setFile(filer); @@ -741,14 +746,25 @@ bool TextEdit::save() struct stat buf; mode_t mode; stat(file.latin1(), &buf); mode = buf.st_mode; - + if(!fileIs) { doc->setName( name); FileManager fm; if ( !fm.saveFile( *doc, rt ) ) { return false; } + } else { + qDebug("regular save file"); + QFile f(file); + if( f.open(IO_WriteOnly)) { + f.writeBlock(rt,rt.length()); + } else { + QMessageBox::message("Text Edit","Write Failed"); + return false; + } + + } editor->setEdited( FALSE); edited1=FALSE; edited=FALSE; if(caption().left(1)=="*") @@ -968,4 +984,10 @@ void TextEdit::receive(const QCString&msg, const QByteArray&) { qDebug("bugger all"); } } +void TextEdit::doAbout() { + QMessageBox::about(0,"Text Edit","Text Edit is copyright\n" + "2000 Trolltech AS, and\n" + "2002 by L.J.Potter \nljp@llornkcor.com\n" + "and is licensed under the GPL"); +} diff --git a/core/apps/textedit/textedit.h b/core/apps/textedit/textedit.h index edc6fe3..9d27ab0 100644 --- a/core/apps/textedit/textedit.h +++ b/core/apps/textedit/textedit.h @@ -64,11 +64,13 @@ public: public slots: void editorChanged(); void receive(const QCString&, const QByteArray&); protected: + bool fileIs; void closeEvent( QCloseEvent *e ); void doSearchBar(); private slots: + void doAbout(); void setDocument(const QString&); void changeFont(); void fileNew(); void fileRevert(); |