Examples of bringToFront()


Examples of com.aelitis.azureus.ui.swt.UIFunctionsSWT.bringToFront()

      UIFunctionsSWT uiFunctions = (UIFunctionsSWT) UIFunctionsManager.getUIFunctions();
      if (uiFunctions != null) {
        if (!COConfigurationManager.getBooleanParameter("add_torrents_silently")) {
          if (bringToFront) {
            uiFunctions.bringToFront();
          }
        }

        Shell shell = uiFunctions.getMainShell();
        if (shell != null) {
View Full Code Here

Examples of com.smartgwt.client.widgets.Canvas.bringToFront()

        outline.setTop(editForm.getAbsoluteTop());
        outline.setWidth(addPortlet.getWidth());
        outline.setHeight(addPortlet.getHeight());
        outline.setBorder("2px solid 8289A6");
        outline.draw();
        outline.bringToFront();

        outline.animateRect(newPortletWindow.getPageLeft(), newPortletWindow.getPageTop(),
            newPortletWindow.getVisibleWidth(), newPortletWindow.getViewportHeight(), new AnimationCallback() {
                public void execute(boolean earlyFinish) {
                    // callback at end of animation - destroy placeholder and outline; show the new portlet
View Full Code Here

Examples of com.smartgwt.client.widgets.Label.bringToFront()

        vStack.setMembersMargin(10);

        IButton frontButton = new IButton("Front");
        frontButton.addClickHandler(new ClickHandler() {
            public void onClick(ClickEvent event) {
                dragWidget.bringToFront();
            }
        });
        vStack.addMember(frontButton);

        IButton backButton = new IButton("Back");
View Full Code Here

Examples of com.vaadin.client.ui.VWindow.bringToFront()

                // positioning the window so it stacks with other windows
                window.setPopupPosition(state.positionX, state.positionY);
            }
        } else if (state.windowMode == WindowMode.MAXIMIZED) {
            window.setPopupPositionNoUpdate(0, 0);
            window.bringToFront();
        }
    }

    protected void updateWindowMode() {
        VWindow window = getWidget();
View Full Code Here

Examples of com.vaadin.ui.Window.bringToFront()

        });
        form.addField("Field 1", field1);
        layout.addComponent(form);

        getMainWindow().addWindow(subWindow);
        subWindow.bringToFront();
    }

    @Override
    protected String getDescription() {
        return "When both window and its content have undefined height, window must not reserve space for a scroll bar when it is not needed.";
View Full Code Here

Examples of com.vaadin.ui.Window.bringToFront()

        Button button = new Button("Bring to front (should focus too)",
                new Button.ClickListener() {
                    @Override
                    public void buttonClick(ClickEvent event) {
                        window.bringToFront();
                    }
                });
        ((ComponentContainer) main.getContent()).addComponent(button);

        Window window2 = new Window("Another window for testing");
View Full Code Here

Examples of controlP5.Tab.bringToFront()

  public void selectPreviousTab() {
    Tab currentTab = cp5.getWindow().getCurrentTab();
    Tab lastTab=null;
    for (Tab t: allTabs) {
      if (t==currentTab && lastTab!=null) {
        lastTab.bringToFront();
        return;
      }
      lastTab = t;
    }
    //activate the last tab
View Full Code Here

Examples of org.antlr.xjlib.appkit.frame.XJWindow.bringToFront()

        }

        XJWindow window = getWindowContainingDocumentForPath(file);
        if(window != null) {
            window.selectDocument(window.getDocumentForPath(file));
            window.bringToFront();
            return true;
        } else {
            XJDocument document = newDocument(false, getDocumentTypeForPath(file));
            if(document == null)
                return false;
View Full Code Here

Examples of org.antlr.xjlib.appkit.frame.XJWindow.bringToFront()

                break;
           
            default:
                if(item.tag>=MI_WINDOW) {
                    XJWindow window = XJApplication.shared().getWindowsInWindowMenu().get(item.tag-MI_WINDOW);
                    window.bringToFront();
                    item.setSelected(true);
                } else if(item.tag>=MI_RECENT_FILES && item.tag<=MI_RECENT_FILES+XJApplication.MAX_RECENT_FILES) {
                    if(!XJApplication.shared().openDocument(item.getTitle())) {
                        XJApplication.shared().removeRecentFile(item.getTitle());
                    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.