mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-04-01 02:42:39 +08:00
Removed unimolemented superfluous function definitions
This commit is contained in:
parent
ac1879d5cb
commit
65600a4dcd
@ -103,13 +103,6 @@ protected:
|
|||||||
*/
|
*/
|
||||||
CAutoHideDockContainer* createAndSetupAutoHideContainer(SideBarLocation area, CDockWidget* DockWidget, int TabIndex = -1);
|
CAutoHideDockContainer* createAndSetupAutoHideContainer(SideBarLocation area, CDockWidget* DockWidget, int TabIndex = -1);
|
||||||
|
|
||||||
/**
|
|
||||||
* The funtion does the same like createAndSetupAutoHideContainer() but checks
|
|
||||||
* if the given DockWidget is pinnable. If it is not pinnable, the
|
|
||||||
* function returns a nullptr.
|
|
||||||
*/
|
|
||||||
CAutoHideDockContainer* createAutoHideContainerIfPinnable(SideBarLocation area, CDockWidget* DockWidget);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Helper function for creation of the root splitter
|
* Helper function for creation of the root splitter
|
||||||
*/
|
*/
|
||||||
|
@ -79,7 +79,6 @@ struct DockWidgetTabPrivate
|
|||||||
QSpacerItem* IconTextSpacer;
|
QSpacerItem* IconTextSpacer;
|
||||||
QPoint TabDragStartPosition;
|
QPoint TabDragStartPosition;
|
||||||
QSize IconSize;
|
QSize IconSize;
|
||||||
bool MousePressed = false;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Private data constructor
|
* Private data constructor
|
||||||
@ -373,7 +372,6 @@ void CDockWidgetTab::mousePressEvent(QMouseEvent* ev)
|
|||||||
if (ev->button() == Qt::LeftButton)
|
if (ev->button() == Qt::LeftButton)
|
||||||
{
|
{
|
||||||
ev->accept();
|
ev->accept();
|
||||||
d->MousePressed = true;
|
|
||||||
d->saveDragStartMousePosition(internal::globalPositionOf(ev));
|
d->saveDragStartMousePosition(internal::globalPositionOf(ev));
|
||||||
d->DragState = DraggingMousePressed;
|
d->DragState = DraggingMousePressed;
|
||||||
if (CDockManager::testConfigFlag(CDockManager::FocusHighlighting))
|
if (CDockManager::testConfigFlag(CDockManager::FocusHighlighting))
|
||||||
@ -394,7 +392,6 @@ void CDockWidgetTab::mouseReleaseEvent(QMouseEvent* ev)
|
|||||||
{
|
{
|
||||||
if (ev->button() == Qt::LeftButton)
|
if (ev->button() == Qt::LeftButton)
|
||||||
{
|
{
|
||||||
d->MousePressed = false;
|
|
||||||
auto CurrentDragState = d->DragState;
|
auto CurrentDragState = d->DragState;
|
||||||
d->GlobalDragStartMousePosition = QPoint();
|
d->GlobalDragStartMousePosition = QPoint();
|
||||||
d->DragStartMousePosition = QPoint();
|
d->DragStartMousePosition = QPoint();
|
||||||
|
@ -178,12 +178,6 @@ public:
|
|||||||
*/
|
*/
|
||||||
void setIconSize(const QSize& Size);
|
void setIconSize(const QSize& Size);
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns true, if the tab has been clicked and the mouse is currently
|
|
||||||
* pressed.
|
|
||||||
*/
|
|
||||||
bool mousePressed() const;
|
|
||||||
|
|
||||||
public Q_SLOTS:
|
public Q_SLOTS:
|
||||||
virtual void setVisible(bool visible) override;
|
virtual void setVisible(bool visible) override;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user