本文整理汇总了Java中com.google.gwt.user.client.ui.ListBox.setVisibleItemCount方法的典型用法代码示例。如果您正苦于以下问题:Java ListBox.setVisibleItemCount方法的具体用法?Java ListBox.setVisibleItemCount怎么用?Java ListBox.setVisibleItemCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.gwt.user.client.ui.ListBox
的用法示例。
在下文中一共展示了ListBox.setVisibleItemCount方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initializeListBox
import com.google.gwt.user.client.ui.ListBox; //导入方法依赖的package包/类
/**
* Initializes the list box that allows to select styles
* @param listBox the list box to initialize
* @param dataToName the mapping from the style ID to the human readable name of the style
* @param dataToStyleName the mapping from the style ID to the CSS style name
* @param defaultValue the default style ID that should be set as selected
*/
public void initializeListBox( final ListBox listBox, final Map<Integer, String> dataToName,
final Map<Integer, String> dataToStyleName, final int defaultValue) {
//Initialize the list box with data
Iterator< Entry<Integer,String> > entrySetIter = dataToName.entrySet().iterator();
while( entrySetIter.hasNext() ) {
Entry<Integer, String> entry = entrySetIter.next();
listBox.addItem( entry.getValue(), dataToStyleName.get( entry.getKey() ) );
}
listBox.setVisibleItemCount( 1 );
//Set the default value as being selected
setListBoxStyleID( listBox, defaultValue, dataToStyleName );
//Add the change listener
listBox.addChangeHandler(new ChangeHandler() {
public void onChange(ChangeEvent e) {
//Update the sample view
updateSampleViewStyles();
}
});
}
示例2: addDropDown
import com.google.gwt.user.client.ui.ListBox; //导入方法依赖的package包/类
/**
* To add Drop Down.
*
* @param row int
* @param sampleValueList List<String>
* @param selectedValue String
* @param htmlID String
* @param elementMap Map<String, Widget>
* @return ListBox
*/
public ListBox addDropDown(int row, List<String> sampleValueList, String selectedValue, String htmlID,
Map<String, Widget> elementMap) {
ListBox fieldValue = new ListBox();
elementMap.put(htmlID, fieldValue);
fieldValue.getElement().setId(htmlID);
fieldValue.setVisibleItemCount(1);
for (String item : sampleValueList) {
fieldValue.addItem(item);
}
if (selectedValue == null) {
fieldValue.setItemSelected(0, true);
} else {
fieldValue.setItemSelected(sampleValueList.indexOf(selectedValue), true);
}
return fieldValue;
}
示例3: makeTemplatesMenu
import com.google.gwt.user.client.ui.ListBox; //导入方法依赖的package包/类
/**
* Creates a drop down menu for selecting Template repositories.
* @return the drop down menu of repository Urls.
*/
private ListBox makeTemplatesMenu() {
final ListBox templatesMenu = new ListBox();
templatesMenu.addItem(MESSAGES.templateUploadNewUrlCaption());
templatesMenu.addItem(MIT_TEMPLATES);
for (int k = 0; k < dynamicTemplateUrls.size(); k++) { // Dynamically added Urls
templatesMenu.addItem(dynamicTemplateUrls.get(k));
}
templatesMenu.setSelectedIndex(MIT_TEMPLATES_INDEX);
templatesMenu.addChangeHandler(new ChangeHandler() {
public void onChange(ChangeEvent event) {
int selectedIndex = templatesMenu.getSelectedIndex();
if (selectedIndex == 0) {
templatesMenu.setSelectedIndex(lastSelectedIndex);
usingExternalTemplate = true; // MIT templates at index 1
removeButton.setVisible(false);
new InputTemplateUrlWizard(instance).center(); // This will do a callback
} else if (selectedIndex == 1) {
removeButton.setVisible(false); lastSelectedIndex = selectedIndex;
usingExternalTemplate = false; // MIT templates at index 1
templateHostUrl = "";
retrieveSelectedTemplates(templatesMenu.getValue(selectedIndex)); // may do callback
} else {
removeButton.setVisible(true); lastSelectedIndex = selectedIndex;
usingExternalTemplate = true; // MIT templates at index 1
templateHostUrl = templatesMenu.getValue(selectedIndex);
retrieveSelectedTemplates(templatesMenu.getValue(selectedIndex)); // may do callback
}
}
});
templatesMenu.setVisibleItemCount(1); // Turns menu into a drop-down list).
return templatesMenu;
}
示例4: addMultipleSelectListBox
import com.google.gwt.user.client.ui.ListBox; //导入方法依赖的package包/类
/**
* To add Multiple Select List Box.
*
* @param row int
* @param sampleValueList List<String>
* @param MAX_VISIBLE_ITEM_COUNT int
* @param value String
* @return ListBox
*/
public ListBox addMultipleSelectListBox(int row, List<String> sampleValueList, int MAX_VISIBLE_ITEM_COUNT, String value) {
ListBox fieldValue = new ListBox(true);
fieldValue.setVisibleItemCount(MAX_VISIBLE_ITEM_COUNT);
for (String item : sampleValueList) {
fieldValue.addItem(item);
}
String[] selectedValue = value.split(";");
for (String string : selectedValue) {
fieldValue.setItemSelected(sampleValueList.indexOf(string), true);
}
return fieldValue;
}
示例5: addDropDown
import com.google.gwt.user.client.ui.ListBox; //导入方法依赖的package包/类
/**
* To add drop down.
*
* @param row int
* @param sampleValueList List<String>
* @param selectedValue String
* @return ListBox
*/
public ListBox addDropDown(int row, List<String> sampleValueList, String selectedValue) {
ListBox fieldValue = new ListBox();
fieldValue.setVisibleItemCount(1);
for (String item : sampleValueList) {
fieldValue.addItem(item);
}
fieldValue.setItemSelected(sampleValueList.indexOf(selectedValue), true);
return fieldValue;
}
示例6: MultipleSelectTwoSidedListBox
import com.google.gwt.user.client.ui.ListBox; //导入方法依赖的package包/类
public MultipleSelectTwoSidedListBox(HandlerManager eventBus) {
super();
initWidget(BINDER.createAndBindUi(this));
leftHandSideListBox = new ListBox(true);
rightHandSideListBox = new ListBox(true);
availableLabel = new Label();
selectedLabel = new Label();
/* Add handlers to buttons */
addUpButtonPressHandler(moveUpButton, rightHandSideListBox);
addDownButtonPressHandler(moveDownButton, rightHandSideListBox);
/* Add list to their panels */
leftHandSideListBoxPanel.add(availableLabel);
rightHandSideListBoxPanel.add(selectedLabel);
leftHandSideListBoxPanel.add(leftHandSideListBox);
rightHandSideListBoxPanel.add(rightHandSideListBox);
addCSSStyles();
moveLeftButton.setText(REMOVE);
moveRightButton.setText(ADD);
moveUpButton.setText(UP_BUTTON);
moveDownButton.setText(DOWN_BUTTON);
leftHandSideListBox.setVisibleItemCount(VISIBLE_COUNT_13);
rightHandSideListBox.setVisibleItemCount(VISIBLE_COUNT_13);
this.setEventBus(eventBus);
}
示例7: addDropDown
import com.google.gwt.user.client.ui.ListBox; //导入方法依赖的package包/类
public ListBox addDropDown(String fieldOptionValueList, String value) {
ListBox fieldValue = new ListBox();
fieldValue.setVisibleItemCount(1);
String[] selectedValue = fieldOptionValueList.split(";");
List<String> selectedValueList = Arrays.asList(selectedValue);
for (String item : selectedValueList) {
if (!item.trim().isEmpty()) {
fieldValue.addItem(item);
}
}
if (value != null && !value.isEmpty()) {
fieldValue.setItemSelected(selectedValueList.indexOf(value), true);
}
return fieldValue;
}
示例8: createColorList
import com.google.gwt.user.client.ui.ListBox; //导入方法依赖的package包/类
private ListBox createColorList(String caption) {
ListBox lb = new ListBox();
lb.addChangeListener(listener);
lb.setVisibleItemCount(1);
lb.addItem(caption);
lb.addItem(strings.white(), "white");
lb.addItem(strings.black(), "black");
lb.addItem(strings.red(), "red");
lb.addItem(strings.green(), "green");
lb.addItem(strings.yellow(), "yellow");
lb.addItem(strings.blue(), "blue");
return lb;
}
示例9: createFontList
import com.google.gwt.user.client.ui.ListBox; //导入方法依赖的package包/类
private ListBox createFontList() {
ListBox lb = new ListBox();
lb.addChangeListener(listener);
lb.setVisibleItemCount(1);
lb.addItem(strings.font(), "");
lb.addItem(strings.normal(), "");
lb.addItem("Times New Roman", "Times New Roman");
lb.addItem("Arial", "Arial");
lb.addItem("Courier New", "Courier New");
lb.addItem("Georgia", "Georgia");
lb.addItem("Trebuchet", "Trebuchet");
lb.addItem("Verdana", "Verdana");
return lb;
}
示例10: createFontSizes
import com.google.gwt.user.client.ui.ListBox; //导入方法依赖的package包/类
private ListBox createFontSizes() {
ListBox lb = new ListBox();
lb.addChangeListener(listener);
lb.setVisibleItemCount(1);
lb.addItem(strings.size());
lb.addItem(strings.xxsmall());
lb.addItem(strings.xsmall());
lb.addItem(strings.small());
lb.addItem(strings.medium());
lb.addItem(strings.large());
lb.addItem(strings.xlarge());
lb.addItem(strings.xxlarge());
return lb;
}
示例11: createEnumInput
import com.google.gwt.user.client.ui.ListBox; //导入方法依赖的package包/类
private ListBox createEnumInput(boolean isMultiSelect) {
ListBox lb = new ListBox(isMultiSelect);
lb.setVisibleItemCount(isMultiSelect ? 5 : 1);
if (isMultiSelect && BrowserUtil.isIE()) {
lb.setHeight("70px");
}
lb.setWidth("130px");
return lb;
}
示例12: YoungAndroidComponentSelectorPropertyEditor
import com.google.gwt.user.client.ui.ListBox; //导入方法依赖的package包/类
/**
* Creates a new property editor for selecting a component, where the
* user chooses among components of one or more component types.
*
* @param editor the editor that this property editor belongs to
* @param componentTypes types of component that can be selected, or null if
* all types of components can be selected.
*/
public YoungAndroidComponentSelectorPropertyEditor(final YaFormEditor editor,
Set<String> componentTypes) {
this.editor = editor;
this.componentTypes = componentTypes;
VerticalPanel selectorPanel = new VerticalPanel();
componentsList = new ListBox();
componentsList.setVisibleItemCount(10);
componentsList.setWidth("100%");
selectorPanel.add(componentsList);
selectorPanel.setWidth("100%");
choices = new ListWithNone(MESSAGES.noneCaption(), new ListWithNone.ListBoxWrapper() {
@Override
public void addItem(String item) {
componentsList.addItem(item);
}
@Override
public String getItem(int index) {
return componentsList.getItemText(index);
}
@Override
public void removeItem(int index) {
componentsList.removeItem(index);
}
@Override
public void setSelectedIndex(int index) {
componentsList.setSelectedIndex(index);
}
});
// At this point, the editor hasn't finished loading.
// Use a DeferredCommand to finish the initialization after the editor has finished loading.
DeferredCommand.addCommand(new Command() {
@Override
public void execute() {
if (editor.isLoadComplete()) {
finishInitialization();
} else {
// Editor still hasn't finished loading.
DeferredCommand.addCommand(this);
}
}
});
initAdditionalChoicePanel(selectorPanel);
}
开发者ID:mit-cml,项目名称:appinventor-extensions,代码行数:59,代码来源:YoungAndroidComponentSelectorPropertyEditor.java