Package org.pentaho.reporting.designer.core.editor.format

Examples of org.pentaho.reporting.designer.core.editor.format.SelectCustomColorAction


    gbc.gridx = 2;
    gbc.gridy = 0;
    gbc.anchor = GridBagConstraints.WEST;
    gbc.insets = new Insets(5, 5, 0, 5);
    gbc.fill = GridBagConstraints.VERTICAL;
    add(new EllipsisButton(new SelectCustomColorAction(gridColorSelectorBox)), gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 0;
    gbc.gridy = 1;
    gbc.anchor = GridBagConstraints.WEST;
    gbc.insets = new Insets(5, 5, 0, 5);
    add(new JLabel(SettingsMessages.getInstance().getString("ColorSettingsPanel.GuideColor")), gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 1;
    gbc.gridy = 1;
    gbc.anchor = GridBagConstraints.WEST;
    gbc.insets = new Insets(5, 5, 0, 5);
    gbc.weightx = 1;
    gbc.fill = GridBagConstraints.HORIZONTAL;
    add(guideColorSelectorBox, gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 2;
    gbc.gridy = 1;
    gbc.anchor = GridBagConstraints.WEST;
    gbc.insets = new Insets(5, 5, 0, 5);
    gbc.fill = GridBagConstraints.VERTICAL;
    add(new EllipsisButton(new SelectCustomColorAction(guideColorSelectorBox)), gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 0;
    gbc.gridy = 2;
    gbc.anchor = GridBagConstraints.WEST;
    gbc.insets = new Insets(5, 5, 0, 5);
    add(new JLabel(SettingsMessages.getInstance().getString("ColorSettingsPanel.AlignmentHintColor")), gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 1;
    gbc.gridy = 2;
    gbc.anchor = GridBagConstraints.WEST;
    gbc.insets = new Insets(5, 5, 0, 5);
    gbc.weightx = 1;
    gbc.fill = GridBagConstraints.HORIZONTAL;
    add(alignmentHintColorSelectorBox, gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 2;
    gbc.gridy = 2;
    gbc.anchor = GridBagConstraints.WEST;
    gbc.insets = new Insets(5, 5, 0, 5);
    gbc.fill = GridBagConstraints.VERTICAL;
    add(new EllipsisButton(new SelectCustomColorAction(alignmentHintColorSelectorBox)), gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 0;
    gbc.gridy = 3;
    gbc.anchor = GridBagConstraints.WEST;
    gbc.insets = new Insets(5, 5, 0, 5);
    add(new JLabel(SettingsMessages.getInstance().getString("ColorSettingsPanel.OverlapHintColor")), gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 1;
    gbc.gridy = 3;
    gbc.anchor = GridBagConstraints.WEST;
    gbc.insets = new Insets(5, 5, 0, 5);
    gbc.weightx = 1;
    gbc.fill = GridBagConstraints.HORIZONTAL;
    add(overlapHintColorSelectorBox, gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 2;
    gbc.gridy = 3;
    gbc.anchor = GridBagConstraints.WEST;
    gbc.insets = new Insets(5, 5, 0, 5);
    gbc.fill = GridBagConstraints.VERTICAL;
    add(new EllipsisButton(new SelectCustomColorAction(overlapHintColorSelectorBox)), gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 2;
    gbc.gridy = 4;
    gbc.anchor = GridBagConstraints.WEST;
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.designer.core.editor.format.SelectCustomColorAction

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.