<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Sealyu

    --- 博客已遷移至: http://www.sealyu.com/blog

      BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
      618 隨筆 :: 87 文章 :: 225 評論 :: 0 Trackbacks

    The Google Web Toolkit has been out for a while now, and yet there is still basic functionality that is missing from the toolkit. Don’t get me started on the lack of draggable/resizable columns for the FlexTable, because that’s a rant and a half. Given that GWT’s event handling model isn’t bad, you’d think they’d have included from the get-go the ability to handle right-clicks and bringing up a context menu or popup menu. Well, even with 1.6 on the doorstep it seems they forgot again or just don’t care.   Now some people will spout out “web apps don’t need or shouldn’t have right-clicks handled or context menus overridden”……and for those I say STFU! Web apps are used for more than just banking, news, forums and dare I say blogs. The browser is becoming the new medium for running applications and just because an application is running in a browser doesn’t mean we should limit functionality. That’s about as narrow minded as saying that we’ve only had one mouse button for this long, why add a second one? Duh!

    Anyway, enough with the blabbing. I’ve put together a simple example to add a right click context menu and override the default browser context menu using GWT.

    In the box below you can try it out, right-click in there and you can demo it.



    In case the iframe doesn’t show up in your browser you can see and try the example here.
    Now here’s how it’s done.

    I used a DeckPanel to switch between several panels. The popup context menu is used to choose. To allow the DeckPanel to catch the right-click event (and you can also listen for double-clicks and several other things) I extended the DeckPanel.   For simplicity I added “Adv” (Advanced) in front of the several classes I’ve extended so this one will be AdvDeckPanel. The first thing to do in the constructor is add sinkEvents(). Then we’ll override onBrowserEvent() in the class. Here’s the code:

    public AdvDeckPanel() {

    super();

    sinkEvents(Event.ONMOUSEUP | Event.ONDBLCLICK | Event.ONCONTEXTMENU);

    }



    public void onBrowserEvent(Event event) {

    GWT.log("onBrowserEvent", null);

    event.cancelBubble(true);//This will stop the event from being propagated

    event.preventDefault();

    switch (DOM.eventGetType(event)) {

    case Event.ONMOUSEUP:

    if (DOM.eventGetButton(event) == Event.BUTTON_LEFT) {

    GWT.log("Event.BUTTON_LEFT", null);

    listener.onClick(this, event);

    }



    if (DOM.eventGetButton(event) == Event.BUTTON_RIGHT) {

    GWT.log("Event.BUTTON_RIGHT", null);

    listener.onRightClick(this, event);

    }

    break;

    case Event.ONDBLCLICK:

    break;



    case Event.ONCONTEXTMENU:

    GWT.log("Event.ONCONTEXTMENU", null);

    break;



    default:

    break; // Do nothing

    }//end switch

    }

    Notice the two lines in onBrowserEvent():
    event.cancelBubble(true);
    event.preventDefault();

    These are the two lines that tell the browser not to show it’s default context popup menu. Also note that overriding the default context menu doesn’t work in all browsers, I’m not sure if this is a bug in GWT. If you’re using firefox then you’ll have no problems, with IE you may need to add the following to your html:

    <body oncontextmenu="return false;">

    Other than that there’s just a switch statement that checks the event type, in this case we’re interested with ONMOUSEUP, and we’ll call the listener’s onClick() or onRightClick() based on the Event’s fields.

    AdvDeckPanel also has a reference to AdvClickListener which looks like:

    public interface AdvClickListener extends ClickListener {

    void onClick(Widget sender, Event event);

    void onRightClick(Widget sender, Event event);

    }

    This reference is basically the same as ClickListener, but has a separate method to handle the right-click. I also pass the Event object so I can get the x and y from the click so the context menu shows up at that location instead of the top-left of the screen.

    AdvDeckPanel implements AdvClickNotifier which does the same thing as GWT’s SourcesClickEvents interface, but handles the AdvClickListener instead.

    public interface AdvClickNotifier {

    public void addClickListener(AdvClickListener listener);

    public void removeClickListener(AdvClickListener listener);

    }

    So, once you have your widget (in this case the AdvDeckPanel) and the listeners set up to handle the right-click, then we add in the code to build the popup menu and commands that go with it. I put all of this in the EntryPoint. I have three widgets (panels) and a Command for each like this:

    private AdvDeckPanel deckPanel = new AdvDeckPanel();

    final private PopupPanel popupPanel = new PopupPanel(true);

    private VerticalPanel defaultPanel = new VerticalPanel();

    private SimplePanel imagePanel = new SimplePanel();

    private SimplePanel sponserPanel = new SimplePanel();



    Command showAlertCommand = new Command() {

    public void execute() {

    deckPanel.showWidget(0);

    popupPanel.hide();

    Window.alert("Hope this example helps.");

    }

    };



    Command showImageCommand = new Command() {

    public void execute() {

    deckPanel.showWidget(1);

    popupPanel.hide();

    }

    };



    Command showSponserCommand = new Command() {

    public void execute() {

    deckPanel.showWidget(2);

    popupPanel.hide();

    }

    };

    A Command is called when the MenuItem is clicked.

    Now the code to build the menu, link the commands, and handle the right-click:

    private void createPopupMenu() {

    MenuBar popupMenuBar = new MenuBar(true);

    MenuItem alertItem = new MenuItem("Show alert", true, showAlertCommand);

    MenuItem imageItem = new MenuItem("Show Oliver ", true, showImageCommand);

    MenuItem sponserItem = new MenuItem("Show sponser ", true, showSponserCommand);



    popupPanel.setStyleName("popup");

    alertItem.addStyleName("popup-item");

    imageItem.addStyleName("popup-item");

    sponserItem.addStyleName("popup-item");



    popupMenuBar.addItem(alertItem);

    popupMenuBar.addItem(imageItem);

    popupMenuBar.addItem(sponserItem);



    popupMenuBar.setVisible(true);

    popupPanel.add(popupMenuBar);

    }



    public void onRightClick(Widget sender, Event event) {

    int x = DOM.eventGetClientX(event);

    int y = DOM.eventGetClientY(event);

    popupPanel.setPopupPosition(x, y);

    popupPanel.show();

    }

    Lastly, to make the menu actually look like a popup menu I modified the CSS like so:

    .popup {

    background-color: gray;

    border-color: gray gray gray gray;

    border-width: 1px 3px 3px 1px;

    border-style: solid solid solid solid;

    }



    .popup-item {

    font-weight: normal;

    font-size: 80%;

    }

    What this does is makes it so the border isn’t the thick default GWT blue, and uses a thin border with the right and bottom borders a bit thicker. This gives the popup that shadowed look.

    A couple of books worth checking out are: GWT in Actionand GWT in Practice
    Here’s the source and more links.


    ShareThis

    Tags: , ,

    This entry was posted on Tuesday, February 17th, 2009 at 8:12 pm and is filed under GWT, Java, Programming. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

    posted on 2010-01-20 09:21 seal 閱讀(677) 評論(1)  編輯  收藏 所屬分類: GWT
    主站蜘蛛池模板: 可以免费观看一级毛片黄a| 亚洲一区电影在线观看| 免费人成视频在线| fc2免费人成在线| 亚洲一本到无码av中文字幕| 亚洲精品线路一在线观看| 香蕉97超级碰碰碰免费公| yellow免费网站| va天堂va亚洲va影视中文字幕| 亚洲高清视频一视频二视频三| 91精品全国免费观看含羞草 | 午夜成人免费视频| 拍拍拍无挡视频免费观看1000| 亚洲欧美熟妇综合久久久久| 日韩亚洲一区二区三区| 免费人成视频x8x8入口| 国产成人yy免费视频| 国产精品美女久久久免费 | 亚洲国产精品综合久久20| 亚洲精品乱码久久久久66| 国产成人精品123区免费视频| 又大又硬又爽又粗又快的视频免费| 一级午夜免费视频| 亚洲国产精品嫩草影院| 91亚洲视频在线观看| 亚洲AV无码一区二区乱孑伦AS| 国产在线19禁免费观看国产| 在线看免费观看AV深夜影院| 成全视频免费观看在线看| 猫咪免费人成网站在线观看入口 | 国产成人人综合亚洲欧美丁香花| 亚洲人成影院在线高清| 亚洲国产精品国自产拍电影| 在线亚洲午夜理论AV大片| 亚洲国产成人精品女人久久久 | 亚洲精品午夜无码专区| 亚洲精品午夜国产VA久久成人| 亚洲AV无码一区东京热久久| 亚洲AV无码专区在线播放中文| 亚洲AV福利天堂一区二区三| 91久久亚洲国产成人精品性色 |