def _ui_dialog(ui, parent, style): """Creates a live PyQt user interface for a specified UI object. """ if ui.owner is None: ui.owner = _LiveWindow() BaseDialog.display_ui(ui, parent, style)
def _ui_dialog(ui, parent, style): """Creates a PyQt dialog box for a specified UI object. Changes are not immediately applied to the underlying object. The user must click **Apply** or **OK** to apply changes. The user can revert changes by clicking **Revert** or **Cancel**. """ if ui.owner is None: ui.owner = _ModalDialog() BaseDialog.display_ui(ui, parent, style)