View Javadoc

1   /*
2    * Copyright 1999-2006 Faculty of Mathematics, Physics and Informatics, Comenius
3    * University, Bratislava. This file is protected by the Mozilla Public License
4    * version 1.1 (the License); you may not use this file except in compliance
5    * with the License. You may obtain a copy of the License at
6    * http://euromath2.sourceforge.net/license.html Unless required by applicable
7    * law or agreed to in writing, software distributed under the License is
8    * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
9    * KIND, either express or implied. See the License for the specific language
10   * governing permissions and limitations under the License.
11   */
12  package sk.uniba.euromath.editor.textEditor.actions;
13  
14  import org.eclipse.gef.EditDomain;
15  import org.eclipse.jface.action.Action;
16  import org.eclipse.jface.action.IAction;
17  import org.eclipse.jface.resource.ImageDescriptor;
18  
19  import sk.uniba.euromath.editor.textEditor.CaretManager;
20  import sk.uniba.euromath.editor.textEditor.tools.TextTool;
21  
22  /***
23   * @author Tomáš Studva 6.8.2006
24   */
25  public class ActivateTextTool extends Action {
26  
27          private final EditDomain domain;
28  
29          private final CaretManager cManager;
30  
31          public ActivateTextTool(EditDomain domain, CaretManager cManager) {
32                  super("Text edit/select tool.", IAction.AS_RADIO_BUTTON);
33                  this.domain = domain;
34                  this.cManager = cManager;
35                  setImageDescriptor(ImageDescriptor.createFromFile(ActivateTextTool.class,
36                  "/icons/TextTool.gif")); //$NON-NLS-N$
37                  setToolTipText("Text edit/select tool.");
38                  
39                  setChecked(this.domain.getActiveTool() instanceof TextTool);                        
40          }
41  
42          @Override
43          public void run() {
44                  this.domain.setActiveTool(new TextTool(cManager));
45          }
46  
47  }