2013-09-13 22:20:20 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:47:11 +08:00
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
#ifndef __COCOSGUI_H__
|
|
|
|
#define __COCOSGUI_H__
|
|
|
|
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "gui/UIWidget.h"
|
2013-11-06 16:04:06 +08:00
|
|
|
#include "gui/UILayout.h"
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "gui/UIButton.h"
|
|
|
|
#include "gui/UICheckBox.h"
|
|
|
|
#include "gui/UIImageView.h"
|
2013-12-31 16:36:33 +08:00
|
|
|
#include "gui/UIText.h"
|
|
|
|
#include "gui/UITextAtlas.h"
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "gui/UILoadingBar.h"
|
|
|
|
#include "gui/UIScrollView.h"
|
2013-11-06 16:04:06 +08:00
|
|
|
#include "gui/UIListView.h"
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "gui/UISlider.h"
|
|
|
|
#include "gui/UITextField.h"
|
2013-12-31 16:36:33 +08:00
|
|
|
#include "gui/UITextBMFont.h"
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "gui/UIPageView.h"
|
|
|
|
#include "gui/UIHelper.h"
|
2013-12-23 15:02:52 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
2014-02-24 18:56:45 +08:00
|
|
|
namespace ui {
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
const char* CocosGUIVersion();
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2013-12-23 15:02:52 +08:00
|
|
|
NS_CC_END
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
#endif /* defined(__CocosGUITest__Cocos__) */
|