UIRelativeBox.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /****************************************************************************
  2. Copyright (c) 2013-2016 Chukong Technologies Inc.
  3. Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
  4. http://www.cocos2d-x.org
  5. Permission is hereby granted, free of charge, to any person obtaining a copy
  6. of this software and associated documentation files (the "Software"), to deal
  7. in the Software without restriction, including without limitation the rights
  8. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. copies of the Software, and to permit persons to whom the Software is
  10. furnished to do so, subject to the following conditions:
  11. The above copyright notice and this permission notice shall be included in
  12. all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. THE SOFTWARE.
  20. ****************************************************************************/
  21. #ifndef __UIRelativeBox_H__
  22. #define __UIRelativeBox_H__
  23. #include "ui/UILayout.h"
  24. #include "ui/GUIExport.h"
  25. NS_CC_BEGIN
  26. /**
  27. * @addtogroup ui
  28. * @{
  29. */
  30. namespace ui {
  31. /**
  32. *@brief RelativeBox is just a convenient wrapper class for relative layout type.
  33. * RelativeBox lays out its children relative to a widget or a position.
  34. */
  35. class CC_GUI_DLL RelativeBox : public Layout{
  36. public:
  37. /**
  38. * Default constructor.
  39. * @js ctor
  40. * @lua new
  41. */
  42. RelativeBox();
  43. /**
  44. * Default destructor.
  45. * @js NA
  46. * @lua NA
  47. */
  48. virtual ~RelativeBox();
  49. /**
  50. * Create an empty RelativeBox instance.
  51. * @return A RelativeBox instance.
  52. */
  53. static RelativeBox* create();
  54. /**
  55. * @brief Create a RelativeBox with a fixed size.
  56. *
  57. * @param size Size in `Size`.
  58. * @return A RelativeBox instance.
  59. */
  60. static RelativeBox* create(const Size& size);
  61. CC_CONSTRUCTOR_ACCESS:
  62. //initializes state of widget.
  63. virtual bool init() override;
  64. virtual bool initWithSize(const Size& size);
  65. };
  66. }
  67. // end of ui group
  68. /// @}
  69. NS_CC_END
  70. #endif /* defined(__UIRelativeBox__) */