Package com.extjs.gxt.ui.client.widget.toolbar

Source Code of com.extjs.gxt.ui.client.widget.toolbar.SplitToolItem

/*
* Ext GWT - Ext for GWT
* Copyright(c) 2007, 2008, Ext JS, LLC.
* licensing@extjs.com
*
* http://extjs.com/license
*/
package com.extjs.gxt.ui.client.widget.toolbar;

import com.extjs.gxt.ui.client.Events;
import com.extjs.gxt.ui.client.event.ComponentEvent;
import com.extjs.gxt.ui.client.event.Listener;
import com.extjs.gxt.ui.client.widget.button.SplitButton;

/**
* A split button tool item.
*
* <dt><b>Events:</b></dt>
*
* <dd><b>ArrowClick</b> : ToolBarEvent(toolBar, item, event)<br>
* <div>Fires when this button's arrow is clicked.</div>
* <ul>
* <li>component : this</li>
* <li>item : the menu</li>
* <li>event : the dom event</li>
* </ul>
* </dd> </dt>
*/
public class SplitToolItem extends TextToolItem {

  protected SplitButton splitButton;

  /**
   * Creates a new split button item.
   */
  public SplitToolItem() {
    splitButton = new SplitButton();
    initComponent();
  }

  /**
   * Creates a new split tool item.
   *
   * @param text the item's text
   */
  public SplitToolItem(String text) {
    splitButton = new SplitButton(text);
    initComponent();
  }

  protected void initComponent() {
    button = splitButton;
    splitButton.addListener(Events.ArrowClick, new Listener<ComponentEvent>() {
      public void handleEvent(ComponentEvent ce) {
        onArrowClick(ce);
      }
    });
  }

  protected void onArrowClick(ComponentEvent ce) {
    ce.component = this;
    fireEvent(Events.ArrowClick, ce);
  }

}
TOP

Related Classes of com.extjs.gxt.ui.client.widget.toolbar.SplitToolItem

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.