javax.help.plaf.basic
Class BasicSearchNavigatorUI

java.lang.Object
  extended by javax.swing.plaf.ComponentUI
      extended by javax.help.plaf.HelpNavigatorUI
          extended by javax.help.plaf.basic.BasicSearchNavigatorUI
All Implemented Interfaces:
java.awt.event.ComponentListener, java.beans.PropertyChangeListener, java.util.EventListener, HelpModelListener, SearchListener, javax.swing.event.TreeSelectionListener

public class BasicSearchNavigatorUI
extends HelpNavigatorUI
implements HelpModelListener, SearchListener, java.beans.PropertyChangeListener, javax.swing.event.TreeSelectionListener, java.awt.event.ComponentListener


Field Summary
protected  boolean displayOptions
           
protected  SearchEngine helpsearch
           
protected  javax.swing.tree.DefaultMutableTreeNode lastTOCnode
           
protected  JHelpSearchNavigator searchnav
           
protected  javax.swing.JTextField searchparams
           
protected  SearchQuery searchquery
           
protected  javax.swing.JScrollPane sp
           
protected  javax.swing.tree.DefaultMutableTreeNode topNode
           
protected  javax.swing.JTree tree
           
 
Constructor Summary
BasicSearchNavigatorUI(JHelpSearchNavigator b)
           
 
Method Summary
protected  void addSubHelpSets(HelpSet hs)
          Adds subhelpsets
 void componentHidden(java.awt.event.ComponentEvent e)
          Invoked when the component has been made invisible.
 void componentMoved(java.awt.event.ComponentEvent e)
          Invoked when the component's position changes.
 void componentResized(java.awt.event.ComponentEvent e)
          Invoked when the component's size changes.
 void componentShown(java.awt.event.ComponentEvent e)
          Invoked when the component has been made visible.
static javax.swing.plaf.ComponentUI createUI(javax.swing.JComponent x)
           
protected  JHelpNavigator getHelpNavigator()
           
 java.awt.Dimension getMaximumSize(javax.swing.JComponent c)
           
 java.awt.Dimension getMinimumSize(javax.swing.JComponent c)
           
 java.awt.Dimension getPreferredSize(javax.swing.JComponent c)
           
 void idChanged(HelpModelEvent e)
          Processes an idChanged event.
 void installUI(javax.swing.JComponent c)
           
 void itemsFound(SearchEvent e)
          Tells the listener that matching SearchItems have been found.
 void merge(NavigatorView view)
          Merges in the navigational data from another NavigatorView.
 void propertyChange(java.beans.PropertyChangeEvent event)
           
 void remove(NavigatorView view)
          Removes the navigational data from another NavigatorView.
 void searchFinished(SearchEvent e)
          Tells the listener that the search has finished
 void searchStarted(SearchEvent e)
          Tells the listener that the search has started.
protected  void setCellRenderer(NavigatorView view, javax.swing.JTree tree)
          Setd the desired cell renderer on this tree.
 void uninstallUI(javax.swing.JComponent c)
           
 void valueChanged(javax.swing.event.TreeSelectionEvent e)
          A value has changed.
 
Methods inherited from class javax.help.plaf.HelpNavigatorUI
getAddAction, getIcon, getImageIcon, setIcon
 
Methods inherited from class javax.swing.plaf.ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, paint, update
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

searchnav

protected JHelpSearchNavigator searchnav

sp

protected javax.swing.JScrollPane sp

tree

protected javax.swing.JTree tree

topNode

protected javax.swing.tree.DefaultMutableTreeNode topNode

searchparams

protected javax.swing.JTextField searchparams

displayOptions

protected boolean displayOptions

helpsearch

protected SearchEngine helpsearch

searchquery

protected SearchQuery searchquery

lastTOCnode

protected javax.swing.tree.DefaultMutableTreeNode lastTOCnode
Constructor Detail

BasicSearchNavigatorUI

public BasicSearchNavigatorUI(JHelpSearchNavigator b)
Method Detail

createUI

public static javax.swing.plaf.ComponentUI createUI(javax.swing.JComponent x)

installUI

public void installUI(javax.swing.JComponent c)
Overrides:
installUI in class javax.swing.plaf.ComponentUI

uninstallUI

public void uninstallUI(javax.swing.JComponent c)
Overrides:
uninstallUI in class javax.swing.plaf.ComponentUI

getPreferredSize

public java.awt.Dimension getPreferredSize(javax.swing.JComponent c)
Overrides:
getPreferredSize in class javax.swing.plaf.ComponentUI

getMinimumSize

public java.awt.Dimension getMinimumSize(javax.swing.JComponent c)
Overrides:
getMinimumSize in class javax.swing.plaf.ComponentUI

getMaximumSize

public java.awt.Dimension getMaximumSize(javax.swing.JComponent c)
Overrides:
getMaximumSize in class javax.swing.plaf.ComponentUI

addSubHelpSets

protected void addSubHelpSets(HelpSet hs)
Adds subhelpsets

Parameters:
hs - The HelpSet which subhelpsets will be added

merge

public void merge(NavigatorView view)
Merges in the navigational data from another NavigatorView.

Overrides:
merge in class HelpNavigatorUI

remove

public void remove(NavigatorView view)
Removes the navigational data from another NavigatorView.

Overrides:
remove in class HelpNavigatorUI

setCellRenderer

protected void setCellRenderer(NavigatorView view,
                               javax.swing.JTree tree)
Setd the desired cell renderer on this tree. This is exposed for redefinition by subclases.


idChanged

public void idChanged(HelpModelEvent e)
Processes an idChanged event. Search is different from all other navigators in that you while search tree is synchronized the highlighting doesn't occur unless selected from the search navigator.

Specified by:
idChanged in interface HelpModelListener
Parameters:
e - The event

getHelpNavigator

protected JHelpNavigator getHelpNavigator()

valueChanged

public void valueChanged(javax.swing.event.TreeSelectionEvent e)
A value has changed. This is used as a TreeSelectionListener.

Specified by:
valueChanged in interface javax.swing.event.TreeSelectionListener

propertyChange

public void propertyChange(java.beans.PropertyChangeEvent event)
Specified by:
propertyChange in interface java.beans.PropertyChangeListener

componentResized

public void componentResized(java.awt.event.ComponentEvent e)
Invoked when the component's size changes.

Specified by:
componentResized in interface java.awt.event.ComponentListener

componentMoved

public void componentMoved(java.awt.event.ComponentEvent e)
Invoked when the component's position changes.

Specified by:
componentMoved in interface java.awt.event.ComponentListener

componentShown

public void componentShown(java.awt.event.ComponentEvent e)
Invoked when the component has been made visible.

Specified by:
componentShown in interface java.awt.event.ComponentListener

componentHidden

public void componentHidden(java.awt.event.ComponentEvent e)
Invoked when the component has been made invisible.

Specified by:
componentHidden in interface java.awt.event.ComponentListener

itemsFound

public void itemsFound(SearchEvent e)
Description copied from interface: SearchListener
Tells the listener that matching SearchItems have been found.

Specified by:
itemsFound in interface SearchListener

searchStarted

public void searchStarted(SearchEvent e)
Description copied from interface: SearchListener
Tells the listener that the search has started.

Specified by:
searchStarted in interface SearchListener

searchFinished

public void searchFinished(SearchEvent e)
Description copied from interface: SearchListener
Tells the listener that the search has finished

Specified by:
searchFinished in interface SearchListener