Examples of popup()


Examples of ca.nengo.ui.lib.objects.activities.TransientMessage.popup()

            if (delay < 0) {
                delay = 0;
            }

            msgObject.popup(delay);

            lastPopupTime = currentTime + delay;
        }
    }
View Full Code Here

Examples of com.nexirius.framework.application.DataModelPopupEditor.popup()

  public void newFeature()
  {
    ProductFeatureModel feature = new ProductFeatureModel();
    DataModelPopupEditor ed = new DataModelPopupEditor(feature, ViewerFactory.getInstance());

    if (ed.popup()) {
            addFeature(feature);
        }
  }

    private void addFeature(ProductFeatureModel feature) {
View Full Code Here

Examples of com.nexirius.framework.datacontroller.PopupController.popup()

                PopupController popupController = new MyPopupController(importModel, ViewerFactory.getInstance());

                try {
                    popupController.setClientModel(importModel, false, null, null, null);

                    popupController.popup(false);
                } catch (Exception e) {
                    e.printStackTrace()//TODO
                }
            }
        }
View Full Code Here

Examples of com.nexirius.framework.datacontroller.PopupController.popup()

            controller.setClientModel(dataModel, duplicateModel, commands, creator, (DefaultLayoutItem) layout);
        } catch (Exception e) {
            e.printStackTrace();
        }

        return controller.popup(duplicateModel);
    }

    /**
     * implementation of the PopupEditorAdaptor interface. Creates a window with all methods of
     * the model displayed at the left bottom (with Ok and Cancel button)
View Full Code Here

Examples of com.nexirius.framework.textselector.TextSelector.popup()

        if (textSelector == null) {

            return;
        }

        if (textSelector.popup()) {

            try {
                target.setText(textSelector.getText());
            } catch (Exception ex) {
                //ignore
View Full Code Here

Examples of org.beryl.gui.widgets.PopupMenu.popup()

        }, new MapDataModel());
        dialog.initDialog(frame);
        dialog.show();
      } else if (name.equals("popup")) {
        PopupMenu popup = (PopupMenu) constructWidget("PropertyPopup");
        popup.popup(event);
      } else if (name.equals("delete")) {
        TableRow rows[] = (TableRow[]) dataModel.getValue("property.value");
        for (int i = 0; i < rows.length; i++) {
          PropertyTableRow row = (PropertyTableRow) rows[i];
          propertyModel.removeRow(row);
View Full Code Here

Examples of org.noname.designer.core.interfaces.EvaluationContext.popup()

          IEvaluator evaluator = (IEvaluator) Platform
              .getAdapterManager().getAdapter(constructor,
                  IEvaluator.class);
          if (evaluator != null) {
            int result = evaluator.evaluate(context);
            FrameContext consFrame = context.popup();
            if (result == IEvaluator.RETURN) {
              System.out.println("this="
                  + context.getThisObject());
              for (String fieldName : context.getFieldNames()) {
                System.out.println(fieldName + "="
View Full Code Here

Examples of org.seleniuminspector.openfaces.DateChooserInspector.popup()

        foldingPanel("fn:dropDownFoldingPanel").toggle().clickAndWait(OpenFacesAjaxLoadingMode.getInstance());

        DateChooserInspector dateChooser = dateChooser("fn:dropDownID");
        dateChooser.assertElementExists();
        dateChooser.button().click();
        dateChooser.popup().items().get(1).click();
        dateChooser.field().assertValue("Yellow");
    }

     @Test
    public void testDynamicImageInside() {
View Full Code Here

Examples of org.seleniuminspector.openfaces.DropDownFieldInspector.popup()

     @Test
    public void testWithropDownField() {
        testAppFunctionalPage("/components/loadbundle/withDropDownField.jsf");

        DropDownFieldInspector dropDown = dropDownField("formID:plants");
        ElementInspector secondSuggestion = dropDown.popup().items().get(2);

        // check 'ar' locale
        dropDown.button().mouseDown();
        secondSuggestion.assertText(TODAY_AR);
View Full Code Here

Examples of org.seleniuminspector.openfaces.DropDownFieldInspector.popup()

        testAppFunctionalPage(pageUrl);

        // with mouse help
        DropDownFieldInspector first = dropDownField("formID:first");
        if (isDropDown) {
            first.popup().assertVisible(false);
            first.button().mouseDown();
            first.popup().assertVisible(true);
            first.button().mouseDown();
        }
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.