mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
4d2de7bb2a
* FIX: Update python bindings for 3.4.2.
* FIX: Try to fix windows build.
* FIX: Add const at nativeEvent argument.
* FIX: Adjusting sip bindings for changes from 8b6df4aaa5
.
61 lines
981 B
Plaintext
61 lines
981 B
Plaintext
%Import QtWidgets/QtWidgetsmod.sip
|
|
|
|
%If (Qt_5_0_0 -)
|
|
|
|
namespace ads
|
|
{
|
|
%TypeHeaderCode
|
|
#include <ads_globals.h>
|
|
%End
|
|
|
|
enum DockWidgetArea
|
|
{
|
|
NoDockWidgetArea,
|
|
LeftDockWidgetArea,
|
|
RightDockWidgetArea,
|
|
TopDockWidgetArea,
|
|
BottomDockWidgetArea,
|
|
CenterDockWidgetArea,
|
|
|
|
InvalidDockWidgetArea,
|
|
OuterDockAreas,
|
|
AllDockAreas
|
|
};
|
|
typedef QFlags<ads::DockWidgetArea> DockWidgetAreas;
|
|
|
|
|
|
enum TitleBarButton
|
|
{
|
|
TitleBarButtonTabsMenu,
|
|
TitleBarButtonUndock,
|
|
TitleBarButtonClose
|
|
};
|
|
|
|
enum eDragState
|
|
{
|
|
DraggingInactive,
|
|
DraggingMousePressed,
|
|
DraggingTab,
|
|
DraggingFloatingWidget
|
|
};
|
|
|
|
enum eIcon
|
|
{
|
|
TabCloseIcon,
|
|
DockAreaMenuIcon,
|
|
DockAreaUndockIcon,
|
|
DockAreaCloseIcon,
|
|
|
|
IconCount,
|
|
};
|
|
|
|
enum eBitwiseOperator
|
|
{
|
|
BitwiseAnd,
|
|
BitwiseOr
|
|
};
|
|
|
|
};
|
|
|
|
%End
|