pyqso/pyqso/auxiliary_dialogs.py

49 wiersze
1.8 KiB
Python
Czysty Zwykły widok Historia

#!/usr/bin/env python
2015-03-06 23:31:46 +00:00
# Copyright (C) 2013 Christian T. Jacobs.
# This file is part of PyQSO.
# PyQSO is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# PyQSO is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with PyQSO. If not, see <http://www.gnu.org/licenses/>.
from gi.repository import Gtk, GObject
import logging
def error(parent, message):
""" Display an error message. """
logging.error(message)
dialog = Gtk.MessageDialog(parent, Gtk.DialogFlags.DESTROY_WITH_PARENT,
2015-02-16 10:36:04 +00:00
Gtk.MessageType.ERROR, Gtk.ButtonsType.OK, message, title="Error")
dialog.run()
dialog.destroy()
return
def info(parent, message):
""" Display some information. """
logging.debug(message)
dialog = Gtk.MessageDialog(parent, Gtk.DialogFlags.DESTROY_WITH_PARENT,
2015-02-16 10:36:04 +00:00
Gtk.MessageType.INFO, Gtk.ButtonsType.OK, message, title="Information")
dialog.run()
dialog.destroy()
return
def question(parent, message):
""" Ask the user a question. The dialog comes with 'Yes' and 'No' response buttons. """
dialog = Gtk.MessageDialog(parent, Gtk.DialogFlags.DESTROY_WITH_PARENT,
Gtk.MessageType.QUESTION, Gtk.ButtonsType.YES_NO,
2015-02-16 10:36:04 +00:00
message, title="Question")
response = dialog.run()
dialog.destroy()
return response