Uses of Class
es.prodevelop.gvsig.mobile.gui.tool.TBButton

Packages that use TBButton
es.prodevelop.gvsig.mobile.gui.canvas   
es.prodevelop.gvsig.mobile.gui.mainframe   
es.prodevelop.gvsig.mobile.gui.tool   
es.prodevelop.gvsig.mobile.gui.tool.maplistener   
 

Uses of TBButton in es.prodevelop.gvsig.mobile.gui.canvas
 

Methods in es.prodevelop.gvsig.mobile.gui.canvas that return TBButton
 TBButton MapControl.getCurrentTool()
          Returns the active Tool associated to the Listener in MapToolListener Only tools of type TBSelectableTool (subclass of TBButton) registers listeners, so only this objects will be real active tools
 

Methods in es.prodevelop.gvsig.mobile.gui.canvas with parameters of type TBButton
 void MapControl.setListener(TBButton button, boolean clearStatusBar)
          Sets a new active button by assigning it to a new Listener
 

Uses of TBButton in es.prodevelop.gvsig.mobile.gui.mainframe
 

Methods in es.prodevelop.gvsig.mobile.gui.mainframe with parameters of type TBButton
 boolean MainWindow.getTool(TBButton tb)
          Searches for the existence of a tool in the ToolBars
 

Uses of TBButton in es.prodevelop.gvsig.mobile.gui.tool
 

Subclasses of TBButton in es.prodevelop.gvsig.mobile.gui.tool
 class TBActionButton
          A tool bar button without state.
 class TBComboButton
          A button that is aimed to be placed in a tool bar, with the ability to contain several buttons inside.
 class TBSelectableButton
          A tool bar button with state.
 class TBSwitcherButton
          This button have 2 states, activated or deactivaded changing with turnOn() and turnOff() This state is not affected by other buttons in toolbar
 

Methods in es.prodevelop.gvsig.mobile.gui.tool that return TBButton
 TBButton[] ToolBar.getButtons()
          Returns the array of visible buttons of type TBButton that the ToolBar contains.
 TBButton[] ToolBar.getAllButtons()
          Returns the array of all buttons of type TBButton that the ToolBar contains, including the ones in a combo list For a TBActionButton or TBSelectableButton it returns that button.
 TBButton TBMenu.getTool(int index)
          Returns one tool in the list of tools displayed in the menu, given its index
 TBButton[] TBMenu.getButtons()
          Returns the array of buttons of type TBButton that the menu contains
 TBButton[] TBComboButton.getButtons()
          Returns the array of buttons of type TBButton that the Combo Button contains
 TBButton TBComboButton.getActiveTool()
          Returns the active tool in the combo list
 TBButton TBButton.buttonClone()
          "pseudo-override" visilibity and return typeof java.lang.Object.clone() for being used when copying array of TBButtons
 TBButton[] IToolContainer.getButtons()
          Gets the array of TBButtons that the object contain
 

Methods in es.prodevelop.gvsig.mobile.gui.tool with parameters of type TBButton
 void ToolBar.addButton(TBButton button, int index)
          Adds a button in the toolbar.
 void TBMenu.addButton(TBButton button, int index)
          Adds a new item to the menu.
 void TBComboButton.addButton(TBButton button, int index)
          Adds a button to the combo list.
 void TBComboButton.setActiveTool(TBButton b)
          Sets the active tool in the combo list
 void IToolContainer.addButton(TBButton button, int index)
          Method used for adding a TBButton to a IToolContainer
 

Constructors in es.prodevelop.gvsig.mobile.gui.tool with parameters of type TBButton
TBComboButton(ToolBar _owner, TBButton defaultTBButton, java.awt.event.MouseListener ml)
          Creates an instance of a TBComboButton button by calling to the superclass constructor given the owner where it should be placed (which must be a ToolBar), the default button (which must be a TBButton and the listener of the events for this new instance
 

Uses of TBButton in es.prodevelop.gvsig.mobile.gui.tool.maplistener
 

Methods in es.prodevelop.gvsig.mobile.gui.tool.maplistener that return TBButton
 TBButton MapToolListener.getCurrentTool()
          Returns the active tool.
 

Methods in es.prodevelop.gvsig.mobile.gui.tool.maplistener with parameters of type TBButton
 void MapToolListener.setTool(TBButton tb, boolean clearStatusBar)
          Sets the current tool.