diff options
| author | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2009-01-24 17:15:14 +0000 |
|---|---|---|
| committer | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2009-01-24 17:15:14 +0000 |
| commit | ff31a97b260e955c7af6b88fe4d606282160073d (patch) | |
| tree | 0947e28235d7e773803039d41316eefea3b8eb02 /Plugins/skins/SkinLib/V8Wrappers.h | |
| parent | de4ef8a65afd0c38f8bbdfcb3b90ff82a98d1483 (diff) | |
skins: 0.0.0.2
* Fix for float numbers
+ Added valign (not used yet)
+ Added dialog info (allow clients to set script variables starting with info)
+ The zip will contain also the pdbs (at least until it is more stable)
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@134 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/skins/SkinLib/V8Wrappers.h')
| -rw-r--r-- | Plugins/skins/SkinLib/V8Wrappers.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Plugins/skins/SkinLib/V8Wrappers.h b/Plugins/skins/SkinLib/V8Wrappers.h index 4b7a672..b2c5eb2 100644 --- a/Plugins/skins/SkinLib/V8Wrappers.h +++ b/Plugins/skins/SkinLib/V8Wrappers.h @@ -15,8 +15,13 @@ public: 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);
|
