1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/webview/webtab.h
2011-03-02 16:57:41 +01:00

28 lines
476 B
C++

#ifndef WEBTAB_H
#define WEBTAB_H
#include <QWidget>
#include <QLayout>
#include <QPointer>
#include "webview.h"
class QupZilla;
class WebTab : public QWidget
{
Q_OBJECT
public:
explicit WebTab(QupZilla* mainClass, QWidget *parent = 0);
~WebTab();
WebView* view() { return m_view; }
private slots:
void showNotification(QWidget* notif);
private:
QupZilla* p_QupZilla;
QPointer<WebView> m_view;
QVBoxLayout* m_layout;
};
#endif // WEBTAB_H