diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-04-08 21:37:12 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-04-08 22:22:09 +0300 |
commit | 0e7403df70d3298ba39f2269b999dbda574ea117 (patch) | |
tree | fd2c427a2853d6933c5c535ff778b6e8c831677d /indra/newview/llpreviewanim.h | |
parent | 378855253a4cd65ee0b5f52f2bd887f2795cc99f (diff) |
SL-14076 Preview should show more data about motions
Diffstat (limited to 'indra/newview/llpreviewanim.h')
-rw-r--r-- | indra/newview/llpreviewanim.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/newview/llpreviewanim.h b/indra/newview/llpreviewanim.h index 8eaed6ca1f..ebeee367f7 100644 --- a/indra/newview/llpreviewanim.h +++ b/indra/newview/llpreviewanim.h @@ -30,6 +30,9 @@ #include "llpreview.h" #include "llcharacter.h" +class LLMotion; +class LLTextBox; + class LLPreviewAnim : public LLPreview { public: @@ -40,11 +43,14 @@ public: void draw(); void cleanup(); void play(const LLSD& param); - + void showAdvanced(); + protected: LLUUID mItemID; bool mDidStart; + LLMotion* pMotion; + LLTextBox* pAdvancedStatsTextBox; }; #endif // LL_LLPREVIEWANIM_H |