mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
48c4106b7f
* Update Python bindings * Add X11Extras to setup.py for Linux builds
28 lines
483 B
Plaintext
28 lines
483 B
Plaintext
%Import QtWidgets/QtWidgetsmod.sip
|
|
|
|
%If (Qt_5_0_0 -)
|
|
|
|
namespace ads
|
|
{
|
|
|
|
class CDockSplitter : QSplitter
|
|
{
|
|
%TypeHeaderCode
|
|
#include <DockSplitter.h>
|
|
%End
|
|
|
|
public:
|
|
CDockSplitter(QWidget *parent /TransferThis/ = 0);
|
|
CDockSplitter(Qt::Orientation orientation, QWidget *parent /TransferThis/ = 0);
|
|
virtual ~CDockSplitter();
|
|
bool hasVisibleContent() const;
|
|
QWidget* firstWidget() const;
|
|
QWidget* lastWidget() const;
|
|
bool isResizingWithContainer() const;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
%End
|