mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
d2ebfd0519
Screw the description like that inbred T3Q
37 lines
632 B
C++
37 lines
632 B
C++
/*
|
|
SPDX-FileCopyrightText: 2012-2016 Ivan Cukic <ivan.cukic@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#ifndef SWITCHING_TAB_H
|
|
#define SWITCHING_TAB_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include <utils/d_ptr.h>
|
|
|
|
class QKeySequence;
|
|
class KCoreConfigSkeleton;
|
|
|
|
/**
|
|
* SwitchingTab
|
|
*/
|
|
class SwitchingTab : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SwitchingTab(QWidget *parent);
|
|
~SwitchingTab() override;
|
|
|
|
KCoreConfigSkeleton *mainConfig();
|
|
|
|
private Q_SLOTS:
|
|
void shortcutChanged(const QKeySequence &sequence);
|
|
|
|
private:
|
|
D_PTR;
|
|
};
|
|
|
|
#endif // SWITCHING_TAB_H
|