Examples of JXToolBar


Examples of com.eviware.soapui.support.components.JXToolBar

    getComponent().setMinimumSize( new Dimension( 400, 120 ) );
  }

  private Component buildToolbar()
  {
    JXToolBar toolbar = UISupport.createSmallToolbar();

    toolbar.addFixed( new JButton( selectAllAction = new SelectAllAction() ) );
    toolbar.addRelatedGap();
    toolbar.addFixed( new JButton( unselectAllAction = new UnselectAllAction() ) );

    return toolbar;
  }
View Full Code Here

Examples of com.eviware.soapui.support.components.JXToolBar

    return applyProxyButton;
  }

  private JComponent buildToolbar()
  {
    mainToolbar = new JXToolBar();
    mainToolbar.setRollover( true );
    mainToolbar.putClientProperty( Options.HEADER_STYLE_KEY, HeaderStyle.BOTH );
    mainToolbar.add( new NewWsdlProjectActionDelegate() );
    mainToolbar.add( new ImportWsdlProjectActionDelegate() );
    mainToolbar.add( new SaveAllActionDelegate() );
View Full Code Here

Examples of com.eviware.soapui.support.components.JXToolBar

    this.project = project;

    JPanel p = ( JPanel )getComponent();
    JTabbedPane tabs = new JTabbedPane();

    JXToolBar toolbar = UISupport.createToolbar();
    soapMonitor = new SoapMonitor( project, sourcePort, incomingRequestWss, incomingResponseWss, toolbar, setAsProxy,
        sslEndpoint );

    tabs.add( soapMonitor, "Traffic Log" );

    toolbar.add( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.SOAPMONITOR_HELP_URL ) ) );

    p.add( toolbar, BorderLayout.NORTH );
    p.add( UISupport.createTabPanel( tabs, true ), BorderLayout.CENTER );

    p.setPreferredSize( new Dimension( 700, 600 ) );
View Full Code Here

Examples of com.eviware.soapui.support.components.JXToolBar

    return p;
  }

  private Component buildConditionListToolbar()
  {
    JXToolBar toolbar = UISupport.createSmallToolbar();

    addButton = UISupport.createToolbarButton( new AddAction() );
    toolbar.addFixed( addButton );
    copyButton = UISupport.createToolbarButton( new CopyAction() );
    copyButton.setEnabled( false );
    toolbar.addFixed( copyButton );
    deleteButton = UISupport.createToolbarButton( new DeleteAction() );
    deleteButton.setEnabled( false );
    toolbar.addFixed( deleteButton );
    renameButton = UISupport.createToolbarButton( new RenameAction() );
    renameButton.setEnabled( false );
    toolbar.addFixed( renameButton );
    return toolbar;
  }
View Full Code Here

Examples of com.eviware.soapui.support.components.JXToolBar

    return UISupport.createTabPanel( tabs, true );
  }

  private JComponent buildMockResponseListToolbar()
  {
    JXToolBar toolbar = UISupport.createToolbar();
    toolbar.add( UISupport.createToolbarButton( SwingActionDelegate.createDelegate(
        NewMockResponseAction.SOAPUI_ACTION_ID, getModelItem(), null, "/mockResponse.gif" ) ) );

    return toolbar;
  }
View Full Code Here

Examples of com.eviware.soapui.support.components.JXToolBar

    return dispatchPanel;
  }

  private Component buildToolbar()
  {
    JXToolBar toolbar = UISupport.createToolbar();
    toolbar.addSpace( 3 );

    toolbar.addFixed( UISupport.createToolbarButton( SwingActionDelegate.createDelegate(
        NewMockResponseAction.SOAPUI_ACTION_ID, getModelItem(), null, "/addToMockService.gif" ) ) );
    toolbar.addFixed( UISupport.createToolbarButton( SwingActionDelegate.createDelegate(
        OpenRequestForMockOperationAction.SOAPUI_ACTION_ID, getModelItem(), null, "/open_request.gif" ) ) );
    toolbar.addUnrelatedGap();

    ModelItemNames<WsdlInterface> names = new ModelItemNames<WsdlInterface>( ModelSupport.getChildren( getModelItem()
        .getMockService().getProject(), WsdlInterface.class ) );

    interfaceCombo = new JComboBox( names.getNames() );
    interfaceCombo.setSelectedIndex( -1 );
    interfaceCombo.addItemListener( new InterfaceComboListener() );

    toolbar.addLabeledFixed( "Interface", interfaceCombo );
    toolbar.addUnrelatedGap();
    operationCombo = new JComboBox( new ExtendedComboBoxModel() );
    operationCombo.setPreferredSize( new Dimension( 150, 20 ) );
    operationCombo.addItemListener( new OperationComboListener() );

    toolbar.addLabeledFixed( "Operation", operationCombo );

    WsdlOperation operation = getModelItem().getOperation();
    interfaceCombo.setSelectedItem( operation == null ? null : operation.getInterface().getName() );
    operationCombo.setSelectedItem( operation == null ? null : operation.getName() );

    toolbar.addGlue();
    toolbar.addFixed( createActionButton( new ShowOnlineHelpAction( HelpUrls.MOCKOPERATION_HELP_URL ), true ) );

    return toolbar;
  }
View Full Code Here

Examples of com.eviware.soapui.support.components.JXToolBar

  // entriesConfigPanel.repaint();
  // }

  private Component buildOutgoingEntriesToolbar()
  {
    JXToolBar toolbar = UISupport.createSmallToolbar();

    toolbar.addFixed( addOutgoingEntryButton = UISupport.createToolbarButton( new AddOutgoingEntryAction() ) );
    toolbar.addFixed( removeOutgoingEntryButton = UISupport.createToolbarButton( new RemoveOutgoingEntryAction(),
        false ) );

    return toolbar;
  }
View Full Code Here

Examples of com.eviware.soapui.support.components.JXToolBar

    return toolbar;
  }

  private Component buildOutgoingWssToolbar()
  {
    JXToolBar toolbar = UISupport.createSmallToolbar();

    toolbar.addFixed( UISupport.createToolbarButton( new AddOutgoingWssAction() ) );
    removeOutgoingWssAction = new RemoveOutgoingWssAction();
    toolbar.addFixed( UISupport.createToolbarButton( removeOutgoingWssAction ) );
    toolbar.addGlue();
    toolbar.addFixed( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.OUTGOINGWSS_HELP_URL ) ) );

    return toolbar;
  }
View Full Code Here

Examples of com.eviware.soapui.support.components.JXToolBar

    return panel;
  }

  private Component buildCryptosToolbar()
  {
    JXToolBar toolbar = UISupport.createSmallToolbar();

    toolbar.addFixed( UISupport.createToolbarButton( new AddCryptoAction() ) );
    removeCryptoAction = new RemoveCryptoAction();
    toolbar.addFixed( UISupport.createToolbarButton( removeCryptoAction ) );
    toolbar.addGlue();
    toolbar.addFixed( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.CRYPTOSWSS_HELP_URL ) ) );
    return toolbar;
  }
View Full Code Here

Examples of com.eviware.soapui.support.components.JXToolBar

    return toolbar;
  }

  private Component buildIncomingWssToolbar()
  {
    JXToolBar toolbar = UISupport.createSmallToolbar();

    toolbar.addFixed( UISupport.createToolbarButton( new AddIncomingWssAction() ) );
    removeIncomingWssAction = new RemoveIncomingWssAction();
    toolbar.addFixed( UISupport.createToolbarButton( removeIncomingWssAction ) );

    toolbar.addGlue();
    toolbar.addFixed( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.INCOMINGWSS_HELP_URL ) ) );

    return toolbar;
  }
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.