12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /*****************************************************************************
- * baseplugin.h - QStarDict, a dictionary for learning foreign languages *
- * Copyright (C) 2008-2019 Alexander Rodin *
- * Copyright (C) 2016 Sergey Ili'nykh *
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * You should have received a copy of the GNU General Public License along *
- * with this program; if not, write to the Free Software Foundation, Inc., *
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
- *****************************************************************************/
- #ifndef BASEPLUGIN_H
- #define BASEPLUGIN_H
- #include <QtPlugin>
- #include <QStringList>
- #include <QDir>
- #include <QCoreApplication>
- #include <QVariant>
- #include <QIcon>
- #include "metadata.h"
- #include "pluginserver.h"
- namespace QStarDict
- {
- /**
- * This is a base class for all dictionary plugins classes.
- */
- class BasePlugin
- {
- public:
- /**
- * Accessor to QStarDict internals
- */
- PluginServer *qsd; // QStarDict API accessor
- /**
- * Destructor.
- */
- virtual ~BasePlugin() { }
- virtual QIcon pluginIcon() const = 0;
- };
- class ConfigurablePlugin
- {
- public:
- virtual ~ConfigurablePlugin() {}
- /**
- * Run a settings dialog and return QDialog::DialogCode.
- */
- virtual int execSettingsDialog(QWidget *parent = 0) = 0;
- };
- } // namespace QStarDict
- Q_DECLARE_INTERFACE(QStarDict::BasePlugin, "org.qstardict.BasePlugin/1.0")
- Q_DECLARE_INTERFACE(QStarDict::ConfigurablePlugin, "org.qstardict.ConfigurablePlugin/1.0")
- #endif // BASEPLUGIN_H
- // vim: tabstop=4 softtabstop=4 shiftwidth=4 expandtab cindent
|