Krita Source Code Documentation
Loading...
Searching...
No Matches
KoTitledTabWidget.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2017 Dmitry Kazakov <dimula73@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#ifndef KOTITLEDTABWIDGET_H
8#define KOTITLEDTABWIDGET_H
9
10#include <QTabWidget>
11
12#include "kritawidgets_export.h"
13
14class QLabel;
15
16
17class KRITAWIDGETS_EXPORT KoTitledTabWidget : public QTabWidget
18{
19 Q_OBJECT
20public:
21 KoTitledTabWidget(QWidget *parent);
22
23private Q_SLOTS:
24 void slotUpdateTitle();
25
26private:
27 QLabel *m_titleLabel;
28};
29
30#endif // KOTITLEDTABWIDGET_H