mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
73 lines
2.4 KiB
C++
73 lines
2.4 KiB
C++
// SPDX-FileCopyrightText: 2021 Ernie Pasveer <epasveer@att.net>
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
#include <QtWidgets/QTabWidget>
|
|
#include <QtWidgets/QPushButton>
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QList>
|
|
|
|
struct QDetachTabInfo {
|
|
|
|
QString _title;
|
|
QWidget* _widget;
|
|
QWidget* _placeholderWidget;
|
|
|
|
QDetachTabInfo(QString title, QWidget* widget, QWidget* placeholderWidget) : _title(title), _widget(widget), _placeholderWidget(placeholderWidget) {}
|
|
};
|
|
|
|
|
|
class QDetachTabWidget : public QTabWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QDetachTabWidget(QWidget* parent = 0);
|
|
|
|
bool isDetached (int tabIndex) const;
|
|
QWidget* tabWidget (int tabIndex) const;
|
|
|
|
public slots:
|
|
void detachTab (int tabIndex, bool minimized=false);
|
|
void reattachTab (int tabIndex);
|
|
|
|
signals:
|
|
void tabDetached (int tabIndex);
|
|
void tabDetached (QWidget* widget);
|
|
void tabReattached (int tabIndex);
|
|
void tabReattached (QWidget* widget);
|
|
|
|
protected:
|
|
void closeEvent (QCloseEvent* e);
|
|
|
|
protected slots:
|
|
void handleShowContextMenu (const QPoint& point);
|
|
void handleTabClosedRequested (int tabIndex);
|
|
|
|
private:
|
|
QList<QDetachTabInfo>::iterator findWidget (QWidget* widget);
|
|
QList<QDetachTabInfo>::iterator findPlaceholderWidget (QWidget* widget);
|
|
|
|
QList<QDetachTabInfo> _tabInfo;
|
|
};
|
|
|
|
class QDetachTabWidgetPlaceholder : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QDetachTabWidgetPlaceholder(int tabIndex, QWidget* parent = 0);
|
|
|
|
signals:
|
|
void reattach (int tabIndex);
|
|
|
|
protected slots:
|
|
void handlePushButtonClicked ();
|
|
|
|
private:
|
|
QPushButton* _reattachPushButton;
|
|
int _tabIndex;
|
|
};
|
|
|