1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 10:42:11 +02:00
falkonOfficial/src/other/sourceviewer.h

33 lines
516 B
C
Raw Normal View History

2011-03-02 16:57:41 +01:00
#ifndef SOURCEVIEWER_H
#define SOURCEVIEWER_H
#if defined(QT_NO_DEBUG) & !defined(QT_NO_DEBUG_OUTPUT)
#define QT_NO_DEBUG_OUTPUT
#endif
#include <QWidget>
#include <QBoxLayout>
#include <QTextEdit>
#include <QApplication>
class QupZilla;
class SourceViewer : public QWidget
{
Q_OBJECT
public:
explicit SourceViewer(QupZilla* mainClass, QWidget *parent = 0);
signals:
public slots:
private:
QupZilla* p_QupZilla;
QBoxLayout* m_layout;
QTextEdit* m_sourceEdit;
};
#endif // SOURCEVIEWER_H