JPanel shapePanel = new JPanel();
shapePanel.setLayout(new BorderLayout());
JLabel lshape = new JLabel(" " + language.getText("shape") + " ");
shapeComboBox = new JPaintCombo(ShapeConstants.PATTERN_LIST);
shapePanel.add(lshape, BorderLayout.WEST);
shapePanel.add(shapeComboBox, BorderLayout.CENTER);
colorButton = new JButton(language.getText("colorButton"));