use of com.intellij.uiDesigner.propertyInspector.PropertyInspector in project intellij-community by JetBrains.
the class ShowHintAction method actionPerformed.
public void actionPerformed(final AnActionEvent e) {
final GuiEditor editor = myManager.getEditor();
if (editor == null)
return;
// 1. Show light bulb
myManager.showIntentionHint();
// 2. Commit possible non committed value and show popup
final PropertyInspector propertyInspector = DesignerToolWindowManager.getInstance(myManager.getEditor()).getPropertyInspector();
if (propertyInspector != null && propertyInspector.isEditing()) {
propertyInspector.stopEditing();
}
myManager.showIntentionPopup();
}
use of com.intellij.uiDesigner.propertyInspector.PropertyInspector in project intellij-community by JetBrains.
the class ComponentTreeBuilder method updateSelection.
private void updateSelection() {
final PropertyInspector propertyInspector = DesignerToolWindowManager.getInstance(myEditor).getPropertyInspector();
if (propertyInspector.isEditing()) {
propertyInspector.stopEditing();
}
if (myInsideChange > 0) {
return;
}
myInsideChange++;
try {
updateFromRoot();
syncSelection();
} finally {
myInsideChange--;
}
}
use of com.intellij.uiDesigner.propertyInspector.PropertyInspector in project intellij-community by JetBrains.
the class GuiEditor method getData.
public Object getData(final String dataId) {
if (PlatformDataKeys.HELP_ID.is(dataId)) {
return ourHelpID;
}
// Standard Swing cut/copy/paste actions should work if user is editing something inside property inspector
Project project = getProject();
if (project.isDisposed())
return null;
DesignerToolWindow toolWindow = DesignerToolWindowManager.getInstance(this);
if (toolWindow == null)
return null;
final PropertyInspector inspector = toolWindow.getPropertyInspector();
if (inspector != null && inspector.isEditing()) {
return null;
}
if (PlatformDataKeys.DELETE_ELEMENT_PROVIDER.is(dataId)) {
return myDeleteProvider;
}
if (PlatformDataKeys.COPY_PROVIDER.is(dataId) || PlatformDataKeys.CUT_PROVIDER.is(dataId) || PlatformDataKeys.PASTE_PROVIDER.is(dataId)) {
return myCutCopyPasteSupport;
}
return null;
}
use of com.intellij.uiDesigner.propertyInspector.PropertyInspector in project intellij-community by JetBrains.
the class GuiEditor method refreshAndSave.
public void refreshAndSave(final boolean forceSync) {
DesignerToolWindow toolWindow = DesignerToolWindowManager.getInstance(this);
if (toolWindow == null) {
return;
}
// Update property inspector
final PropertyInspector propertyInspector = toolWindow.getPropertyInspector();
if (propertyInspector != null) {
propertyInspector.synchWithTree(forceSync);
}
UsageTrigger.trigger("swing-designer.edit");
refresh();
saveToFile();
// TODO[yole]: install appropriate listeners so that the captions repaint themselves at correct time
myHorzCaptionPanel.repaint();
myVertCaptionPanel.repaint();
}
use of com.intellij.uiDesigner.propertyInspector.PropertyInspector in project intellij-community by JetBrains.
the class GuiEditor method refreshProperties.
private void refreshProperties() {
final Ref<Boolean> anythingModified = new Ref<>();
FormEditingUtil.iterate(myRootContainer, new FormEditingUtil.ComponentVisitor() {
public boolean visit(final IComponent component) {
final RadComponent radComponent = (RadComponent) component;
boolean componentModified = false;
for (IProperty prop : component.getModifiedProperties()) {
if (prop instanceof IntroStringProperty) {
IntroStringProperty strProp = (IntroStringProperty) prop;
componentModified = strProp.refreshValue(radComponent) || componentModified;
}
}
if (component instanceof RadContainer) {
componentModified = ((RadContainer) component).updateBorder() || componentModified;
}
if (component.getParentContainer() instanceof RadTabbedPane) {
componentModified = ((RadTabbedPane) component.getParentContainer()).refreshChildTitle(radComponent) || componentModified;
}
if (componentModified) {
anythingModified.set(Boolean.TRUE);
}
return true;
}
});
if (!anythingModified.isNull()) {
refresh();
DesignerToolWindow designerToolWindow = DesignerToolWindowManager.getInstance(this);
ComponentTree tree = designerToolWindow.getComponentTree();
if (tree != null)
tree.repaint();
PropertyInspector inspector = designerToolWindow.getPropertyInspector();
if (inspector != null)
inspector.synchWithTree(true);
}
}
Aggregations