Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
save_python.py 596 B
# Mantid Repository : https://github.com/mantidproject/mantid
#
# Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
#     NScD Oak Ridge National Laboratory, European Spallation Source
#     & Institut Laue - Langevin
# SPDX - License - Identifier: GPL - 3.0 +
# pylint: disable=invalid-name
from __future__ import (absolute_import, division, print_function)

import PyQt4.QtGui as QtGui


def getWidgetIfOpen(name):
    allWidgets = QtGui.QApplication.allWidgets()
    for widget in allWidgets:
        if widget.accessibleName() == name:
            return widget
    return None