Examples of EllipsisButton


Examples of org.pentaho.reporting.libraries.designtime.swing.EllipsisButton

  {
    setLayout(new BorderLayout());

    this.eventListenerList = new EventListenerList();

    ellipsisButton = new EllipsisButton("...");
    ellipsisButton.addActionListener(new ExtendedEditorAction());

    textField = new JTextField();
    textField.getInputMap().put
        (Messages.getInstance().getKeyStroke("PropertyCellEditorWithEllipsis.PopupEditor.Accelerator"), POPUP_EDITOR);
View Full Code Here

Examples of org.pentaho.reporting.libraries.designtime.swing.EllipsisButton

  public TypedHeaderCellEditor()
  {
    nameField = new JTextField();
    nameField.addActionListener(new DefaultTextActionHandler());
    typePopupButton = new EllipsisButton(new ShowPopupAction());

    editorPanel = new JPanel(new BorderLayout());
    editorPanel.add(nameField, BorderLayout.CENTER);
    editorPanel.add(typePopupButton, BorderLayout.EAST);
View Full Code Here

Examples of org.pentaho.reporting.libraries.designtime.swing.EllipsisButton

  {
    this.listenerList = new EventListenerList();
    this.dataAttributeContext = new DefaultDataAttributeContext();
    setLayout(new BorderLayout());

    ellipsisButton = new EllipsisButton("...");
    ellipsisButton.setDefaultCapable(false);
    ellipsisButton.setMargin(new Insets(0, 0, 0, 0));
    ellipsisButton.addActionListener(new OpenFormulaEditorAction());

    changeEventGenerator = new ValueChangeEventGenerator();
View Full Code Here

Examples of org.pentaho.reporting.libraries.designtime.swing.EllipsisButton

  {
    this.listenerList = new EventListenerList();
    this.dataAttributeContext = new DefaultDataAttributeContext();
    setLayout(new BorderLayout());

    ellipsisButton = new EllipsisButton("...");
    ellipsisButton.setDefaultCapable(false);
    ellipsisButton.setMargin(new Insets(0, 0, 0, 0));
    ellipsisButton.addActionListener(new OpenFormulaEditorAction());

    changeEventGenerator = new ValueChangeEventGenerator();
View Full Code Here

Examples of org.pentaho.reporting.libraries.designtime.swing.EllipsisButton

  public TypedHeaderCellEditor()
  {
    nameField = new JTextField();
    nameField.addActionListener(new DefaultTextActionHandler());
    typePopupButton = new EllipsisButton(new ShowPopupAction());

    editorPanel = new JPanel(new BorderLayout());
    editorPanel.add(nameField, BorderLayout.CENTER);
    editorPanel.add(typePopupButton, BorderLayout.EAST);
View Full Code Here

Examples of org.pentaho.reporting.libraries.designtime.swing.EllipsisButton

    dateField.addActionListener(listener);

    setLayout(new BorderLayout());
    dateField.setEditable(true);

    pickDateButton = new EllipsisButton(new PickDateListener());

    add(dateField, BorderLayout.CENTER);
    add(pickDateButton, BorderLayout.EAST);
  }
View Full Code Here

Examples of org.pentaho.reporting.libraries.designtime.swing.EllipsisButton

  {
    setLayout(new BorderLayout());

    this.eventListenerList = new EventListenerList();

    ellipsisButton = new EllipsisButton("...");
    ellipsisButton.addActionListener(new ExtendedEditorAction());

    textField = new JTextField();
    textField.getInputMap().put
        (UtilMessages.getInstance().getKeyStroke("PropertyCellEditorWithEllipsis.PopupEditor.Accelerator"), POPUP_EDITOR);
View Full Code Here

Examples of org.pentaho.reporting.libraries.designtime.swing.EllipsisButton

  public ReportPreProcessorCellEditor()
  {
    eventListenerList = new EventListenerList();
    this.dataAttributeContext = new DefaultDataAttributeContext();

    final EllipsisButton ellipsisButton = new EllipsisButton("...");
    ellipsisButton.addActionListener(new ExtendedEditorAction());

    final DefaultComboBoxModel model = new DefaultComboBoxModel();
    final ReportPreProcessorMetaData[] datas = ReportPreProcessorRegistry.getInstance().getAllReportPreProcessorMetaDatas();
    model.addElement(null);
    for (int i = 0; i < datas.length; i++)
View Full Code Here

Examples of org.pentaho.reporting.libraries.designtime.swing.EllipsisButton

    dateField.addActionListener(listener);

    setLayout(new BorderLayout());
    dateField.setEditable(true);

    pickDateButton = new EllipsisButton(new PickDateListener());

    add(dateField, BorderLayout.CENTER);
    add(pickDateButton, BorderLayout.EAST);
  }
View Full Code Here

Examples of org.pentaho.reporting.libraries.designtime.swing.EllipsisButton

    this.eventListenerList = new EventListenerList();
    this.dataAttributeContext = new DefaultDataAttributeContext();
    this.extraFields = EMPTY_EXTRA_FIELDS;

    ellipsisButton = new EllipsisButton("...");
    ellipsisButton.addActionListener(action);

    textField = new JTextArea();
    textField.setLineWrap(true);
    textField.setDocument(new NonFilteringPlainDocument());
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.