source: sasview/src/sas/sasgui/guiframe/acknowledgebox.py @ b963b20

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalcmagnetic_scattrelease-4.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since b963b20 was b963b20, checked in by Paul Kienzle <pkienzle@…>, 7 years ago

pull config out of sas.sasgui so it can be used without reference to wx

  • Property mode set to 100644
File size: 3.6 KB
Line 
1'''
2Created on Feb 18, 2015
3
4@author: jkrzywon
5'''
6
7__id__ = "$Id: acknoweldgebox.py 2015-18-02 jkrzywon $"
8__revision__ = "$Revision: 1193 $"
9
10import wx
11import wx.richtext
12import wx.lib.hyperlink
13from wx.lib.expando import ExpandoTextCtrl
14
15from sas import get_local_config
16config = get_local_config()
17
18class DialogAcknowledge(wx.Dialog):
19    """
20    "Acknowledgement" Dialog Box
21
22    Shows the current method for acknowledging SasView in
23    scholarly publications.
24    """
25
26    def __init__(self, *args, **kwds):
27
28        kwds["style"] = wx.DEFAULT_DIALOG_STYLE
29        wx.Dialog.__init__(self, *args, **kwds)
30
31        self.ack = ExpandoTextCtrl(self, style=wx.TE_LEFT|wx.TE_MULTILINE|wx.TE_BESTWRAP|wx.TE_READONLY|wx.TE_NO_VSCROLL)
32        self.ack.SetValue(config._acknowledgement_publications)
33        #self.ack.SetMinSize((-1, 55))
34        self.citation = ExpandoTextCtrl(self, style=wx.TE_LEFT|wx.TE_MULTILINE|wx.TE_BESTWRAP|wx.TE_READONLY|wx.TE_NO_VSCROLL)
35        self.citation.SetValue(config._acknowledgement_citation)
36        self.preamble = wx.StaticText(self, -1, config._acknowledgement_preamble)
37        items = [config._acknowledgement_preamble_bullet1,
38                 config._acknowledgement_preamble_bullet2,
39                 config._acknowledgement_preamble_bullet3,
40                 config._acknowledgement_preamble_bullet4]
41        self.list1 = wx.StaticText(self, -1, "(1) " + items[0])
42        self.list2 = wx.StaticText(self, -1, "(2) " + items[1])
43        self.list3 = wx.StaticText(self, -1, "(3) " + items[2])
44        self.list4 = wx.StaticText(self, -1, "(4) " + items[3])
45        self.static_line = wx.StaticLine(self, 0)
46        self.__set_properties()
47        self.__do_layout()
48
49    def __set_properties(self):
50        """
51        :TODO - add method documentation
52        """
53        # begin wxGlade: DialogAbout.__set_properties
54        self.preamble.SetFont(wx.Font(11, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, ""))
55        self.preamble.SetFont(wx.Font(10, wx.DEFAULT, wx.NORMAL, wx.NORMAL, 0, ""))
56        self.SetTitle("Acknowledging SasView")
57        #Increased size of box from (525, 225), SMK, 04/10/16
58        self.SetClientSize((600, 320))
59        # end wxGlade
60
61    def __do_layout(self):
62        """
63        :TODO - add method documentation
64        """
65        # begin wxGlade: DialogAbout.__do_layout
66        sizer_main = wx.BoxSizer(wx.VERTICAL)
67        sizer_titles = wx.BoxSizer(wx.VERTICAL)
68        sizer_titles.Add(self.preamble, 0, wx.ALL|wx.EXPAND, 5)
69        sizer_titles.Add(self.list1, 0, wx.ALL|wx.EXPAND, 5)
70        sizer_titles.Add(self.ack, 0, wx.ALL|wx.EXPAND, 5)
71        sizer_titles.Add(self.list2, 0, wx.ALL|wx.EXPAND, 5)
72        sizer_titles.Add(self.citation, 0, wx.ALL|wx.EXPAND, 5)
73        sizer_titles.Add(self.list3, 0, wx.ALL|wx.EXPAND, 5)
74        #sizer_titles.Add(self.static_line, 0, wx.ALL|wx.EXPAND, 0)
75        sizer_titles.Add(self.list4, 0, wx.ALL|wx.EXPAND, 5)
76        sizer_main.Add(sizer_titles, -1, wx.ALL|wx.EXPAND, 5)
77        self.SetAutoLayout(True)
78        self.SetSizer(sizer_main)
79        self.Layout()
80        self.Centre()
81        #self.SetClientSize(sizer_main.GetSize())
82        # end wxGlade
83
84
85##### testing code ############################################################
86class MyApp(wx.App):
87    """
88    Class for running module as stand alone for testing
89    """
90    def OnInit(self):
91        """
92        Defines an init when running as standalone
93        """
94        wx.InitAllImageHandlers()
95        dialog = DialogAcknowledge(None, -1, "")
96        self.SetTopWindow(dialog)
97        dialog.ShowModal()
98        dialog.Destroy()
99        return 1
100
101# end of class MyApp
102
103if __name__ == "__main__":
104    app = MyApp(0)
105    app.MainLoop()
Note: See TracBrowser for help on using the repository browser.