tibia-client/src/framework/ui/uilist.cpp

33 lines
425 B
C++
Raw Normal View History

2011-08-15 16:06:15 +02:00
#include "uilist.h"
2011-08-22 14:44:26 +02:00
UIList::UIList()
2011-08-15 16:06:15 +02:00
{
}
2011-08-22 14:44:26 +02:00
void UIList::onStyleApply(const OTMLNodePtr& styleNode)
2011-08-15 16:06:15 +02:00
{
}
void UIList::render()
{
}
2011-08-22 14:44:26 +02:00
bool UIList::onKeyPress(uchar keyCode, char keyChar, int keyboardModifiers)
2011-08-15 16:06:15 +02:00
{
2011-08-22 14:44:26 +02:00
return false;
2011-08-15 16:06:15 +02:00
}
2011-08-22 14:44:26 +02:00
bool UIList::onMousePress(const Point& mousePos, UI::MouseButton button)
2011-08-15 16:06:15 +02:00
{
2011-08-22 14:44:26 +02:00
return false;
2011-08-15 16:06:15 +02:00
}
2011-08-22 14:44:26 +02:00
bool UIList::onMouseMove(const Point& mousePos, const Point& mouseMoved)
2011-08-15 16:06:15 +02:00
{
2011-08-22 14:44:26 +02:00
return false;
2011-08-15 16:06:15 +02:00
}