2017-10-03 10:10:32 +02:00
|
|
|
/* ============================================================
|
|
|
|
* Falkon - Qt web browser
|
2018-01-01 15:19:53 +01:00
|
|
|
* Copyright (C) 2010-2018 David Rosca <nowrep@gmail.com>
|
2017-10-03 10:10:32 +02: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/>.
|
|
|
|
* ============================================================ */
|
|
|
|
#ifndef TABCONTEXTMENU_H
|
|
|
|
#define TABCONTEXTMENU_H
|
|
|
|
|
|
|
|
#include <QMenu>
|
|
|
|
|
|
|
|
#include "qzcommon.h"
|
|
|
|
|
2018-02-01 20:33:29 +01:00
|
|
|
class BrowserWindow;
|
2018-02-05 11:50:50 +01:00
|
|
|
class TabWidget;
|
2017-10-03 10:10:32 +02:00
|
|
|
|
|
|
|
class FALKON_EXPORT TabContextMenu : public QMenu
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2018-02-05 11:50:50 +01:00
|
|
|
explicit TabContextMenu(int index, Qt::Orientation orientation, BrowserWindow* window, TabWidget* tabWidget, bool showCloseOtherTabs = true);
|
2017-10-03 10:10:32 +02:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void reloadTab(int index);
|
|
|
|
void stopTab(int index);
|
|
|
|
void tabCloseRequested(int index);
|
|
|
|
void closeAllButCurrent(int index);
|
|
|
|
void closeToRight(int index);
|
|
|
|
void closeToLeft(int index);
|
|
|
|
void duplicateTab(int index);
|
2018-01-28 21:53:38 +01:00
|
|
|
void loadTab(int index);
|
2018-01-23 17:02:51 +01:00
|
|
|
void unloadTab(int index);
|
2017-10-03 10:10:32 +02:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void reloadTab() { emit reloadTab(m_clickedTab); }
|
|
|
|
void stopTab() { emit stopTab(m_clickedTab); }
|
|
|
|
void closeTab() { emit tabCloseRequested(m_clickedTab); }
|
|
|
|
void duplicateTab() { emit duplicateTab(m_clickedTab); }
|
2018-01-28 21:53:38 +01:00
|
|
|
void loadTab() { emit loadTab(m_clickedTab); }
|
2018-01-23 17:02:51 +01:00
|
|
|
void unloadTab() { emit unloadTab(m_clickedTab); }
|
2017-10-03 10:10:32 +02:00
|
|
|
|
|
|
|
void pinTab();
|
|
|
|
void muteTab();
|
|
|
|
|
|
|
|
void closeAllButCurrent();
|
|
|
|
void closeToRight();
|
|
|
|
void closeToLeft();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void init();
|
|
|
|
|
|
|
|
int m_clickedTab;
|
|
|
|
Qt::Orientation m_tabsOrientation;
|
|
|
|
BrowserWindow* m_window;
|
|
|
|
TabWidget* m_tabWidget;
|
2017-10-03 10:34:47 +02:00
|
|
|
bool m_showCloseOtherTabs;
|
2017-10-03 10:10:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TABCONTEXTMENU_H
|