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

  • Constructor Details

    • TLcdSplitPane

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

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

    • doLayout

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

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

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

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

      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

      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

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

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

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

      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

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

      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

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

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

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

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

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

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

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

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

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

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

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