Package com.eviware.soapui.support.components

Examples of com.eviware.soapui.support.components.JXToolBar.addRelatedGap()


  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


    testStepsCombo = new JComboBox( testStepsModel );
    testStepsCombo.setToolTipText( "The step the test case will go to if the current condition is true" );
    testStepsCombo.setEnabled( false );
    UISupport.setFixedSize( testStepsCombo, 280, 20 );
    builder.addFixed( new JLabel( "<html><b>Target step:</b></html>" ) );
    builder.addRelatedGap();
    builder.addFixed( testStepsCombo );
    builder.addGlue();
    testConditionButton = new JButton( new TestConditionAction() );
    testConditionButton.setEnabled( false );
    builder.addFixed( testConditionButton );
View Full Code Here

  {
    JXToolBar toolbar = UISupport.createToolbar();

    toolbar.addFixed( UISupport.createToolbarButton( new RunWSIAction() ) );
    toolbar.addFixed( UISupport.createToolbarButton( new WSIOptionsAction() ) );
    toolbar.addRelatedGap();
    saveWsiReportAction = new SaveWsiReportAction();
    toolbar.addFixed( UISupport.createToolbarButton( saveWsiReportAction ) );

    toolbar.addGlue();
    toolbar.addFixed( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.WSI_COMPLIANCE_HELP_URL ) ) );
View Full Code Here

    label.setToolTipText( label.getText() );
    label.setMinimumSize( label.getPreferredSize() );
    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

    propertiesTable = createPropertyHolderTable();
    add( propertiesTable, BorderLayout.CENTER );

    JXToolBar toolbar = propertiesTable.getToolbar();

    toolbar.addRelatedGap();
    JButton reloadButton = UISupport.createToolbarButton( new ReloadPropertiesFromSourceAction() );
    toolbar.add( reloadButton );

    toolbar.addSeparator();
    toolbar.add( new JLabel( "Load from:" ) );
View Full Code Here

        testStep.setSource( sourceField.getText() );
        updatingSource = false;
      }
    } );

    toolbar.addRelatedGap();
    toolbar.addFixed( sourceField );
    JButton setSourceButton = UISupport.createToolbarButton( new SetPropertiesSourceAction() );
    toolbar.addRelatedGap();
    toolbar.add( setSourceButton );
View Full Code Here

    } );

    toolbar.addRelatedGap();
    toolbar.addFixed( sourceField );
    JButton setSourceButton = UISupport.createToolbarButton( new SetPropertiesSourceAction() );
    toolbar.addRelatedGap();
    toolbar.add( setSourceButton );

    toolbar.addSeparator();
    toolbar.add( new JLabel( "Save to:" ) );
    targetField = new JTextField( testStep.getTarget(), 20 )
View Full Code Here

        testStep.setTarget( targetField.getText() );
        updatingTarget = false;
      }
    } );

    toolbar.addRelatedGap();
    toolbar.addFixed( targetField );
    JButton setTargetButton = UISupport.createToolbarButton( new SetPropertiesTargetAction() );
    toolbar.addRelatedGap();
    toolbar.add( setTargetButton );
View Full Code Here

      }
    } );
    enableLogCheckBox.setOpaque( false );

    builder.addFixed( enableLogCheckBox );
    builder.addRelatedGap();
    builder.addFixed( new JLabel( "Enable" ) );
    builder.addRelatedGap();
    addLogActions( builder );

    builder.addGlue();
View Full Code Here

    enableLogCheckBox.setOpaque( false );

    builder.addFixed( enableLogCheckBox );
    builder.addRelatedGap();
    builder.addFixed( new JLabel( "Enable" ) );
    builder.addRelatedGap();
    addLogActions( builder );

    builder.addGlue();
    builder.setBorder( BorderFactory.createEmptyBorder( 2, 3, 3, 3 ) );
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.