Changeset cf9b6950 in sasview
- Timestamp:
- Feb 16, 2011 6:17:16 PM (14 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- e715e4f
- Parents:
- dd03efb
- Location:
- invariantview/perspectives/invariant
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
invariantview/perspectives/invariant/help_panel.py
r4a2b054 rcf9b6950 90 90 <body> 91 91 <ul> 92 <li><a href = %starget ="showframe">Invariant</a><br></li>92 <li><a href ="%s" target ="showframe">Invariant</a><br></li> 93 93 </ul> 94 94 </body> -
invariantview/perspectives/invariant/report_dialog.py
r4a2b054 rcf9b6950 95 95 96 96 # panel for report page 97 panel = wx.Panel(self, -1)97 #panel = wx.Panel(self, -1) 98 98 vbox = wx.BoxSizer(wx.VERTICAL) 99 99 # html window 100 self.hwindow = html.HtmlWindow( panel,style=wx.BORDER,size=(700,500))100 self.hwindow = html.HtmlWindow(self,style=wx.BORDER) 101 101 # set the html page with the report string 102 102 self.hwindow.SetPage(self.report_html) 103 103 104 104 # add panels to boxsizers 105 vbox.Add(hbox , 30)106 vbox.Add( panel, 500, wx.EXPAND|wx.ALL)107 108 self.SetSizer AndFit(vbox)105 vbox.Add(hbox) 106 vbox.Add(self.hwindow, 1, wx.EXPAND|wx.ALL,0) 107 108 self.SetSizer(vbox) 109 109 self.Centre() 110 110 self.Show(True) 111 111 112 112 113 def onSave(self, event=None):
Note: See TracChangeset
for help on using the changeset viewer.