File indexing completed on 2024-05-19 04:39:49

0001 /*
0002     SPDX-FileCopyrightText: 2007 Alexander Dymo <adymo@kdevelop.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_EXAMPLE2MAIN_H
0008 #define KDEVPLATFORM_EXAMPLE2MAIN_H
0009 
0010 #include <sublime/mainwindow.h>
0011 
0012 class Example2Main: public Sublime::MainWindow {
0013     Q_OBJECT
0014 
0015 public:
0016     explicit Example2Main(Sublime::Controller *controller, Qt::WindowFlags flags = {});
0017 
0018 public Q_SLOTS:
0019     void splitVertical();
0020     void splitHorizontal();
0021     void close();
0022 
0023 };
0024 
0025 #endif
0026