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