Search in sources :

Example 1 with BurstAnalysisPanel

use of com.att.aro.ui.view.statistics.burstanalysis.BurstAnalysisPanel 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)1 RoundedBorder (com.att.aro.ui.commonui.RoundedBorder)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 BorderLayout (java.awt.BorderLayout)1 GridBagConstraints (java.awt.GridBagConstraints)1 GridBagLayout (java.awt.GridBagLayout)1 Insets (java.awt.Insets)1 JPanel (javax.swing.JPanel)1