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

📄 listboxtextitem.pkg

📁 cegui界面库
💻 PKG
字号:
/***********************************************************************
	ListboxTextItem

	The constructor is not exportet, instead a helper function is
	available (CEGUI.createListboxTextItem).

	I decided to do it like this to avoid any possible memory issues
	with allocating from Lua.
***********************************************************************/
class ListboxTextItem : public ListboxItem
{
	Font* getFont() const;
	ColourRect getTextColours() const;

	void setFont(string font_name);
	void setFont(Font* font);

	void setTextColours(colour top_left_colour, colour top_right_colour, colour bottom_left_colour, colour bottom_right_colour);
	void setTextColours(const ColourRect& cols);
	void setTextColours(colour col);
};

⌨️ 快捷键说明

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