x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
ItemSelectorViewManager.h - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\ogre\sample_include\ItemSelectorViewManager.h
旋转
特效
属性
历史版本
/* ----------------------------------------------------------------------------- This source file is part of OGRE (Object-oriented Graphics Rendering Engine) For the latest info, see http://www.ogre3d.org/ Copyright (c) 2000-2006 Torus Knot Software Ltd Also see acknowledgements in Readme.html You may use this sample code for anything you like, it is not covered by the LGPL like the rest of the engine. ----------------------------------------------------------------------------- */ #ifndef _ItemSelectorViewManager_H_ #define _ItemSelectorViewManager_H_ #include "OgreString.h" #include "OgreNoMemoryMacros.h" #include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include "OgreMemoryMacros.h" /** Provides interface between a View and a Controller. */ class ItemSelectorInterface { public: virtual ~ItemSelectorInterface(void) {} virtual void itemStateChanged(const size_t index, const bool state) = 0; }; /** A generic view for showing checkbox items in a vertical list. Checkboxes are in a Scrollable pane so items can be scrolled into view. */ class ItemSelectorViewManager { public: ItemSelectorViewManager(const Ogre::String& parentWindowName); ~ItemSelectorViewManager(void){} /** Returns number of items in the container. */ size_t getSelectorCount(void) const { return mItemSelectorContainer.size(); } /** iterates through compositors available through CompositorManager and update list */ /** Add a new Item selector to the container */ void addItemSelector(const Ogre::String& displayText); Ogre::String getItemSelectorText(const size_t index) const { return Ogre::String(mItemSelectorContainer.at(index).CheckBoxWidget->getText().c_str()); } /** Inform Manager about who will be the controller that responds to item event messages. */ void setItemSelectorController(ItemSelectorInterface* controller); protected: struct ItemSelector { // make use of widget text member to store Compositor name // widget toggle state is used for enable/disable compositor // widget ID used for selector index CEGUI::Checkbox* CheckBoxWidget; ItemSelector() : CheckBoxWidget(0) {} }; typedef std::vector
ItemSelectorContainer; typedef ItemSelectorContainer::iterator ItemSelectorIterator; float mVerticalScrollPosition; CEGUI::Window* mParentWindow; CEGUI::ScrollablePane* mScrollablePane; ItemSelectorInterface* mItemSelectorController; ItemSelectorContainer mItemSelectorContainer; private: bool handleCheckStateChanged(const CEGUI::EventArgs& e); }; #endif
ItemSelectorViewManager.h
网页地址
文件地址
上一页
13/35
下一页
下载
( 3 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.