Package org.openbp.jaspira.plugins.statusbar

Examples of org.openbp.jaspira.plugins.statusbar.StatusBarTextEvent


        currentTool.mouseMove(e, x, y);
      }
    }

    // Display or remove the hint message and set the view cursor
    editor.fireEvent(new StatusBarTextEvent(editor, hintMsg));
    view.setCursor(cursor);

    lastPoint.x = e.getX();
    lastPoint.y = e.getY();
  }
View Full Code Here


    if (!ve.isVetoed())
    {
      if (modeler.saveProcess())
      {
        modeler.getDrawing().clearModified();
        modeler.fireEvent(new StatusBarTextEvent(modeler, "Process " + modeler.getProcessQualifier() + " saved."));
        modeler.fireEvent(new JaspiraEvent(modeler, "modeler.view.saved", modeler));
      }
    }

    return EVENT_HANDLED;
View Full Code Here

       */
      public void actionPerformed(ActionEvent e)
      {
        resetTimer.stop();

        JaspiraEventMgr.fireGlobalEvent(new StatusBarTextEvent(null, null));

        currentTree = rootTree;
        resetClients();
      }
    };
View Full Code Here

        {
          resetTimer.start();
        }

        // Display the sequence entered so far in the status bar
        JaspiraEventMgr.fireGlobalEvent(new StatusBarTextEvent(null, sequence.toString()));

        resetClients();
      }
      else
      {
View Full Code Here

   */
  public void initializePlugin()
  {
    initializeResources();

    fireEvent(new StatusBarTextEvent(this, "Loading plugin '" + getTitle() + "'..."));

    installEventModules();
  }
View Full Code Here

    postInstallApplication();

    // Notifies components that init is complete
    fireEvent("global.init.completed");

    fireEvent(new StatusBarTextEvent(this, getPluginResourceCollection().getRequiredString("application.loaded")));
    isInitialized = true;

    // Sometimes, the title bar of the plugin windows are missing. Force a global rebuild to prevent this.
    fireEvent(new JaspiraEvent(this, VisiblePlugin.GER, null, JaspiraEvent.TYPE_FLOOD, Plugin.LEVEL_PAGE, JaspiraEvent.STACKABLE));
  }
View Full Code Here

   *
   * @param text Text to display
   */
  public void showStatusText(String text)
  {
    fireEvent(new StatusBarTextEvent(this, text));
  }
View Full Code Here

        {
          // Save failed
          return false;
        }

        fireEvent(new StatusBarTextEvent(this, "Process " + processQualifier + " saved."));
      }
      else
      {
        drawing.clearModified();
      }
View Full Code Here

TOP

Related Classes of org.openbp.jaspira.plugins.statusbar.StatusBarTextEvent

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.