Changeset fdb0f8b in sasview


Ignore:
Timestamp:
Oct 16, 2008 5:15:01 PM (16 years ago)
Author:
Gervaise Alina <gervyh@…>
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:
caa1226
Parents:
4ddf1067
Message:

fixing toggle lin\log

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guiframe/local_perspectives/plotting/plotting.py

    r7764b41 rfdb0f8b  
    361361        """ 
    362362        #TODO: Check for existence of plot attribute 
    363  
    364363        # Check whether this is a replot. If we ask for a replot 
    365364        # and the plottable no longer exists, ignore the event. 
     
    367366            and event.plot.name not in self.plots.keys(): 
    368367            return 
    369          
    370368        if hasattr(event, "reset"): 
    371369            self._reset() 
    372          
    373370        is_new = True 
    374371        if event.plot.name in self.plots.keys(): 
     
    378375            else: 
    379376                is_new = False 
    380          
    381         if is_new: 
    382             self.plots[event.plot.name] = event.plot 
    383             self.graph.add(self.plots[event.plot.name]) 
    384         else: 
    385             self.plots[event.plot.name].x = event.plot.x     
    386             self.plots[event.plot.name].y = event.plot.y     
    387             self.plots[event.plot.name].dy = event.plot.dy   
    388             if hasattr(event.plot, 'dx') and hasattr(self.plots[event.plot.name], 'dx'): 
    389                 self.plots[event.plot.name].dx = event.plot.dx     
    390   
    391          
     377        self.plots[event.plot.name] = event.plot 
     378        #if is_new: 
     379        self.graph.add(self.plots[event.plot.name]) 
     380         
     381 
    392382        # Check axis labels 
    393383        #TODO: Should re-factor this 
    394384        #if event.plot._xunit != self.graph.prop["xunit"]: 
     385        
    395386        self.graph.xaxis(event.plot._xaxis, event.plot._xunit) 
    396              
    397387        #if event.plot._yunit != self.graph.prop["yunit"]: 
    398388        self.graph.yaxis(event.plot._yaxis, event.plot._yunit) 
    399        
    400         
    401389        self.graph.render(self) 
    402390        self.subplot.figure.canvas.draw_idle() 
     
    414402                 
    415403        # Option to save the data displayed 
    416          
    417         
     404     
    418405        # Various plot options 
    419406        id = wx.NewId() 
     
    435422         
    436423        slicerpop.AppendSeparator() 
    437         
    438                  
     424       
    439425        id = wx.NewId() 
    440426        slicerpop.Append(id, '&Toggle Linear/Log scale') 
    441         wx.EVT_MENU(self, id,  self._onToggleScale)     
     427        wx.EVT_MENU(self, id, self._onToggleScale)  
    442428 
    443429        pos = event.GetPosition() 
     
    445431        self.PopupMenu(slicerpop, pos) 
    446432     
    447      
    448    
     433    def _onToggleScale(self, event): 
     434        """ 
     435            toggle axis and replot image 
     436        """ 
     437        if self.scale == 'log': 
     438            self.scale = 'linear' 
     439        else: 
     440            self.scale = 'log' 
     441        self.image(self.data,self.xmin_2D,self.xmax_2D,self.ymin_2D, 
     442                   self.ymax_2D,self.zmin_2D ,self.zmax_2D ) 
     443  
    449444       
    450445class Plugin: 
Note: See TracChangeset for help on using the changeset viewer.