Package de.iritgo.aktario.framework.client.command

Examples of de.iritgo.aktario.framework.client.command.ShowWindow


      props.put("visible", true);

      DataObject dataObject = DataObjectTools.registerDataObject("BuddyList", AppContext.instance().getUser()
              .getUniqueId());

      CommandTools.performAsync(new ShowWindow("BuddyListPane", dataObject), props);

      props = new Properties();
      props.put("closable", false);
      props.put("iconifiable", false);
      props.put("maximizable", false);
      props.put("maximized", false);
      props.put("titlebar", false);
      props.put("visible", true);
      CommandTools.performAsync(new ShowWindow("CallManagerInstantCallPane"), props);
    }
    catch (Exception x)
    {
      Log.logError("client", "DefaultStartup", x.toString());
    }
View Full Code Here


      props.put("iconifiable", false);
      props.put("maximizable", false);
      props.put("maximized", false);
      props.put("titlebar", false);
      props.put("visible", true);
      CommandTools.performAsync(new ShowWindow("AddressQueryGuiPane"), props);
      firstActivation = false;
    }
    else
    {
      if (Client.instance().getClientGUI().getDesktopManager().getDisplay("AddressQueryGuiPane") == null)
View Full Code Here

      props.put("maximized", Boolean.TRUE);
      props.put("titlebar", Boolean.FALSE);
      CommandTools.performSimple(new ShowOtherFrame(this, "common.chatview", "common.chatview",
              OtherFrame.SIZE_PACK));

      CommandTools.performAsync(new ShowWindow("common.chatview", "common.chatview"), props);

      forwardingToggle = false;
    }
    else
    {
View Full Code Here

    Controller controller = guiManager.getController(controllerId);

    String editModel = controller.getCommandDescription("EditAkteraObjectCommand").getValue();

    CommandTools
            .performSimple(new ShowWindow("DataObjectGUIPane", onScreenUniqueId, onScreenUniqueId, null),
                    props);

    EditAkteraObjectRequest editAkteraObjectRequest = new EditAkteraObjectRequest(editModel, dataObject,
            onScreenUniqueId, queryPaneId);
View Full Code Here

    DynDataObject dataObject = (DynDataObject) DataObjectTools.createDynDataObject(model, dataObjectUniqueId);

    String onScreenUniqueId = "onScreenUniqueId-" + Engine.instance().getTransientIDGenerator().createId();

    CommandTools.performAsync(new ShowWindow("DataObjectGUIPane", onScreenUniqueId, jFrameId, dataObject), props);
  }
View Full Code Here

      AkteraQuery journalQuery = new AkteraQuery("aktera.journal.list.notvisible",
              "de.iritgo.aktera.journal.EmbeddedJournal");

      DataObjectTools.executeQuery(journalQuery);
      CommandTools.performAsync(new ShowWindow("QueryPane", "de.iritgo.aktera.journal.EmbeddedJournal",
              "default", journalQuery), props);
      firstActivation = false;
    }
    else
    {
View Full Code Here

TOP

Related Classes of de.iritgo.aktario.framework.client.command.ShowWindow

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.