/***************************************************************\
| |\  /|                                                We Put  |
| | >< Hypercosm       getting_started_toolbar.js       3d      |
| |/  \|                                                To Work |
|***************************************************************|
|                                                               |
|        This file defines the Javascript behaviors of a        |
|        specific type of SketchUp user interface toolbar.      |
|                                                               |
|***************************************************************|
|                Copyright (c) 2007 Hypercosm, LLC.             |
\***************************************************************/


//
// "class" constructor
//


function gettingStartedToolbar(element, mouseModeButtons, parent) {

  // call superclass constructor
  //
  toolbar.call(this, element, null, parent);
  
  // add buttons to toolbar
  //
  this.orbitButton = new orbitButton("orbitButton", mouseModeButtons, this);
  this.panButton = new panButton("panButton", mouseModeButtons, this);
  this.zoomButton = new zoomButton("zoomButton", mouseModeButtons, this);
  this.zoomExtentsButton = new zoomExtentsButton("zoomExtentsButton", this);
  this.tapeMeasureButton = new tapeMeasureButton("tapeMeasureButton", mouseModeButtons, this);
  
  return this;
}    // gettingStartedToolbar


// inherit prototype from "superclass"
//
gettingStartedToolbar.prototype = new toolbar();
