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

62 lines
1.8 KiB
C
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
2011-10-17 09:57:07 +02:00
* Copyright (C) 2010-2011 David Rosca
2011-03-03 18:29:20 +01: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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
2011-03-02 16:57:41 +01:00
#ifndef WEBTAB_H
#define WEBTAB_H
#include <QWidget>
#include <QLayout>
#include <QWeakPointer>
2011-03-02 16:57:41 +01:00
#include "webview.h"
#include "locationbar.h"
2011-03-02 16:57:41 +01:00
class QupZilla;
class LocationBar;
2011-03-02 16:57:41 +01:00
class WebTab : public QWidget
{
Q_OBJECT
public:
explicit WebTab(QupZilla* mainClass, LocationBar* locationBar);
2011-03-02 16:57:41 +01:00
~WebTab();
WebView* view() { return m_view.data(); }
2011-03-25 19:16:21 +01:00
bool isPinned() { return m_pinned; }
void pinTab(int index);
void setPinned(bool state) { m_pinned = state; }
2011-03-02 16:57:41 +01:00
void setLocationBar(LocationBar* bar) { m_locationBar = bar; }
LocationBar* locationBar() { return m_locationBar.data(); }
bool inspectorVisible() { return m_inspectorVisible; }
void setInspectorVisible(bool v) { m_inspectorVisible = v; }
2011-03-02 16:57:41 +01:00
private slots:
void showNotification(QWidget* notif);
private:
2011-03-25 19:16:21 +01:00
int tabIndex();
2011-03-02 16:57:41 +01:00
QupZilla* p_QupZilla;
QWeakPointer<WebView> m_view;
2011-03-02 16:57:41 +01:00
QVBoxLayout* m_layout;
QWeakPointer<LocationBar> m_locationBar;
2011-03-25 19:16:21 +01:00
bool m_pinned;
bool m_inspectorVisible;
2011-03-02 16:57:41 +01:00
};
#endif // WEBTAB_H