File indexing completed on 2024-05-05 05:00:15

0001 /* This file is part of the KDE project
0002     SPDX-FileCopyrightText: 2006 David Faure <faure@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef CENTRALWIDGET_H
0008 #define CENTRALWIDGET_H
0009 
0010 #include <QMainWindow>
0011 
0012 // SCW == Switch (or Set) Central Widget
0013 class SCWMainWindow : public QMainWindow
0014 {
0015     Q_OBJECT
0016 public:
0017     SCWMainWindow(QWidget *parent = nullptr);
0018 
0019 private slots:
0020     void slotSwitchCentralWidget();
0021 };
0022 
0023 #endif