sticky documentation popup [take 1]
[fedora-idea.git] / platform / platform-impl / src / com / intellij / openapi / wm / impl / InternalDecoratorListener.java
blob55f1fc5f6aefe526d380b8e9a63a66da2efe18aa
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.openapi.wm.impl;
18 import com.intellij.openapi.wm.ToolWindowAnchor;
19 import com.intellij.openapi.wm.ToolWindowContentUiType;
20 import com.intellij.openapi.wm.ToolWindowType;
22 import java.util.EventListener;
24 /**
25 * @author Vladimir Kondratyev
27 interface InternalDecoratorListener extends EventListener{
29 public void anchorChanged(InternalDecorator source,ToolWindowAnchor anchor);
31 public void autoHideChanged(InternalDecorator source,boolean autoHide);
33 public void hidden(InternalDecorator source);
35 public void hiddenSide(InternalDecorator source);
37 public void resized(InternalDecorator source);
39 public void activated(InternalDecorator source);
41 public void typeChanged(InternalDecorator source,ToolWindowType type);
43 public void sideStatusChanged(InternalDecorator source,boolean isSideTool);
45 public void contentUiTypeChanges(InternalDecorator sources, ToolWindowContentUiType type);