2009-06-14 11:57:43 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2019-09-01 11:49:43 +02:00
|
|
|
* Copyright (C) 2007-2019 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
|
|
|
*/
|
|
|
|
|
2009-06-24 22:49:38 +02:00
|
|
|
#ifndef FILEVIEW_DIALOG_H
|
|
|
|
#define FILEVIEW_DIALOG_H
|
2009-06-14 11:57:43 +02:00
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QString>
|
2009-07-02 18:46:26 +02:00
|
|
|
#include "ui_file.h"
|
2009-06-14 11:57:43 +02:00
|
|
|
|
2010-07-17 21:34:07 +02:00
|
|
|
class QWidget;
|
|
|
|
class QTextEdit;
|
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
2009-06-14 11:57:43 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief File view -dialog.
|
|
|
|
* This dialog shows text files. It is used for showing the license file and
|
|
|
|
* the authors list.
|
|
|
|
*
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class FileViewDialog : public QDialog {
|
2009-06-14 11:57:43 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2009-07-02 18:46:26 +02:00
|
|
|
FileViewDialog(const QString &file,
|
2009-07-02 19:23:44 +02:00
|
|
|
const QString &title,
|
2019-06-30 21:39:22 +02:00
|
|
|
QWidget *parent = nullptr);
|
2009-07-02 18:46:26 +02:00
|
|
|
|
2009-06-14 11:57:43 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Load text file contents to edit control.
|
|
|
|
*
|
|
|
|
* @param filename File to load.
|
|
|
|
* @param edit Control where to load the file contents.
|
|
|
|
*/
|
2017-07-28 11:31:42 +02:00
|
|
|
void loadTextFile(const QString &filename, QTextEdit *edit);
|
2009-07-02 18:46:26 +02:00
|
|
|
|
|
|
|
Ui::Fileview mUI;
|
2009-06-14 11:57:43 +02:00
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-06-24 22:49:38 +02:00
|
|
|
#endif // FILEVIEW_DIALOG_H
|