• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(2553)  |  Call(2547)  |  Derive(6)  |  Import(0)
This class provides a simple dialog that shows a single or multi-line
message, with a choice of OK, Yes, No and/or Cancel buttons.

src/b/i/bioimagexd-HEAD/bioimagexd/trunk/GUI/QuitDialog.py   bioimagexd(Download)
class QuitDialog(wx.MessageDialog):
	"""
	Dialog for asking whether user want to quit BXD and save file tree
	"""
	def __init__(self, parent, title, msg):
		wx.Dialog.__init__(self, parent, -1, size=(400, 150), style=wx.CAPTION | wx.CLOSE_BOX | wx.STAY_ON_TOP, title=title)
 

src/n/o/notabene-HEAD/trunk/nblib/nbwidget/SaveOrNotDialog.py   notabene(Download)
class SaveOrNotDialog(wx.MessageDialog):
 
	def __init__(self, parent = None, dataId = ""):
		msg = _("Do you want to save the dataset?")
		if dataId:
			msg = _("Do you want to save the dataset named \"") + dataId.decode("utf-8") + "\"?"
 

src/n/o/notabene-HEAD/nblib/nbwidget/SaveOrNotDialog.py   notabene(Download)
class SaveOrNotDialog(wx.MessageDialog):
 
	def __init__(self, parent = None, dataId = ""):
		msg = _("Do you want to save the dataset?")
		if dataId:
			msg = _("Do you want to save the dataset named \"") + dataId.decode("utf-8") + "\"?"
 

src/p/y/pyepics-HEAD/lib/wx/wxlib.py   pyepics(Download)
class pvAlarm(wx.MessageDialog, pvCtrlMixin):
    """ Alarm Message for a PV: a MessageDialog will pop up when a
    PV trips some alarm level"""
 
    def __init__(self, parent,  pv=None, 
                 font=None, fg=None, bg=None, trip_point=None, **kw):
 

src/g/a/GarlicSim-HEAD/garlicsim_wx/garlicsim_wx/widgets/misc/not_main_program_warning_dialog.py   GarlicSim(Download)
class NotMainProgramWarningDialog(wx.MessageDialog): 
    '''
    Dialog warning that garlicsim_wx is not the main program.
 
    This is something that can cause problems in several operations, like load/save, so we warn the user about it.
    '''
 

src/g/a/garlicsim_wx-0.5.1/garlicsim_wx/widgets/misc/not_main_program_warning_dialog.py   garlicsim_wx(Download)
class NotMainProgramWarningDialog(wx.MessageDialog): 
    '''
    Dialog warning that garlicsim_wx is not the main program.
 
    This is something that can cause problems in several operations, like load/save, so we warn the user about it.
    '''