otclient/src/framework/ui/uilist.cpp
2011-08-22 09:44:26 -03:00

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;
}