Files
itgmania212121/stepmania/src/ScrollBar.h
T
2002-11-16 08:07:38 +00:00

38 lines
764 B
C++

#ifndef SCROLLBAR_H
#define SCROLLBAR_H
/*
-----------------------------------------------------------------------------
Class: ScrollBar
Desc: A graphic displayed in the ScrollBar during Dancing.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ActorFrame.h"
#include "Sprite.h"
class ScrollBar : public ActorFrame
{
public:
ScrollBar();
void SetBarHeight( int iHeight );
void SetPercentage( float fStartPercent, float fEndPercent);
protected:
int m_iBarHeight;
Sprite m_sprTopButton;
Sprite m_sprBottomButton;
Sprite m_sprBackground;
Sprite m_sprScrollThumbPart1;
Sprite m_sprScrollThumbPart2;
};
#endif