/* * Ext GWT 2.2.4 - Ext for GWT * Copyright(c) 2007-2010, Ext JS, LLC. * licensing@extjs.com * * http://extjs.com/license */ package com.extjs.gxt.ui.client.widget.button; import com.extjs.gxt.ui.client.widget.toolbar.ToolBar; /** * A horizontal row of buttons. */ public class ButtonBar extends ToolBar { /** * Creates a left aligned button bar. */ public ButtonBar() { super(); setSpacing(5); baseStyle = "x-panel-fbar"; } }