Package pdfdb.gui.customcomponents

Examples of pdfdb.gui.customcomponents.MultilineLabel


        super.setPreferredSize(new Dimension(450, 350));
        super.setResizable(false);

        pane.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
        pane.setLayout(new BorderLayout());
        pane.add(new JScrollPane(new MultilineLabel(MESSAGE)),
                BorderLayout.CENTER);
        pane.add(this.topPanel, BorderLayout.NORTH);
        pane.add(this.bottomPanel, BorderLayout.SOUTH);

        bottomPanel.getPasswordField().setText("");
View Full Code Here


    public SummaryPanel()
    {
        JScrollPane scrollPane = null;
        JPanel panel = new JPanel();

        this.label = new MultilineLabel();
        this.label.setOpaque(false);
        this.label.setFont(new Font("Arial", Font.PLAIN, 14));
        this.label.setBorder(BorderFactory.createEmptyBorder(20, 20, 20, 20));
        this.thumbnailPanel = new ThumbnailPanel();
View Full Code Here

    }

    /** Initializes the AboutPane. */
    public AboutPane()
    {
        MultilineLabel lbl = new MultilineLabel();
        Border border = BorderFactory.createEmptyBorder(10, 10, 10, 10);
        JLabel title = new JLabel("ADRS");
        Font font1 = new Font("Arial", Font.PLAIN, 24);
        Font font2 = new Font("Arial", Font.PLAIN, 12);
       
        super.setBorder(border);
        super.setLayout(new BorderLayout());
        super.setOpaque(false);
       
        title.setFont(font1);
        lbl.setText(ABOUT_TXT);
        lbl.setFont(font2);

        super.add(title, BorderLayout.NORTH);
        super.add(lbl, BorderLayout.CENTER);
    }
View Full Code Here

TOP

Related Classes of pdfdb.gui.customcomponents.MultilineLabel

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.