00001 #!/usr/bin/env python 00002 # 00003 # License: BSD 00004 # https://raw.github.com/robotics-in-concert/rocon_qt_gui/license/LICENSE 00005 # 00006 ############################################################################## 00007 # Imports 00008 ############################################################################## 00009 00010 from .converts import * 00011 from .world_canvas_utils import * 00012 from python_qt_binding.QtGui import QMessageBox 00013 00014 def show_message(parent, title, message): 00015 QMessageBox.warning(parent, str(title), str(message), QMessageBox.Ok | QMessageBox.Ok)