categoryComboBox = new JComboBox();
categoryComboBox.addActionListener(new CategorySelectionAction());
categoryComboBox.setRenderer(new FunctionCategoryCellRenderer());
formulaList = new JList();
formulaList.setCellRenderer(new FunctionDescriptionCellRenderer());
formulaList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
formulaList.addMouseListener(new FormulaListMouseHandler());
formulaList.getSelectionModel().addListSelectionListener(new FormulaListSelectionHandler());
add(new JLabel(Messages.getInstance().getString("FunctionListPanel.Category")),