本文整理汇总了Java中com.intellij.openapi.wm.AppIconScheme.Progress方法的典型用法代码示例。如果您正苦于以下问题:Java AppIconScheme.Progress方法的具体用法?Java AppIconScheme.Progress怎么用?Java AppIconScheme.Progress使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.openapi.wm.AppIconScheme
的用法示例。
在下文中一共展示了AppIconScheme.Progress方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: _setProgress
import com.intellij.openapi.wm.AppIconScheme; //导入方法依赖的package包/类
@Override
public boolean _setProgress(IdeFrame frame, Object processId, AppIconScheme.Progress scheme, double value, boolean isOk) {
myCurrentProcessId = processId;
if (Math.abs(myLastValue - value) < 0.02d) {
return true;
}
try {
if (isValid(frame)) {
Win7TaskBar.setProgress(frame, value, isOk);
}
}
catch (Throwable e) {
LOG.error(e);
}
myLastValue = value;
myCurrentProcessId = null;
return true;
}
示例2: setProgress
import com.intellij.openapi.wm.AppIconScheme; //导入方法依赖的package包/类
@Override
public final boolean setProgress(Project project, Object processId, AppIconScheme.Progress scheme, double value, boolean isOk) {
if (!isAppActive() && Registry.is("ide.appIcon.progress") && (myCurrentProcessId == null || myCurrentProcessId.equals(processId))) {
return _setProgress(getIdeFrame(project), processId, scheme, value, isOk);
}
else {
return false;
}
}
示例3: setProgress
import com.intellij.openapi.wm.AppIconScheme; //导入方法依赖的package包/类
@Override
public boolean setProgress(Project project, Object o, AppIconScheme.Progress progress, double v, boolean isOk) {
AnyBarConnector.setImage(AnyBarImage.YELLOW, getHost(), getPort());
return delegate.setProgress(project, o, progress, v, isOk);
}