summaryrefslogtreecommitdiff
path: root/plugins/Skins/SkinLib/V8Wrappers.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Skins/SkinLib/V8Wrappers.h')
-rw-r--r--plugins/Skins/SkinLib/V8Wrappers.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/plugins/Skins/SkinLib/V8Wrappers.h b/plugins/Skins/SkinLib/V8Wrappers.h
deleted file mode 100644
index b2c5eb2b92..0000000000
--- a/plugins/Skins/SkinLib/V8Wrappers.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef __V8_WRAPPERS_H__
-# define __V8_WRAPPERS_H__
-
-#include "V8Templates.h"
-#include "SkinOptions.h"
-
-
-class V8Wrappers : public V8Templates
-{
-public:
- virtual v8::Handle<v8::Object> newState(FieldType type);
- virtual void fillState(v8::Handle<v8::Object> obj, FieldState *state);
-
- virtual v8::Handle<v8::ObjectTemplate> getOptionsTemplate();
- virtual v8::Handle<v8::Object> newOptions();
- virtual void fillOptions(v8::Handle<v8::Object> v8Obj, SkinOptions *obj, bool configure);
-
- virtual v8::Handle<v8::ObjectTemplate> getDialogInfoTemplate();
- virtual v8::Handle<v8::Object> newDialogInfo();
- virtual void fillDialogInfo(v8::Handle<v8::Object> v8Obj, DialogInfo *obj, const char *prefix = NULL);
-
-private:
- v8::Persistent<v8::ObjectTemplate> optionsTemplate;
- v8::Persistent<v8::ObjectTemplate> dialogInfoTemplate;
-
-protected:
- virtual void addGlobalTemplateFields(v8::Handle<v8::ObjectTemplate> &templ);
-
- virtual void addSkinOptionTemplateFields(v8::Handle<v8::ObjectTemplate> &templ);
-
-};
-
-
-
-#endif // __V8_WRAPPERS_H__