Search in sources :

Example 6 with VButton

use of com.vaadin.client.ui.VButton in project cuba by cuba-platform.

the class CubaPopupButtonConnector method handleMouseOver.

protected void handleMouseOver(@SuppressWarnings("unused") Event.NativePreviewEvent event, Element target) {
    if (!getState().customLayout && getWidget().popupHasChild(target)) {
        Widget widget = WidgetUtil.findWidget(target, null);
        if ((widget instanceof VButton || widget instanceof VUpload || widget instanceof CubaFileUploadWidget)) {
            VButton button;
            if (widget instanceof VButton) {
                button = (VButton) widget;
            } else if (widget instanceof CubaFileUploadWidget) {
                button = ((CubaFileUploadWidget) widget).getSubmitButton();
            } else {
                button = ((VUpload) widget).submitButton;
            }
            if (!button.getStyleName().contains(SELECTED_ITEM_STYLE)) {
                getWidget().childWidgetFocused(button);
                button.setFocus(true);
            }
        }
    }
}
Also used : CubaFileUploadWidget(com.haulmont.cuba.web.widgets.client.jqueryfileupload.CubaFileUploadWidget) VButton(com.vaadin.client.ui.VButton) VUpload(com.vaadin.client.ui.VUpload) CubaFileUploadWidget(com.haulmont.cuba.web.widgets.client.jqueryfileupload.CubaFileUploadWidget) Widget(com.google.gwt.user.client.ui.Widget)

Example 7 with VButton

use of com.vaadin.client.ui.VButton in project cuba by cuba-platform.

the class CubaPopupButtonConnector method onPreviewNativeEvent.

@Override
public void onPreviewNativeEvent(Event.NativePreviewEvent event) {
    NativeEvent nativeEvent = event.getNativeEvent();
    if (getWidget().getPopup().isVisible()) {
        Element target = Element.as(nativeEvent.getEventTarget());
        if (getWidget().popupHasChild(target)) {
            if (event.getTypeInt() == Event.ONKEYDOWN && (nativeEvent.getKeyCode() == KeyCodes.KEY_ESCAPE || nativeEvent.getKeyCode() == KeyCodes.KEY_TAB && isLastChild(target)) && !nativeEvent.getAltKey() && !nativeEvent.getCtrlKey() && !nativeEvent.getShiftKey() && !nativeEvent.getMetaKey()) {
                event.cancel();
                event.getNativeEvent().stopPropagation();
                event.getNativeEvent().preventDefault();
                Scheduler.get().scheduleDeferred(new Scheduler.ScheduledCommand() {

                    @Override
                    public void execute() {
                        getWidget().hidePopup();
                        rpc.setPopupVisible(false);
                        getWidget().setFocus(true);
                    }
                });
                return;
            }
        }
    }
    super.onPreviewNativeEvent(event);
    if (isEnabled()) {
        Element target = Element.as(nativeEvent.getEventTarget());
        switch(event.getTypeInt()) {
            case Event.ONCLICK:
                if (getState().autoClose && getWidget().popupHasChild(target)) {
                    Scheduler.get().scheduleDeferred(new Scheduler.ScheduledCommand() {

                        @Override
                        public void execute() {
                            getWidget().hidePopup();
                            // update state on server
                            rpc.setPopupVisible(false);
                        }
                    });
                }
                break;
            case Event.ONKEYDOWN:
                if (!getState().customLayout && getWidget().popupHasChild(target)) {
                    Widget widget = WidgetUtil.findWidget(target, null);
                    if (widget instanceof VButton || widget instanceof VUpload || widget instanceof CubaFileUploadWidget) {
                        Widget widgetParent = widget.getParent();
                        if (widgetParent.getParent() instanceof VUpload) {
                            VUpload upload = (VUpload) widgetParent.getParent();
                            // upload parent is Slot
                            widgetParent = upload.getParent();
                        } else if (widgetParent.getParent() instanceof CubaFileUploadWidget) {
                            CubaFileUploadWidget upload = (CubaFileUploadWidget) widgetParent.getParent();
                            // upload parent is Slot
                            widgetParent = upload.getParent();
                        }
                        VAbstractOrderedLayout layout = (VAbstractOrderedLayout) widgetParent.getParent();
                        Widget focusWidget = null;
                        int widgetIndex = layout.getWidgetIndex(widgetParent);
                        if (event.getNativeEvent().getKeyCode() == KeyCodes.KEY_DOWN) {
                            focusWidget = Tools.findNextWidget(layout, widgetIndex);
                        } else if (event.getNativeEvent().getKeyCode() == KeyCodes.KEY_UP) {
                            focusWidget = Tools.findPrevWidget(layout, widgetIndex);
                        }
                        if (focusWidget instanceof VButton || focusWidget instanceof CubaFileUploadWidget || focusWidget instanceof VUpload) {
                            VButton button;
                            if (focusWidget instanceof VButton) {
                                button = (VButton) focusWidget;
                            } else if (focusWidget instanceof CubaFileUploadWidget) {
                                button = ((CubaFileUploadWidget) focusWidget).getSubmitButton();
                            } else {
                                button = ((VUpload) focusWidget).submitButton;
                            }
                            getWidget().childWidgetFocused(button);
                            button.setFocus(true);
                        }
                    }
                }
                break;
            case Event.ONMOUSEOVER:
                if (!getState().customLayout && getWidget().popupHasChild(target)) {
                    Widget widget = WidgetUtil.findWidget(target, null);
                    if ((widget instanceof VButton || widget instanceof VUpload || widget instanceof CubaFileUploadWidget)) {
                        VButton button;
                        if (widget instanceof VButton) {
                            button = (VButton) widget;
                        } else if (widget instanceof CubaFileUploadWidget) {
                            button = ((CubaFileUploadWidget) widget).getSubmitButton();
                        } else {
                            button = ((VUpload) widget).submitButton;
                        }
                        if (!button.getStyleName().contains(SELECTED_ITEM_STYLE)) {
                            getWidget().childWidgetFocused(button);
                            button.setFocus(true);
                        }
                    }
                }
                break;
        }
    }
}
Also used : CubaFileUploadWidget(com.haulmont.cuba.web.toolkit.ui.client.jqueryfileupload.CubaFileUploadWidget) Scheduler(com.google.gwt.core.client.Scheduler) VButton(com.vaadin.client.ui.VButton) Element(com.google.gwt.dom.client.Element) VUpload(com.vaadin.client.ui.VUpload) VAbstractOrderedLayout(com.vaadin.client.ui.orderedlayout.VAbstractOrderedLayout) CubaFileUploadWidget(com.haulmont.cuba.web.toolkit.ui.client.jqueryfileupload.CubaFileUploadWidget) Widget(com.google.gwt.user.client.ui.Widget) NativeEvent(com.google.gwt.dom.client.NativeEvent)

Example 8 with VButton

use of com.vaadin.client.ui.VButton in project cuba by cuba-platform.

the class CubaTwinColSelectWidget method enableAddAllBtn.

protected void enableAddAllBtn() {
    HTML br1 = new HTML("<span/>");
    br1.setStyleName(CLASSNAME + "-deco");
    buttons.add(br1);
    buttons.insert(br1, buttons.getWidgetIndex(add) + 1);
    addAll = new VButton();
    addAll.setText(">>");
    addAll.addStyleName("addAll");
    addAllHandlerRegistration = addAll.addClickHandler(this);
    buttons.insert(addAll, buttons.getWidgetIndex(br1) + 1);
    HTML br2 = new HTML("<span/>");
    br2.setStyleName(CLASSNAME + "-deco");
    buttons.add(br2);
    removeAll = new VButton();
    removeAll.setText("<<");
    removeAll.addStyleName("removeAll");
    removeAllHandlerRegistration = removeAll.addClickHandler(this);
    buttons.add(removeAll);
}
Also used : VButton(com.vaadin.client.ui.VButton) HTML(com.google.gwt.user.client.ui.HTML)

Example 9 with VButton

use of com.vaadin.client.ui.VButton in project cuba by cuba-platform.

the class CubaPopupButtonWidget method onPopupOpened.

@Override
protected void onPopupOpened() {
    super.onPopupOpened();
    if (customLayout) {
        return;
    }
    // find button, assign .v-selected style
    for (Widget popupChild : getPopup()) {
        if (popupChild instanceof FlowPanel) {
            FlowPanel content = (FlowPanel) popupChild;
            for (Widget contentChild : content) {
                if (contentChild instanceof VButton) {
                    VButton button = (VButton) contentChild;
                    if (button.isEnabled() && !button.getStyleName().contains(SELECTED_ITEM_STYLE)) {
                        button.addStyleName(SELECTED_ITEM_STYLE);
                        button.setFocus(true);
                        break;
                    }
                }
            }
        }
    }
    // add focus handler
    for (Widget popupChild : getPopup()) {
        if (popupChild instanceof FlowPanel) {
            FlowPanel content = (FlowPanel) popupChild;
            for (Widget contentChild : content) {
                VButton button = null;
                if (contentChild instanceof CubaFileUploadWidget) {
                    button = ((CubaFileUploadWidget) contentChild).getSubmitButton();
                } else if (contentChild instanceof VUpload) {
                    button = ((VUpload) contentChild).submitButton;
                } else if (contentChild instanceof VButton) {
                    button = (VButton) contentChild;
                }
                if (button != null) {
                    VButton finalButton = button;
                    button.addFocusHandler(event -> childWidgetFocused(finalButton));
                    // sink mouse over
                    DOM.sinkEvents(button.getElement(), Event.ONMOUSEOVER | DOM.getEventsSunk(button.getElement()));
                }
            }
        }
    }
}
Also used : CubaFileUploadWidget(com.haulmont.cuba.web.widgets.client.jqueryfileupload.CubaFileUploadWidget) VButton(com.vaadin.client.ui.VButton) VUpload(com.vaadin.client.ui.VUpload) Widget(com.google.gwt.user.client.ui.Widget) CubaFileUploadWidget(com.haulmont.cuba.web.widgets.client.jqueryfileupload.CubaFileUploadWidget) FlowPanel(com.google.gwt.user.client.ui.FlowPanel)

Example 10 with VButton

use of com.vaadin.client.ui.VButton in project cuba by cuba-platform.

the class CubaPopupButtonConnector method handleKeyDown.

protected void handleKeyDown(Event.NativePreviewEvent event, Element target) {
    if (!getState().customLayout && getWidget().popupHasChild(target)) {
        Widget widget = WidgetUtil.findWidget(target, null);
        if (widget instanceof VButton || widget instanceof VUpload || widget instanceof CubaFileUploadWidget) {
            Widget widgetParent = widget.getParent();
            if (widgetParent.getParent() instanceof VUpload) {
                VUpload upload = (VUpload) widgetParent.getParent();
                widgetParent = upload.getParent();
            } else if (widgetParent.getParent() instanceof CubaFileUploadWidget) {
                CubaFileUploadWidget upload = (CubaFileUploadWidget) widgetParent.getParent();
                widgetParent = upload.getParent();
            }
            FlowPanel layout = (FlowPanel) widgetParent;
            Widget focusWidget = null;
            int widgetIndex = layout.getWidgetIndex(widget);
            int keyCode = event.getNativeEvent().getKeyCode();
            if (keyCode == KeyCodes.KEY_DOWN) {
                focusWidget = Tools.findNextWidget(layout, widgetIndex);
            } else if (keyCode == KeyCodes.KEY_UP) {
                focusWidget = Tools.findPrevWidget(layout, widgetIndex);
            }
            if (focusWidget instanceof VButton || focusWidget instanceof CubaFileUploadWidget || focusWidget instanceof VUpload) {
                VButton button;
                if (focusWidget instanceof VButton) {
                    button = (VButton) focusWidget;
                } else if (focusWidget instanceof CubaFileUploadWidget) {
                    button = ((CubaFileUploadWidget) focusWidget).getSubmitButton();
                } else {
                    button = ((VUpload) focusWidget).submitButton;
                }
                getWidget().childWidgetFocused(button);
                button.setFocus(true);
            }
        }
    }
}
Also used : CubaFileUploadWidget(com.haulmont.cuba.web.widgets.client.jqueryfileupload.CubaFileUploadWidget) VButton(com.vaadin.client.ui.VButton) VUpload(com.vaadin.client.ui.VUpload) CubaFileUploadWidget(com.haulmont.cuba.web.widgets.client.jqueryfileupload.CubaFileUploadWidget) Widget(com.google.gwt.user.client.ui.Widget) FlowPanel(com.google.gwt.user.client.ui.FlowPanel)

Aggregations

VButton (com.vaadin.client.ui.VButton)11 Widget (com.google.gwt.user.client.ui.Widget)7 VUpload (com.vaadin.client.ui.VUpload)6 CubaFileUploadWidget (com.haulmont.cuba.web.toolkit.ui.client.jqueryfileupload.CubaFileUploadWidget)4 VAbstractOrderedLayout (com.vaadin.client.ui.orderedlayout.VAbstractOrderedLayout)4 CubaFileUploadWidget (com.haulmont.cuba.web.widgets.client.jqueryfileupload.CubaFileUploadWidget)3 Element (com.google.gwt.dom.client.Element)2 NativeEvent (com.google.gwt.dom.client.NativeEvent)2 FlowPanel (com.google.gwt.user.client.ui.FlowPanel)2 HTML (com.google.gwt.user.client.ui.HTML)2 Slot (com.vaadin.client.ui.orderedlayout.Slot)2 Scheduler (com.google.gwt.core.client.Scheduler)1 ClickEvent (com.google.gwt.event.dom.client.ClickEvent)1 ClickHandler (com.google.gwt.event.dom.client.ClickHandler)1 FocusEvent (com.google.gwt.event.dom.client.FocusEvent)1 FocusHandler (com.google.gwt.event.dom.client.FocusHandler)1 FocusWidget (com.google.gwt.user.client.ui.FocusWidget)1 CubaButtonWidget (com.haulmont.cuba.web.toolkit.ui.client.button.CubaButtonWidget)1