You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepowersave/src/logviewer.cpp

129 lines
3.8 KiB

/***************************************************************************
* Copyright (C) 2007 by Danny Kukawka *
* <dkukawka@suse.de>, <danny.kukawka@web.de> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License *
* as published by the Free Software Foundation. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
/*! \file logviewer.cpp
* \brief In this file can be found the LogViewer related code.
* \author Danny Kukawka, <dkukawka@suse.de>, <danny.kukawka@web.de>
* \version 0.0.1
* \date 2007
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
// TQt header
#include <tqfile.h>
#include <tqtextstream.h>
// KDE header
#include <ktextedit.h>
#include <tdelocale.h>
#include <tdefiledialog.h>
#include <tdemessagebox.h>
// own header
#include "logviewer.h"
/*! This is the default constructor of the class LogViewer. */
LogViewer::LogViewer( TQString filename, TQWidget *parent, const char *name)
:log_viewer(parent, name, false, WDestructiveClose ) {
this->setCaption(i18n("TDEPowersave Logfile Viewer: %1").arg(filename));
if (!TQFile::exists ( filename ))
return;
log_file = filename;
TQFile file (log_file);
if (file.open(IO_ReadOnly)) {
TQTextStream stream ( &file );
kTextEdit->setText (stream.read());
kTextEdit->setReadOnly(true);
}
file.close();
}
/*! This is the default destructor of the class LogViewer. */
LogViewer::~LogViewer(){
// no need to delete child widgets, TQt does it all for us
}
/*!
* Slot called if the user click on 'Close' Button
*/
void LogViewer::pB_close_clicked() {
close();
}
/*!
* Slot called if the user click on 'Save As ...' Button
*/
void LogViewer::pB_save_clicked() {
TQString sFileName;
bool tryagain = true;
while (tryagain == true) {
int answer;
TQString msg;
sFileName = KFileDialog::getSaveFileName( TQDir::homeDirPath() );
TQFileInfo info (sFileName);
if (TQFile::exists(sFileName) && info.isWritable() && info.isReadable() && info.isFile()) {
msg = i18n("File already exist. Overwrite the file?");
answer = KMessageBox::questionYesNo(this, msg , i18n("Error while save logfile"));
if (answer == KMessageBox::Yes) {
tryagain = false;
}
} else if (TQFile::exists(sFileName)) {
msg = i18n("File already exist.");
answer = KMessageBox::warningContinueCancel(this, msg ,
i18n("Error while save logfile"),
i18n("Try other filename ..."));
if (answer == KMessageBox::Cancel) {
tryagain = false;
return;
}
} else {
tryagain = false;
}
}
TQFile in(log_file);
TQFile out(sFileName);
if (in.open(IO_ReadOnly)) {
if (out.open(IO_WriteOnly)) {
TQByteArray input(4096);
long l = 0;
while (!in.atEnd()) {
l = in.readLine(input.data(), 4096);
out.writeBlock(input, l);
}
out.close();
}
in.close();
}
}
#include "logviewer.moc"