Today I found a workaround for GWTs Issue 729, however only for the SuggestBox and not for the MenuBar.
I changed the source of SuggestBox.java and added a special FocusListener. This listener fires onLostFocus AFTER the entire SuggestBox (TextBox and SuggestPopup) lost the focus. This lets you close the popup per hand (in the onLostFocus method), because the automatic way does not function properly (Issue 729).
Here you have the modified code of SuggestBox.java (I added comments to the lines, I've added):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 | /* * Copyright 2008 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.google.gwt.user.client.ui; import java.util.ArrayList; import java.util.Collection; import java.util.List; import com.google.gwt.i18n.client.LocaleInfo; import com.google.gwt.user.client.Command; import com.google.gwt.user.client.DOM; import com.google.gwt.user.client.Window; import com.google.gwt.user.client.ui.PopupPanel.AnimationType; import com.google.gwt.user.client.ui.SuggestOracle.Callback; import com.google.gwt.user.client.ui.SuggestOracle.Request; import com.google.gwt.user.client.ui.SuggestOracle.Response; import com.google.gwt.user.client.ui.SuggestOracle.Suggestion; /** * A {@link SuggestBox} is a text box or text area which displays a * pre-configured set of selections that match the user's input. * * Each {@link SuggestBox} is associated with a single {@link SuggestOracle}. * The {@link SuggestOracle} is used to provide a set of selections given a * specific query string. * * <p> * By default, the {@link SuggestBox} uses a {@link MultiWordSuggestOracle} as * its oracle. Below we show how a {@link MultiWordSuggestOracle} can be * configured: * </p> * * <pre> * MultiWordSuggestOracle oracle = new MultiWordSuggestOracle(); * oracle.add("Cat"); * oracle.add("Dog"); * oracle.add("Horse"); * oracle.add("Canary"); * * SuggestBox box = new SuggestBox(oracle); * </pre> * * Using the example above, if the user types "C" into the text widget, the * oracle will configure the suggestions with the "Cat" and "Canary" * suggestions. Specifically, whenever the user types a key into the text * widget, the value is submitted to the <code>MultiWordSuggestOracle</code>. * * <p> * Note that there is no method to retrieve the "currently selected suggestion" * in a SuggestBox, because there are points in time where the currently * selected suggestion is not defined. For example, if the user types in some * text that does not match any of the SuggestBox's suggestions, then the * SuggestBox will not have a currently selected suggestion. It is more useful * to know when a suggestion has been chosen from the SuggestBox's list of * suggestions. A SuggestBox fires * {@link SuggestionEvent SuggestionEvents} whenever a suggestion is chosen, and * handlers for these events can be added using the * {@link #addEventHandler(SuggestionHandler)} method. * </p> * * <p> * <img class='gallery' src='SuggestBox.png'/> * </p> * * <h3>CSS Style Rules</h3> * <ul class='css'> * <li>.gwt-SuggestBox { the suggest box itself }</li> * <li>.gwt-SuggestBoxPopup { the suggestion popup }</li> * <li>.gwt-SuggestBoxPopup .item { an unselected suggestion }</li> * <li>.gwt-SuggestBoxPopup .item-selected { a selected suggestion }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupTopLeft { the top left cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupTopLeftInner { the inner element of * the cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupTopCenter { the top center cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupTopCenterInner { the inner element of * the cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupTopRight { the top right cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupTopRightInner { the inner element of * the cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupMiddleLeft { the middle left cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupMiddleLeftInner { the inner element of * the cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupMiddleCenter { the middle center cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupMiddleCenterInner { the inner element * of the cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupMiddleRight { the middle right cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupMiddleRightInner { the inner element * of the cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupBottomLeft { the bottom left cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupBottomLeftInner { the inner element of * the cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupBottomCenter { the bottom center cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupBottomCenterInner { the inner element * of the cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupBottomRight { the bottom right cell }</li> * <li>.gwt-SuggestBoxPopup .suggestPopupBottomRightInner { the inner element * of the cell }</li> * </ul> * * @see SuggestOracle * @see MultiWordSuggestOracle * @see TextBoxBase */ public final class SuggestBox extends Composite implements HasText, HasFocus, HasAnimation, SourcesClickEvents, SourcesFocusEvents, SourcesChangeEvents, SourcesKeyboardEvents, FiresSuggestionEvents { /** * The SuggestionMenu class is used for the display and selection of * suggestions in the SuggestBox widget. SuggestionMenu differs from * MenuBar in that it always has a vertical orientation, and it * has no submenus. It also allows for programmatic selection of items in * the menu, and programmatically performing the action associated with the * selected item. In the MenuBar class, items cannot be selected * programatically - they can only be selected when the user places the * mouse over a particlar item. Additional methods in SuggestionMenu provide * information about the number of items in the menu, and the index of the * currently selected item. */ private static class SuggestionMenu extends MenuBar { public SuggestionMenu(boolean vertical) { super(vertical); // Make sure that CSS styles specified for the default Menu classes // do not affect this menu setStyleName(""); } public void doSelectedItemAction() { // In order to perform the action of the item that is currently // selected, the menu must be showing. MenuItem selectedItem = getSelectedItem(); if (selectedItem != null) { doItemAction(selectedItem, true); } } public int getNumItems() { return getItems().size(); } /** * Returns the index of the menu item that is currently selected. */ public int getSelectedItemIndex() { // The index of the currently selected item can only be // obtained if the menu is showing. MenuItem selectedItem = getSelectedItem(); if (selectedItem != null) { return getItems().indexOf(selectedItem); } return -1; } /** * Selects the item at the specified index in the menu. Selecting the item * does not perform the item's associated action; it only changes the style * of the item and updates the value of SuggestionMenu.selectedItem. */ public void selectItem(int index) { List<MenuItem> items = getItems(); if (index > -1 && index < items.size()) { itemOver(items.get(index)); } } } /** * Class for menu items in a SuggestionMenu. A SuggestionMenuItem differs * from a MenuItem in that each item is backed by a Suggestion object. * The text of each menu item is derived from the display string of a * Suggestion object, and each item stores a reference to its Suggestion * object. */ private static class SuggestionMenuItem extends MenuItem { @SuppressWarnings("hiding") private static final String STYLENAME_DEFAULT = "item"; private Suggestion suggestion; public SuggestionMenuItem(Suggestion suggestion, boolean asHTML) { super(suggestion.getDisplayString(), asHTML); // Each suggestion should be placed in a single row in the suggestion // menu. If the window is resized and the suggestion cannot fit on a // single row, it should be clipped (instead of wrapping around and // taking up a second row). DOM.setStyleAttribute(getElement(), "whiteSpace", "nowrap"); setStyleName(STYLENAME_DEFAULT); setSuggestion(suggestion); } public Suggestion getSuggestion() { return suggestion; } public void setSuggestion(Suggestion suggestion) { this.suggestion = suggestion; } } /** * A PopupPanel with a SuggestionMenu as its widget. The SuggestionMenu is * placed in a PopupPanel so that it can be displayed at various positions * around the SuggestBox's text field. Moreover, the SuggestionMenu * needs to appear on top of any other widgets on the page, and the PopupPanel * provides this behavior. * * A non-static member class is used because the popup uses the SuggestBox's * SuggestionMenu as its widget, and the position of the SuggestBox's TextBox * is needed in order to correctly position the popup. */ private class SuggestionPopup extends DecoratedPopupPanel implements SourcesMouseEvents { @SuppressWarnings("hiding") private static final String STYLENAME_DEFAULT = "gwt-SuggestBoxPopup"; private FocusPanel focusPanel; //added FocusPanel for MouseEvents (Jakob Korherr) public SuggestionPopup() { super(true, false, "suggestPopup"); this.focusPanel = new FocusPanel(suggestionMenu); //added FocusPanel for MouseEvents (Jakob Korherr) setWidget(this.focusPanel); setStyleName(STYLENAME_DEFAULT); } /** * Adds a MouseListener * Added by Jakob Korherr */ public void addMouseListener(MouseListener listener) { this.focusPanel.addMouseListener(listener); } /** * Removes a MouseListener * Added by Jakob Korherr */ public void removeMouseListener(MouseListener listener) { this.focusPanel.removeMouseListener(listener); } /** * The default position of the SuggestPopup is directly below the * SuggestBox's text box, with its left edge aligned with the left edge of * the text box. Depending on the width and height of the popup and the * distance from the text box to the bottom and right edges of the window, * the popup may be displayed directly above the text box, and/or its right * edge may be aligned with the right edge of the text box. */ public void showAlignedPopup() { // Set the position of the popup right before it is shown. setPopupPositionAndShow(new PositionCallback() { public void setPosition(int offsetWidth, int offsetHeight) { // Calculate left position for the popup. The computation for // the left position is bidi-sensitive. int textBoxOffsetWidth = box.getOffsetWidth(); // Compute the difference between the popup's width and the // textbox's width int offsetWidthDiff = offsetWidth - textBoxOffsetWidth; int left; if (LocaleInfo.getCurrentLocale().isRTL()) { // RTL case int textBoxAbsoluteLeft = box.getAbsoluteLeft(); // Right-align the popup. Note that this computation is // valid in the case where offsetWidthDiff is negative. left = textBoxAbsoluteLeft - offsetWidthDiff; // If the suggestion popup is not as wide as the text box, always align // to the right edge of the text box. Otherwise, figure out whether to // right-align or left-align the popup. if (offsetWidthDiff > 0) { // Make sure scrolling is taken into account, since box.getAbsoluteLeft() // takes scrolling into account. int windowRight = Window.getClientWidth() + Window.getScrollLeft(); int windowLeft = Window.getScrollLeft(); // Compute the left value for the right edge of the textbox int textBoxLeftValForRightEdge = textBoxAbsoluteLeft + textBoxOffsetWidth; // Distance from the right edge of the text box to the right edge of the // window int distanceToWindowRight = windowRight - textBoxLeftValForRightEdge; // Distance from the right edge of the text box to the left edge of the // window int distanceFromWindowLeft = textBoxLeftValForRightEdge - windowLeft; // If there is not enough space for the overflow of the popup's width to // the right of the text box and there IS enough space for the overflow // to the right of the text box, then left-align the popup. However, if // there is not enough space on either side, stick with right-alignment. if (distanceFromWindowLeft < offsetWidth && distanceToWindowRight >= offsetWidthDiff) { // Align with the left edge of the text box. left = textBoxAbsoluteLeft; } } } else { // LTR case // Left-align the popup. left = box.getAbsoluteLeft(); // If the suggestion popup is not as wide as the text box, always align // to the left edge of the text box. Otherwise, figure out whether to // left-align or right-align the popup. if (offsetWidthDiff > 0) { // Make sure scrolling is taken into account, since box.getAbsoluteLeft() // takes scrolling into account. int windowRight = Window.getClientWidth() + Window.getScrollLeft(); int windowLeft = Window.getScrollLeft(); // Distance from the left edge of the text box to the right edge of the // window int distanceToWindowRight = windowRight - left; // Distance from the left edge of the text box to the left edge of the // window int distanceFromWindowLeft = left - windowLeft; // If there is not enough space for the overflow of the popup's width to // the right of hte text box, and there IS enough space for the overflow // to the left of the text box, then right-align the popup. However, if // there is not enough space on either side, then stick with left-alignment. if (distanceToWindowRight < offsetWidth && distanceFromWindowLeft >= offsetWidthDiff) { // Align with the right edge of the text box. left -= offsetWidthDiff; } } } // Calculate top position for the popup int top = box.getAbsoluteTop(); // Make sure scrolling is taken into account, since box.getAbsoluteTop() // takes scrolling into account. int windowTop = Window.getScrollTop(); int windowBottom = Window.getScrollTop() + Window.getClientHeight(); // Distance from the top edge of the window to the top edge of the text box int distanceFromWindowTop = top - windowTop; // Distance from the bottom edge of the window to the bottom edge of the // text box int distanceToWindowBottom = windowBottom - (top + box.getOffsetHeight()); // If there is not enough space for the popup's height below the text box // and there IS enough space for the popup's height above the text box, // then then position the popup above the text box. However, if there is // not enough space on either side, then stick with displaying the popup // below the text box. if (distanceToWindowBottom < offsetHeight && distanceFromWindowTop >= offsetHeight) { top -= offsetHeight; } else { // Position above the text box top += box.getOffsetHeight(); } setPopupPosition(left, top); } }); } } /** * Handles the focus for the whole SuggestBox (TextBox and SuggestPopup) * @author Jakob Korherr */ private class SuggestBoxFocusHandler implements PopupListener, MouseListener, FocusListener { private boolean mouseInsidePopup = false; private boolean shouldFireOnLostFocusInOnPopupClosed = false; private boolean focusLostBecauseOfSetFocus = false; public void onPopupClosed(PopupPanel sender, boolean autoClosed) { if(this.shouldFireOnLostFocusInOnPopupClosed) { this.fireOnLostFocus(); //fire LostFocus this.shouldFireOnLostFocusInOnPopupClosed = false; } this.mouseInsidePopup = false; } public void onMouseDown(Widget sender, int x, int y) { } public void onMouseEnter(Widget sender) { this.mouseInsidePopup = true; } public void onMouseLeave(Widget sender) { this.mouseInsidePopup = false; } public void onMouseMove(Widget sender, int x, int y) { } public void onMouseUp(Widget sender, int x, int y) { } public void onFocus(Widget sender) { if(entireSuggestBoxFocusListeners!=null) { entireSuggestBoxFocusListeners.fireFocus(SuggestBox.this); } } public void onLostFocus(Widget sender) { if(this.mouseInsidePopup && !this.focusLostBecauseOfSetFocus) { this.shouldFireOnLostFocusInOnPopupClosed = true; } else { this.focusLostBecauseOfSetFocus = false; this.fireOnLostFocus(); //fire LostFocus } } private void fireOnLostFocus() { if(entireSuggestBoxFocusListeners!=null) { entireSuggestBoxFocusListeners.fireLostFocus(SuggestBox.this); } } } private static final String STYLENAME_DEFAULT = "gwt-SuggestBox"; private int limit = 20; private SuggestOracle oracle; private String currentText; private final SuggestionMenu suggestionMenu; private final SuggestionPopup suggestionPopup; private final TextBoxBase box; private ArrayList<SuggestionHandler> suggestionHandlers = null; private DelegatingClickListenerCollection clickListeners; private DelegatingChangeListenerCollection changeListeners; private DelegatingFocusListenerCollection focusListeners; private DelegatingKeyboardListenerCollection keyboardListeners; private FocusListenerCollection entireSuggestBoxFocusListeners; private SuggestBoxFocusHandler suggestBoxFocusHandler; private final Callback callBack = new Callback() { public void onSuggestionsReady(Request request, Response response) { showSuggestions(response.getSuggestions()); } }; /** * Constructor for {@link SuggestBox}. Creates a * {@link MultiWordSuggestOracle} and {@link TextBox} to use with this * {@link SuggestBox}. */ public SuggestBox() { this(new MultiWordSuggestOracle()); } /** * Constructor for {@link SuggestBox}. Creates a {@link TextBox} to use with * this {@link SuggestBox}. * * @param oracle the oracle for this <code>SuggestBox</code> */ public SuggestBox(SuggestOracle oracle) { this(oracle, new TextBox()); } /** * Constructor for {@link SuggestBox}. The text box will be removed from it's * current location and wrapped by the {@link SuggestBox}. * * @param oracle supplies suggestions based upon the current contents of the * text widget * @param box the text widget */ public SuggestBox(SuggestOracle oracle, TextBoxBase box) { this.box = box; initWidget(box); // suggestionMenu must be created before suggestionPopup, because // suggestionMenu is suggestionPopup's widget suggestionMenu = new SuggestionMenu(true); suggestionPopup = new SuggestionPopup(); suggestionPopup.setAnimationType(AnimationType.ONE_WAY_CORNER); // initialise SuggestBoxFocusHandler - added by Jakob Korherr this.suggestBoxFocusHandler = new SuggestBoxFocusHandler(); this.box.addFocusListener(suggestBoxFocusHandler); this.suggestionPopup.addMouseListener(suggestBoxFocusHandler); this.suggestionPopup.addPopupListener(suggestBoxFocusHandler); addKeyboardSupport(); setOracle(oracle); setStyleName(STYLENAME_DEFAULT); } /** * Adds a FocusListener to the entire SuggestBox. * The difference to the FocusListener which can be added with addFocusListener * is that this FocusListener fires the FocusEvents for the entire SuggestBox * (TextBox and Popup). So if the TextBox loses its focus to the SuggestPopup, * onLostFocus will not be fired immediatly, but when the popup has closed. * The source for the events will be the SuggestBox. * @param listener */ public void addFocusListenerToEntireSuggestBox(FocusListener listener) { if(entireSuggestBoxFocusListeners==null) { entireSuggestBoxFocusListeners = new FocusListenerCollection(); } entireSuggestBoxFocusListeners.add(listener); } /** * Removes a FocusListener from the entire SuggestBox. * @param listener */ public void removeFocusListenerFromEntireSuggestBox(FocusListener listener) { if(entireSuggestBoxFocusListeners!=null) { entireSuggestBoxFocusListeners.remove(listener); } } /** * Adds a listener to recieve change events on the SuggestBox's text box. * The source Widget for these events will be the SuggestBox. * * @param listener the listener interface to add */ public void addChangeListener(ChangeListener listener) { if (changeListeners == null) { changeListeners = new DelegatingChangeListenerCollection(this, box); } changeListeners.add(listener); } /** * Adds a listener to recieve click events on the SuggestBox's text box. * The source Widget for these events will be the SuggestBox. * * @param listener the listener interface to add */ public void addClickListener(ClickListener listener) { if (clickListeners == null) { clickListeners = new DelegatingClickListenerCollection(this, box); } clickListeners.add(listener); } public void addEventHandler(SuggestionHandler handler) { if (suggestionHandlers == null) { suggestionHandlers = new ArrayList<SuggestionHandler>(); } suggestionHandlers.add(handler); } /** * Adds a listener to recieve focus events on the SuggestBox's text box. * The source Widget for these events will be the SuggestBox. * * @param listener the listener interface to add */ public void addFocusListener(FocusListener listener) { if (focusListeners == null) { focusListeners = new DelegatingFocusListenerCollection(this, box); } focusListeners.add(listener); } /** * Adds a listener to recieve keyboard events on the SuggestBox's text box. * The source Widget for these events will be the SuggestBox. * * @param listener the listener interface to add */ public void addKeyboardListener(KeyboardListener listener) { if (keyboardListeners == null) { keyboardListeners = new DelegatingKeyboardListenerCollection(this, box); } keyboardListeners.add(listener); } /** * Gets the limit for the number of suggestions that should be displayed for * this box. It is up to the current {@link SuggestOracle} to enforce this * limit. * * @return the limit for the number of suggestions */ public int getLimit() { return limit; } /** * Gets the suggest box's {@link com.google.gwt.user.client.ui.SuggestOracle}. * * @return the {@link SuggestOracle} */ public SuggestOracle getSuggestOracle() { return oracle; } public int getTabIndex() { return box.getTabIndex(); } public String getText() { return box.getText(); } public boolean isAnimationEnabled() { return suggestionPopup.isAnimationEnabled(); } public void removeChangeListener(ChangeListener listener) { if (changeListeners != null) { changeListeners.remove(listener); } } public void removeClickListener(ClickListener listener) { if (clickListeners != null) { clickListeners.remove(listener); } } public void removeEventHandler(SuggestionHandler handler) { if (suggestionHandlers == null) { return; } suggestionHandlers.remove(handler); } public void removeFocusListener(FocusListener listener) { if (focusListeners != null) { focusListeners.remove(listener); } } public void removeKeyboardListener(KeyboardListener listener) { if (keyboardListeners != null) { keyboardListeners.remove(listener); } } public void setAccessKey(char key) { box.setAccessKey(key); } public void setAnimationEnabled(boolean enable) { suggestionPopup.setAnimationEnabled(enable); } public void setFocus(boolean focused) { this.suggestBoxFocusHandler.focusLostBecauseOfSetFocus = !focused; //Added by Jakob Korherr box.setFocus(focused); } /** * Sets the limit to the number of suggestions the oracle should provide. It * is up to the oracle to enforce this limit. * * @param limit the limit to the number of suggestions provided */ public void setLimit(int limit) { this.limit = limit; } /** * Sets the style name of the suggestion popup. * * @param style the new primary style name * @see UIObject#setStyleName(String) */ public void setPopupStyleName(String style) { suggestionPopup.setStyleName(style); } public void setTabIndex(int index) { box.setTabIndex(index); } public void setText(String text) { box.setText(text); } /** * <b>Affected Elements:</b> * <ul> * <li>-popup = The popup that appears with suggestions.</li> * <li>-items-item# = The suggested item at the specified index.</li> * </ul> * * @see UIObject#onEnsureDebugId(String) */ @Override protected void onEnsureDebugId(String baseID) { super.onEnsureDebugId(baseID); suggestionPopup.ensureDebugId(baseID + "-popup"); suggestionMenu.setMenuItemDebugIds(baseID); } /** * Show the given collection of suggestions. * * @param suggestions suggestions to show */ private void showSuggestions(Collection<? extends Suggestion> suggestions) { if (suggestions.size() > 0) { // Hide the popup before we manipulate the menu within it. If we do not // do this, some browsers will redraw the popup as items are removed // and added to the menu. boolean isAnimationEnabled = suggestionPopup.isAnimationEnabled(); if (suggestionPopup.isAttached()) { suggestionPopup.setAnimationEnabled(false); suggestionPopup.hide(); } suggestionMenu.clearItems(); for (Suggestion curSuggestion : suggestions) { final SuggestionMenuItem menuItem = new SuggestionMenuItem(curSuggestion, oracle.isDisplayStringHTML()); menuItem.setCommand(new Command() { public void execute() { SuggestBox.this.setNewSelection(menuItem); } }); suggestionMenu.addItem(menuItem); } // Select the first item in the suggestion menu. suggestionMenu.selectItem(0); suggestionPopup.showAlignedPopup(); suggestionPopup.setAnimationEnabled(isAnimationEnabled); } else { suggestionPopup.hide(); } } private void addKeyboardSupport() { box.addKeyboardListener(new KeyboardListenerAdapter() { @Override public void onKeyDown(Widget sender, char keyCode, int modifiers) { // Make sure that the menu is actually showing. These keystrokes // are only relevant when choosing a suggestion. if (suggestionPopup.isAttached()) { switch (keyCode) { case KeyboardListener.KEY_DOWN: suggestionMenu.selectItem(suggestionMenu.getSelectedItemIndex() + 1); break; case KeyboardListener.KEY_UP: suggestionMenu.selectItem(suggestionMenu.getSelectedItemIndex() - 1); break; case KeyboardListener.KEY_ENTER: case KeyboardListener.KEY_TAB: suggestionMenu.doSelectedItemAction(); break; } } } @Override public void onKeyUp(Widget sender, char keyCode, int modifiers) { // After every user key input, refresh the popup's suggestions. refreshSuggestions(); } private void refreshSuggestions() { // Get the raw text. String text = box.getText(); if (text.equals(currentText)) { return; } else { currentText = text; } if (text.length() == 0) { // Optimization to avoid calling showSuggestions with an empty // string suggestionPopup.hide(); suggestionMenu.clearItems(); } else { showSuggestions(text); } } }); } private void fireSuggestionEvent(Suggestion selectedSuggestion) { if (suggestionHandlers != null) { SuggestionEvent event = new SuggestionEvent(this, selectedSuggestion); for (SuggestionHandler handler : suggestionHandlers) { handler.onSuggestionSelected(event); } } } private void setNewSelection(SuggestionMenuItem menuItem) { Suggestion curSuggestion = menuItem.getSuggestion(); currentText = curSuggestion.getReplacementString(); box.setText(currentText); suggestionPopup.hide(); fireSuggestionEvent(curSuggestion); } /** * Sets the suggestion oracle used to create suggestions. * * @param oracle the oracle */ private void setOracle(SuggestOracle oracle) { this.oracle = oracle; } private void showSuggestions(String query) { oracle.requestSuggestions(new Request(query, limit), callBack); } } |