mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
db16c5f1b5
* start adaption of PyQt5 bindings to Qt-ADS 4.0 * Update PyQt bindings * Fix Python bindings build on Linux --------- Co-authored-by: Mira Weller <mweller@seemoo.tu-darmstadt.de>
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
%Import QtWidgets/QtWidgetsmod.sip
|
|
|
|
%If (Qt_5_0_0 -)
|
|
|
|
namespace ads
|
|
{
|
|
|
|
class CDockAreaTitleBar : QFrame
|
|
{
|
|
%TypeHeaderCode
|
|
#include <DockAreaTitleBar.h>
|
|
%End
|
|
|
|
protected:
|
|
virtual void mousePressEvent(QMouseEvent* ev);
|
|
virtual void mouseReleaseEvent(QMouseEvent* ev);
|
|
virtual void mouseMoveEvent(QMouseEvent* ev);
|
|
virtual void mouseDoubleClickEvent(QMouseEvent *event);
|
|
virtual void contextMenuEvent(QContextMenuEvent *event);
|
|
|
|
public slots:
|
|
void markTabsMenuOutdated();
|
|
|
|
|
|
public:
|
|
CDockAreaTitleBar(ads::CDockAreaWidget* parent /TransferThis/);
|
|
virtual ~CDockAreaTitleBar();
|
|
ads::CDockAreaTabBar* tabBar() const;
|
|
QAbstractButton* button(ads::TitleBarButton which) const;
|
|
ads::CElidingLabel* autoHideTitleLabel() const;
|
|
void updateDockWidgetActionsButtons();
|
|
virtual void setVisible(bool Visible);
|
|
void insertWidget(int index, QWidget *widget /Transfer/ );
|
|
int indexOf(QWidget *widget) const;
|
|
QString titleBarButtonToolTip(ads::TitleBarButton Button) const;
|
|
|
|
|
|
signals:
|
|
void tabBarClicked(int index);
|
|
};
|
|
|
|
};
|
|
|
|
%End
|