blob: e7bcf55b81b334029547d1a3d5d9592d3b247d41 [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* 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.intellij.openapi.wm;
import com.intellij.openapi.actionSystem.DataContext;
import com.intellij.openapi.util.ActionCallback;
import com.intellij.openapi.util.Expirable;
import com.intellij.openapi.util.ExpirableRunnable;
import org.jetbrains.annotations.NotNull;
import javax.swing.*;
import java.awt.*;
import java.awt.event.KeyEvent;
public class PassThroughIdeFocusManager extends IdeFocusManager {
private static final PassThroughIdeFocusManager ourInstance = new PassThroughIdeFocusManager();
public static PassThroughIdeFocusManager getInstance() {
return ourInstance;
}
@NotNull
public ActionCallback requestFocus(@NotNull Component c, boolean forced) {
c.requestFocus();
return new ActionCallback.Done();
}
@NotNull
public ActionCallback requestFocus(@NotNull FocusCommand command, boolean forced) {
return command.run();
}
public JComponent getFocusTargetFor(@NotNull JComponent comp) {
return comp;
}
public void doWhenFocusSettlesDown(@NotNull Runnable runnable) {
runnable.run();
}
@Override
public void doWhenFocusSettlesDown(@NotNull ExpirableRunnable runnable) {
if (!runnable.isExpired()) {
runnable.run();
}
}
public Component getFocusedDescendantFor(Component comp) {
final Component focused = KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusOwner();
if (focused == null) return null;
if (focused == comp || SwingUtilities.isDescendingFrom(focused, comp)) return focused;
return null;
}
public boolean dispatch(@NotNull KeyEvent e) {
return false;
}
@Override
public void typeAheadUntil(ActionCallback done) {
}
@NotNull
public ActionCallback requestDefaultFocus(boolean forced) {
return new ActionCallback.Done();
}
@Override
public boolean isFocusTransferEnabled() {
return true;
}
@NotNull
@Override
public Expirable getTimestamp(boolean trackOnlyForcedCommands) {
return new Expirable() {
public boolean isExpired() {
return false;
}
};
}
@NotNull
@Override
public FocusRequestor getFurtherRequestor() {
return this;
}
@Override
public void revalidateFocus(@NotNull ExpirableRunnable runnable) {
}
@Override
public void setTypeaheadEnabled(boolean enabled) {
}
@Override
public Component getFocusOwner() {
return KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusOwner();
}
@Override
public void runOnOwnContext(@NotNull DataContext context, @NotNull Runnable runnable) {
runnable.run();
}
@Override
public Component getLastFocusedFor(IdeFrame frame) {
return null;
}
@Override
public IdeFrame getLastFocusedFrame() {
return null;
}
@Override
public void toFront(JComponent c) {
}
@Override
public boolean isFocusBeingTransferred() {
return false;
}
@Override
public void dispose() {
}
}