mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 13:15:43 +08:00
48c4106b7f
* Update Python bindings * Add X11Extras to setup.py for Linux builds
98 lines
2.5 KiB
Plaintext
98 lines
2.5 KiB
Plaintext
// NOTE: there is a separate sip/linux/FloatingDockContainer.sip as the base
|
|
// class for CFloatingDockContainer changes for Linux.
|
|
|
|
%Import QtWidgets/QtWidgetsmod.sip
|
|
|
|
%If (Qt_5_0_0 -)
|
|
|
|
%If (WS_X11)
|
|
typedef QDockWidget tFloatingWidgetBase;
|
|
%End
|
|
%If (!WS_X11)
|
|
typedef QWidget tFloatingWidgetBase;
|
|
%End
|
|
|
|
namespace ads
|
|
{
|
|
|
|
class IFloatingWidget
|
|
{
|
|
%TypeHeaderCode
|
|
#include <FloatingDockContainer.h>
|
|
%End
|
|
|
|
public:
|
|
virtual void startFloating(const QPoint& DragStartMousePos, const QSize& Size,
|
|
ads::eDragState DragState, QWidget* MouseEventHandler) = 0;
|
|
|
|
virtual void moveFloating() = 0;
|
|
virtual void finishDragging() = 0;
|
|
virtual ~IFloatingWidget();
|
|
};
|
|
|
|
|
|
class CFloatingDockContainer : tFloatingWidgetBase, ads::IFloatingWidget
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
#include <FloatingDockContainer.h>
|
|
%End
|
|
|
|
protected:
|
|
virtual void startFloating(const QPoint& DragStartMousePos, const QSize& Size,
|
|
ads::eDragState DragState, QWidget* MouseEventHandler);
|
|
void startDragging(const QPoint& DragStartMousePos, const QSize& Size,
|
|
QWidget* MouseEventHandler);
|
|
virtual void finishDragging();
|
|
void initFloatingGeometry(const QPoint& DragStartMousePos, const QSize& Size);
|
|
void moveFloating();
|
|
bool restoreState(ads::CDockingStateReader& Stream, bool Testing);
|
|
void updateWindowTitle();
|
|
|
|
|
|
protected:
|
|
virtual void changeEvent(QEvent *event);
|
|
virtual void closeEvent(QCloseEvent *event);
|
|
virtual void hideEvent(QHideEvent *event);
|
|
virtual void showEvent(QShowEvent *event);
|
|
|
|
%If (WS_MACX)
|
|
virtual bool event(QEvent *e);
|
|
virtual void moveEvent(QMoveEvent *event);
|
|
%End
|
|
|
|
%If (WS_X11)
|
|
virtual void moveEvent(QMoveEvent *event);
|
|
virtual void resizeEvent(QResizeEvent *event);
|
|
%End
|
|
|
|
%If (WS_WIN)
|
|
virtual bool nativeEvent(const QByteArray &eventType, void *message, long *result);
|
|
%End
|
|
|
|
|
|
public:
|
|
CFloatingDockContainer(ads::CDockManager* DockManager /TransferThis/);
|
|
CFloatingDockContainer(ads::CDockAreaWidget* DockArea /TransferThis/);
|
|
CFloatingDockContainer(ads::CDockWidget* DockWidget /TransferThis/);
|
|
virtual ~CFloatingDockContainer();
|
|
ads::CDockContainerWidget* dockContainer() const;
|
|
bool isClosable() const;
|
|
bool hasTopLevelDockWidget() const;
|
|
ads::CDockWidget* topLevelDockWidget() const;
|
|
QList<ads::CDockWidget*> dockWidgets() const;
|
|
|
|
%If (WS_X11)
|
|
void onMaximizeRequest();
|
|
void showNormal(bool fixGeometry);
|
|
void showMaximized();
|
|
bool isMaximized() const;
|
|
void show();
|
|
bool hasNativeTitleBar();
|
|
%End
|
|
};
|
|
|
|
};
|
|
|
|
%End
|