本文整理汇总了Java中com.intellij.openapi.diff.impl.settings.DiffPreviewPanel类的典型用法代码示例。如果您正苦于以下问题:Java DiffPreviewPanel类的具体用法?Java DiffPreviewPanel怎么用?Java DiffPreviewPanel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DiffPreviewPanel类属于com.intellij.openapi.diff.impl.settings包,在下文中一共展示了DiffPreviewPanel类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createPanel
import com.intellij.openapi.diff.impl.settings.DiffPreviewPanel; //导入依赖的package包/类
@Override
@NotNull
public NewColorAndFontPanel createPanel(@NotNull ColorAndFontOptions options) {
final DiffOptionsPanel optionsPanel = new DiffOptionsPanel(options);
SchemesPanel schemesPanel = new SchemesPanel(options);
final DiffPreviewPanel previewPanel = new DiffPreviewPanel(myDisposable);
schemesPanel.addListener(new ColorAndFontSettingsListener.Abstract() {
@Override
public void schemeChanged(final Object source) {
previewPanel.setColorScheme(getSelectedScheme());
optionsPanel.updateOptionsList();
}
});
return new NewColorAndFontPanel(schemesPanel, optionsPanel, previewPanel, DIFF_GROUP, null, null);
}
示例2: createPanel
import com.intellij.openapi.diff.impl.settings.DiffPreviewPanel; //导入依赖的package包/类
@Override
@NotNull
public NewColorAndFontPanel createPanel(@NotNull ColorAndFontOptions options) {
final DiffOptionsPanel optionsPanel = new DiffOptionsPanel(options);
SchemesPanel schemesPanel = new SchemesPanel(options);
PreviewPanel previewPanel;
try {
final DiffPreviewPanel diffPreviewPanel = new DiffPreviewPanel(myDisposable);
diffPreviewPanel.setMergeRequest(null);
schemesPanel.addListener(new ColorAndFontSettingsListener.Abstract(){
@Override
public void schemeChanged(final Object source) {
diffPreviewPanel.setColorScheme(getSelectedScheme());
optionsPanel.updateOptionsList();
diffPreviewPanel.updateView();
}
} );
previewPanel = diffPreviewPanel;
}
catch (FilesTooBigForDiffException e) {
LOG.info(e);
previewPanel = new PreviewPanel.Empty();
}
return new NewColorAndFontPanel(schemesPanel, optionsPanel, previewPanel, DIFF_GROUP, null, null);
}
示例3: createPanel
import com.intellij.openapi.diff.impl.settings.DiffPreviewPanel; //导入依赖的package包/类
@Override
@Nonnull
public NewColorAndFontPanel createPanel(@Nonnull ColorAndFontOptions options) {
final DiffOptionsPanel optionsPanel = new DiffOptionsPanel(options);
SchemesPanel schemesPanel = new SchemesPanel(options);
PreviewPanel previewPanel;
try {
final DiffPreviewPanel diffPreviewPanel = new DiffPreviewPanel(myDisposable);
diffPreviewPanel.setMergeRequest(null);
schemesPanel.addListener(new ColorAndFontSettingsListener.Abstract() {
@Override
public void schemeChanged(final Object source) {
diffPreviewPanel.setColorScheme(getSelectedScheme());
optionsPanel.updateOptionsList();
diffPreviewPanel.updateView();
}
});
previewPanel = diffPreviewPanel;
}
catch (FilesTooBigForDiffException e) {
LOG.info(e);
previewPanel = new PreviewPanel.Empty();
}
return new NewColorAndFontPanel(schemesPanel, optionsPanel, previewPanel, DIFF_GROUP, null, null);
}