Class TLcdSplitPane

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible

public class TLcdSplitPane extends Panel
Deprecated.
use a Swing JSplitPane instead.
TLcdSplitPane contains 2 Component separated vertically or horizontally by a movable divider. The orientation of the divider can set using the splitOrientation property. The location of the divider can be set by the dividerLocation property. It is a value between 0 and 1 defining the relative size of the first Component compared to the size of the second.

If to be used in Internet Explorer, the two Component objects of the TLcdSplitPane must be Panel objects.

See Also:
  • Field Details Link icon

  • Constructor Details Link icon

    • TLcdSplitPane Link icon

      public TLcdSplitPane()
      Deprecated.
      Default Constructor. Calls this(TLcdSplitPane.HORIZONTAL).
    • TLcdSplitPane Link icon

      public TLcdSplitPane(int aSplitOrientation)
      Deprecated.
      Constructor.
      Parameters:
      aSplitOrientation - one of TLcdSplitPane.HORIZONTAL, TLcdSplitPane.VERTICAL.
  • Method Details Link icon

    • doLayout Link icon

      public void doLayout()
      Deprecated.
      Redefines Component.doLayout.
      Overrides:
      doLayout in class Container
    • getPreferredSize Link icon

      public Dimension getPreferredSize()
      Deprecated.
      Overrides:
      getPreferredSize in class Container
    • getMinimumSize Link icon

      public Dimension getMinimumSize()
      Deprecated.
      Overrides:
      getMinimumSize in class Container
    • getMaximumSize Link icon

      public Dimension getMaximumSize()
      Deprecated.
      Overrides:
      getMaximumSize in class Container
    • addPropertyChangeListener Link icon

      public void addPropertyChangeListener(PropertyChangeListener aListener)
      Deprecated.
      Adds a PropertyChangeListener to the listener list.
      Overrides:
      addPropertyChangeListener in class Container
      Parameters:
      aListener - the PropertyChangeListener to be removed.
    • removePropertyChangeListener Link icon

      public void removePropertyChangeListener(PropertyChangeListener aListener)
      Deprecated.
      Removes a PropertyChangeListener from the listener list.
      Overrides:
      removePropertyChangeListener in class Component
      Parameters:
      aListener - the PropertyChangeListener to be removed.
    • getOrientation Link icon

      public int getOrientation()
      Deprecated.
      Returns the orientation.
    • setDividerSize Link icon

      public void setDividerSize(int aDividerSize)
      Deprecated.
      Sets the size of the divider.
    • getDividerSize Link icon

      public int getDividerSize()
      Deprecated.
      Returns the size of the divider.
    • getDividerLocation Link icon

      public float getDividerLocation()
      Deprecated.
      Returns the divider location.
      Returns:
      a float between 0 and 1. The ratio between the size of the left/top Component and the size of this TLcdSplitPane
    • setDividerLocation Link icon

      public void setDividerLocation(float aDividerLocation)
      Deprecated.
      Calls changeDividerLocation(aDividerLocation, true).
    • changeDividerLocation Link icon

      public void changeDividerLocation(float aDividerLocation, boolean aRevalidate)
      Deprecated.
      Changes the divider location.
      Parameters:
      aDividerLocation - between 0 and 1. The ratio between the size of the left/top Component and the size of this TLcdSplitPane
    • setLeftComponent Link icon

      public void setLeftComponent(Component comp)
      Deprecated.
      Sets the component to the left (or above) the divider.
    • getLeftComponent Link icon

      public Component getLeftComponent()
      Deprecated.
      Returns the component to the left (or above) the divider.
    • setTopComponent Link icon

      public void setTopComponent(Component comp)
      Deprecated.
      Sets the component above, or to the left of the divider.
    • getTopComponent Link icon

      public Component getTopComponent()
      Deprecated.
      Returns the component above, or to the left of the divider.
    • setRightComponent Link icon

      public void setRightComponent(Component comp)
      Deprecated.
      Sets the component to the right (or below) the divider.
    • getRightComponent Link icon

      public Component getRightComponent()
      Deprecated.
      Returns the component to the right (or below) the divider.
    • setBottomComponent Link icon

      public void setBottomComponent(Component comp)
      Deprecated.
      Sets the component below, or to the right of the divider.
    • getBottomComponent Link icon

      public Component getBottomComponent()
      Deprecated.
      Returns the component below, or to the right of the divider.
    • remove Link icon

      public void remove(Component component)
      Deprecated.
      Removes the child component, component from the receiver.
      Overrides:
      remove in class Container
    • remove Link icon

      public void remove(int index)
      Deprecated.
      Removes the Component at the given index.
      Overrides:
      remove in class Container
    • removeAll Link icon

      public void removeAll()
      Deprecated.
      Removes all the child components from the receiver.
      Overrides:
      removeAll in class Container