QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
632 B

/*
SPDX-FileCopyrightText: 2012-2016 Ivan Cukic <[email protected]>
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