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/Dialog.cpp | |
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/Dialog.cpp')
-rw-r--r-- | Plugins/skins/SkinLib/Dialog.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Plugins/skins/SkinLib/Dialog.cpp b/Plugins/skins/SkinLib/Dialog.cpp index 4f13392..edc8437 100644 --- a/Plugins/skins/SkinLib/Dialog.cpp +++ b/Plugins/skins/SkinLib/Dialog.cpp @@ -72,6 +72,11 @@ unsigned int Dialog::getFieldCount() const return fields.size();
}
+DialogInfo * Dialog::getInfo()
+{
+ return &info;
+}
+
const Size & Dialog::getSize() const
{
return size;
|