diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-11 17:09:09 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-11 17:09:09 +0000 |
commit | bb22e7b2a0af67cc65ce5179917b20e5977ed4ef (patch) | |
tree | 120e18f5a61144f3f632263e05cb49109f672615 /plugins/Skins/SkinLib/FieldState.rec | |
parent | 3b8d44fb4646951be55b3777cbe30d3280867067 (diff) |
MyDetails reverted to older version that doesn't use Skins plugin
git-svn-id: http://svn.miranda-ng.org/main/trunk@905 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Skins/SkinLib/FieldState.rec')
-rw-r--r-- | plugins/Skins/SkinLib/FieldState.rec | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/plugins/Skins/SkinLib/FieldState.rec b/plugins/Skins/SkinLib/FieldState.rec deleted file mode 100644 index 7b9ffd890d..0000000000 --- a/plugins/Skins/SkinLib/FieldState.rec +++ /dev/null @@ -1,89 +0,0 @@ -struct DialogState
-{
- Int32 width;
- Int32 height;
- const Int32 x;
- const Int32 y;
- const Int32 left;
- const Int32 top;
- const Int32 right;
- const Int32 bottom;
- BorderState borders [setter: if (!value.IsEmpty() && value->IsInt32())\n\ttmp->getBorders()->setAll(value->Int32Value()); ];
-};
-
-struct FieldState
-{
- Int32 x;
- Int32 y;
- Int32 width;
- Int32 height;
- Int32 left;
- Int32 top;
- Int32 right;
- Int32 bottom;
- Boolean visible;
- const Boolean enabled;
- Char toolTip[128];
- Int32 hAlign | HORIZONTAL_ALIGN_LEFT "LEFT" | HORIZONTAL_ALIGN_CENTER "CENTER" | HORIZONTAL_ALIGN_RIGHT "RIGHT";
- Int32 vAlign | VERTICAL_ALIGN_TOP "TOP" | VERTICAL_ALIGN_CENTER "CENTER" | VERTICAL_ALIGN_BOTTOM "BOTTOM";
- BorderState borders [setter: if (!value.IsEmpty() && value->IsInt32())\n\ttmp->getBorders()->setAll(value->Int32Value()); ];
-};
-
-struct ControlFieldState : FieldState
-{
- Char text[1024];
- FontState font;
-};
-
-struct LabelFieldState : ControlFieldState
-{
-};
-
-struct ButtonFieldState : ControlFieldState
-{
-};
-
-struct EditFieldState : ControlFieldState
-{
-};
-
-struct IconFieldState : FieldState
-{
-};
-
-struct ImageFieldState : FieldState
-{
-};
-
-struct TextFieldState : FieldState
-{
- Char text[1024];
- FontState font;
-};
-
-struct FontState
-{
- Char face[32];
- Int32 size;
- Boolean italic;
- Boolean bold;
- Boolean underline;
- Boolean strikeOut;
- Int32 color;
-};
-
-struct BorderState
-{
- Int32 left;
- Int32 right;
- Int32 top;
- Int32 bottom;
-};
-
-struct SkinOption
-{
- Char description[128];
- Int32 min;
- Int32 max;
- Int32 type | CHECKBOX | NUMBER | TEXT;
-};
|