Examples of AboutView


Examples of fr.soleil.salsa.client.view.AboutView

        aboutItem.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                if (about == null) {
                    about = new AboutView();
                }
                if ((controllerTool != null) && (controllerTool.getApplicationController() != null)) {
                    about
                            .setLocationRelativeTo(controllerTool.getApplicationController()
                                    .getView());
View Full Code Here

Examples of fr.soleil.salsa.client.view.AboutView

        aboutItem.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                if (about == null) {
                    about = new AboutView();
                }
                if (controllerTool != null && controllerTool.getApplicationController() != null) {
                    about.setLocationRelativeTo(controllerTool.getApplicationController().getView());
                }
                about.setVisible(true);
View Full Code Here

Examples of fr.soleil.salsa.client.view.AboutView

        aboutItem.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                if (about == null) {
                    about = new AboutView();
                }
                if (controllerTool != null && controllerTool.getApplicationController() != null) {
                    about.setLocationRelativeTo(controllerTool.getApplicationController().getView());
                }
                about.setVisible(true);
View Full Code Here

Examples of net.sourceforge.pebble.web.view.impl.AboutView

   * @param request  the HttpServletRequest instance
   * @param response the HttpServletResponse instance
   * @return the name of the next view
   */
  public View process(HttpServletRequest request, HttpServletResponse response) throws ServletException {
    return new AboutView();
  }
View Full Code Here

Examples of org.apache.isis.viewer.dnd.help.AboutView

    @Override
    public void menuOptions(final UserActionSet options) {
        options.add(new UserActionAbstract("About...") {
            @Override
            public void execute(final Workspace workspace, final View view, final Location at) {
                final AboutView dialogView = new AboutView();
                final Size windowSize = dialogView.getRequiredSize(new Size());
                final Size workspaceSize = workspace.getSize();
                final int x = workspaceSize.getWidth() / 2 - windowSize.getWidth() / 2;
                final int y = workspaceSize.getHeight() / 2 - windowSize.getHeight() / 2;
                workspace.addDialog(dialogView, new Placement(new Location(x, y)));
            }
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.