📄 spinner.pkg
字号:
/***********************************************************************
Spinner
***********************************************************************/
class Spinner : public Window
{
enum TextInputMode
{
FloatingPoint,
Integer,
Hexadecimal,
Octal
};
float getCurrentValue() const;
float getStepSize() const;
float getMaximumValue() const;
float getMinimumValue() const;
TextInputMode getTextInputMode() const;
void setCurrentValue(float value);
void setStepSize(float step);
void setMaximumValue(float maxValue);
void setMinimumValue(float minVaue);
void setTextInputMode(TextInputMode mode);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -