Gtk IconView 不按Ctrl 选择多个?

发布于 2024-10-01 05:37:25 字数 116 浏览 5 评论 0原文

是否可以使 Gtk IconView(在 pygtk 中)允许选择多个图标而无需按下 Ctrl 键?

我基本上希望 Ctrl 的行为被按下,即使它没有被按下。

Is it possible to make Gtk IconView (in pygtk) allow selection of multiple icons without the Ctrl key being pressed?

I basically want the behaviour of Ctrl being held down even when it is not held down.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生死何惧 2024-10-08 05:37:25

覆盖这种行为可能会让用户感到困惑。但如果你真的愿意,我可以看到两种可能性:

要么让 IconView 相信 Ctrl 总是被按下:

def force_ctrl(iv, ev): ev.state |= gtk.gdk.CONTROL_MASK
iconview.connect('key-press-event', force_ctrl)
iconview.connect('button-press-event', force_ctrl)

或者你可以尝试自己实现选择行为,像这样的东西:

def clicked(iv, ev):
    p = iv.get_path_at_pos(int(ev.x), int(ev.y))
    if not p is None:
        if iv.path_is_selected(p):
            iv.unselect_path(p)
        else:
            iv.select_path(p)
    return True # make the IconView ignore this click
iconview.connect('button-press-event', clicked)

Overriding this kind of behaviour might confuse users. But if you really want to, there are two possibilities that I can see:

Either make the IconView believe Ctrl is always pressed:

def force_ctrl(iv, ev): ev.state |= gtk.gdk.CONTROL_MASK
iconview.connect('key-press-event', force_ctrl)
iconview.connect('button-press-event', force_ctrl)

Or you could try implementing the selection behaviour yourself, something like:

def clicked(iv, ev):
    p = iv.get_path_at_pos(int(ev.x), int(ev.y))
    if not p is None:
        if iv.path_is_selected(p):
            iv.unselect_path(p)
        else:
            iv.select_path(p)
    return True # make the IconView ignore this click
iconview.connect('button-press-event', clicked)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文