1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
|
# (C) Copyright 2004-2023 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
""" Creates a wxPython user interface for a specified UI object, where the UI
is "live", meaning that it immediately updates its underlying object(s).
"""
import wx
from pyface.api import SystemMetrics
from .helper import save_window, TraitsUIScrolledPanel
from .ui_base import BaseDialog
from .ui_panel import panel
from .constants import DefaultTitle, WindowColor, scrollbar_dx
from traitsui.undo import UndoHistory
from traitsui.menu import (
UndoButton,
RevertButton,
OKButton,
CancelButton,
HelpButton,
)
# -------------------------------------------------------------------------
# Creates a 'live update' wxPython user interface for a specified UI object:
# -------------------------------------------------------------------------
def ui_live(ui, parent):
"""Creates a live, non-modal wxPython user interface for a specified UI
object.
"""
_ui_dialog(ui, parent, BaseDialog.NONMODAL)
def ui_livemodal(ui, parent):
"""Creates a live, modal wxPython user interface for a specified UI object."""
_ui_dialog(ui, parent, BaseDialog.MODAL)
def ui_popup(ui, parent):
"""Creates a live, temporary popup wxPython user interface for a specified
UI object.
"""
_ui_dialog(ui, parent, BaseDialog.POPUP)
def ui_popover(ui, parent):
"""Creates a live, temporary popup wxPython user interface for a specified
UI object.
"""
_ui_dialog(ui, parent, BaseDialog.POPOVER)
def ui_info(ui, parent):
"""Creates a live, temporary popup wxPython user interface for a specified
UI object.
"""
_ui_dialog(ui, parent, BaseDialog.INFO)
def _ui_dialog(ui, parent, style):
"""Creates a live wxPython user interface for a specified UI object."""
if ui.owner is None:
ui.owner = LiveWindow()
BaseDialog.display_ui(ui, parent, style)
class LiveWindow(BaseDialog):
"""User interface window that immediately updates its underlying object(s)."""
def init(self, ui, parent, style):
self.is_modal = style == self.MODAL
window_style = 0
view = ui.view
if view.resizable:
window_style |= wx.RESIZE_BORDER
title = view.title
if title == "":
title = DefaultTitle
history = ui.history
window = ui.control
if window is not None:
if history is not None:
history.observe(
self._on_undoable, "undoable", remove=True, dispatch="ui"
)
history.observe(
self._on_redoable, "redoable", remove=True, dispatch="ui"
)
history.observe(
self._on_revertable, "undoable", remove=True, dispatch="ui"
)
window.SetSizer(None)
ui.reset()
else:
self.ui = ui
if style == self.MODAL:
if view.resizable:
window_style |= wx.MAXIMIZE_BOX | wx.MINIMIZE_BOX
window = wx.Dialog(
parent,
-1,
title,
style=window_style | wx.DEFAULT_DIALOG_STYLE,
)
elif style == self.NONMODAL:
if parent is not None:
window_style |= (
wx.FRAME_FLOAT_ON_PARENT | wx.FRAME_NO_TASKBAR
)
window = wx.Frame(
parent,
-1,
title,
style=window_style
| (wx.DEFAULT_FRAME_STYLE & (~wx.RESIZE_BORDER)),
)
else:
if window_style == 0:
window_style = wx.SIMPLE_BORDER
if parent is not None:
window_style |= (
wx.FRAME_FLOAT_ON_PARENT | wx.FRAME_NO_TASKBAR
)
if isinstance(parent, tuple):
window = wx.Frame(None, -1, "", style=window_style)
window._control_region = parent
else:
window = wx.Frame(parent, -1, "", style=window_style)
window._kind = ui.view.kind
self._monitor = MouseMonitor(ui)
# Set the correct default window background color:
window.SetBackgroundColour(WindowColor)
self.control = window
window.Bind(wx.EVT_CLOSE, self._on_close_page)
window.Bind(wx.EVT_CHAR, self._on_key)
self.set_icon(view.icon)
buttons = [self.coerce_button(button) for button in view.buttons]
nbuttons = len(buttons)
no_buttons = (nbuttons == 1) and self.is_button(buttons[0], "")
has_buttons = (not no_buttons) and (
(nbuttons > 0)
or view.undo
or view.revert
or view.ok
or view.cancel
)
if has_buttons or (view.menubar is not None):
if history is None:
history = UndoHistory()
else:
history = None
ui.history = history
# Create the actual trait sheet panel and imbed it in a scrollable
# window (if requested):
sw_sizer = wx.BoxSizer(wx.VERTICAL)
if ui.scrollable:
sizer = wx.BoxSizer(wx.VERTICAL)
sw = TraitsUIScrolledPanel(window)
trait_sheet = panel(ui, sw)
sizer.Add(trait_sheet, 1, wx.EXPAND)
tsdx, tsdy = trait_sheet.GetSize()
sw.SetScrollRate(16, 16)
max_dy = (2 * SystemMetrics().screen_height) // 3
sw.SetSizer(sizer)
sw.SetSize(
wx.Size(
tsdx + ((tsdy > max_dy) * scrollbar_dx), min(tsdy, max_dy)
)
)
else:
sw = panel(ui, window)
sw_sizer.Add(sw, 1, wx.EXPAND)
sw_sizer.SetMinSize(sw.GetSize())
# Check to see if we need to add any of the special function buttons:
if (not no_buttons) and (has_buttons or view.help):
sw_sizer.Add(wx.StaticLine(window, -1), 0, wx.EXPAND)
b_sizer = wx.BoxSizer(wx.HORIZONTAL)
# Convert all button flags to actual button actions if no buttons
# were specified in the 'buttons' trait:
if nbuttons == 0:
if view.undo:
self.check_button(buttons, UndoButton)
if view.revert:
self.check_button(buttons, RevertButton)
if view.ok:
self.check_button(buttons, OKButton)
if view.cancel:
self.check_button(buttons, CancelButton)
if view.help:
self.check_button(buttons, HelpButton)
# Create a button for each button action:
for raw_button, button in zip(view.buttons, buttons):
button = self.coerce_button(button)
default = raw_button == view.default_button
if self.is_button(button, "Undo"):
self.undo = self.add_button(
button, b_sizer, self._on_undo, False, default=default
)
self.redo = self.add_button(
button, b_sizer, self._on_redo, False, "Redo"
)
history.observe(
self._on_undoable, "undoable", dispatch="ui"
)
history.observe(
self._on_redoable, "redoable", dispatch="ui"
)
if history.can_undo:
self._on_undoable(True)
if history.can_redo:
self._on_redoable(True)
elif self.is_button(button, "Revert"):
self.revert = self.add_button(
button,
b_sizer,
self._on_revert,
False,
default=default,
)
history.observe(
self._on_revertable, "undoable", dispatch="ui"
)
if history.can_undo:
self._on_revertable(True)
elif self.is_button(button, "OK"):
self.ok = self.add_button(
button, b_sizer, self._on_ok, default=default
)
ui.observe(self._on_error, "errors", dispatch="ui")
elif self.is_button(button, "Cancel"):
self.add_button(
button, b_sizer, self._on_cancel, default=default
)
elif self.is_button(button, "Help"):
self.add_button(
button, b_sizer, self._on_help, default=default
)
elif not self.is_button(button, ""):
self.add_button(button, b_sizer, default=default)
sw_sizer.Add(b_sizer, 0, wx.ALIGN_RIGHT | wx.ALL, 5)
# Add the menu bar, tool bar and status bar (if any):
self.add_menubar()
self.add_toolbar()
self.add_statusbar()
# Lay all of the dialog contents out:
window.SetSizer(sw_sizer)
window.Fit()
def close(self, rc=wx.ID_OK):
"""Closes the dialog window."""
ui = self.ui
ui.result = rc == wx.ID_OK
save_window(ui)
if self.is_modal:
self.control.EndModal(rc)
self.control.Unbind(wx.EVT_CLOSE)
self.control.Unbind(wx.EVT_CHAR)
ui.finish()
self.ui = self.undo = self.redo = self.revert = self.control = None
def _on_close_page(self, event):
"""Handles the user clicking the window/dialog "close" button/icon."""
if not self.ui.view.close_result:
self._on_cancel(event)
else:
self._on_ok(event)
def _on_close_popup(self, event):
"""Handles the user giving focus to another window for a 'popup' view."""
if not event.GetActive():
self.close_popup()
def close_popup(self):
# Close the window if it has not already been closed:
if self.ui.info is not None and self.ui.info.ui is not None:
if self._on_ok():
self._monitor.Stop()
def _on_ok(self, event=None):
"""Handles the user clicking the **OK** button."""
if self.ui is None or self.control is None:
return True
if self.ui.handler.close(self.ui.info, True):
self.control.Unbind(wx.EVT_ACTIVATE)
self.close(wx.ID_OK)
return True
return False
def _on_key(self, event):
"""Handles the user pressing the Escape key."""
if event.GetKeyCode() == 0x1B:
self._on_close_page(event)
def _on_cancel(self, event):
"""Handles a request to cancel all changes."""
if self.ui.handler.close(self.ui.info, False):
self._on_revert(event)
self.close(wx.ID_CANCEL)
def _on_error(self, event):
"""Handles editing errors."""
errors = event.new
self.ok.Enable(errors == 0)
def _on_undoable(self, event):
"""Handles a change to the "undoable" state of the undo history"""
state = event.new
self.undo.Enable(state)
def _on_redoable(self, event):
"""Handles a change to the "redoable state of the undo history."""
state = event.new
self.redo.Enable(state)
def _on_revertable(self, event):
"""Handles a change to the "revert" state."""
state = event.new
self.revert.Enable(state)
class MouseMonitor(wx.Timer):
"""Monitors a specified window and closes it the first time the mouse
pointer leaves the window.
"""
def __init__(self, ui):
super().__init__()
self.ui = ui
kind = ui.view.kind
self.is_activated = self.is_info = kind == "info"
self.border = 3
if kind == "popup":
self.border = 10
self.Start(100)
def Notify(self):
ui = self.ui
control = ui.control
if ui.control is None:
# Looks like someone forgot to tell us that the ui has been closed:
self.Stop()
return
mx, my = wx.GetMousePosition()
cx, cy = control.ClientToScreen(0, 0)
cdx, cdy = control.GetSize()
if self.is_activated:
# Don't close the popup if any mouse buttons are currently pressed:
ms = wx.GetMouseState()
if ms.LeftIsDown() or ms.MiddleIsDown() or ms.RightIsDown():
return
# Check for the special case of the mouse pointer having to be
# within the original bounds of the object the popup was created
# for:
if self.is_info:
parent = control.GetParent()
if isinstance(parent, wx.Window):
px, py, pdx, pdy = parent.GetScreenRect()
else:
px, py, pdx, pdy = control._control_region
if (
(mx < px)
or (mx >= (px + pdx))
or (my < py)
or (my >= (py + pdy))
):
ui.owner.close_popup()
self.is_activated = False
else:
# Allow for a 'dead zone' border around the window to allow for
# small motor control problems:
border = self.border
if (
(mx < (cx - border))
or (mx >= (cx + cdx + border))
or (my < (cy - border))
or (my >= (cy + cdy + border))
):
ui.owner.close_popup()
self.is_activated = False
elif (cx <= mx < (cx + cdx)) and (cy <= my < (cy + cdy)):
self.is_activated = True
|