Changeset 18d58a6e in sasview for src/sas/perspectives/calculator/resolution_calculator_panel.py
- Timestamp:
- Mar 1, 2015 3:06:24 AM (10 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:
- 517f3d4
- Parents:
- 9654baf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/perspectives/calculator/resolution_calculator_panel.py
rb9a5f0e r18d58a6e 31 31 from math import fabs 32 32 from sas.perspectives.calculator import calculator_widgets as widget 33 from sas.guiframe.documentation_window import DocumentationWindow 33 34 34 35 _BOX_WIDTH = 100 … … 533 534 Do the layout for the button widgets 534 535 """ 535 # coordinate selction removed 536 #outerbox_txt = wx.StaticText(self, -1, 'Outer Box') 537 #self.x_y_rb = wx.RadioButton(self, -1,"Cartesian") 538 #self.Bind(wx.EVT_RADIOBUTTON, 539 # self._on_xy_coordinate, id=self.x_y_rb.GetId()) 540 #self.r_phi_rb = wx.RadioButton(self, -1,"Polar") 541 #self.Bind(wx.EVT_RADIOBUTTON, 542 # self._on_rp_coordinate, id=self.r_phi_rb.GetId()) 543 #self.r_phi_rb.SetValue(True) 544 #reset button 536 545 537 id = wx.NewId() 546 538 self.reset_button = wx.Button(self, id, "Reset") … … 554 546 self.compute_button.SetToolTipString(hint_on_compute) 555 547 self.Bind(wx.EVT_BUTTON, self.on_compute, id=id) 548 #help button 549 id = wx.NewId() 550 self.help_button = wx.Button(self, id, "HELP") 551 hint_on_help = "Help on using the Resolution Calculator" 552 self.help_button.SetToolTipString(hint_on_help) 553 self.Bind(wx.EVT_BUTTON, self.on_help, id=id) 556 554 # close button 557 555 self.bt_close = wx.Button(self, wx.ID_CANCEL,'Close') 558 556 self.bt_close.Bind(wx.EVT_BUTTON, self.on_close) 559 557 self.bt_close.SetToolTipString("Close this window.") 560 """ 561 self.button_sizer.AddMany([(self.r_phi_rb, 0, wx.LEFT, 15), 562 (self.x_y_rb, 0, wx.LEFT, 15), 563 (self.reset_button, 0, wx.LEFT, 50), 564 (self.compute_button, 0, wx.LEFT, 15), 565 (self.bt_close, 0, wx.LEFT, 15)])#370)]) 566 """ 558 567 559 self.button_sizer.Add((110, -1)) 568 560 self.button_sizer.AddMany([(self.reset_button, 0, wx.LEFT, 50), 569 561 (self.compute_button, 0, wx.LEFT, 15), 562 (self.help_button, 0, wx.LEFT, 15), 570 563 (self.bt_close, 0, wx.LEFT, 15)]) 571 564 self.compute_button.SetFocus() … … 697 690 self.SetAutoLayout(True) 698 691 692 693 def on_help(self, event): 694 """ 695 Bring up the Resolution calculator Documentation whenever 696 the HELP button is clicked. 697 698 Calls DocumentationWindow with the path of the location within the 699 documentation tree (after /doc/ ....". Note that when using old 700 versions of Wx (before 2.9) and thus not the release version of 701 installers, the help comes up at the top level of the file as 702 webbrowser does not pass anything past the # to the browser when it is 703 running "file:///...." 704 705 :param evt: Triggers on clicking the help button 706 """ 707 708 _TreeLocation = "user/perspectives/calculator/resolution_calculator_help.html" 709 _doc_viewer = DocumentationWindow(self, -1, \ 710 _TreeLocation,"Resolution Calculator Help") 699 711 700 712 def on_close(self, event): … … 1406 1418 self.panel = ResolutionCalculatorPanel(parent=self) 1407 1419 self.Bind(wx.EVT_CLOSE, self.OnClose) 1408 self.SetPosition((25, 1 50))1420 self.SetPosition((25, 10)) 1409 1421 self.Show(True) 1410 1422
Note: See TracChangeset
for help on using the changeset viewer.