Search in sources :

Example 1 with ImagePanel

use of com.att.aro.ui.commonui.ImagePanel in project VideoOptimzer by attdevsupport.

the class AbstractBpDetailPanel method initialize.

public void initialize(String title) {
    fullPanel = new JPanel(new BorderLayout());
    fullPanel.setOpaque(false);
    // setBorder(new RoundedBorder(new Insets(0, 0, 0, 0), Color.WHITE)); // bcn
    // Create the header bar
    header = new BpHeaderPanel(ResourceBundleHelper.getMessageString(title));
    String desc = ResourceBundleHelper.getMessageString(title + "Description");
    fullPanel.add(header, BorderLayout.NORTH);
    // Create the data panel
    JPanel dataPanel = new JPanel(new BorderLayout());
    dataPanel.setBorder(BorderFactory.createEmptyBorder(20, 20, 20, 20));
    dataPanel.setOpaque(false);
    dateTraceAppDetailPanel = new DateTraceAppDetailPanel();
    dataPanel.add(dateTraceAppDetailPanel, BorderLayout.NORTH);
    // Create the group overview panel
    JPanel textPanel = new JPanel(new BorderLayout(10, 10));
    textPanel.setOpaque(false);
    JScrollPane scroll = new JScrollPane(createJTextArea(desc, null));
    // scroll.setBackground(Color.RED); // bcn
    scroll.setBorder(BorderFactory.createEmptyBorder());
    removeMouseWheelListeners(scroll);
    textPanel.add(scroll, BorderLayout.CENTER);
    JPanel separator = new ImagePanel(Images.DIVIDER.getImage(), true, Color.WHITE);
    textPanel.add(separator, BorderLayout.SOUTH);
    // Create the best practices detail panel
    JPanel detailPanel = new JPanel(new GridBagLayout());
    detailPanel.setOpaque(true);
    detailPanel = new JPanel();
    JPanel panel = new JPanel(new BorderLayout());
    panel.setOpaque(false);
    panel.add(textPanel, BorderLayout.NORTH);
    panel.add(detailPanel, BorderLayout.CENTER);
    dataPanel.add(panel);
    fullPanel.add(dataPanel);
}
Also used : JScrollPane(javax.swing.JScrollPane) TabPanelJScrollPane(com.att.aro.ui.commonui.TabPanelJScrollPane) JPanel(javax.swing.JPanel) BorderLayout(java.awt.BorderLayout) GridBagLayout(java.awt.GridBagLayout) DateTraceAppDetailPanel(com.att.aro.ui.view.statistics.DateTraceAppDetailPanel) ImagePanel(com.att.aro.ui.commonui.ImagePanel)

Example 2 with ImagePanel

use of com.att.aro.ui.commonui.ImagePanel in project VideoOptimzer by attdevsupport.

the class StatisticsTab method layoutDataPanel.

/**
 * Adds the various Panels for the Statistics tab.
 *
 * @return the mainPanel The JPanel containing the entire screen.
 */
public JPanel layoutDataPanel() {
    if (mainPanel == null) {
        mainPanel = new JPanel(new GridBagLayout());
        mainPanel.setBackground(UIManager.getColor(AROUIManager.PAGE_BACKGROUND_KEY));
        Insets insets = new Insets(10, 10, 10, 10);
        mainPanel.setOpaque(false);
        mainPanel.setBorder(new RoundedBorder(new Insets(10, 10, 10, 10), Color.WHITE));
        // load graphic header and Export button
        String headerTitle = MessageFormat.format(ResourceBundleHelper.getMessageString("statistics.title"), ApplicationConfig.getInstance().getAppBrandName(), ApplicationConfig.getInstance().getAppShortName());
        ImagePanel logoHeader = UIComponent.getInstance().getLogoHeader(headerTitle);
        JPanel buttonPanel = new JPanel();
        buttonPanel.setLayout(new BorderLayout());
        buttonPanel.setOpaque(false);
        buttonPanel.add(getExportBtn(), BorderLayout.EAST);
        // logoHeader.add(getJsonExportBtn(), BorderLayout.WEST);
        logoHeader.add(buttonPanel, BorderLayout.EAST);
        container.add(logoHeader, BorderLayout.NORTH);
        int gridy = -1;
        // top summary
        dateTraceAppDetailPanel = new DateTraceAppDetailPanel();
        mainPanel.add(dateTraceAppDetailPanel, new GridBagConstraints(0, ++gridy, 1, 1, 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, insets, 0, 0));
        layoutDivider(++gridy, insets);
        // TCP(Session) Statistics
        tcpSessionStatistics = new TCPSessionStatisticsPanel();
        mainPanel.add(tcpSessionStatistics, new GridBagConstraints(0, ++gridy, 1, 1, 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, insets, 0, 0));
        layoutDivider(++gridy, insets);
        attenuationConstantPanel = new AttenuationConstantPanel();
        mainPanel.add(attenuationConstantPanel, new GridBagConstraints(0, ++gridy, 1, 1, 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, insets, 0, 0));
        layoutDivider(++gridy, insets);
        ++gridy;
        // End Point Summary
        endPointSummaryPanel = new EndPointSummaryPanel();
        mainPanel.add(endPointSummaryPanel, new GridBagConstraints(0, ++gridy, 1, 1, 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, insets, 0, 0));
        layoutDivider(++gridy, insets);
        // gridy 5
        // Radio Resource Control State Machine Simulation (default to LTE)
        rrcStateMachineSimulationPanelLTE = new RRCStateMachineSimulationPanelLTE();
        mainPanel.add(rrcStateMachineSimulationPanelLTE, new GridBagConstraints(0, ++gridy, 1, 1, 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, insets, 0, 0));
        layoutDivider(++gridy, insets);
        // gridy 7
        // Burst Analysis
        burstAnalysisPanel = new BurstAnalysisPanel();
        mainPanel.add(burstAnalysisPanel, new GridBagConstraints(0, ++gridy, 1, 1, 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, insets, 0, 0));
        layoutDivider(++gridy, insets);
        // gridy 9
        // HTTP Cache Statistics
        httpCacheStatistics = new HTTPCacheStatistics();
        mainPanel.add(httpCacheStatistics, new GridBagConstraints(0, ++gridy, 1, 1, 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, insets, 0, 0));
        layoutDivider(++gridy, insets);
        // gridy 11
        // Energy Efficiency Simulation (default to LTE)
        energyModelStatisticsLTEPanel = new EnergyModelStatisticsLTEPanel();
        mainPanel.add(energyModelStatisticsLTEPanel, new GridBagConstraints(0, ++gridy, 1, 1, 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, insets, 0, 0));
        rrcStateMachineType = RrcStateMachineType.LTE;
    }
    return mainPanel;
}
Also used : JPanel(javax.swing.JPanel) GridBagConstraints(java.awt.GridBagConstraints) Insets(java.awt.Insets) GridBagLayout(java.awt.GridBagLayout) BurstAnalysisPanel(com.att.aro.ui.view.statistics.burstanalysis.BurstAnalysisPanel) EndPointSummaryPanel(com.att.aro.ui.view.statistics.endpointsummary.EndPointSummaryPanel) AttenuationConstantPanel(com.att.aro.ui.view.statistics.attenuation.AttenuationConstantPanel) BorderLayout(java.awt.BorderLayout) EnergyModelStatisticsLTEPanel(com.att.aro.ui.view.statistics.energy.EnergyModelStatisticsLTEPanel) RoundedBorder(com.att.aro.ui.commonui.RoundedBorder) ImagePanel(com.att.aro.ui.commonui.ImagePanel) RRCStateMachineSimulationPanelLTE(com.att.aro.ui.view.statistics.statemachine.RRCStateMachineSimulationPanelLTE)

Aggregations

ImagePanel (com.att.aro.ui.commonui.ImagePanel)2 BorderLayout (java.awt.BorderLayout)2 GridBagLayout (java.awt.GridBagLayout)2 JPanel (javax.swing.JPanel)2 RoundedBorder (com.att.aro.ui.commonui.RoundedBorder)1 TabPanelJScrollPane (com.att.aro.ui.commonui.TabPanelJScrollPane)1 DateTraceAppDetailPanel (com.att.aro.ui.view.statistics.DateTraceAppDetailPanel)1 AttenuationConstantPanel (com.att.aro.ui.view.statistics.attenuation.AttenuationConstantPanel)1 BurstAnalysisPanel (com.att.aro.ui.view.statistics.burstanalysis.BurstAnalysisPanel)1 EndPointSummaryPanel (com.att.aro.ui.view.statistics.endpointsummary.EndPointSummaryPanel)1 EnergyModelStatisticsLTEPanel (com.att.aro.ui.view.statistics.energy.EnergyModelStatisticsLTEPanel)1 RRCStateMachineSimulationPanelLTE (com.att.aro.ui.view.statistics.statemachine.RRCStateMachineSimulationPanelLTE)1 GridBagConstraints (java.awt.GridBagConstraints)1 Insets (java.awt.Insets)1 JScrollPane (javax.swing.JScrollPane)1