Package nodebox.ui

Examples of nodebox.ui.MessageBar


        functionLibraryListModel = new FunctionLibraryListModel();

        JPanel panel = new JPanel(new BorderLayout());

        if (document.getDocumentFile() == null) {
            panel.add(new MessageBar("<html>&nbsp;&nbsp;&nbsp;<b>Please save your document first.</b></html>"), BorderLayout.NORTH);
        } else {
            ActionHeader actionHeader = new ActionHeader();
            actionHeader.setLayout(new BoxLayout(actionHeader, BoxLayout.LINE_AXIS));
            InsetLabel actionHeaderLabel = new InsetLabel("Code Libraries");
            actionHeader.add(Box.createHorizontalStrut(10));
View Full Code Here


        setDefaultCloseOperation(DISPOSE_ON_CLOSE);

        JPanel mainPanel = new JPanel(new BorderLayout(0, 0));

        mainPanel.add(new MessageBar("<html>&nbsp;&nbsp;&nbsp;Properties are document metadata that can be used in external programs.</html>", MessageBar.Type.INFO), BorderLayout.NORTH);

        propertiesModel = new PropertiesModel();
        table = new JTable(propertiesModel);
        table.setShowGrid(true);
        table.setBorder(null);
View Full Code Here

TOP

Related Classes of nodebox.ui.MessageBar

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.