- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我们正在将 Swing 应用程序转换为 SWT,它已经可以使用了。真正让我抓狂的是,在 Windows 上使用 SWT(与 Swing 相比)时,即使鼠标光标位于另一个控件上,也只会滚动焦点控件(例如表格、列表、多行文本字段)。
是否有可能在我们的应用程序中更改此行为(不必安装第三方实用程序),例如通过为滚动事件安装一些独立于控件的钩子(Hook)/过滤器,将事件重定向到当前光标位置的控件,或者首先自动移动焦点。提前致谢。
最佳答案
原来的解决方案有很多问题。
下面是一个准备好复制的代码片段,它基于原始答案但处理了所有这些问题。
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.ScrollBar;
import org.eclipse.swt.widgets.Scrollable;
/**
* The standard platform behavior on Windows is to scroll the widget with
* keyboard focus when the user turns the mouse wheel, instead of the widget
* currently under the mouse pointer. Many consider this annoying and Windows
* itself, as well as many popular Windows software, breaks this rule and
* implements the behavior seen on other platforms, which is to scroll the
* widget under the mouse.
*
* Win32MouseWheelFilter is a Listener implementation which will filter for
* SWT.MouseWheel events delivered to any Widget and try to redirect the event
* to the widget under the mouse or one of it's parents. The widget, or one of
* it's parents is considered a suitable target, if it either has Listeners for
* SWT.MouseWheel attached (assuming that those listeners would do something
* sensible with the event), or if its style bits contain SWT.H_SCROLL and/or
* SWT.V_SCROLL. In the later case a low level system event is generated, which
* is necessary to get the event handled by the native ScrollBar widgets. A
* vertical ScrollBar is preferred as the target, unless it is for some reason
* unsuitable for scrolling. In that case, horizontal scrolling would take
* place, if there is a suitable horizontal ScrollBar.
*
* Simply creating a new Win32MouseWheelFilter instance will install it as an
* event filter in the Display passed to the constructor. At an appropriate
* time, you may call dispose() to remove the filter again. On SWT platforms
* other than "win32", constructing an Win32MouseWheelFilter will have no effect.
*/
public class Win32MouseWheelFilter implements Listener {
private final Display fDisplay;
private int WM_VSCROLL;
private int WM_HSCROLL;
private int SB_LINEUP;
private int SB_LINEDOWN;
private Method fSendEventMethod32;
private Method fSendEventMethod64;
/**
* Creates a new Win32MouseWheelFilter instance and registers it as global
* event filter in the provided Display. Nothing will happen if the SWT
* platform is not "win32". If for some reason some SWT internals have
* changed since the writing of this class, and the Reflection-based
* extraction of some win32 specific fields of the SWT OS class fails,
* no filtering of wheel events will take place either.
*
* @param display
* The Display instance that the Win32MouseWheelFilter should install
* itself into as global event filter.
*/
public Win32MouseWheelFilter(Display display) {
fDisplay = display;
if (!SWT.getPlatform().equals("win32"))
return;
try {
Class<?> os = Class.forName("org.eclipse.swt.internal.win32.OS");
WM_VSCROLL = os.getDeclaredField("WM_VSCROLL").getInt(null);
WM_HSCROLL = os.getDeclaredField("WM_HSCROLL").getInt(null);
SB_LINEUP = os.getDeclaredField("SB_LINEUP").getInt(null);
SB_LINEDOWN = os.getDeclaredField("SB_LINEDOWN").getInt(null);
try {
// Try the 32-bit version first
fSendEventMethod32 = os.getDeclaredMethod("SendMessage",
int.class, int.class, int.class, int.class);
} catch (NoSuchMethodException e) {
// Fall back to the 64-bit version
fSendEventMethod64 = os.getDeclaredMethod("SendMessage",
long.class, int.class, long.class, long.class);
}
display.addFilter(SWT.MouseWheel, this);
return;
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (SecurityException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
}
System.out.println("Warning: Running on win32 SWT platform, "
+ "but unable to install Win32MouseWheelFilter filter.");
}
/**
* If the receiver had previously installed itself as global event filter,
* this method will remove it again from the display's filters.
*/
public final void dispose() {
fDisplay.removeFilter(SWT.MouseWheel, this);
}
public final void handleEvent(Event event) {
Control cursorControl = event.display.getCursorControl();
if (event.widget == cursorControl || cursorControl == null)
return;
if (event.widget instanceof Control) {
// If the original target control's bounds contain the mouse
// location, do not re-target the event, since it may indeed be the
// Control that needs to handle scrolling for an embedded Control
// that has focus.
Control control = (Control) event.widget;
Rectangle bounds = control.getBounds();
bounds.x = 0;
bounds.y = 0;
Point cursorPos = control.toControl(display.getCursorLocation());
if (bounds.contains(cursorPos))
return;
}
// Try to find the best target widget for the event, based on the
// cursorControl. A suitable target control is either one that has
// a listener for SWT.MouseWheel attached, or one that has either
// SWT.H_SCROLL or SWT.V_SCROLL in its style bits.
Control wheelControl = cursorControl;
int scrollStyle = SWT.H_SCROLL | SWT.V_SCROLL;
while (wheelControl != null
&& (wheelControl.getStyle() & scrollStyle) == 0
&& wheelControl.getListeners(SWT.MouseWheel).length == 0) {
wheelControl = wheelControl.getParent();
}
if (wheelControl == null) {
// The event would not be handled by anyone, bail out.
return;
}
int style = wheelControl.getStyle();
if ((style & scrollStyle) != 0 && wheelControl instanceof Scrollable) {
// Construct the data for the low level event based on which
// direction the target can scroll in. We need to use a low-level
// event since otherwise it won't be handled by the native
// ScrollBar widgets.
int msg;
// Prefer vertical scrolling. However, if the
// there is no vertical ScrollBar, or if it's somehow disabled,
// then switch to horizontal scrolling instead.
if ((style & SWT.V_SCROLL) != 0 ) {
ScrollBar vBar = ((Scrollable) wheelControl).getVerticalBar();
if (vBar == null
|| ((vBar.getMinimum() == 0
&& vBar.getMaximum() == 0
&& vBar.getSelection() == 0)
|| !vBar.isEnabled()
|| !vBar.isVisible())) {
// There is no vertical ScrollBar, or it can't be used.
msg = WM_HSCROLL;
} else
msg = WM_VSCROLL;
} else {
msg = WM_HSCROLL;
}
int count = event.count;
int wParam = SB_LINEUP;
if (event.count < 0) {
count = -count;
wParam = SB_LINEDOWN;
}
try {
// Obtain the control's handle via Reflection and
// deliver the event using the low level platform method.
// (64 and 32 bit versions)
if (fSendEventMethod32 != null) {
int handle = org.eclipse.swt.widgets.Control.class
.getDeclaredField("handle").getInt(wheelControl);
for (int i = 0; i < count; i++)
fSendEventMethod32.invoke(null, handle, msg, wParam, 0);
} else {
long handle = org.eclipse.swt.widgets.Control.class
.getDeclaredField("handle").getLong(wheelControl);
for (int i = 0; i < count; i++)
fSendEventMethod64.invoke(null, handle, msg, wParam, 0);
}
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
} catch (SecurityException e) {
e.printStackTrace();
} catch (NoSuchFieldException e) {
e.printStackTrace();
}
} else {
// It makes no sense using the low-level OS event delivery, since
// Widgets without the scrolling style bits won't receive this
// event. Since we selected this widget based on the fact that it
// has SWT.MouseWheel listeners attached, use the regular SWT event
// notification system.
// Convert mouse location, since the event contains it in the wrong
// coordinate space (the one of the original event target).
Point cursorPos = wheelControl.toControl(
event.display.getCursorLocation());
event.x = cursorPos.x;
event.y = cursorPos.y;
event.widget = wheelControl;
wheelControl.notifyListeners(event.type, event);
}
// We re-targeted the event, or re-posted a new event to another widget,
// so prevent this event from being processed any further.
event.type = SWT.None;
event.doit = false;
}
}
关于java - Windows 上的 SWT : scroll control at cursor (not focused one),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6629160/
我使用 Apache DBCP 来获取连接池,我每次都使用 PoolingDataSource 来获取连接。当我向数据库中插入一个对象时,它工作得很好,但是当我尝试从数据库中选择一个元素时,就会出现问
术语“幽灵光标”有点令人困惑;我的意思是鼠标光标不是由用户控制的,而是由程序创建并完全控制的。 这意味着屏幕上现在有 2 个光标,而不是一个。 屏幕上是否有超过 1 个光标的概念?如果是,有什么方法/
我在关闭 SQLite 类中的 Cursor 时遇到问题。当我在finally block (在DBHelper中)中关闭游标和SQLiteDatabase时,我无法读取其他类中的数据(无法重新打开关
我想连接两个游标,连接后第二个游标的内容也出现在第一个游标中。 正是我的代码, public final Uri AllImage_URI_Int = MediaStore.Images.Media.
.Net 中的 Cursor.Current 和 this.Cursor(this 是 WinForm)之间有区别吗?我一直使用 this.Cursor 并且运气很好,但我最近开始使用 CodeRus
我在 R Studio 中使用 Cobalt 编辑器主题,我通过更改相应的 .cache.css 文件对其进行了微调。背景颜色是深色的(我的选择),但文本光标(鼠标指针)也是深色的,所以很难看清。我在
我做了以下事情: import MySQLdb as mdb con = mdb.connect(hostname, username, password, dbname) cur = con.cur
当我通过 psql 客户端运行此 SQL 查询时,它会运行几秒钟(~90 秒,这是正常的,因为它是一个巨大的表)并返回,然后我可以检查我的行是否已成功插入。 SELECT merge_data('89
我是用pymongo来查询一个地区的所有元素(其实是在一张 map 上查询一个地区的所有 field )。我之前使用 db.command(SON()) 在球形区域中搜索,它可以返回一个字典,并且在字
intellij 调试:运行到光标处,忽略光标前的所有断点。有办法吗?假设光标前有很多断点,不方便一一禁用。 Line10 Line500 <-- cursor 最佳答案 Force Run
看看这两个 python 代码片段, conn = MySQLdb.connect(c['host'], c['user'], c['password'], c['db']) cur = conn.c
我有 2 个来自 SQLite 数据库中不同表的游标。我正在尝试将来自两个游标的数据放入一个 ListView 但每个游标的数据格式不同。 我考虑的是使用 MergeCursor 来组合两个游
许多 RDBMS 支持某种“CURSOR”类型。这些类型在从存储过程返回时最有用。 Oracle 中的示例: TYPE t_cursor_type IS REF CURSOR; CREATE PROC
我的应用程序结合了 Swing 和 JavaFX。我希望所有组件都使用相同的光标。 从 AWT 游标创建 JavaFX 游标的最佳方法是什么? 编辑:有一个名为 javafx.embed.swing.
我在这里遇到问题: conn = psycopg2.connect(conn_string) cursor = conn.cursor() sql = """ SELECT DISTINCT
我想检索我的 Sqlite3 数据库的前 100 行: connection = sqlite3.connect('aktua.db') cursor = connection.cursor() pr
我目前正在使用 libclang 和 C++ 编写一个简单的克隆检测器。 程序使用结构存储游标,包含指向翻译单元的指针和通过调用 clang_getCursorLocation(cursor) 获得的
我有一个 Observable返回单个 Cursor实例(Observable)。我正在尝试利用 ContentObservable.fromCursor获取 onNext 中每个游标的行回调。 我想
许多 RDBMS 支持某种“CURSOR”类型。这些类型在从存储过程返回时最有用。 Oracle 中的示例: TYPE t_cursor_type IS REF CURSOR; CREATE PROC
我正在为可视化工具编写拖动系统。单击并拖动时,它会移动您在窗口中看到的内容。当鼠标碰到面板的边缘时,我开始重新定位光标,使其永远不会离开框。如果光标在框内,它会跟踪光标所在的虚拟位置。这部分代码工作正
我是一名优秀的程序员,十分优秀!