Package ghidra.graph

Class VisualGraphComponentProvider<V extends VisualVertex,​E extends VisualEdge<V>,​G extends VisualGraph<V,​E>>

    • Constructor Detail

      • VisualGraphComponentProvider

        protected VisualGraphComponentProvider​(DockingTool tool,
                                               java.lang.String name,
                                               java.lang.String owner)
      • VisualGraphComponentProvider

        protected VisualGraphComponentProvider​(DockingTool tool,
                                               java.lang.String name,
                                               java.lang.String owner,
                                               java.lang.Class<?> contextType)
    • Method Detail

      • getView

        public abstract VisualGraphView<V,​E,​G> getView()
        You must return your graph view from this method
        Returns:
        your graph view
      • componentHidden

        public void componentHidden()
        Description copied from class: ComponentProvider
        Notifies the provider that the component is being hidden. This happens when the provider is being closed.
        Overrides:
        componentHidden in class ComponentProvider
      • isSatelliteShowing

        public boolean isSatelliteShowing()
        Returns true if the satellite is showing, whether in the graph or undocked
        Returns:
        true if the satellite is showing, whether in the graph or undocked
      • isSatelliteDocked

        public boolean isSatelliteDocked()
        Returns true if the satellite is embedded in the graph view, whether it is showing or not
        Returns:
        true if the satellite is embedded in the graph view, whether it is showing or not
      • getSelectedVertices

        public java.util.Set<V> getSelectedVertices()
      • addSatelliteFeature

        protected void addSatelliteFeature()
        Adds the satellite viewer functionality to this provider
      • dispose

        public void dispose()
        To be called at the end of this provider's lifecycle
      • writeConfigState

        public void writeConfigState​(SaveState saveState)
        Writes this providers saveable state to the given state object
        Parameters:
        saveState - the state object into which state is to be written
      • readConfigState

        public void readConfigState​(SaveState saveState)
        Reads previously saved state from the given state object
        Parameters:
        saveState - the state object that may contain state information for this provider
      • getActionContext

        public ActionContext getActionContext​(java.awt.event.MouseEvent event)
        Description copied from class: ComponentProvider
        Returns the context object which corresponds to the area of focus within this provider's component. Null is returned when there is no context.
        Specified by:
        getActionContext in interface ActionContextProvider
        Overrides:
        getActionContext in class ComponentProvider
        Parameters:
        event - popup event which corresponds to this request. May be null for key-stroke or other non-mouse event.