summaryrefslogtreecommitdiff
path: root/plugins-alternative/Themes/Teracopy/factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins-alternative/Themes/Teracopy/factory.h')
-rw-r--r--plugins-alternative/Themes/Teracopy/factory.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/plugins-alternative/Themes/Teracopy/factory.h b/plugins-alternative/Themes/Teracopy/factory.h
new file mode 100644
index 0000000..babac47
--- /dev/null
+++ b/plugins-alternative/Themes/Teracopy/factory.h
@@ -0,0 +1,46 @@
+/** \file factory.h
+\brief Define the factory
+\author alpha_one_x86
+\version 0.3
+\date 2010 */
+
+#ifndef FACTORY_H
+#define FACTORY_H
+
+#include <QObject>
+#include <QWidget>
+#include <QMenu>
+#include <QCloseEvent>
+
+#include "../../../interface/PluginInterface_Themes.h"
+#include "interface.h"
+#include "Environment.h"
+
+/// \brief Define the factory, to create instance of the interface
+class Factory : public PluginInterface_ThemesFactory
+{
+ Q_OBJECT
+ Q_INTERFACES(PluginInterface_ThemesFactory)
+public:
+ /// \brief to return the instance of the copy engine
+ PluginInterface_Themes * getInstance();
+ /// \brief set the resources, to store options, to have facilityInterface
+ void setResources(OptionInterface * optionsEngine,const QString &writePath,const QString &pluginPath,FacilityInterface * facilityEngine,bool portableVersion);
+ /// \brief to get the default options widget
+ QWidget * options();
+ /// \brief to get a resource icon
+ QIcon getIcon(const QString &fileName);
+public slots:
+ void resetOptions();
+ void newLanguageLoaded();
+signals:
+ void reloadLanguage();
+ #ifdef ULTRACOPIER_PLUGIN_DEBUG
+ /// \brief To debug source
+ void debugInformation(DebugLevel level,QString fonction,QString text,QString file,int ligne);
+ #endif
+private:
+ FacilityInterface * facilityEngine;
+};
+
+#endif // FACTORY_H