Package ca.nengo.ui.lib.objects.activities

Examples of ca.nengo.ui.lib.objects.activities.TrackedStatusMsg


    protected void initialize() {
        initChildModelListener();

        setStatusBarHandler(new NodeViewerStatus(this));

        TrackedStatusMsg msg = new TrackedStatusMsg("Building nodes in Viewer");

        updateViewFromModel(true);

        msg.finished();

    }
View Full Code Here


   * Builds a NeoGraphics User Interface
   */
  private UINetwork buildUI() {
    NengoGraphics nengoGraphics = new NengoGraphics();

    TrackedStatusMsg task;
    task = new TrackedStatusMsg("Creating Model UI");
    if (networkUI == null) {

      networkUI = new UINetwork(network);
      nengoGraphics.getWorld().getGround().addChild(networkUI);
      networkUI.openViewer();
    }

    processNetwork(networkUI);
    task.finished();

    return networkUI;

  }
View Full Code Here

                SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
                        if (progressMsg != null) {
                            progressMsg.finished();
                        }
                        progressMsg = new TrackedStatusMsg((int) (currentProgress * 100)
                                + "% - simulation running");

                    }
                });
            }
View Full Code Here

TOP

Related Classes of ca.nengo.ui.lib.objects.activities.TrackedStatusMsg

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.