slider.h
来自「a position control(using in musicplayer)」· C头文件 代码 · 共 25 行
H
25 行
#ifndef SLIDER_H_
#define SLIDER_H_
#include "conbase.h"
class COggSliderBase : public COggControl
{
public:
~COggSliderBase();
void SetStyle(TInt aStyle);
void SetKnobIcon(CGulIcon* anIcon);
protected:
// From COggControl
virtual TInt GetPosFromValue() = 0;
protected:
CGulIcon* iKnobIcon;
TInt iStyle;
TBool iIsMoving;
TInt iPos;
};
#endif /*SLIDER_H_*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?