summaryrefslogtreecommitdiff
path: root/plugins/Themes/Oxygen/factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Themes/Oxygen/factory.h')
-rw-r--r--plugins/Themes/Oxygen/factory.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/plugins/Themes/Oxygen/factory.h b/plugins/Themes/Oxygen/factory.h
deleted file mode 100644
index f07b0cf..0000000
--- a/plugins/Themes/Oxygen/factory.h
+++ /dev/null
@@ -1,61 +0,0 @@
-/** \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 <QMenu>
-#include <QCloseEvent>
-#include <QFile>
-#include <QIcon>
-
-#include "../../../interface/PluginInterface_Themes.h"
-#include "ui_options.h"
-#include "interface.h"
-#include "Environment.h"
-
-namespace Ui {
- class options;
-}
-
-/// \brief Define the factory, to create instance of the interface
-class Factory : public PluginInterface_ThemesFactory
-{
- Q_OBJECT
- Q_INTERFACES(PluginInterface_ThemesFactory)
-public:
- Factory();
- ~Factory();
- /// \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);
-private slots:
- void checkBoxShowSpeedHaveChanged(bool toggled);
- void checkBoxStartWithMoreButtonPushedHaveChanged(bool toggled);
-public slots:
- void resetOptions();
- void newLanguageLoaded();
-private:
- OptionInterface * optionsEngine;
- Ui::options *ui;
- QWidget *tempWidget;
- FacilityInterface * facilityEngine;
-signals:
- void reloadLanguage();
- #ifdef ULTRACOPIER_PLUGIN_DEBUG
- /// \brief To debug source
- void debugInformation(DebugLevel level,QString fonction,QString text,QString file,int ligne);
- #endif
-};
-
-#endif // FACTORY_H