summaryrefslogtreecommitdiff
path: root/plugins-alternative/SessionLoader/KDE4/sessionLoader.h
blob: b037da76f3e48bbd47c493a00cc0ff6ff275c4f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/** \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