gpt4 book ai didi

python - 如何在 wx.html.htmlwindow 中获取字符串选择

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:31:36 28 4
gpt4 key购买 nike

我无法获得使用上下文菜单管理剪贴板的方法我正在尝试使用 wxpython 的 2.8 版

import wx
import wx.lib.iewin

class main (wx.Frame):
def __init__(self, parent):
wx.Frame.__init__ (self, parent, id, title, pos, size, style)

self.html_field = HTMLWINDOW(self.p_html, -1)

class HTMLWINDOW(wx.html.HtmlWindow):
def __init__(self, parent, id):
self.ie = wx.lib.iewin.IEHtmlWindow(self, -1, style)

self.Bind(wx.EVT_CONTEXT_MENU, self.menu)

def menu(self, event):
self.copied = self.ie.GetStringSelection()

替代方法。但只有我能得到单词,而不是整个选择

def OnCellClicked(self, cell, x, y, evt):
if isinstance(cell, wx.html.HtmlWordCell):
sel = wx.html.HtmlSelection()
word = cell.ConvertToText(sel)
super(MyHtmlWindow, self).OnCellClicked(cell, x, y, evt)

导入 wx.lib.iewin 我得到这个错误

Traceback (most recent call last):

ValueError: _type_ 'v' not supported
File "main.py", line 3959, in <module>
import wx.lib.iewin as iewin
File "/usr/lib/python2.7/dist-packages/wx-2.8-gtk2-unicode/wx/lib/iewin.py", line 15, in <module>
import wx.lib.activex
File "/usr/lib/python2.7/dist-packages/wx-2.8-gtk2-unicode/wx/lib/activex.py", line 35, in <module>
import ctypes.wintypes as wt
File "/usr/lib/python2.7/ctypes/wintypes.py", line 23, in <module>
class VARIANT_BOOL(_SimpleCData):
ValueError: _type_ 'v' not supported

最佳答案

正如 Werner 已经指出的,您正试图在 Linux 中导入 wx.lib.iewiniewin 模块仅适用于 Windows。我认为它应该给出一个导入错误,告诉您它只是 Windows,但名称本身就暗示了这一点。您可以放入错误票,这样它确实会引发适当的错误。

如果您需要类似浏览器的小部件,那么您应该查看 WebView。它是在 wxPython 2.9 中添加的,我相信它可以跨平台工作。您可以在此处阅读有关该小部件的更多信息:

关于python - 如何在 wx.html.htmlwindow 中获取字符串选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26424966/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com