summaryrefslogtreecommitdiff
path: root/plugins-alternative/Themes/Clean/factory.h
blob: 2a9c0efa1437edc540967d774d7f859301ee9ca2 (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
34
35
36
37
38
39
/** \file factory.h
\brief Define the factory, to create instance of the interface
\author alpha_one_x86
\version 0.3
\date 2010 */

#ifndef FACTORY_H
#define FACTORY_H

#include <QObject>
#include <QWidget>

#include "interface.h"
#include "../../../interface/PluginInterface_Themes.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);
	signals:
		void reloadLanguage();
	public slots:
		void resetOptions();
		void newLanguageLoaded();
	private:
		FacilityInterface * facilityEngine;
};

#endif // FACTORY_H