- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
有人知道如何使用 wxPython 在 TextCtrl 对象中创建自定义上下文菜单吗?
目前,我可以创建一个自定义菜单,但这个菜单出现在鼠标光标位置 ,当原来的出现在文本光标位置 时当按下[菜单]键时 .
最佳答案
好的,
可以以某种方式实现这一点但是这只有效
简单来说:获取文本光标的位置转换为行/列坐标并将其乘以字符大小。这给出了所需的弹出菜单位置。
import wx
# Test context menu that should be displayed at the insertion point position
# in the TextCtrl object
class CustomMenu(wx.Menu):
def __init__(self):
wx.Menu.__init__(self)
# Add some items in the menu
self.AppendItem(wx.MenuItem(self, wx.NewId(), 'This should be at the'))
self.AppendItem(wx.MenuItem(self, wx.NewId(), 'insertion point'))
self.AppendItem(wx.MenuItem(self, wx.NewId(), 'position...'))
# Text area from which to open the custom context menu
class TestTextCtrl(wx.TextCtrl):
def __init__(self, parent):
wx.TextCtrl.__init__(self, parent, style=wx.TE_MULTILINE)
self.parent = parent
# Set a monospaced font
font = wx.Font(12, wx.MODERN, wx.NORMAL, wx.NORMAL)
self.SetFont(font)
# Get the character size (width and height)
self.pixelSize = font.GetPixelSize()
# Display some text
self.SetValue("[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n"
"[Ctrl] key = custom popup menu \n"
"[Menu] key = original context menu \n")
# Activate the [Ctrl] key stroke detection (1/2)
self.Bind(wx.EVT_KEY_DOWN, self.OnKeyStroke)
def OnKeyStroke(self, event):
# Activate the [Ctrl] key stroke detection (2/2)
if event.GetUnicodeKey() == wx.WXK_CONTROL:
#######################################
##### Here is the interesting code ####
#######################################
# Get the scroll position in pixels
scrollPosition = [
self.GetScrollPos(wx.HORIZONTAL),
self.GetScrollPos(wx.VERTICAL),
]
# Get the text cursor position in the text area (int)
insertionPointPosition = self.GetInsertionPoint()
# Convert it into a row/column position (2D tuple)
insertionPointRowColumnPosition = self.PositionToXY(insertionPointPosition)
# Calculate the popup menu position in pixels
insertionPointPositionInPixels = []
for i in range(2):
insertionPointPositionInPixels.append(
# ( row/column position + offset ) * size of character - position of scroll in pixels)
(insertionPointRowColumnPosition[i] + i) * self.pixelSize[i] - scrollPosition[i]
)
# Convert the position into a wx.Point object
popupMenuPoint = wx.Point(
insertionPointPositionInPixels[0],
insertionPointPositionInPixels[1]
)
# Display the context menu at the given position
self.PopupMenu(CustomMenu(), popupMenuPoint)
### We did it ! :) ###
#######################################
#######################################
#######################################
else:
event.Skip()
# Test frame
class TestFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None)
# Create a text area
TestTextCtrl(self)
# Display the window
self.Show(True)
if __name__ == "__main__":
# Create an application
application = wx.App(False)
# Create a frame
TestFrame()
# Launch the application
application.MainLoop()
更新 #1 -> 取自 font.GetPixelSize()
更新 #2 -> 使用 self.GetScrollPos()
获取滚动条的位置
关于python - wx.TextCtrl 中插入点位置的弹出菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26864839/
我是 Python 和 WX 的新手。我创建了一个简单的测试对话框,如下所示,用组合框提示用户。我想从我的主程序中的组合框中获取值。我如何从我的主程序中调用它? 这就是我打算调用它来显示对话框但当前不
我已经在框架内创建了 wx.Grid 小部件,如果用户正在使用网格小部件,我想更改光标类型。我已经成功地使用 wx.StockCursor 和 .SetCursor 方法 做到了这一点,但是如果用户将
我想知道如何从 wx 笔记本的一页到另一页获取变量。我在想,如果我知道变量名和页面 ID,应该有某种方法可以引用变量。例如,如果我有以下代码,我将如何从面板 y 引用变量 x,反之亦然 import
我需要使用 wx.Textvalidator 验证文本框。有什么可以帮我做这个吗? 我如何将 wx.FILTER_ALPHA 与验证器一起使用,如果用户输入错误,我该如何给他们消息? 我需要在点击保存
我的印象是面板更好。真的吗? 一个比另一个有什么优势?有什么理由使用一个而不是另一个? 最佳答案 wx.Window 是所有小部件的基类(不一定是所有 windows - 这个名字有误导性)。 wx.
我有一个 wx.ListCtrl 设置了 wx.LC_REPORT 位。它有 3 列。我希望在第一列中为每个其他条目填充一个复选框。我尝试使用 ListCtrl.InsertItem 方法,但它只需要
./configure 运行时返回错误消息: wx:无法链接wx驱动程序,wx将无法使用 当我运行.\configure | grep wx,日志如下: configure: configuring
你好,我想在静态框内绘制一些彩色线条,我使用了 onpaint 方法,但线条没有出现在静态框内,然后我尝试创建一条静态线,这有效但我无法更改静态线的颜色。有没有其他方法可以使用 onpaint 方法或
wx.PyControl 可以包含 wx.Sizer 吗? 请注意,我最终在这里尝试做的事情(具有浮点值的微调器)已经在另一个问题中得到了回答。我对在 wx.PyControl 中布局小部件特别感兴趣
派生类有一个小问题,即 wx.ListItem 和 wx.ListCtrl。我成功地将 wx.ListItem 派生为 MediaItem,代码还没有完成,但你明白了: class MediaItem
我正在用 wxPython 开发一个 GUI。我在另一个代表 CD 容器对象的正方形(也有 wxPanel 类)内绘制一个代表 CD 对象的正方形。我想在 CDWindow 的右键菜单中有“删除这张
使用 wx.lib.newevent.NewEvent() 和使用 wx.NewEventType() 和 wx.PyCommandEvent() 有什么区别?下面的代码示例使用两种不同的方式来创建事
我有一个 python 应用程序,我从 here 得到的并根据我的需要进行修改,但我想将我用于图标的图像放在脚本中,我知道可能存在性能问题但目前这不是问题,我需要的只是将所有文件放在一个文件中,这样我
我有一个 wx.Frame,其中有一个主 wx.Panel,里面有几个小部件。我想要那里的一个按钮导致出现“帮助面板”。这个帮助面板可能是一个 wx.Panel,我希望它覆盖整个主 wx.Panel(
我有一个关于如何在 (style = wx.LC_REPORT) 模式下使用 wx.ListCtrl 的教程,但我只使用一列: self.InsertColumn(0, "Item") 我怎样才能:
self.sizer.Add(self.listBox, proportion=0, flag=wx.TOP | wx.LEFT, border=75) BOTTOM 和 LEFT 的边框是 75,我
我想要一个 python 图形用户界面,它可以从文件中加载不同的图像。我见过许多使用以下代码加载图像的示例: img = wx.Image("1.jpg", wx.BITMAP_TYPE_ANY, -
背景:我正在编写一个模块来创建带有多个进度条(0-5)的自定义启动屏幕。初始屏幕可以以多种模式显示(全屏无帧、带/不带帧的屏幕百分比或带/不带帧的固定大小),并且可以容纳 0-5 个链接的进度表。进度
我刚刚在我的 mac 上安装了最新稳定版的 wxWidget,并尝试编译 hello world 教程中的代码。这是导致错误的代码: #include ' #ifndef WX_PRECOMP #in
当我编译我的项目时: ---------------------------------------------------------------------- wxFlasher configur
我是一名优秀的程序员,十分优秀!