Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git] / ground / gcs / src / plugins / video / videogadgetoptionspage.h
blob19c7d63dd580afda0ed1c15c452ccaee5905b077
1 /**
2 ******************************************************************************
4 * @file videogadgetoptionspage.h
5 * @author The LibrePilot Project, http://www.librepilot.org Copyright (C) 2017.
6 * @addtogroup GCSPlugins GCS Plugins
7 * @{
8 * @addtogroup VideoGadgetPlugin Video Gadget Plugin
9 * @{
10 * @brief A video gadget plugin
11 *****************************************************************************/
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 3 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
20 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 * for more details.
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #ifndef VIDEOGADGETOPTIONSPAGE_H
29 #define VIDEOGADGETOPTIONSPAGE_H
31 #include "coreplugin/dialogs/ioptionspage.h"
33 #include <QLabel>
34 #include <QPlainTextEdit>
36 class VideoGadgetConfiguration;
38 namespace Ui {
39 class VideoOptionsPage;
42 using namespace Core;
44 class VideoGadgetOptionsPage : public IOptionsPage {
45 Q_OBJECT
46 public:
47 explicit VideoGadgetOptionsPage(VideoGadgetConfiguration *config, QObject *parent = 0);
48 QString id() const
50 return "";
52 QString trName() const
54 return "";
56 QString category() const
58 return "";
60 QString trCategory() const
62 return "";
65 QWidget *createPage(QWidget *parent);
66 void apply();
67 void finish();
69 // private signals:
71 // public slots:
72 private slots:
73 void openHelpDialog();
75 private:
76 VideoGadgetConfiguration *m_config;
77 Ui::VideoOptionsPage *m_page;
80 #endif // VIDEOGADGETOPTIONSPAGE_H