* @param defaultComponent the component for which focus should be requested if the user
* presses the Escape key while using the search bar.
*/
public SearchBar(String defaultText, String tooltip, final Component defaultComponent) {
this.defaultText = defaultText;
this.searchPanel = new CQueryField();
this.searchBar = this.searchPanel.getQueryField();
searchBar.setToolTipText(tooltip);
searchBar.setColumns(12);
resetSearchBar();