bCreate.addActionListener(this);
//TODO: create functionality is not available yet
bCreate.setEnabled(false);
JButton bLoad = new JButton(LOAD_BUTTON);
bLoad.addActionListener(this);
JTable layerTable = new JTable(new LayerTableModel(myBrush));
layerTable.getColumnModel().getColumn(0).setPreferredWidth(32);
layerTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
layerTable.getSelectionModel().addListSelectionListener(this);
customPanel.setLayout(new GridBagLayout());