'''
Created on Feb 18, 2015
@author: jkrzywon
'''
__id__ = "$Id: acknoweldgebox.py 2015-18-02 jkrzywon $"
__revision__ = "$Revision: 1193 $"
import wx
import wx.richtext
import wx.lib.hyperlink
from wx.lib.expando import ExpandoTextCtrl
from sas import get_local_config
config = get_local_config()
[docs]class DialogAcknowledge(wx.Dialog):
"""
"Acknowledgement" Dialog Box
Shows the current method for acknowledging SasView in
scholarly publications.
"""
def __init__(self, *args, **kwds):
kwds["style"] = wx.DEFAULT_DIALOG_STYLE
wx.Dialog.__init__(self, *args, **kwds)
self.ack = ExpandoTextCtrl(self, style=wx.TE_LEFT|wx.TE_MULTILINE|wx.TE_BESTWRAP|wx.TE_READONLY|wx.TE_NO_VSCROLL)
self.ack.SetValue(config._acknowledgement_publications)
#self.ack.SetMinSize((-1, 55))
self.citation = ExpandoTextCtrl(self, style=wx.TE_LEFT|wx.TE_MULTILINE|wx.TE_BESTWRAP|wx.TE_READONLY|wx.TE_NO_VSCROLL)
self.citation.SetValue(config._acknowledgement_citation)
self.preamble = wx.StaticText(self, -1, config._acknowledgement_preamble)
items = [config._acknowledgement_preamble_bullet1,
config._acknowledgement_preamble_bullet2,
config._acknowledgement_preamble_bullet3,
config._acknowledgement_preamble_bullet4]
self.list1 = wx.StaticText(self, -1, "(1) " + items[0])
self.list2 = wx.StaticText(self, -1, "(2) " + items[1])
self.list3 = wx.StaticText(self, -1, "(3) " + items[2])
self.list4 = wx.StaticText(self, -1, "(4) " + items[3])
self.static_line = wx.StaticLine(self, 0)
self.__set_properties()
self.__do_layout()
def __set_properties(self):
"""
:TODO - add method documentation
"""
# begin wxGlade: DialogAbout.__set_properties
self.preamble.SetFont(wx.Font(11, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, ""))
self.preamble.SetFont(wx.Font(10, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, ""))
self.SetTitle("Acknowledging SasView")
#Increased size of box from (525, 225), SMK, 04/10/16
self.SetClientSize((600, 320))
# end wxGlade
def __do_layout(self):
"""
:TODO - add method documentation
"""
# begin wxGlade: DialogAbout.__do_layout
sizer_main = wx.BoxSizer(wx.VERTICAL)
sizer_titles = wx.BoxSizer(wx.VERTICAL)
sizer_titles.Add(self.preamble, 0, wx.ALL|wx.EXPAND, 5)
sizer_titles.Add(self.list1, 0, wx.ALL|wx.EXPAND, 5)
sizer_titles.Add(self.ack, 0, wx.ALL|wx.EXPAND, 5)
sizer_titles.Add(self.list2, 0, wx.ALL|wx.EXPAND, 5)
sizer_titles.Add(self.citation, 0, wx.ALL|wx.EXPAND, 5)
sizer_titles.Add(self.list3, 0, wx.ALL|wx.EXPAND, 5)
#sizer_titles.Add(self.static_line, 0, wx.ALL|wx.EXPAND, 0)
sizer_titles.Add(self.list4, 0, wx.ALL|wx.EXPAND, 5)
sizer_main.Add(sizer_titles, -1, wx.ALL|wx.EXPAND, 5)
self.SetAutoLayout(True)
self.SetSizer(sizer_main)
self.Layout()
self.Centre()
#self.SetClientSize(sizer_main.GetSize())
# end wxGlade
##### testing code ############################################################
[docs]class MyApp(wx.App):
"""
Class for running module as stand alone for testing
"""
[docs] def OnInit(self):
"""
Defines an init when running as standalone
"""
wx.InitAllImageHandlers()
dialog = DialogAcknowledge(None, -1, "")
self.SetTopWindow(dialog)
dialog.ShowModal()
dialog.Destroy()
return 1
# end of class MyApp
if __name__ == "__main__":
app = MyApp(0)
app.MainLoop()