I need to stop a control such as a TextEdit from displaying a popup (context) menu.
I have a few reason for this but the main one is:
I have a control that is displayed on a Calc sheet. When the control looses focus I remove the control.
The issue in this case is, when the user right clicks a popup menu appears, this causes the control to looses focus and removes itself from the sheet, this cause a crash because the control is gone but the menu was displayed.
I checked the event order and the focus lost event fires before the mouse down event.
No Luck, Below is the output when right mouse button is clicked for the lost focus event.
There does not seem to be anything on the lost focus event that can be used for a right click menu.
def lost_focus(src: Any, event: EventArgs, control_src: Any):
print("Lost Focus")
fe = cast("FocusEvent", event.event_data)
print("Temporary", fe.Temporary)
# print("Source", fe.Source) # source control
print("FocusFlags", fe.FocusFlags)
print("NextFocus", fe.NextFocus) # next control, same XWindow as Sheet
Sub OnFocusLostEvent(oEvent)
If oEvent.Temporary=False Then
If Not (oEvent.NextFocus Is Nothing) Then
If oEvent.NextFocus.PosSize.X<>oEvent.Source.PosSize.X Or _
oEvent.NextFocus.PosSize.Y<>oEvent.Source.PosSize.Y Then
Msgbox "The control can be deleted"
End If
End If
End If
End Sub
Sorry for the messy lost_focus. I wanted you to see the debugging.
Because this is OooDev the callback event contains a control class that also includes the control shape. The control Anchor is the cell the control is in (‘B2’ in this case).
def lost_focus(src: Any, event: EventArgs, control_src: FormCtlTextField):
print("Lost Focus")
fe = cast("FocusEvent", event.event_data)
print("Temporary", fe.Temporary)
# print("Source", fe.Source) # source control
print("FocusFlags", fe.FocusFlags)
# print("NextFocus", fe.NextFocus) # next control, same XWindow as Sheet
if not fe.Temporary and not fe.NextFocus is None:
next_rect = cast("Rectangle", fe.NextFocus.PosSize)
curr_rect = cast("Rectangle", fe.Source.PosSize)
print("NextFocus.PosSize", f"{next_rect.X}, {next_rect.Y}, {next_rect.Width}, {next_rect.Height}")
print("Source.PosSize", f"{curr_rect.X}, {curr_rect.Y}, {curr_rect.Width}, {curr_rect.Height}")
x_cell = cast("SheetCell", control_src.control_shape.Anchor)
sz = x_cell.Size
pos = x_cell.Position
print("Cell PosSize", f"{pos.X}, {pos.Y}, {sz.Width}, {sz.Height}")
shape_sz = control_src.control_shape.getSize()
shape_pos = control_src.control_shape.getPosition()
print("Shape PosSize", f"{shape_pos.X}, {shape_pos.Y}, {shape_sz.Width}, {shape_sz.Height}")
Okay, learned someting new. The python example work fine in Linux. Does not work in Windows.
I have to test the Basic again in windows to see if it works.
Well I downloaded my odev_cell_with_controls.ods example to windows and test. I don’t think have tested it there until now.
The same result. When you right click on the dynamic control it crashes LibreOffice.