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

📄 spinner.pkg

📁 cegui界面库
💻 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 + -