Package com.eviware.soapui.impl.support.actions

Examples of com.eviware.soapui.impl.support.actions.ShowOnlineHelpAction


    toolbar.addRelatedGap();
    assignButton = new JButton( new AssignAction() );
    toolbar.addFixed( assignButton );

    toolbar.addGlue();
    ShowOnlineHelpAction showOnlineHelpAction = new ShowOnlineHelpAction( HelpUrls.ENDPOINTSEDITOR_HELP_URL );
    toolbar.addFixed( UISupport.createToolbarButton( showOnlineHelpAction ) );

    return toolbar;
  }
View Full Code Here


        + "<code>requestContext</code>, <code>mockRequest</code> and <code>mockOperation</code> variables</html>" );
    label.setToolTipText( label.getText() );
    label.setMaximumSize( label.getPreferredSize() );

    toolbar.add( label );
    toolbar.addFixed( ModelItemDesktopPanel.createActionButton( new ShowOnlineHelpAction(
        HelpUrls.MOCKOPERATION_SCRIPTDISPATCH_HELP_URL ), true ) );
    return toolbar;
  }
View Full Code Here

    label.setToolTipText( label.getText() );
    label.setMaximumSize( label.getPreferredSize() );

    toolBar.add( label );
    toolBar.addRelatedGap();
    toolBar.add( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.GROOVYSTEPEDITOR_HELP_URL ) ) );

    componentEnabler.add( runButton );

    return toolBar;
  }
View Full Code Here

    declareButton = UISupport.createToolbarButton( new DeclareNamespacesAction() );
    declareButton.setEnabled( false );
    toolbar.addFixed( declareButton );
    toolbar.addGlue();
    toolbar.addFixed( UISupport
        .createToolbarButton( new ShowOnlineHelpAction( HelpUrls.TRANSFERSTEPEDITOR_HELP_URL ) ) );
    return toolbar;
  }
View Full Code Here

    addToolbarActions( toolbar );

    toolbar.addSeparator();
    toolbar.add( Box.createHorizontalGlue() );
    toolbar.add( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.SECURITYTESTEDITOR_HELP_URL ) ) );

    return toolbar;
  }
View Full Code Here

    securityScanPopUp = new JPopupMenu();
    securityScanPopUp.add( enableDisableSecurityScan = new EnableDisableSecurityScan() );
    securityScanPopUp.add( configureSecurityScanAction );
    securityScanPopUp.addSeparator();
    securityScanPopUp.add( removeSecurityScanAction );
    showOnlineHelpAction = new ShowOnlineHelpAction( HelpUrls.RESPONSE_ASSERTIONS_HELP_URL );
    securityScanPopUp.add( showOnlineHelpAction );

    securityScanWithPropertiesPopUp = new JPopupMenu();
    securityScanWithPropertiesPopUp.add( enableDisableSecurityScan );
    securityScanWithPropertiesPopUp.add( configureSecurityScanAction );
    securityScanWithPropertiesPopUp.add( cloneParametersAction );
    securityScanWithPropertiesPopUp.addSeparator();
    securityScanWithPropertiesPopUp.add( removeSecurityScanAction );
    securityScanWithPropertiesPopUp.add( showOnlineHelpAction );

    multySecurityScanPopUp = new JPopupMenu();
    enableSecurityScansAction = new EnableSecurityScans();
    disableSecurityScansAction = new DisableSecurityScans();
    populateMultySecurityScanPopup( true, true );
    multySecurityScanPopUp.addPopupMenuListener( new PopupMenuListener()
    {

      @Override
      public void popupMenuWillBecomeVisible( PopupMenuEvent arg0 )
      {
        multypopupvisible = true;
      }

      @Override
      public void popupMenuWillBecomeInvisible( PopupMenuEvent arg0 )
      {
        // TODO Auto-generated method stub

      }

      @Override
      public void popupMenuCanceled( PopupMenuEvent arg0 )
      {
        // TODO Auto-generated method stub

      }
    } );

    testStepPopUp = new JPopupMenu();
    initTestStepPopUpActions();
    testStepPopUp.addSeparator();
    testStepPopUp.add( new ShowOnlineHelpAction( HelpUrls.RESPONSE_ASSERTIONS_HELP_URL ) );

    treeModel = new SecurityScanTree( securityTest, new SecurityTreeRootNode( securityTest ) );
    securityTestTree = new JXTree( treeModel );
    securityTestTree.putClientProperty( "JTree.lineStyle", "None" );
    securityTestTree.setUI( new CustomTreeUI() );
View Full Code Here

            }
        });

        jPanel1.addFixed(exportBtn);
        jPanel1.addGlue();
        jPanel1.addFixed(UISupport.createToolbarButton(new ShowOnlineHelpAction(HelpUrls.ATTACHMENTS_HELP_URL)));
        add(jPanel1, java.awt.BorderLayout.NORTH);

        fileTable.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
            public void valueChanged(ListSelectionEvent e) {
                if (removeBtn != null) {
View Full Code Here

        mainToolbar.putClientProperty(Options.HEADER_STYLE_KEY, HeaderStyle.BOTH);
        mainToolbar.add(new NewWsdlProjectActionDelegate());
        mainToolbar.add(new ImportWsdlProjectActionDelegate());
        mainToolbar.add(new SaveAllActionDelegate());
        mainToolbar.addSpace(2);
        mainToolbar.add(new ShowOnlineHelpAction("Forum", HelpUrls.FORUMS_HELP_URL,
                "Opens the SoapUI Forum in a browser", "/group_go.png"));
        mainToolbar.addSpace(2);
        mainToolbar.add(new ShowOnlineHelpAction("Trial", HelpUrls.TRIAL_URL, "Apply for SoapUI Pro Trial License",
                "/favicon.png"));
        mainToolbar.addSpace(2);
        mainToolbar.add(new PreferencesActionDelegate());
        applyProxyButton = (JToggleButton) mainToolbar.add(new JToggleButton(new ApplyProxyButtonAction()));
        updateProxyButtonAndTooltip();

        mainToolbar.addGlue();

        searchField = new JTextField(20);
        searchField.addKeyListener(new KeyAdapter() {
            @Override
            public void keyTyped(KeyEvent e) {
                if (e.getKeyChar() == '\n') {
                    doForumSearch(searchField.getText());
                }
            }
        });

        JLabel searchLabel = new JLabel("Search Forum");
        // Extra width to avoid label to be truncated
        searchLabel.setPreferredSize(new Dimension(
                (int) (searchLabel.getPreferredSize().getWidth() * 1.1),
                (int) searchLabel.getPreferredSize().getHeight()));
        mainToolbar.addFixed(searchLabel);
        mainToolbar.addSeparator(new Dimension(3, 3));
        mainToolbar.addFixed(searchField);
        mainToolbar.add(new ToolbarForumSearchAction());
        mainToolbar.add(new ShowOnlineHelpAction(HelpUrls.USERGUIDE_HELP_URL));

        for (int i = 0; i < mainToolbar.getComponentCount(); i++) {
            if (mainToolbar.getComponent(i) instanceof JComponent) {
                ((JComponent) mainToolbar.getComponent(i)).setBorder(BorderFactory.createEmptyBorder(4, 2, 4, 2));
            }
View Full Code Here

        JMenu helpMenu = new JMenu("Help");
        helpMenu.setMnemonic(KeyEvent.VK_H);

        helpMenu.add(new ShowStarterPageAction());
        helpMenu.addSeparator();
        helpMenu.add(new ShowOnlineHelpAction("API Testing Dojo", HelpUrls.API_TESTING_DOJO_HELP_URL));
        helpMenu.add(new ShowOnlineHelpAction("Getting Started", HelpUrls.GETTINGSTARTED_HELP_URL));
        helpMenu.add(new SearchForumAction());
        helpMenu.addSeparator();
        helpMenu.add(new ShowSystemPropertiesAction());
        helpMenu.addSeparator();
        helpMenu.add(new VersionUpdateAction());
        helpMenu.addSeparator();
        helpMenu.add(new ShowOnlineHelpAction("SoapUI Pro Trial", HelpUrls.TRIAL_URL,
                "Apply for SoapUI Pro Trial License", "/favicon.png"));
        helpMenu.addSeparator();
        helpMenu.add(new OpenUrlAction("soapui.org", "http://www.soapui.org"));
        helpMenu.add(new OpenUrlAction("smartbear.com", "http://smartbear.com"));
        helpMenu.addSeparator();
View Full Code Here

        toolbar.addLabeledFixed("Select Step:", buildSelectStepCombo());
        toolbar.addUnrelatedGap();
        toolbar.addLabeledFixed("Resolution:", buildResolutionCombo());
        toolbar.addGlue();
        toolbar.addFixed(exportButton);
        toolbar.addFixed(UISupport.createToolbarButton(new ShowOnlineHelpAction(HelpUrls.STATISTICSGRAPH_HELP_URL)));

        return toolbar;
    }
View Full Code Here

TOP

Related Classes of com.eviware.soapui.impl.support.actions.ShowOnlineHelpAction

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.