Changeset e55e7a6 in sasview for src/sas/sasgui/guiframe
- Timestamp:
- Aug 16, 2016 10:29:10 AM (8 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:
- 6bb4edd, 8096b446
- Parents:
- b64b87c (diff), 8b138bd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- src/sas/sasgui/guiframe
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/guiframe/local_perspectives/plotting/Plotter1D.py
re63cf11 r895c9cb 671 671 self._slicerpop.AppendSeparator() 672 672 wx_id = ids.next() 673 self._slicerpop.Append(wx_id, '&Set Graph Range') 674 wx.EVT_MENU(self, wx_id, self.onSetRange) 675 wx_id = ids.next() 673 676 self._slicerpop.Append(wx_id, '&Reset Graph Range') 674 677 wx.EVT_MENU(self, wx_id, self.onResetGraph) … … 687 690 self.PopupMenu(self._slicerpop, pos) 688 691 692 def onSetRange(self, event): 693 # Display dialog 694 # self.subplot.set_xlim((low, high)) 695 # self.subplot.set_ylim((low, high)) 696 from sas.sasgui.plottools.RangeDialog import RangeDialog 697 d = RangeDialog(self, -1) 698 xlim = self.subplot.get_xlim() 699 ylim = self.subplot.get_ylim() 700 d.SetXRange(xlim) 701 d.SetYRange(ylim) 702 if d.ShowModal() == wx.ID_OK: 703 x_range = d.GetXRange() 704 y_range = d.GetYRange() 705 if x_range is not None and y_range is not None: 706 self.subplot.set_xlim(x_range) 707 self.subplot.set_ylim(y_range) 708 self.subplot.figure.canvas.draw_idle() 709 d.Destroy() 710 689 711 def onFreeze(self, event): 690 712 """ -
src/sas/sasgui/guiframe/media/data_explorer_help.rst
rd85c194 rb64b87c 20 20 21 21 *NOTE! When* Data Explorer *is hidden, all data loaded will be sent directly 22 to the current active analysis perspective, if possible. When* Data Explorer *is22 to the current active analysis, if possible. When* Data Explorer *is 23 23 shown, data go first to the* Data Explorer. 24 24 … … 116 116 117 117 Click on the *Send To* button to send the currently selected data to one of the 118 perspectives (for*Fitting*, *P(r) Inversion*, or *Invariant* calculation).118 available types of analysis (*Fitting*, *P(r) Inversion*, or *Invariant* calculation). 119 119 120 The *Single*/*Batch* mode radio buttons only apply to the *Fitting* perspective.120 The *Single*/*Batch* mode radio buttons only apply to *Fitting*. 121 121 122 122 *Batch mode* provides serial (batch) fitting with one model function, that is,
Note: See TracChangeset
for help on using the changeset viewer.