Package ghidra.app.services
Interface ButtonPressedListener
- All Known Implementing Classes:
FieldNavigator
public interface ButtonPressedListener
Listener that is notified when a mouse button is pressed.
-
Method Summary
Modifier and TypeMethodDescriptionvoidbuttonPressed(ProgramLocation location, FieldLocation fieldLocation, ListingField field, MouseEvent event) Notification that a mouse button was pressed.
-
Method Details
-
buttonPressed
void buttonPressed(ProgramLocation location, FieldLocation fieldLocation, ListingField field, MouseEvent event) Notification that a mouse button was pressed.- Parameters:
location- program location when the button was pressedfieldLocation- locations within the FieldPanelfield- field from the ListingPanelevent- mouse event for the button pressed
-