1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
/*!
@file
@author Albert Semenov
@date 03/2011
*/
#ifndef MYGUI_SCROLL_VIEW_PANEL_H_
#define MYGUI_SCROLL_VIEW_PANEL_H_
#include "MyGUI_Prerequest.h"
#include "MyGUI_ScrollView.h"
namespace MyGUI
{
class ScrollViewPanel :
public ScrollView
{
MYGUI_RTTI_DERIVED( ScrollViewPanel )
public:
ScrollViewPanel();
//! @copydoc Widget::setPosition(const IntPoint& _value)
void setPosition(const IntPoint& _value) override;
//! @copydoc Widget::setSize(const IntSize& _value)
void setSize(const IntSize& _value) override;
//! @copydoc Widget::setCoord(const IntCoord& _value)
void setCoord(const IntCoord& _value) override;
using Widget::setPosition;
using Widget::setSize;
using Widget::setCoord;
void updateContent();
};
} // namespace MyGUI
#endif // MYGUI_SCROLL_VIEW_PANEL_H_
|