]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.workbench/src/org/simantics/workbench/internal/contributions/search/FocusSearchTrim.java
Index tokenized lowercase versions of name and types for UI searches
[simantics/platform.git] / bundles / org.simantics.workbench / src / org / simantics / workbench / internal / contributions / search / FocusSearchTrim.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2011 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.workbench.internal.contributions.search;
13
14 import org.eclipse.core.commands.AbstractHandler;
15 import org.eclipse.core.commands.ExecutionEvent;
16 import org.eclipse.core.commands.ExecutionException;
17 import org.eclipse.swt.widgets.Control;
18 import org.eclipse.swt.widgets.Shell;
19 import org.eclipse.swt.widgets.Text;
20 import org.eclipse.ui.handlers.HandlerUtil;
21
22 /**
23  * @author Tuukka Lehtonen
24  */
25 public class FocusSearchTrim extends AbstractHandler {
26
27     @Override
28     public Object execute(ExecutionEvent event) throws ExecutionException {
29         Shell shell = HandlerUtil.getActiveShell(event);
30         if (shell != null) {
31             Object obj = shell.getData(SearchTrim.KEY_TRIM);
32             if (obj instanceof Control)
33                 ((Control) obj).setFocus();
34             if (obj instanceof Text)
35                 ((Text) obj).selectAll();
36         }
37         return null;
38     }
39
40 }