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


Java HorizontalPanel.getWidgetCount方法代码示例

本文整理汇总了Java中com.google.gwt.user.client.ui.HorizontalPanel.getWidgetCount方法的典型用法代码示例。如果您正苦于以下问题:Java HorizontalPanel.getWidgetCount方法的具体用法?Java HorizontalPanel.getWidgetCount怎么用?Java HorizontalPanel.getWidgetCount使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.google.gwt.user.client.ui.HorizontalPanel的用法示例。


在下文中一共展示了HorizontalPanel.getWidgetCount方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onSuccess

import com.google.gwt.user.client.ui.HorizontalPanel; //导入方法依赖的package包/类
@Override
public void onSuccess(String id) {
    
    spin.hide();
    eventBus.fireEvent(new ESGFDatasetAddedEvent());
    for ( int i = 0; i < datasetPanel.getWidgetCount(); i++) {
        HorizontalPanel entry = (HorizontalPanel) datasetPanel.getWidget(i);
        if ( entry.getWidgetCount() == 1 && entry.getElement().getId().equals(id)) {
            String added = "&nbsp;&nbsp(Data set ready.)";
            HTML addedlabel = new HTML(added);
            entry.add(addedlabel);
        }
    }
}
 
开发者ID:NOAA-PMEL,项目名称:LAS,代码行数:15,代码来源:ESGFSearchPanel.java

示例2: updateGotoWidget

import com.google.gwt.user.client.ui.HorizontalPanel; //导入方法依赖的package包/类
protected void updateGotoWidget(Widget widget) {
  widget.setVisible(computeNumPages() > 1);
  // Update allowed number of characters in the goto page textbox in case page size has changed (Yuck!)
  if(widget instanceof HorizontalPanel) {
    HorizontalPanel panel = (HorizontalPanel)widget;
    if(panel.getWidgetCount() == 3 && panel.getWidget(1) instanceof TextBox) {
      TextBox gotoPage = (TextBox)panel.getWidget(1);
      int maxlen = String.valueOf(computeNumPages()).length();
      gotoPage.setMaxLength(maxlen);
      gotoPage.setVisibleLength(maxlen);
    }
  }
}
 
开发者ID:sanderberents,项目名称:gwtlib,代码行数:14,代码来源:PagingBar.java

示例3: saveCurriculum

import com.google.gwt.user.client.ui.HorizontalPanel; //导入方法依赖的package包/类
public boolean saveCurriculum(CurriculumInterface c) {
	boolean ret = true;
	HashSet<String> courses = new HashSet<String>();
	HashMap<String, CurriculumCourseGroupInterface> groups = new HashMap<String, CurriculumCourseGroupInterface>();
	if (c.hasCourses()) c.getCourses().clear();
	for (int row = 1; row < iTable.getRowCount(); row++) {
		String course = ((CurriculaCourseSelectionBox)iTable.getWidget(row, 1)).getText();
		if (course.isEmpty()) continue;
		if (!courses.add(course)) {
			((CurriculaCourseSelectionBox)iTable.getWidget(row, 1)).setError(MESSAGES.errorDuplicateCourse(course));
			ret = false;
			continue;
		}
		CourseInterface cr = new CourseInterface();
		cr.setCourseName(course);
		for (int i = 0; i < iClassifications.getClassifications().size(); i++) {
			Float share = ((ShareTextBox)iTable.getWidget(row, 2 + 2 * i)).getShare();
			if (share == null) continue;
			Integer lastLike = ((EnrollmentLabel)iTable.getWidget(row, 3 + 2 * i)).iLastLike;
			CurriculumCourseInterface cx = new CurriculumCourseInterface();
			cx.setShare(share);
			cx.setLastLike(lastLike);
			cx.setCurriculumClassificationId(iClassifications.getClassifications().get(i).getId());
			cr.setCurriculumCourse(i, cx);
		}
		if (!cr.hasCurriculumCourses()) continue;
		HorizontalPanel hp = (HorizontalPanel)iTable.getWidget(row, 0);
		for (int i = 0; i < hp.getWidgetCount(); i++) {
			Group g = (Group)hp.getWidget(i);
			CurriculumCourseGroupInterface gr = groups.get(g.getName());
			if (gr == null) {
				gr = new CurriculumCourseGroupInterface();
				gr.setName(g.getName());
				gr.setType(g.getType());
				gr.setEditable(g.isEditable());
				gr.setColor(g.getColor());
				groups.put(g.getName(), gr);
			}
			cr.addGroup(gr);
		}
		c.addCourse(cr);
	}
	return ret;
}
 
开发者ID:Jenner4S,项目名称:unitimes,代码行数:45,代码来源:CurriculaCourses.java

示例4: buildGUI

import com.google.gwt.user.client.ui.HorizontalPanel; //导入方法依赖的package包/类
@Override
  public void buildGUI() {
add( ClientUtils.createVerticalEmptyWidget( 30 ) );

final HorizontalPanel greetingsPanel = new HorizontalPanel();
add( greetingsPanel );

if ( sharedApiAccountUserInfo == null ) {
	// Greeting
	if ( apiUserInfo.getLastVisit() == null ) {
		greetingsPanel.add( new Label( "Welcome " ) );
		greetingsPanel.add( ClientUtils.createHorizontalEmptyWidget( 5 ) );
		greetingsPanel.add( ClientUtils.styledWidget( new Label( apiUserInfo.getUserName() ), "strong" ) );
		greetingsPanel.add( new Label( "!" ) );
	}
	else {
		greetingsPanel.add( new Label( "Welcome back" ) );
		greetingsPanel.add( ClientUtils.createHorizontalEmptyWidget( 5 ) );
		greetingsPanel.add( ClientUtils.styledWidget( new Label( apiUserInfo.getUserName() ), "strong" ) );
		greetingsPanel.add( new Label( "! Your last visit was at:" ) );
		greetingsPanel.add( ClientUtils.createHorizontalEmptyWidget( 5 ) );
		greetingsPanel.add( ClientUtils.createTimestampWidget( apiUserInfo.getLastVisit() ) );
	}
}
else {
	if ( sharedApiAccountUserInfo.isHasApiAccount() )
		greetingsPanel.add( new Label( "You are now viewing the" ) );
	else
		greetingsPanel.add( new Label( "You do NOT have access to the" ) );
	greetingsPanel.add( ClientUtils.createHorizontalEmptyWidget( 9 ) );
	greetingsPanel.add( ClientUtils.styledWidget( new Label( sharedApiAccountUserInfo.getSharedApiAccount() ), "strong" ) );
	greetingsPanel.add( ClientUtils.createHorizontalEmptyWidget( 9 ) );
	greetingsPanel.add( new Label( "API account!" ) );
}

// Replay parser engine version
if ( apiUserInfo.getRepParserEngineVer() != null ) {
	add( ClientUtils.createVerticalEmptyWidget( 30 ) );
	final HorizontalPanel rowPanel = new HorizontalPanel();
	rowPanel.add( new Label( "Replay parser engine version:" ) );
	rowPanel.add( ClientUtils.createHorizontalEmptyWidget( 5 ) );
	rowPanel.add( ClientUtils.styledWidget( new Label( apiUserInfo.getRepParserEngineVer() ), "strong" ) );
	add( rowPanel );
}

// Parsing service tester page
add( ClientUtils.createVerticalEmptyWidget( 30 ) );
add( new Anchor( "Parsing Service Tester page", "/parsing_service_tester.html", "_blank" ) );

add( ClientUtils.createVerticalEmptyWidget( 70 ) );

// Footer
final HorizontalPanel linksPanel = new HorizontalPanel();
linksPanel.setWidth( "500px" );
DOM.setStyleAttribute( linksPanel.getElement(), "padding", "2px" );
DOM.setStyleAttribute( linksPanel.getElement(), "borderTop", "1px solid #555555" );
linksPanel.addStyleName( "noWrap" );
linksPanel.add( new Anchor( "About the Service", "https://sites.google.com/site/sc2gears/parsing-service", "_blank" ) );
linksPanel.add( ClientUtils.createHorizontalEmptyWidget( 10 ) );
linksPanel.add( new Anchor( "Terms of Service", "https://sites.google.com/site/sc2gears/parsing-service#TOC-Terms-of-Service", "_blank" ) );
linksPanel.add( ClientUtils.createHorizontalEmptyWidget( 10 ) );
linksPanel.add( new Anchor( "Privacy Policy", "https://sites.google.com/site/sc2gears/parsing-service#TOC-Privacy-Policy", "_blank" ) );
linksPanel.add( ClientUtils.createHorizontalEmptyWidget( 15 ) );
final Label lastLabel = new Label( "© András Belicza, 2011-2014, Icons: Fugue" );
DOM.setStyleAttribute( lastLabel.getElement(), "color", "#555555" );
DOM.setStyleAttribute( lastLabel.getElement(), "paddingTop", "3px" );
linksPanel.add( lastLabel );
linksPanel.setCellWidth( lastLabel, "100%" );
linksPanel.setCellHorizontalAlignment( lastLabel, HasHorizontalAlignment.ALIGN_RIGHT );
for ( int i = linksPanel.getWidgetCount() - 1; i >= 0; i-- )
	DOM.setStyleAttribute( linksPanel.getWidget( i ).getElement(), "fontSize", "80%" );
add( linksPanel );
  }
 
开发者ID:icza,项目名称:sc2gears,代码行数:74,代码来源:HomePage.java


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