⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 position.h

📁 a position control(using in musicplayer) of symbian
💻 H
字号:
#ifndef POSITION_H_
#define POSITION_H_

#include "Slider.h"

class COggSlider64 : public COggSliderBase
	{
public:
	COggSlider64();

	void SetValue(TInt64 aValue);  
	void SetMaxValue(TInt64 aMaxValue);

	TInt64 CurrentValue();

protected:
	// From COggControl
	void PointerEvent(const TPointerEvent& p);
	void Draw(CBitmapContext& aBitmapContext);

	// From COggSliderBase
	TInt GetPosFromValue();

	TInt64 GetValueFromPos(TInt aPos);

private:
	TInt64 iValue;
	TInt64 iMaxValue;
	};
#endif /*POSITION_H_*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -