diff options
author | Rick Pasetto <rick@lindenlab.com> | 2009-11-19 18:34:37 -0800 |
---|---|---|
committer | Rick Pasetto <rick@lindenlab.com> | 2009-11-19 18:34:37 -0800 |
commit | a8b603f33ef71ab8afae66236579d41a09b2fce1 (patch) | |
tree | 3ffcc13b066f916431ce7ab86cab9d06ce83113a /indra/newview/llviewermedia.h | |
parent | 98d54377f9a793ffc0ed0aff31e828ec772a8d10 (diff) |
Push the policy that "back", "forward" and "stop" do different things out of LLViewerMedia.
Now, LLViewerMedia has explicit skipBack() and skipForward()
functions, and the buttons in LLPanelPrimMediaControls now map
onto those functions neatly.
Diffstat (limited to 'indra/newview/llviewermedia.h')
-rw-r--r-- | indra/newview/llviewermedia.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llviewermedia.h b/indra/newview/llviewermedia.h index f4afce6c4c..ac12112ed4 100644 --- a/indra/newview/llviewermedia.h +++ b/indra/newview/llviewermedia.h @@ -149,6 +149,8 @@ public: void pause(); void start(); void seek(F32 time); + void skipBack(F32 step_scale); + void skipForward(F32 step_scale); void setVolume(F32 volume); void updateVolume(); F32 getVolume(); |