Examples of IDisplay


Examples of de.iritgo.aktario.core.gui.IDisplay

      forwardingToggle = false;
    }
    else
    {
      IDisplay display = (IDisplay) Client.instance().getClientGUI().getDesktopManager().getDisplay(
              "common.chatview");
      OtherJDesktopPane odp = (OtherJDesktopPane) ((SwingDesktopManager) Client.instance().getClientGUI()
              .getDesktopManager()).getDesktopPane(display.getDesktopId());

      odp.closeAll();

      forwardingToggle = true;
    }
View Full Code Here

Examples of de.iritgo.aktario.core.gui.IDisplay

  /**
   * Perform the action.
   */
  public void perform()
  {
    IDisplay display = (IDisplay) Client.instance().getClientGUI().getDesktopManager().getDisplay(onScreenUniqueId);
    QueryPane queryPane = (QueryPane) display.getGUIPane();

    queryPane.deleteListEntry(dataObjectUniqueId, model);
  }
View Full Code Here

Examples of de.iritgo.aktario.core.gui.IDisplay

      {
        SwingUtilities.updateComponentTreeUI(desktopFrame);

        for (Iterator i = desktopManager.getDisplayIterator(); i.hasNext();)
        {
          IDisplay display = (IDisplay) i.next();

          if (display instanceof IDialog)
          {
            SwingUtilities.updateComponentTreeUI(((SwingDialogFrame) ((IDialog) display).getDialogFrame()));
          }
View Full Code Here

Examples of de.iritgo.aktario.core.gui.IDisplay

  /**
   * Perform the action.
   */
  public void perform()
  {
    IDisplay display = (IDisplay) Client.instance().getClientGUI().getDesktopManager().getDisplay(queryPaneId);

    if (display != null)
    {
      GUIPane guiPane = display.getGUIPane();

      ((QueryPane) guiPane).refreshQuery();
    }

    display = (IDisplay) Client.instance().getClientGUI().getDesktopManager().getDisplay(onScreenUniqueId);

    if (display != null)
    {
      DataObjectGUIPane dataObjectGUIPane = (DataObjectGUIPane) display.getGUIPane();

      if (dataObjectGUIPane.isToCloseAfterSave())
      {
        OtherJDesktopPane odp = (OtherJDesktopPane) ((SwingDesktopManager) Client.instance().getClientGUI()
                .getDesktopManager()).getDesktopPane(display.getDesktopId());

        odp.closeAll();
      }
    }
  }
View Full Code Here

Examples of de.iritgo.aktario.core.gui.IDisplay

  /**
   *
   */
  public void perform()
  {
    IDisplay display = (IDisplay) Client.instance().getClientGUI().getDesktopManager().getDisplay(
            swingGUIPane.getOnScreenUniqueId());

    OtherJDesktopPane odp = (OtherJDesktopPane) ((SwingDesktopManager) Client.instance().getClientGUI()
            .getDesktopManager()).getDesktopPane(display.getDesktopId());

    odp.closeAll();
  }
View Full Code Here

Examples of de.iritgo.aktario.core.gui.IDisplay

      public void perform()
      {
        DynDataObject dataObject = (DynDataObject) DataObjectTools.createDynDataObject(model, new Long(
                keelObjectUniqueId).longValue());

        IDisplay display = (IDisplay) Client.instance().getClientGUI().getDesktopManager().getDisplay(jFrameId);

        ((IWindow) display).registerIObject((IObject) dataObject, display.getGUIPane());
        ((IWindow) display).initGUIPane();
        AppContext.instance().put("LoadingAkteraObject", false);
      }

      public boolean canPerform()
View Full Code Here

Examples of fr.soleil.salsa.entity.IDisplay

     *
     * @param display the display to set
     */
    @Override
    public void setDisplay(IDisplay display) {
        IDisplay oldValue = baseBean.getDisplay();
        baseBean.setDisplay(display);
        firePropertyChange("display", oldValue, display);
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.IDisplay

     *
     * @param display the display to set
     */
    @Override
    public void setDisplay(IDisplay display) {
        IDisplay oldValue = baseBean.getDisplay();
        baseBean.setDisplay(display);
        firePropertyChange("display", oldValue, display);
    }
View Full Code Here

Examples of fr.soleil.salsa.entity.IDisplay

        if (newconfig != null) {
            // System.out.println(newconfig.getFullPath());
            // System.out.println(newconfig.isModified());
            attributeNameList.clear();

            IDisplay display = getDisplay(newconfig);

            if (display != null) {
                // long begin2 = System.currentTimeMillis();
                List<DisplayAxis> axisList = display.getAxisList();
                Iterator<DisplayAxis> iteratorAxis = axisList.listIterator();
                List<ISensor> sensorList = newconfig.getSensorsList();
                List<IActuator> actuatorList = newconfig.getActuatorList();

                // long end2 = System.currentTimeMillis();
                // System.out.println("Display Extraction= " + (end2 - begin2));

                // long begin3 = System.currentTimeMillis();
                if (sensorList != null) {
                    initSavedAxis(sensorList, iteratorAxis, true);
                }

                // long end3 = System.currentTimeMillis();
                // System.out.println("Init Saved Axis sensor= " + (end3 - begin3));

                // long begin4 = System.currentTimeMillis();
                if (actuatorList != null) {
                    initSavedAxis(actuatorList, iteratorAxis, false);
                }
                // long end4 = System.currentTimeMillis();
                // System.out.println("Init Saved Axis actuator= " + (end4 - begin4));

                // Check if it is a timebase
                if (display.isTimeBase()) {
                    super.setActuatorName(CurrentScanDataModel.SENSORS_TIMESTAMPS);
                }
            }
            // refreshGUI();
            config = newconfig;
View Full Code Here

Examples of fr.soleil.salsa.entity.IDisplay

            // System.out.println("axisMap=" + axisMap);
            if (axisMap.isEmpty()) {
                return;
            }

            IDisplay display = getDisplay(config);
            if (display == null) {
                return;
            }

            List<DisplayAxis> axisList = new ArrayList<DisplayAxis>();
            synchronized (attributeNameList) {
                Iterator<String> attributeIterator = attributeNameList.listIterator();
                String attributeName = null;
                String axis = null;
                while (attributeIterator.hasNext()) {
                    attributeName = attributeIterator.next();
                    if (axisMap.containsKey(attributeName.toLowerCase())) {
                        axis = axisMap.get(attributeName.toLowerCase());
                        axisList.add(getDisplayAxis(axis));
                        // System.out.println("buildAxisList=" + attributeName + " -> " + axis);
                    }
                }
                // Check if it is a time base
                String actualActuatorName = super.getActuatorName();
                // System.out.println("actualActuatorName=" + actualActuatorName);
                if (actualActuatorName != null
                        && actualActuatorName.equals(CurrentScanDataModel.SENSORS_TIMESTAMPS)) {
                    display.setTimeBase(true);
                }
                else {
                    display.setTimeBase(false);
                }
                display.setAxisList(axisList);
            }

            if (config != null) {
                IScanAddOns scanAddOns = config.getScanAddOn();
                if (scanAddOns != null) {
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.