File indexing completed on 2024-04-28 07:44:09

0001 /*
0002     SPDX-FileCopyrightText: 2018 Kai Uwe Broulik <kde@privat.broulik.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KFILEWIDGETDOCKTITLEBAR_P_H
0008 #define KFILEWIDGETDOCKTITLEBAR_P_H
0009 
0010 #include <QWidget>
0011 
0012 namespace KDEPrivate
0013 {
0014 /**
0015  * @brief An empty title bar for the Places dock widget
0016  */
0017 class KFileWidgetDockTitleBar : public QWidget
0018 {
0019     Q_OBJECT
0020 
0021 public:
0022     explicit KFileWidgetDockTitleBar(QWidget *parent);
0023     ~KFileWidgetDockTitleBar() override;
0024 
0025     QSize minimumSizeHint() const override;
0026     QSize sizeHint() const override;
0027 };
0028 
0029 } // namespace KDEPrivate
0030 
0031 #endif // KFILEWIDGETDOCKTITLEBAR_P_H