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

62 lines
1.7 KiB
C
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2011 David Rosca <nowrep@gmail.com>
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();
bool isPinned();
2011-03-25 19:16:21 +01:00
void pinTab(int index);
void setPinned(bool state);
2011-03-02 16:57:41 +01:00
void setLocationBar(LocationBar* bar);
LocationBar* locationBar();
bool inspectorVisible();
void setInspectorVisible(bool 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