当前位置: 首页>>代码示例>>Java>>正文


Java ButtonBar类代码示例

本文整理汇总了Java中com.googlecode.mgwt.ui.client.widget.buttonbar.ButtonBar的典型用法代码示例。如果您正苦于以下问题:Java ButtonBar类的具体用法?Java ButtonBar怎么用?Java ButtonBar使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ButtonBar类属于com.googlecode.mgwt.ui.client.widget.buttonbar包,在下文中一共展示了ButtonBar类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setToolbar

import com.googlecode.mgwt.ui.client.widget.buttonbar.ButtonBar; //导入依赖的package包/类
@Override
public void setToolbar(ButtonBar toolbar) {
	this.toolbar = toolbar;
	if (toolbar != null) {
		mainPanel.add(this.toolbar);	
	}
}
 
开发者ID:qafedev,项目名称:qafe-platform,代码行数:8,代码来源:WindowViewImpl.java

示例2: ButtonBarViewGwtImpl

import com.googlecode.mgwt.ui.client.widget.buttonbar.ButtonBar; //导入依赖的package包/类
/**
 * 
 */
public ButtonBarViewGwtImpl() {

	footerPanel = new ButtonBar();

	footerPanel.add(new ActionButton());
	footerPanel.add(new ButtonBarSpacer());
	footerPanel.add(new ButtonBarText("there are much more buttons"));
	footerPanel.add(new ButtonBarSpacer());
	//		footerPanel.add(new ActionButton());
	//		footerPanel.add(new ArrowDownButton());
	//		footerPanel.add(new ArrowUpButton());
	//		footerPanel.add(new ArrowLeftButton());
	//		footerPanel.add(new ArrowRightButton());
	//		footerPanel.add(new BookmarkButton());
	//		footerPanel.add(new CameraButton());
	//		footerPanel.add(new ComposeButton());
	//
	//		footerPanel.add(new FastForwardButton());
	//
	//		footerPanel.add(new InfoButton());
	//		footerPanel.add(new LocateButton());
	//		footerPanel.add(new NewIconButton());
	//		footerPanel.add(new NextSlideButton());
	//		footerPanel.add(new OrganizeButton());
	//		footerPanel.add(new PauseButton());
	//		footerPanel.add(new PlayButton());
	//		footerPanel.add(new PlusButton());
	//		footerPanel.add(new PreviousSlideButton());
	//		footerPanel.add(new ReplyButton());
	//		footerPanel.add(new RewindButton());
	//		footerPanel.add(new SearchButton());
	//		footerPanel.add(new StopButton());
	footerPanel.add(new TrashButton());

	main.add(footerPanel);
}
 
开发者ID:qafedev,项目名称:qafe-platform,代码行数:40,代码来源:ButtonBarViewGwtImpl.java

示例3: renderChildren

import com.googlecode.mgwt.ui.client.widget.buttonbar.ButtonBar; //导入依赖的package包/类
private void renderChildren(WindowGVO component, WindowView widget, String uuid, String parent, String context, AbstractActivity activity) {
	RootPanelGVO rootPanelGVO = component.getRootPanel();
	UIObject rootPanel = renderChildComponent(rootPanelGVO, component.getId(), uuid, component.getId(), context, activity);
	if (rootPanel instanceof Widget) {
		widget.setContent((Widget)rootPanel);	
	}
	
	ToolbarGVO toolbarGVO = rootPanelGVO.getToolbarGVO();
	UIObject toolbar = renderChildComponent(toolbarGVO, rootPanelGVO.getId(), uuid, component.getId(), context, activity);
	if (toolbar instanceof ButtonBar) {
		widget.setToolbar((ButtonBar)toolbar);	
	}
}
 
开发者ID:qafedev,项目名称:qafe-platform,代码行数:14,代码来源:WindowRenderer.java

示例4: setToolbar

import com.googlecode.mgwt.ui.client.widget.buttonbar.ButtonBar; //导入依赖的package包/类
public void setToolbar(ButtonBar toolbar); 
开发者ID:qafedev,项目名称:qafe-platform,代码行数:2,代码来源:WindowView.java


注:本文中的com.googlecode.mgwt.ui.client.widget.buttonbar.ButtonBar类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。