File indexing completed on 2024-04-14 04:29:47

0001 /*
0002  * This file is part of KDevelop project
0003  * Copyright 2016 Patrick José Pereira <patrickelectric@gmail.com>
0004  *
0005  * This program is free software; you can redistribute it and/or modify
0006  * it under the terms of the GNU Library General Public License as
0007  * published by the Free Software Foundation; either version 2 of the
0008  * License, or (at your option) any later version.
0009  *
0010  * This program is distributed in the hope that it will be useful,
0011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0013  * GNU General Public License for more details.
0014  *
0015  * You should have received a copy of the GNU General Public
0016  * License along with this program; if not, write to the
0017  * Free Software Foundation, Inc.,
0018  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
0019  */
0020 
0021 #pragma once
0022 
0023 #include <interfaces/iplugin.h>
0024 
0025 #include <QVariant>
0026 #include <QLoggingCategory>
0027 #include <QScopedPointer>
0028 
0029 Q_DECLARE_LOGGING_CATEGORY(PLUGIN_EMBEDDED)
0030 
0031 class Embedded : public KDevelop::IPlugin
0032 {
0033     Q_OBJECT
0034 
0035 public:
0036     explicit Embedded(QObject *parent, const QVariantList & = QVariantList());
0037     ~Embedded() override;
0038 
0039     void firstTimeWizardEvent();
0040     void boardSettingsEvent();
0041 };