mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 13:15:43 +08:00
4a8b5dd7ab
* Fix include header in sidebar example * Update SIP files and Python examples Co-authored-by: K Lauer <klauer@users.noreply.github.com> Co-authored-by: K Lauer <klauer@users.noreply.github.com>
27 lines
640 B
Plaintext
27 lines
640 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 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
|