Examples of TextIcon


Examples of org.noos.xing.mydoggy.plaf.ui.icons.TextIcon

                                                                  : toolWindow.getTitle();

            if (anchor == ToolWindowAnchor.BOTTOM || anchor == ToolWindowAnchor.TOP) {
                anchorLabel = new AnchorLabel(toolAnchorLabelName, toolWindow.getIcon(), JLabel.CENTER);
            } else {
                TextIcon textIcon = new TextIcon(container, toolAnchorLabelName, anchor == ToolWindowAnchor.LEFT ? TextIcon.ROTATE_LEFT : TextIcon.ROTATE_RIGHT);
                CompositeIcon compositeIcon = new CompositeIcon(textIcon, toolWindow.getIcon(),
                                                                (anchor == ToolWindowAnchor.LEFT) ? SwingConstants.TOP
                                                                : SwingConstants.BOTTOM);
                anchorLabel = new AnchorLabel(compositeIcon, JLabel.CENTER);
            }
View Full Code Here

Examples of org.noos.xing.mydoggy.plaf.ui.icons.TextIcon

            if (anchor == ToolWindowAnchor.BOTTOM || anchor == ToolWindowAnchor.TOP) {
                anchorLabel.setIcon(toolWindow.getIcon());
                anchorLabel.setText(toolAnchorLabelName);
            } else {
                TextIcon textIcon = new TextIcon(((TextIcon) ((CompositeIcon) anchorLabel.getIcon()).getLeftIcon()).getComponent(),
                                                 toolAnchorLabelName,
                                                 anchor == ToolWindowAnchor.LEFT ? TextIcon.ROTATE_LEFT : TextIcon.ROTATE_RIGHT);
                CompositeIcon compositeIcon = new CompositeIcon(textIcon, toolWindow.getIcon(),
                                                                (anchor == ToolWindowAnchor.LEFT) ? SwingConstants.TOP
                                                                : SwingConstants.BOTTOM);
View Full Code Here

Examples of org.noos.xing.mydoggy.plaf.ui.icons.TextIcon

                                                                  : toolWindow.getTitle();

            if (anchor == ToolWindowAnchor.BOTTOM || anchor == ToolWindowAnchor.TOP) {
                anchorLabel = new AnchorLabel(toolAnchorLabelName, toolWindow.getIcon(), JLabel.CENTER);
            } else {
                TextIcon textIcon = new TextIcon(container, toolAnchorLabelName, anchor == ToolWindowAnchor.LEFT ? TextIcon.ROTATE_LEFT : TextIcon.ROTATE_RIGHT);
                CompositeIcon compositeIcon = new CompositeIcon(textIcon, toolWindow.getIcon());
                anchorLabel = new AnchorLabel(compositeIcon, JLabel.CENTER);
            }

            anchorLabel.setName(toolAnchorLabelName);
View Full Code Here

Examples of org.noos.xing.mydoggy.plaf.ui.icons.TextIcon

            if (anchor == ToolWindowAnchor.BOTTOM || anchor == ToolWindowAnchor.TOP) {
                anchorLabel.setIcon(toolWindow.getIcon());
                anchorLabel.setText(toolAnchorLabelName);
            } else {
                TextIcon textIcon = new TextIcon(((TextIcon) ((CompositeIcon) anchorLabel.getIcon()).getIcon1()).getComponent(),
                                                 toolAnchorLabelName,
                                                 anchor == ToolWindowAnchor.LEFT ? TextIcon.ROTATE_LEFT : TextIcon.ROTATE_RIGHT);
                CompositeIcon compositeIcon = new CompositeIcon(textIcon, toolWindow.getIcon());
                anchorLabel.setText(null);
                anchorLabel.setIcon(compositeIcon);
View Full Code Here

Examples of ptolemy.vergil.icon.TextIcon

     */
    public AbstractTextAttribute(NamedObj container, String name)
            throws IllegalActionException, NameDuplicationException {
        super(container, name);

        _icon = new TextIcon(this, "_icon");
        _icon.setPersistent(false);

        textSize = new Parameter(this, "textSize");
        textSize.setExpression("14");
        textSize.setTypeEquals(BaseType.INT);
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.