本文整理了Java中org.eclipse.swt.graphics.Device.findDevice()
方法的一些代码示例,展示了Device.findDevice()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Device.findDevice()
方法的具体详情如下:
包路径:org.eclipse.swt.graphics.Device
类名称:Device
方法名:findDevice
暂无
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc
static int /*long*/ XIOErrorProc (int /*long*/ xDisplay) {
Device device = findDevice (xDisplay);
if (device != null) {
if (DEBUG || device.debug) {
new SWTError ().printStackTrace ();
}
} else {
if (DEBUG) new SWTError ().printStackTrace ();
}
OS.Call (XIOErrorProc, xDisplay, 0);
return 0;
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x
static long /*int*/ XIOErrorProc (long /*int*/ xDisplay) {
Device device = findDevice (xDisplay);
if (device != null) {
if (DEBUG || device.debug) {
new SWTError ().printStackTrace ();
}
} else {
if (DEBUG) new SWTError ().printStackTrace ();
}
OS.Call (XIOErrorProc, xDisplay, 0);
return 0;
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc
static int /*long*/ XIOErrorProc (int /*long*/ xDisplay) {
Device device = findDevice (xDisplay);
if (device != null) {
if (DEBUG || device.debug) {
new SWTError ().printStackTrace ();
}
} else {
if (DEBUG) new SWTError ().printStackTrace ();
}
OS.Call (XIOErrorProc, xDisplay, 0);
return 0;
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x
static long /*int*/ XErrorProc (long /*int*/ xDisplay, long /*int*/ xErrorEvent) {
Device device = findDevice (xDisplay);
if (device != null) {
if (device.warningLevel == 0) {
if (DEBUG || device.debug) {
new SWTError ().printStackTrace ();
}
//TODO: Remove; temporary code only
boolean fixAIX = OS.IsAIX && OS.PTR_SIZEOF == 8;
if (!fixAIX) OS.Call (XErrorProc, xDisplay, xErrorEvent);
}
} else {
if (DEBUG) new SWTError ().printStackTrace ();
OS.Call (XErrorProc, xDisplay, xErrorEvent);
}
return 0;
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc
static int /*long*/ XErrorProc (int /*long*/ xDisplay, int /*long*/ xErrorEvent) {
Device device = findDevice (xDisplay);
if (device != null) {
if (device.warningLevel == 0) {
if (DEBUG || device.debug) {
new SWTError ().printStackTrace ();
}
//TODO: Remove; temporary code only
boolean fixAIX = OS.IsAIX && OS.PTR_SIZEOF == 8;
if (!fixAIX) OS.Call (XErrorProc, xDisplay, xErrorEvent);
}
} else {
if (DEBUG) new SWTError ().printStackTrace ();
OS.Call (XErrorProc, xDisplay, xErrorEvent);
}
return 0;
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc
static int /*long*/ XErrorProc (int /*long*/ xDisplay, int /*long*/ xErrorEvent) {
Device device = findDevice (xDisplay);
if (device != null) {
if (device.warningLevel == 0) {
if (DEBUG || device.debug) {
new SWTError ().printStackTrace ();
}
//TODO: Remove; temporary code only
boolean fixAIX = OS.IsAIX && OS.PTR_SIZEOF == 8;
if (!fixAIX) OS.Call (XErrorProc, xDisplay, xErrorEvent);
}
} else {
if (DEBUG) new SWTError ().printStackTrace ();
OS.Call (XErrorProc, xDisplay, xErrorEvent);
}
return 0;
}
内容来源于网络,如有侵权,请联系作者删除!