mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-16 05:35:43 +08:00
4adef2b774
* FIX: dropWidget API change not reflected in Python bindings * Add missing methods to Python bindings (3.2.4)
27 lines
441 B
Plaintext
27 lines
441 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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
%End
|