Interface CControlListener


public interface CControlListener
A listener to a CControl, gets informed when CDockables are added or removed, opened or closed.
Author:
Benjamin Sigg
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    added(CControl control, CDockable dockable)
    Called when dockable has been made public.
    void
    closed(CControl control, CDockable dockable)
    Called when dockable has been made invisible.
    void
    opened(CControl control, CDockable dockable)
    Called when dockable has been made visible.
    void
    removed(CControl control, CDockable dockable)
    Called when dockable has been removed.
  • Method Details

    • added

      void added(CControl control, CDockable dockable)
      Called when dockable has been made public.
      Parameters:
      control - the caller
      dockable - the element that is now known
    • removed

      void removed(CControl control, CDockable dockable)
      Called when dockable has been removed.
      Parameters:
      control - the caller
      dockable - the element that is no longer known
    • opened

      void opened(CControl control, CDockable dockable)
      Called when dockable has been made visible.
      Parameters:
      control - the caller
      dockable - the element that is now visible
      See Also:
    • closed

      void closed(CControl control, CDockable dockable)
      Called when dockable has been made invisible.
      Parameters:
      control - the caller
      dockable - the element that is no longer visible
      See Also: