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);
}
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;
}
Aggregations