mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 02:00:43 +00:00
25 lines
576 B
C++
25 lines
576 B
C++
/* OSCAR
|
|
*
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file COPYING in the main directory of the source code
|
|
* for more details. */
|
|
|
|
#ifndef MYTEXTBROWSER_H
|
|
#define MYTEXTBROWSER_H
|
|
|
|
#include <QTextBrowser>
|
|
|
|
class MyTextBrowser:public QTextBrowser
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MyTextBrowser(QWidget * parent):QTextBrowser(parent) {}
|
|
virtual ~MyTextBrowser() {}
|
|
virtual QVariant loadResource(int type, const QUrl &url) Q_DECL_OVERRIDE;
|
|
};
|
|
|
|
|
|
#endif // MYTEXTBROWSER_H
|