mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 13:15:43 +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>
28 lines
733 B
Plaintext
28 lines
733 B
Plaintext
%If (Qt_5_0_0 -)
|
|
|
|
namespace ads
|
|
{
|
|
|
|
class CDockComponentsFactory
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
#include <DockComponentsFactory.h>
|
|
%End
|
|
|
|
public:
|
|
virtual ~CDockComponentsFactory();
|
|
virtual CDockWidgetTab* createDockWidgetTab(CDockWidget* DockWidget /Transfer/ ) const;
|
|
virtual CAutoHideTab* createDockWidgetSideTab(CDockWidget* DockWidget /Transfer/) const;
|
|
virtual CDockAreaTabBar* createDockAreaTabBar(CDockAreaWidget* DockArea /Transfer/ ) const;
|
|
virtual CDockAreaTitleBar* createDockAreaTitleBar(CDockAreaWidget* DockArea /Transfer/ ) const;
|
|
static const CDockComponentsFactory* factory();
|
|
static void setFactory(CDockComponentsFactory* Factory /KeepReference/);
|
|
static void resetDefaultFactory();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
%End
|