Package de.iritgo.aktario.core.gui

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


  /**
   * 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

      {
        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

  /**
   * 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

  /**
   *
   */
  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

      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

TOP

Related Classes of de.iritgo.aktario.core.gui.IDisplay

Copyright © 2018 www.massapicom. 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.