spinner.pkg

来自「cegui界面库」· PKG 代码 · 共 26 行

PKG
26
字号
/***********************************************************************
	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 + =
减小字号Ctrl + -
显示快捷键?