Package org.jitterbit.ui.style

Examples of org.jitterbit.ui.style.TextStyle.makeLabel()


    @Override
    public void decorate(UiCanvas canvas) {
        DialogLayoutBuilder layout = new DialogLayoutBuilder(5, 10);
        TextStyle labelStyle = TextStyles.DefaultBold;
        layout.addRow(labelStyle.makeLabel("Test:"), title);
        layout.addRow(labelStyle.makeLabel("Tested item:"), item);
        if (targetNode != null) {
            layout.addRow(labelStyle.makeLabel("Target node:"), targetNode);
        }
        layout.setBorder(StyleSheet.getDefaultTitleBorder("Details:"));
View Full Code Here


    @Override
    public void decorate(UiCanvas canvas) {
        DialogLayoutBuilder layout = new DialogLayoutBuilder(5, 10);
        TextStyle labelStyle = TextStyles.DefaultBold;
        layout.addRow(labelStyle.makeLabel("Test:"), title);
        layout.addRow(labelStyle.makeLabel("Tested item:"), item);
        if (targetNode != null) {
            layout.addRow(labelStyle.makeLabel("Target node:"), targetNode);
        }
        layout.setBorder(StyleSheet.getDefaultTitleBorder("Details:"));
        layout.decorate(canvas);
View Full Code Here

        DialogLayoutBuilder layout = new DialogLayoutBuilder(5, 10);
        TextStyle labelStyle = TextStyles.DefaultBold;
        layout.addRow(labelStyle.makeLabel("Test:"), title);
        layout.addRow(labelStyle.makeLabel("Tested item:"), item);
        if (targetNode != null) {
            layout.addRow(labelStyle.makeLabel("Target node:"), targetNode);
        }
        layout.setBorder(StyleSheet.getDefaultTitleBorder("Details:"));
        layout.decorate(canvas);
    }
View Full Code Here

    }

    private JComponent createContent() {
        TextStyle labelStyle = TextStyles.InfoText;
        BorderLayoutBuilder p = new BorderLayoutBuilder(0, 5);
        p.north(labelStyle.makeLabel(PackageResources.DirtyDelegates.Messages.TOP));
        p.center(entityList);
        p.south(labelStyle.makeLabel(PackageResources.DirtyDelegates.Messages.BOTTOM));
        return p.container();
    }
View Full Code Here

    private JComponent createContent() {
        TextStyle labelStyle = TextStyles.InfoText;
        BorderLayoutBuilder p = new BorderLayoutBuilder(0, 5);
        p.north(labelStyle.makeLabel(PackageResources.DirtyDelegates.Messages.TOP));
        p.center(entityList);
        p.south(labelStyle.makeLabel(PackageResources.DirtyDelegates.Messages.BOTTOM));
        return p.container();
    }


}
View Full Code Here

        return check;
    }

    private JComponent createGettingStartedHelpBlurb() {
        TextStyle captionStyle = TextStyle.adjustSize(WizardStyleSheet.SECTION_STYLE, 2);
        KongaLabel caption = captionStyle.makeLabel("Getting Started Help");
        caption.setAntiAliasingEnabled(true);
        caption.setBorder(Empty.border(0, 0, 10, 0));
        TextStyle textStyle = TextStyle.adjustSize(TextStyles.DefaultText, 1);
        JLabel text = textStyle.makeLabel("<html>First time using Jitterbit? Need a<br>" +
            "refresher? Use these tools to get<br>" +
View Full Code Here

        TextStyle captionStyle = TextStyle.adjustSize(WizardStyleSheet.SECTION_STYLE, 2);
        KongaLabel caption = captionStyle.makeLabel("Getting Started Help");
        caption.setAntiAliasingEnabled(true);
        caption.setBorder(Empty.border(0, 0, 10, 0));
        TextStyle textStyle = TextStyle.adjustSize(TextStyles.DefaultText, 1);
        JLabel text = textStyle.makeLabel("<html>First time using Jitterbit? Need a<br>" +
            "refresher? Use these tools to get<br>" +
            "started with your first integration.</html>");
        OneColumnPanel left = new OneColumnPanel();
        left.setWeightX(1.0);
        left.addAll(caption, text);
View Full Code Here

    }

    private JComponent createDontForgetArea() {
        TextStyle style = TextStyle.adjustSize(
                        TextStyle.newColor(TextStyles.DefaultBoldLarger, Colors.NEUTRAL_BACKGROUND), 1);
        JLabel first = style.makeLabel("Don't forget! If you're a Jitterbit customer");
        JLabel second = style.makeLabel("you can reach us by email or phone per your");
        JLabel third = style.makeLabel("support contract.");
        Grid col = Grid.oneColumn(5);
        col.addAll(first, second, third);
        col.setBackground(Colors.JITTERBIT_BLUE).setBorder(Empty.border(8, 16, 8, 16));
View Full Code Here

    private JComponent createDontForgetArea() {
        TextStyle style = TextStyle.adjustSize(
                        TextStyle.newColor(TextStyles.DefaultBoldLarger, Colors.NEUTRAL_BACKGROUND), 1);
        JLabel first = style.makeLabel("Don't forget! If you're a Jitterbit customer");
        JLabel second = style.makeLabel("you can reach us by email or phone per your");
        JLabel third = style.makeLabel("support contract.");
        Grid col = Grid.oneColumn(5);
        col.addAll(first, second, third);
        col.setBackground(Colors.JITTERBIT_BLUE).setBorder(Empty.border(8, 16, 8, 16));
        return InvisiblePanel.newPanel(col.get());
View Full Code Here

    private JComponent createDontForgetArea() {
        TextStyle style = TextStyle.adjustSize(
                        TextStyle.newColor(TextStyles.DefaultBoldLarger, Colors.NEUTRAL_BACKGROUND), 1);
        JLabel first = style.makeLabel("Don't forget! If you're a Jitterbit customer");
        JLabel second = style.makeLabel("you can reach us by email or phone per your");
        JLabel third = style.makeLabel("support contract.");
        Grid col = Grid.oneColumn(5);
        col.addAll(first, second, third);
        col.setBackground(Colors.JITTERBIT_BLUE).setBorder(Empty.border(8, 16, 8, 16));
        return InvisiblePanel.newPanel(col.get());
    }
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.