summaryrefslogtreecommitdiff
path: root/plugins/SessionLoader/KDE4/sessionLoader.h
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2018-02-24 00:13:45 +0000
committerThomas Preud'homme <robotux@celest.fr>2018-02-24 00:13:46 +0000
commit0fa6fb5a53789434e6ef57af39ab9024b7ec7d50 (patch)
tree9854613566cca815292f6fcad8e4d678afa30a9a /plugins/SessionLoader/KDE4/sessionLoader.h
parent2124f782c35cd832460d070186eaf72d935c1bdb (diff)
parentb00b0c864574c3842effe1705b66066fa228f950 (diff)
merge patched into master
Diffstat (limited to 'plugins/SessionLoader/KDE4/sessionLoader.h')
-rw-r--r--plugins/SessionLoader/KDE4/sessionLoader.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/plugins/SessionLoader/KDE4/sessionLoader.h b/plugins/SessionLoader/KDE4/sessionLoader.h
deleted file mode 100644
index b037da7..0000000
--- a/plugins/SessionLoader/KDE4/sessionLoader.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/** \file sessionLoader.h
-\brief Define the session loader
-\author alpha_one_x86
-\licence GPL3, see the file COPYING */
-
-#ifndef SESSION_LOADER_PLUGIN_H
-#define SESSION_LOADER_PLUGIN_H
-
-#include <QObject>
-#include "Environment.h"
-#include "../../../interface/PluginInterface_SessionLoader.h"
-
-/// \brief Define the session loader
-class KDESessionLoader : public PluginInterface_SessionLoader
-{
- Q_OBJECT
- Q_PLUGIN_METADATA(IID "first-world.info.ultracopier.PluginInterface.SessionLoader/1.0.0.0" FILE "plugin.json")
- Q_INTERFACES(PluginInterface_SessionLoader)
-public:
- /// \brief to set if it's enabled or not
- void setEnabled(const bool &enabled);
- /// \brief to get if is enabled
- bool getEnabled() const;
- /// \brief set the resources for the plugins
- void setResources(OptionInterface * options,const QString &writePath,const QString &pluginPath,const bool &portableVersion);
- /// \brief to get the options widget, NULL if not have
- QWidget * options();
-public slots:
- /// \brief to reload the translation, because the new language have been loaded
- void newLanguageLoaded();
-};
-
-#endif // SESSION_LOADER_PLUGIN_H