blob: 114a11b55f6b4b9c9e94ef805e1ff8d3371560c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/*
* SPDX-FileCopyrightText: 2010 Peter Penz <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef DOLPHIN_DOCK_WIDGET_H
#define DOLPHIN_DOCK_WIDGET_H
#include <QDockWidget>
/**
* @brief Extends QDockWidget to be able to get locked.
*/
class DolphinDockWidget : public QDockWidget
{
Q_OBJECT
public:
explicit DolphinDockWidget(const QString &title = QString(), QWidget *parent = nullptr, Qt::WindowFlags flags = {});
~DolphinDockWidget() override;
/**
* @param lock If \a lock is true, the title bar of the dock-widget will get hidden so
* that it is not possible for the user anymore to move or undock the dock-widget.
*/
void setLocked(bool lock);
bool isLocked() const;
private:
bool m_locked;
QWidget *m_dockTitleBar;
};
#endif
|