Added missing implementations

This commit is contained in:
Robert Osfield
2008-10-29 11:09:08 +00:00
parent edb4c4e554
commit d7bc94d7cd
2 changed files with 10 additions and 0 deletions

View File

@@ -173,4 +173,9 @@ bool Input::keyDown(int key, int mask, WindowManager*) {
return false;
}
void Input::setCursor(Widget*)
{
warn() << "Input::setCursor(Widget*) not implemented yet."<<std::endl;
}
}

View File

@@ -97,6 +97,11 @@ void Label::positioned() {
_text->setPosition(osg::Vec3(x, y, _calculateZ(getLayer() + 1)));
}
void Label::update()
{
warn() << "Label::update() not implemented yet."<<std::endl;
}
void Label::setLabel(const std::string& label) {
_text->setText(label);