2009-06-14 11:57:43 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-06-21 16:41:22 +02:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2009-06-14 11:57:43 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-06-14 11:57:43 +02:00
|
|
|
*/
|
|
|
|
|
2021-04-03 21:30:50 +02:00
|
|
|
#include "fileviewdialog.h"
|
|
|
|
|
2009-06-14 11:57:43 +02:00
|
|
|
#include <QByteArray>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QDialogButtonBox>
|
2022-02-02 16:17:28 +01:00
|
|
|
#include <QFile>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QIODevice>
|
2009-06-14 11:57:43 +02:00
|
|
|
#include <QMessageBox>
|
2010-07-17 21:34:07 +02:00
|
|
|
#include <QTextEdit>
|
2009-06-14 11:57:43 +02:00
|
|
|
|
2022-03-19 19:54:20 +01:00
|
|
|
#include "ui_fileview.h"
|
|
|
|
|
2009-07-02 18:46:26 +02:00
|
|
|
FileViewDialog::FileViewDialog(const QString &file,
|
2009-07-02 19:23:44 +02:00
|
|
|
const QString &title,
|
|
|
|
QWidget *parent)
|
2010-04-15 20:08:51 +02:00
|
|
|
: QDialog(parent)
|
2022-03-19 19:54:20 +01:00
|
|
|
, mUI(new Ui::Fileview)
|
2009-06-14 11:57:43 +02:00
|
|
|
{
|
2022-03-19 19:54:20 +01:00
|
|
|
mUI->setupUi(this);
|
2009-06-14 11:57:43 +02:00
|
|
|
|
|
|
|
|
2009-07-02 18:46:26 +02:00
|
|
|
setWindowTitle(title);
|
2022-03-19 19:54:20 +01:00
|
|
|
connect(mUI->mButtons, SIGNAL(accepted()), this, SLOT(accept()));
|
|
|
|
loadTextFile(file, mUI->mText);
|
|
|
|
}
|
|
|
|
|
|
|
|
FileViewDialog::~FileViewDialog()
|
|
|
|
{
|
|
|
|
delete mUI;
|
2009-06-14 11:57:43 +02:00
|
|
|
}
|
|
|
|
|
2017-07-28 11:31:42 +02:00
|
|
|
void FileViewDialog::loadTextFile(const QString &filename, QTextEdit *edit)
|
2009-06-14 11:57:43 +02:00
|
|
|
{
|
|
|
|
QFile file(filename);
|
2011-10-13 20:53:06 +02:00
|
|
|
if (!file.exists()) {
|
2009-07-02 10:32:29 +02:00
|
|
|
QString msg(tr("Could not find the file: %1"));
|
|
|
|
msg = msg.arg(filename);
|
|
|
|
|
2009-06-14 11:57:43 +02:00
|
|
|
QMessageBox msgbox(QMessageBox::Critical,
|
|
|
|
tr("Cppcheck"),
|
|
|
|
msg,
|
|
|
|
QMessageBox::Ok,
|
|
|
|
this);
|
|
|
|
msgbox.exec();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
file.open(QIODevice::ReadOnly | QIODevice::Text);
|
2011-10-13 20:53:06 +02:00
|
|
|
if (!file.isReadable()) {
|
2009-07-02 10:32:29 +02:00
|
|
|
QString msg(tr("Could not read the file: %1"));
|
|
|
|
msg = msg.arg(filename);
|
|
|
|
|
2009-06-14 11:57:43 +02:00
|
|
|
QMessageBox msgbox(QMessageBox::Critical,
|
|
|
|
tr("Cppcheck"),
|
|
|
|
msg,
|
|
|
|
QMessageBox::Ok,
|
|
|
|
this);
|
|
|
|
msgbox.exec();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
QByteArray filedata = file.readAll();
|
|
|
|
file.close();
|
|
|
|
|
2017-08-03 12:39:31 +02:00
|
|
|
edit->setPlainText(filedata);
|
2009-06-14 11:57:43 +02:00
|
|
|
}
|