mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-18 16:03:05 +00:00
SHERLOCK: RT: Implement WidgetLab displayLabNames
This commit is contained in:
parent
e4975cef85
commit
39930a25c3
@ -21,6 +21,7 @@
|
||||
*/
|
||||
|
||||
#include "sherlock/tattoo/widget_lab.h"
|
||||
#include "sherlock/tattoo/tattoo_fixed_text.h"
|
||||
#include "sherlock/tattoo/tattoo_user_interface.h"
|
||||
#include "sherlock/tattoo/tattoo.h"
|
||||
|
||||
@ -157,7 +158,27 @@ void WidgetLab::handleEvents() {
|
||||
}
|
||||
|
||||
void WidgetLab::displayLabNames() {
|
||||
TattooUserInterface &ui = *(TattooUserInterface *)_vm->_ui;
|
||||
|
||||
// See if thay are pointing at a different object and we need to change the tooltip
|
||||
if (ui._bgFound != ui._oldBgFound) {
|
||||
// See if there is a new object to be displayed
|
||||
if (ui._bgFound == -1) {
|
||||
ui._tooltipWidget.setText("");
|
||||
} else {
|
||||
Common::String str = Common::String::format("%s %s %s %s", FIXED(Use), _labObject->_description.c_str(),
|
||||
FIXED(With), ui._bgShape->_description);
|
||||
|
||||
// Make sure that the Object has a name
|
||||
if (!ui._bgShape->_description.empty() && !ui._bgShape->_description.hasPrefix(" ")) {
|
||||
ui._tooltipWidget.setText(str);
|
||||
} else {
|
||||
ui._tooltipWidget.setText("");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ui._oldArrowZone = ui._arrowZone;
|
||||
}
|
||||
|
||||
} // End of namespace Tattoo
|
||||
|
@ -38,7 +38,8 @@ private:
|
||||
Object *_labObject;
|
||||
|
||||
/**
|
||||
* Display tooltips of using one lab item on another
|
||||
* Display tooltips of an object being dragged along with any object the dragged
|
||||
* object is currently over
|
||||
*/
|
||||
void displayLabNames();
|
||||
public:
|
||||
|
Loading…
x
Reference in New Issue
Block a user