mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 01:29:21 +02:00
33 lines
316 B
C++
33 lines
316 B
C++
#include "uilist.h"
|
|
|
|
UIList::UIList() : UIWidget(UITypeList)
|
|
{
|
|
|
|
}
|
|
|
|
void UIList::loadStyleFromOTML(const OTMLNodePtr& styleNode)
|
|
{
|
|
|
|
}
|
|
|
|
void UIList::render()
|
|
{
|
|
|
|
}
|
|
|
|
void UIList::onKeyPress(UIKeyEvent& event)
|
|
{
|
|
|
|
}
|
|
|
|
void UIList::onMousePress(UIMouseEvent& event)
|
|
{
|
|
|
|
}
|
|
|
|
void UIList::onMouseMove(UIMouseEvent& event)
|
|
{
|
|
|
|
}
|
|
|