mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 17:49:21 +02:00
33 lines
425 B
C++
33 lines
425 B
C++
#include "uilist.h"
|
|
|
|
UIList::UIList()
|
|
{
|
|
|
|
}
|
|
|
|
void UIList::onStyleApply(const OTMLNodePtr& styleNode)
|
|
{
|
|
|
|
}
|
|
|
|
void UIList::render()
|
|
{
|
|
|
|
}
|
|
|
|
bool UIList::onKeyPress(uchar keyCode, char keyChar, int keyboardModifiers)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool UIList::onMousePress(const Point& mousePos, UI::MouseButton button)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool UIList::onMouseMove(const Point& mousePos, const Point& mouseMoved)
|
|
{
|
|
return false;
|
|
}
|
|
|