private CharvaCommander() {
this._insets = new Insets(0, 0, 0, 0);
setBackground(BACKGROUND_COLOR);
setForeground(FOREGROUND_COLOR);
JPanel content = (JPanel) getContentPane();
new ButtonPanel();
JPanel panel = new JPanel();
content.add(panel, BorderLayout.CENTER);
panel.setLayout(null);
File startf = new File(".");
String path = startf.getAbsolutePath();
try {
path = startf.getCanonicalPath();
} catch (IOException e) {
//ignore
}
leftPane = new Pane(38, 20);
leftPane.setPath(path);
leftPane.setLocation(0, 0);
panel.add(leftPane);
leftPane.label.setLocation(1, 22);
panel.add(leftPane.label);
rightPane = new Pane(38, 20);
rightPane.setPath(path);
rightPane.setLocation(40, 0);
panel.add(rightPane);
rightPane.label.setLocation(41, 22);
panel.add(rightPane.label);
setLocation(0, 0);
setSize(80, 24);
validate();