summaryrefslogtreecommitdiff
path: root/StructEnumDefinition_UltracopierSpecific.h
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2013-01-04 14:50:19 +0100
committerThomas Preud'homme <robotux@celest.fr>2013-01-04 14:50:19 +0100
commit8f9f382e1c97cab2e72e97495650c73ac4b97314 (patch)
tree78510a0d81368c09b56f444fb19bb132c8bc3009 /StructEnumDefinition_UltracopierSpecific.h
Imported Upstream version 0.3.0.5
Diffstat (limited to 'StructEnumDefinition_UltracopierSpecific.h')
-rw-r--r--StructEnumDefinition_UltracopierSpecific.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/StructEnumDefinition_UltracopierSpecific.h b/StructEnumDefinition_UltracopierSpecific.h
new file mode 100644
index 0000000..c9ed2d0
--- /dev/null
+++ b/StructEnumDefinition_UltracopierSpecific.h
@@ -0,0 +1,57 @@
+/** \file StructEnumDefinition_UltracopierSpecific.h
+\brief Define the structure and enumeration used in ultracopier only
+\author alpha_one_x86
+\version 0.3
+\date 2010
+\licence GPL3, see the file COPYING */
+
+#include <QString>
+#include <QList>
+#include <QDomElement>
+
+#ifndef STRUCTDEF_ULTRACOPIERSPECIFIC_H
+#define STRUCTDEF_ULTRACOPIERSPECIFIC_H
+
+enum PluginType
+{
+ PluginType_Unknow,
+ PluginType_CopyEngine,
+ PluginType_Languages,
+ PluginType_Listener,
+ PluginType_PluginLoader,
+ PluginType_SessionLoader,
+ PluginType_Themes
+};
+
+/// \brief structure to store the general plugin related information
+struct PluginsAvailable
+{
+ PluginType category;
+ QString path;
+ QString name;
+ QString writablePath;
+ QDomElement categorySpecific;
+ QString version;
+ QList<QStringList> informations;
+ QString errorString;
+ bool isWritable;
+ bool isAuth;
+};
+
+enum DebugLevel_custom
+{
+ DebugLevel_custom_Information,
+ DebugLevel_custom_Critical,
+ DebugLevel_custom_Warning,
+ DebugLevel_custom_Notice,
+ DebugLevel_custom_UserNote
+};
+
+enum ActionOnManualOpen
+{
+ ActionOnManualOpen_Nothing=0x00,
+ ActionOnManualOpen_Folder=0x01,
+ ActionOnManualOpen_Files=0x02
+};
+
+#endif // STRUCTDEF_ULTRACOPIERSPECIFIC_H