本文整理汇总了Java中com.intellij.diff.FrameDiffTool类的典型用法代码示例。如果您正苦于以下问题:Java FrameDiffTool类的具体用法?Java FrameDiffTool怎么用?Java FrameDiffTool使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
FrameDiffTool类属于com.intellij.diff包,在下文中一共展示了FrameDiffTool类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: init
import com.intellij.diff.FrameDiffTool; //导入依赖的package包/类
@Nonnull
@Override
public final FrameDiffTool.ToolbarComponents init() {
processContextHints();
onInit();
FrameDiffTool.ToolbarComponents components = new FrameDiffTool.ToolbarComponents();
components.toolbarActions = createToolbarActions();
components.popupActions = createPopupActions();
components.statusPanel = getStatusPanel();
fireEvent(EventType.INIT);
rediff(true);
return components;
}
示例2: init
import com.intellij.diff.FrameDiffTool; //导入依赖的package包/类
@NotNull
public final FrameDiffTool.ToolbarComponents init() {
processContextHints();
onInit();
FrameDiffTool.ToolbarComponents components = new FrameDiffTool.ToolbarComponents();
components.toolbarActions = createToolbarActions();
components.popupActions = createPopupActions();
components.statusPanel = getStatusPanel();
fireEvent(EventType.INIT);
rediff(true);
return components;
}
示例3: init
import com.intellij.diff.FrameDiffTool; //导入依赖的package包/类
@NotNull
@Override
public FrameDiffTool.ToolbarComponents init() {
myDirDiffPanel.setupSplitter();
FrameDiffTool.ToolbarComponents components = new FrameDiffTool.ToolbarComponents();
// we return ActionGroup to avoid registering of actions shortcuts
// * they are already registered inside DirDiffPanel
// * this fixes conflict between FilterPanel and SynchronizeDiff action for the 'Enter' shortcut
components.toolbarActions = Collections.<AnAction>singletonList(new DefaultActionGroup(myDirDiffPanel.getActions()));
components.statusPanel = myDirDiffPanel.extractFilterPanel();
return components;
}
示例4: init
import com.intellij.diff.FrameDiffTool; //导入依赖的package包/类
@Nonnull
@Override
public FrameDiffTool.ToolbarComponents init() {
myDirDiffPanel.setupSplitter();
FrameDiffTool.ToolbarComponents components = new FrameDiffTool.ToolbarComponents();
// we return ActionGroup to avoid registering of actions shortcuts
// * they are already registered inside DirDiffPanel
// * this fixes conflict between FilterPanel and SynchronizeDiff action for the 'Enter' shortcut
components.toolbarActions = Collections.<AnAction>singletonList(new DefaultActionGroup(myDirDiffPanel.getActions()));
components.statusPanel = myDirDiffPanel.extractFilterPanel();
return components;
}
示例5: init
import com.intellij.diff.FrameDiffTool; //导入依赖的package包/类
@NotNull
@Override
public FrameDiffTool.ToolbarComponents init() {
return new FrameDiffTool.ToolbarComponents();
}