Added missing implementations
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user