mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
8cc9cc25ad
* FIX: Add Q_OS_MACOS flag to moc compiler. * (Python) Demo and example from @n-elie. * FIX: Addressing some sip files that were inconsistent with the header files. * (Python) Addressing comments by @n-elie and switching to use WS_X11 for platform checks. * (Python) Wrap definition of tFloatingWidgetBase to avoid 'Already Defined' error and fix include path for sip/linux/FloatingWidgetTitleBar.sip. * Remove simple.py * Fix case sensitive ui file loading in Linux * Add windows case in get_moc_args * Remove conda recipe Co-authored-by: n-elie <40382614+n-elie@users.noreply.github.com>
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
%Import QtWidgets/QtWidgetsmod.sip
|
|
|
|
%If (Qt_5_0_0 -)
|
|
|
|
namespace ads
|
|
{
|
|
|
|
class CDockWidgetTab : QFrame
|
|
{
|
|
%TypeHeaderCode
|
|
#include <DockWidgetTab.h>
|
|
%End
|
|
|
|
protected:
|
|
virtual void mousePressEvent(QMouseEvent* ev);
|
|
virtual void mouseReleaseEvent(QMouseEvent* ev);
|
|
virtual void mouseMoveEvent(QMouseEvent* ev);
|
|
virtual void contextMenuEvent(QContextMenuEvent* ev);
|
|
virtual void mouseDoubleClickEvent(QMouseEvent *event);
|
|
|
|
public:
|
|
CDockWidgetTab(ads::CDockWidget* DockWidget /TransferThis/, QWidget* parent /TransferThis/ = 0);
|
|
virtual ~CDockWidgetTab();
|
|
bool isActiveTab() const;
|
|
void setActiveTab(bool active);
|
|
void setDockAreaWidget(ads::CDockAreaWidget* DockArea /Transfer/);
|
|
ads::CDockAreaWidget* dockAreaWidget() const;
|
|
ads::CDockWidget* dockWidget() const;
|
|
void setIcon(const QIcon& Icon);
|
|
const QIcon& icon() const;
|
|
QString text() const;
|
|
void setText(const QString& title);
|
|
bool isTitleElided() const;
|
|
bool isClosable() const;
|
|
virtual bool event(QEvent *e);
|
|
|
|
|
|
public slots:
|
|
virtual void setVisible(bool visible);
|
|
|
|
signals:
|
|
void activeTabChanged();
|
|
void clicked();
|
|
void closeRequested();
|
|
void closeOtherTabsRequested();
|
|
void moved(const QPoint& GlobalPos);
|
|
void elidedChanged(bool elided);
|
|
}; // class DockWidgetTab
|
|
};
|
|
// namespace ads
|
|
|
|
%End
|