Examples of StatusPanel


Examples of open.dolphin.ui.StatusPanel

        periodCombo.setModel(new DefaultComboBoxModel(periodLabels));
        periodCombo.setPreferredSize(new Dimension(76,24));
        periodCombo.setMaximumSize(new Dimension(76,24));
        periodCombo.setMinimumSize(new Dimension(76,24));
       
        StatusPanel statusPanel = new StatusPanel();
        statusPanel.setPanelHeight(26);
        statusPanel.setBackgroundColor(Color.BLACK, 0f, 0.1f);
        statusPanel.setTopLineAlpha(0.4f);
        statusPanel.add(periodCombo);
        statusPanel.addGlue();
        statusPanel.add(cntLbl);
        statusPanel.setMargin(4);
       
        this.add(scroller, BorderLayout.CENTER);
        this.add(statusPanel, BorderLayout.SOUTH);       
    }
View Full Code Here

Examples of open.dolphin.ui.StatusPanel

//          infoArea.setLineWrap(true);
//          infoArea.setPreferredSize(new Dimension(250, 18));
//          Font font = GUIFactory.createSmallFont();
//          infoArea.setFont(font);

            statusPanel = new StatusPanel();
            statusPanel.add("", "infoArea");
            statusPanel.setPanelHeight(18);
            statusPanel.setFontSize(8);
            statusPanel.setBackgroundColor(Color.BLACK, 0f, 0.05f);
            statusPanel.setTopLineAlpha(0.4f);
View Full Code Here

Examples of open.dolphin.ui.StatusPanel

       
        MainFrame frame = windowSupport.getFrame();
        frame.setName("editorFrame");
        frame.removeStatusPanel();
       
        statusPanel = new StatusPanel(); // dummy 表示はしない AbstractChartDocument から呼ばれるので
        statusPanel.add("", "message");
       
        MainFrame.MainPanel mainPanel = frame.getMainPanel();
        mainPanel.setLayout(new BorderLayout(0,0));
        MainFrame.CommandPanel comPanel = frame.getCommandPanel();
View Full Code Here

Examples of open.dolphin.ui.StatusPanel

    }
   
    private void initComponents() {
        commandPanel = new CommandPanel();
        mainPanel = new MainPanel();
        statusPanel = new StatusPanel();
        setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
        add(commandPanel);
        add(mainPanel);
        add(statusPanel);
       
View Full Code Here

Examples of open.dolphin.ui.StatusPanel

        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setSize(600, 800);
       
        MainComponentPanel p = new MainComponentPanel();
        MainComponentPanel.CommandPanel com = p.getCommandPanel();
        StatusPanel status = p.getStatusPanel();
       
        JLabel l1 = new JLabel("TEST1");
        JLabel l2 = new JLabel("TEST2");
        JLabel l3 = new JLabel("TEST3");
        JButton b1 = new JButton("TEST4");
        JButton b2 = new JButton("TEST4");
        JTextField tf = new JTextField();
        tf.setMaximumSize(new Dimension(100,Integer.MAX_VALUE));
        tf.setPreferredSize(new Dimension(100,Integer.MAX_VALUE));
        JProgressBar bar = new JProgressBar();
       
        status.add(l1);
        status.addSeparator();
        status.add(l2);
        status.addGlue();
        status.add(bar);
        status.addSeparator();
        status.add(l3);
        status.setTopLineAlpha(0.4f);
        status.setMargin(8);
       
        com.add(b1);
        com.addGlue();
        com.add(tf);
        com.add(b2);
View Full Code Here

Examples of org.apache.syncope.console.pages.panels.StatusPanel

        // add resource assignment details in case of update
        if (userTO.getId() != 0) {
            form.addOrReplace(new Label("pwdChangeInfo", new ResourceModel("pwdChangeInfo")));

            statusPanel = new StatusPanel("statuspanel", userTO, new ArrayList<StatusBean>(), getPageReference());
            statusPanel.setOutputMarkupId(true);
            MetaDataRoleAuthorizationStrategy.authorize(
                    statusPanel, RENDER, xmlRolesReader.getAllAllowedRoles("Resources", "getConnectorObject"));
            form.addOrReplace(statusPanel);
View Full Code Here

Examples of org.apache.syncope.console.pages.panels.StatusPanel

        // add resource assignment details in case of update
        if (userTO.getId() != 0) {
            form.addOrReplace(new Label("pwdChangeInfo", new ResourceModel("pwdChangeInfo")));

            statusPanel = new StatusPanel("statuspanel", userTO, new ArrayList<StatusBean>(), getPageReference());
            statusPanel.setOutputMarkupId(true);
            MetaDataRoleAuthorizationStrategy.authorize(
                    statusPanel, RENDER, xmlRolesReader.getAllAllowedRoles("Resources", "getConnectorObject"));
            form.addOrReplace(statusPanel);
View Full Code Here

Examples of org.apache.syncope.console.pages.panels.StatusPanel

        final Form form = new Form("form");
        add(form);

        final List<StatusBean> statuses = new ArrayList<StatusBean>();

        final StatusPanel statusPanel = new StatusPanel("statuspanel", attributable, statuses, null);
        MetaDataRoleAuthorizationStrategy.authorize(
                statusPanel, RENDER, xmlRolesReader.getAllAllowedRoles("Resources", "getConnectorObject"));
        form.add(statusPanel);

        final AjaxButton disable;
View Full Code Here

Examples of org.apache.syncope.console.pages.panels.StatusPanel

        // add resource assignment details in case of update
        if (userTO.getId() != 0) {
            final List<StatusBean> statuses = new ArrayList<StatusBean>();

            form.addOrReplace(new StatusPanel("statuspanel", userTO, statuses, false));

            form.addOrReplace(new AccountInformationPanel("accountinformation", userTO));
        }
    }
View Full Code Here

Examples of org.apache.syncope.console.pages.panels.StatusPanel

        final Form form = new Form("form");
        add(form);

        final List<StatusBean> statuses = new ArrayList<StatusBean>();

        final StatusPanel statusPanel = new StatusPanel("statuspanel", userTO, statuses);
        form.add(statusPanel);

        final AjaxButton disable = new IndicatingAjaxButton("disable", new ResourceModel("disable", "Disable")) {

            private static final long serialVersionUID = -958724007591692537L;
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.