File indexing completed on 2024-05-05 04:41:04

0001 /*
0002     SPDX-FileCopyrightText: 2011 Aleix Pol Gonzalez <aleixpol@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #ifndef WELCOMEPAGEVIEW_H
0008 #define WELCOMEPAGEVIEW_H
0009 
0010 #include <QQuickWidget>
0011 
0012 namespace Sublime {
0013 class Area;
0014 }
0015 
0016 namespace KDevelop {
0017 class IProject;
0018 }
0019 
0020 class WelcomePageWidget : public QQuickWidget
0021 {
0022     Q_OBJECT
0023 public:
0024     explicit WelcomePageWidget(const QList< KDevelop::IProject* >& projects, QWidget* parent = nullptr);
0025 
0026 public Q_SLOTS:
0027     void areaChanged(Sublime::Area* a);
0028 };
0029 
0030 #endif // WELCOMEPAGEVIEW_H