Package org.pentaho.openformula.ui.util

Examples of org.pentaho.openformula.ui.util.SelectFieldAction


    {
      paramTextField.setFocusable(true);
      paramTextField.requestFocusInWindow();
    }

    final SelectFieldAction selectFieldAction =
        new SelectFieldAction(this, new FieldSelectorUpdateHandler(parameterPosition), this);
    // treat insert field as parameter edit
    selectFieldAction.setFocusReturn(paramTextField);

    final BorderlessButton button = new BorderlessButton(selectFieldAction);
    final TooltipLabel tooltipLabel = new TooltipLabel(description);

    GridBagConstraints gbc = new GridBagConstraints();
View Full Code Here


    errorIcon = new ImageIcon(getClass().getResource("/org/pentaho/openformula/ui/images/error.gif")); // NON-NLS
    errorIconHolder = new JLabel();
    errorTextHolder = new JLabel();
    errorTextHolder.setName("errorTextHolder");

    selectFieldsAction = new SelectFieldAction(this, new FieldSelectorListener(), this);

    final JSplitPane functionPanel = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
    functionPanel.setTopComponent(functionParameterEditor.getEditorComponent());
    functionPanel.setBottomComponent(buildFormulaTextPanel());
    functionPanel.setBorder(new EmptyBorder(0, 0, 0, 0));
View Full Code Here

TOP

Related Classes of org.pentaho.openformula.ui.util.SelectFieldAction

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.