Can we use ComboViewer
to listen mouse hover event? I want to basically display the hover value in tool tip for the list in a combo box
Example:
I have a combo list with values "a", "b" and "c". When I move the mouse over "b" I need to display "b" in tool tip.
viewer.setContentProvider(ArrayContentProvider.getInstance());
viewer.setInput({"a", "b", "c"})
viewer.getCombo().addMouseMoveListener(new MouseMoveListener(){
public void mouseMove(MouseEvent event){
// here i need a logic to read identify on which value the mouse is over.
}
});