add(myLeadPanel, BorderLayout.WEST);
searchField = createTextField(myLeadPanel);
setupSearchFieldListener();
DefaultActionGroup myActionsGroup = new DefaultActionGroup("search bar", false);
myActionsGroup.add(new ShowHistoryAction(searchField, this));
myActionsGroup.add(new PrevOccurrenceAction(this, searchField, true));
myActionsGroup.add(new NextOccurrenceAction(this, searchField, true));
//myActionsGroup.add(new FindAllAction(this));
myActionsGroup.add(new ToggleMatchCase(this));
myActionsGroup.add(new ToggleRegex(this));