use of com.intellij.uiDesigner.designSurface.GuiEditor in project intellij-community by JetBrains.
the class MorphAction method actionPerformed.
protected void actionPerformed(final GuiEditor editor, final List<RadComponent> selection, final AnActionEvent e) {
Processor<ComponentItem> processor = selectedValue -> {
Runnable runnable = () -> {
for (RadComponent c : selection) {
if (!morphComponent(editor, c, selectedValue))
break;
}
editor.refreshAndSave(true);
};
CommandProcessor.getInstance().executeCommand(editor.getProject(), runnable, UIDesignerBundle.message("morph.component.command"), null);
IdeFocusManager.getGlobalInstance().doWhenFocusSettlesDown(() -> {
IdeFocusManager.getGlobalInstance().requestFocus(editor.getGlassLayer(), true);
});
return true;
};
PaletteListPopupStep step = new PaletteListPopupStep(editor, myLastMorphComponent, processor, UIDesignerBundle.message("morph.component.title"));
step.hideNonAtomic();
if (selection.size() == 1) {
step.hideComponentClass(selection.get(0).getComponentClassName());
}
final ListPopup listPopup = JBPopupFactory.getInstance().createListPopup(step);
FormEditingUtil.showPopupUnderComponent(listPopup, selection.get(0));
}
use of com.intellij.uiDesigner.designSurface.GuiEditor in project intellij-community by JetBrains.
the class PreviewFormAction method update.
public void update(final AnActionEvent e) {
final GuiEditor editor = FormEditingUtil.getActiveEditor(e.getDataContext());
if (editor == null) {
e.getPresentation().setVisible(false);
return;
}
final VirtualFile file = editor.getFile();
e.getPresentation().setVisible(FileDocumentManager.getInstance().getDocument(file) != null && file.getFileType() == StdFileTypes.GUI_DESIGNER_FORM);
}
use of com.intellij.uiDesigner.designSurface.GuiEditor in project intellij-community by JetBrains.
the class DataBindingWizardAction method actionPerformed.
public void actionPerformed(final AnActionEvent e) {
final Project project;
final VirtualFile formFile;
GuiEditor editor = FormEditingUtil.getActiveEditor(e.getDataContext());
if (editor == null) {
return;
}
project = editor.getProject();
formFile = editor.getFile();
try {
final WizardData wizardData = new WizardData(project, formFile);
final Module module = ModuleUtilCore.findModuleForFile(formFile, wizardData.myProject);
LOG.assertTrue(module != null);
final LwRootContainer[] rootContainer = new LwRootContainer[1];
Generator.exposeForm(wizardData.myProject, formFile, rootContainer);
final String classToBind = rootContainer[0].getClassToBind();
if (classToBind == null) {
Messages.showInfoMessage(project, UIDesignerBundle.message("info.form.not.bound"), UIDesignerBundle.message("title.data.binding.wizard"));
return;
}
final PsiClass boundClass = FormEditingUtil.findClassToBind(module, classToBind);
if (boundClass == null) {
Messages.showErrorDialog(project, UIDesignerBundle.message("error.bound.to.not.found.class", classToBind), UIDesignerBundle.message("title.data.binding.wizard"));
return;
}
Generator.prepareWizardData(wizardData, boundClass);
if (!hasBinding(rootContainer[0])) {
Messages.showInfoMessage(project, UIDesignerBundle.message("info.no.bound.components"), UIDesignerBundle.message("title.data.binding.wizard"));
return;
}
if (!wizardData.myBindToNewBean) {
final String[] variants = new String[] { UIDesignerBundle.message("action.alter.data.binding"), UIDesignerBundle.message("action.bind.to.another.bean"), CommonBundle.getCancelButtonText() };
final int result = Messages.showYesNoCancelDialog(project, UIDesignerBundle.message("info.data.binding.regenerate", wizardData.myBeanClass.getQualifiedName()), UIDesignerBundle.message("title.data.binding"), variants[0], variants[1], variants[2], Messages.getQuestionIcon());
if (result == Messages.YES) {
// do nothing here
} else if (result == Messages.NO) {
wizardData.myBindToNewBean = true;
} else {
return;
}
}
final DataBindingWizard wizard = new DataBindingWizard(project, wizardData);
wizard.show();
} catch (Generator.MyException exc) {
Messages.showErrorDialog(project, exc.getMessage(), CommonBundle.getErrorTitle());
}
}
use of com.intellij.uiDesigner.designSurface.GuiEditor in project intellij-community by JetBrains.
the class ExpandSelectionAction method update.
public void update(final AnActionEvent e) {
final Presentation presentation = e.getPresentation();
final GuiEditor editor = FormEditingUtil.getEditorFromContext(e.getDataContext());
if (editor == null) {
presentation.setEnabled(false);
return;
}
final SelectionState selectionState = editor.getSelectionState();
selectionState.setInsideChange(true);
final Stack<ComponentPtr[]> history = selectionState.getSelectionHistory();
presentation.setEnabled(!history.isEmpty());
}
use of com.intellij.uiDesigner.designSurface.GuiEditor in project intellij-community by JetBrains.
the class ShowComponentTagsAction method update.
public void update(final AnActionEvent e) {
super.update(e);
GuiEditor editor = FormEditingUtil.getEditorFromContext(e.getDataContext());
e.getPresentation().setEnabled(editor != null);
}
Aggregations