1 | /* |
2 | SPDX-FileCopyrightText: 2018 Kai Uwe Broulik <kde@privat.broulik.de> |
3 | |
4 | SPDX-License-Identifier: LGPL-2.0-or-later |
5 | */ |
6 | |
7 | #ifndef KFILEWIDGETDOCKTITLEBAR_P_H |
8 | #define KFILEWIDGETDOCKTITLEBAR_P_H |
9 | |
10 | #include <QWidget> |
11 | |
12 | namespace KDEPrivate |
13 | { |
14 | /*! |
15 | * An empty title bar for the Places dock widget |
16 | * \internal |
17 | */ |
18 | class KFileWidgetDockTitleBar : public QWidget |
19 | { |
20 | Q_OBJECT |
21 | |
22 | public: |
23 | explicit KFileWidgetDockTitleBar(QWidget *parent); |
24 | ~KFileWidgetDockTitleBar() override; |
25 | |
26 | QSize minimumSizeHint() const override; |
27 | QSize sizeHint() const override; |
28 | }; |
29 | |
30 | } // namespace KDEPrivate |
31 | |
32 | #endif // KFILEWIDGETDOCKTITLEBAR_P_H |
33 | |