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
|
2018-02-05 12:18:55 +01:00
|
|
|
|
2017-10-03 10:10:32 +02:00
|
|
|
public:
|
2018-02-05 12:18:55 +01:00
|
|
|
enum Option {
|
|
|
|
InvalidOption = 0,
|
|
|
|
HorizontalTabs = 1 << 0,
|
|
|
|
VerticalTabs = 1 << 1,
|
|
|
|
ShowCloseOtherTabsActions = 1 << 2,
|
2018-02-12 09:50:17 +01:00
|
|
|
ShowDetachTabAction = 1 << 3,
|
2018-02-05 12:18:55 +01:00
|
|
|
|
|
|
|
DefaultOptions = HorizontalTabs | ShowCloseOtherTabsActions
|
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(Options, Option)
|
|
|
|
|
|
|
|
explicit TabContextMenu(int index, BrowserWindow *window, Options options = DefaultOptions);
|
2017-10-03 10:10:32 +02:00
|
|
|
|
2018-02-25 13:33:07 +01:00
|
|
|
Q_SIGNALS:
|
2017-10-03 10:10:32 +02:00
|
|
|
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-02-12 09:50:17 +01:00
|
|
|
void detachTab(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
|
|
|
|
2018-02-25 13:33:07 +01:00
|
|
|
private Q_SLOTS:
|
2018-02-26 13:56:43 +01:00
|
|
|
void reloadTab() { Q_EMIT reloadTab(m_clickedTab); }
|
|
|
|
void stopTab() { Q_EMIT stopTab(m_clickedTab); }
|
|
|
|
void closeTab() { Q_EMIT tabCloseRequested(m_clickedTab); }
|
|
|
|
void duplicateTab() { Q_EMIT duplicateTab(m_clickedTab); }
|
|
|
|
void detachTab() { Q_EMIT detachTab(m_clickedTab); }
|
|
|
|
void loadTab() { Q_EMIT loadTab(m_clickedTab); }
|
|
|
|
void unloadTab() { Q_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;
|
2018-02-05 12:18:55 +01:00
|
|
|
BrowserWindow *m_window;
|
|
|
|
Options m_options = InvalidOption;
|
2017-10-03 10:10:32 +02:00
|
|
|
};
|
|
|
|
|
2018-02-12 09:50:17 +01:00
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(TabContextMenu::Options)
|
|
|
|
|
2017-10-03 10:10:32 +02:00
|
|
|
#endif // TABCONTEXTMENU_H
|