blob: c3a139432c66578beaf4d20820b029c16a28ec71 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.tools.idea.observable.ui;
import com.android.tools.adtui.LabelWithEditButton;
import com.android.tools.idea.observable.AbstractProperty;
import com.android.tools.idea.observable.core.StringProperty;
import com.intellij.openapi.ui.ComponentWithBrowseButton;
import com.intellij.openapi.ui.TextFieldWithBrowseButton;
import com.intellij.ui.EditorComboBox;
import com.intellij.ui.EditorTextField;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import javax.swing.AbstractButton;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import javax.swing.text.JTextComponent;
import org.jetbrains.annotations.NotNull;
/**
* {@link AbstractProperty} that wraps a Swing component and exposes its text value.
*/
public final class TextProperty extends StringProperty implements DocumentListener, PropertyChangeListener,
com.intellij.openapi.editor.event.DocumentListener {
@NotNull private final JComponent myComponent;
public TextProperty(@NotNull JTextComponent textComponent) {
myComponent = textComponent;
textComponent.getDocument().addDocumentListener(this);
}
public TextProperty(@NotNull AbstractButton button) {
myComponent = button;
button.addPropertyChangeListener("text", this);
}
public TextProperty(@NotNull JLabel label) {
myComponent = label;
label.addPropertyChangeListener("text", this);
}
public TextProperty(@NotNull LabelWithEditButton editLabel) {
myComponent = editLabel;
editLabel.getDocument().addDocumentListener(this);
}
public TextProperty(@NotNull EditorComboBox editorComboBox) {
myComponent = editorComboBox;
editorComboBox.getDocument().addDocumentListener(this);
}
public TextProperty(@NotNull EditorTextField editorTextField) {
myComponent = editorTextField;
editorTextField.getDocument().addDocumentListener(this);
}
public TextProperty(@NotNull TextFieldWithBrowseButton textFieldWithBrowseButton) {
this(textFieldWithBrowseButton.getTextField());
}
@Override
public void insertUpdate(DocumentEvent documentEvent) {
notifyInvalidated();
}
@Override
public void removeUpdate(DocumentEvent documentEvent) {
notifyInvalidated();
}
@Override
public void changedUpdate(DocumentEvent documentEvent) {
notifyInvalidated();
}
@Override
public void propertyChange(PropertyChangeEvent propertyChangeEvent) {
notifyInvalidated();
}
@Override
public void beforeDocumentChange(@NotNull com.intellij.openapi.editor.event.DocumentEvent event) {
// Do nothing, required interface override
}
@Override
public void documentChanged(@NotNull com.intellij.openapi.editor.event.DocumentEvent event) {
notifyInvalidated();
}
@NotNull
@Override
public String get() {
if (myComponent instanceof JTextComponent) {
return ((JTextComponent)myComponent).getText();
}
else if (myComponent instanceof AbstractButton) {
return ((AbstractButton)myComponent).getText();
}
else if (myComponent instanceof JLabel) {
return ((JLabel)myComponent).getText();
}
else if (myComponent instanceof LabelWithEditButton) {
return ((LabelWithEditButton)myComponent).getText();
}
else if (myComponent instanceof EditorComboBox) {
return ((EditorComboBox)myComponent).getText();
}
else if (myComponent instanceof EditorTextField) {
return ((EditorTextField)myComponent).getText();
}
else {
throw new IllegalStateException("Unexpected text component type: " + myComponent.getClass().getSimpleName());
}
}
@Override
protected void setDirectly(@NotNull String value) {
if (myComponent instanceof JTextComponent) {
((JTextComponent)myComponent).setText(value);
}
else if (myComponent instanceof AbstractButton) {
((AbstractButton)myComponent).setText(value);
}
else if (myComponent instanceof JLabel) {
((JLabel)myComponent).setText(value);
}
else if (myComponent instanceof LabelWithEditButton) {
((LabelWithEditButton)myComponent).setText(value);
}
else if (myComponent instanceof EditorComboBox) {
((EditorComboBox)myComponent).setText(value);
}
else if (myComponent instanceof EditorTextField) {
((EditorTextField)myComponent).setText(value);
}
else {
throw new IllegalStateException("Unexpected text component type: " + myComponent.getClass().getSimpleName());
}
}
}