Examples of FuzzyLineBorder


Examples of com.pcmsolutions.gui.FuzzyLineBorder

        etp = new RowHeaderedAndSectionedTablePanel().init(envTable, "SHOW " + title, UIColors.getTableBorder(), ra);

        etp.getHideButton().setAction(toggleAction);
        etp.getHideButton().setToolTipText("Toggle Envelope Mode");

        FuzzyLineBorder flb = new FuzzyLineBorder(UIColors.getTableBorder(),UIColors.getTableBorderWidth(), true);
        flb.setFadingIn(!flb.isFadingIn());
        envelope.setBorder(new TitledBorder(flb, title, TitledBorder.LEFT, TitledBorder.ABOVE_TOP));

        //env.setBorder(new TitledBorder(UIColors.makeFuzzyBorder(UIColors.getTableBorder(), RowHeaderedAndSectionedTablePanel.getBorderWidth()), title, TitledBorder.LEFT, TitledBorder.ABOVE_TOP));

        envelope.setPreferredSize(new Dimension((int) (etp.getPreferredSize().getWidth() * 0.7), (int) (etp.getPreferredSize().getHeight() * 1.2)));
 
View Full Code Here

Examples of com.pcmsolutions.gui.FuzzyLineBorder

        randomFactors = generateRandomFactors(200); // hopefully x extent of component will never be bigger than this
    }

    public LFOShapePanel(String title) {
        //this.setBorder(new LineBorder(UIColors.getVoiceOverviewTableBorder(), 4, true));
        FuzzyLineBorder flb = new FuzzyLineBorder(UIColors.getTableBorder(),UIColors.getTableBorderWidth(), true, false);
        flb.setFadingIn(flb.isFadingIn());
        this.setBorder(new TitledBorder(flb, title, TitledBorder.LEFT, TitledBorder.ABOVE_TOP));
        //this.setBorder(new TitledBorder(UIColors.makeFuzzyBorder(UIColors.getTableBorder(), RowHeaderedAndSectionedTablePanel.getBorderWidth()), title, TitledBorder.LEFT, TitledBorder.ABOVE_TOP));

        Insets i = this.getInsets();
        setPreferredSize(new Dimension(i.left + i.right + 60, i.top + i.bottom + 60));
View Full Code Here

Examples of com.pcmsolutions.gui.FuzzyLineBorder

            public Color getForeground() {
                return UIColors.getDefaultFG();
            }
        };
        cp.setContentPane(content);
        cp.setBorder(new FuzzyLineBorder(UIColors.getTableBorder(), UIColors.getTableBorderWidth(), true, true));
        return cp;
    }
View Full Code Here

Examples of com.pcmsolutions.gui.FuzzyLineBorder

    public PropertiesPanel(java.util.List properties, TitleProvider tp) {
        super(new BorderLayout());
        this.properties = new ArrayList(properties);
        this.tp = tp;
        this.add(makePropertiesComponent(), BorderLayout.CENTER);
        setBorder(new FuzzyLineBorder(UIColors.getTableBorder(), UIColors.getTableBorderWidth(), true, true));
    }
View Full Code Here

Examples of com.pcmsolutions.gui.FuzzyLineBorder

        this.setBackground(UIColors.getDefaultBG());
        if (bdrColor != null) {
            //Border b = UIColors.makeFuzzyBorder(bdrColor, borderWidth);
            String title = rhst.getTableTitle();
            if (title != null && !title.equals(""))
                this.setBorder(new TitledBorder(new FuzzyLineBorder(bdrColor, UIColors.getTableBorderWidth(), true), title, TitledBorder.LEFT, TitledBorder.ABOVE_TOP));
            else
                this.setBorder(new FuzzyLineBorder(bdrColor, UIColors.getTableBorderWidth(), true));
        }

        rhst.getTable().addComponentListener(this);

        //mainBox = new Box(BoxLayout.Y_AXIS);
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.