ComponentWithBrowseButton - optional remove listener on hide
[fedora-idea.git] / plugins / ui-designer / src / com / intellij / uiDesigner / actions / SelectAllComponentsAction.java
blobcdfe0686c438904a6743079ec8e6680b9c7d8ee6
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.intellij.uiDesigner.actions;
18 import com.intellij.uiDesigner.designSurface.GuiEditor;
19 import com.intellij.uiDesigner.radComponents.RadComponent;
20 import com.intellij.uiDesigner.propertyInspector.UIDesignerToolWindowManager;
21 import com.intellij.uiDesigner.componentTree.ComponentTreeBuilder;
22 import com.intellij.uiDesigner.FormEditingUtil;
23 import com.intellij.uiDesigner.lw.IComponent;
24 import com.intellij.openapi.actionSystem.AnActionEvent;
26 import java.util.List;
28 /**
29 * @author yole
31 public class SelectAllComponentsAction extends AbstractGuiEditorAction {
32 protected void actionPerformed(final GuiEditor editor, final List<RadComponent> selection, final AnActionEvent e) {
33 final ComponentTreeBuilder builder = UIDesignerToolWindowManager.getInstance(editor.getProject()).getComponentTreeBuilder();
34 builder.beginUpdateSelection();
35 try {
36 FormEditingUtil.iterate(editor.getRootContainer(), new FormEditingUtil.ComponentVisitor() {
37 public boolean visit(final IComponent component) {
38 ((RadComponent) component).setSelected(true);
39 return true;
41 });
43 finally {
44 builder.endUpdateSelection();