dolphin/src/dolphindockwidget.h
Elvis Angelaccio 954e8c4790 Output of licensedigger + manual cleanup afterwards.
Unfortunately licensedigger does not strip the trailing * characters.
While at it, use a common style for all source files.
2020-08-25 17:07:38 +00:00

36 lines
832 B
C++

/*
* SPDX-FileCopyrightText: 2010 Peter Penz <peter.penz19@gmail.com>
*
* 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