Changeset 59fbcff in sasview for guiframe/local_perspectives


Ignore:
Timestamp:
Mar 29, 2011 2:44:23 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
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:
6d727ae
Parents:
e0e2c44f
Message:

moving fixes from branch

File:
1 edited

Legend:

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

    r16d7079 r59fbcff  
    126126        self.Close(True) 
    127127 
    128  
    129      
    130  
     128    def _draw_model(self, event): 
     129        """ 
     130         on_close, update the model2d plot 
     131        """ 
     132        pass 
     133 
     134    def get_context_menu(self, graph=None): 
     135        """ 
     136        When the context menu of a plot is rendered, the  
     137        get_context_menu method will be called to give you a  
     138        chance to add a menu item to the context menu. 
     139        :param graph: the Graph object to which we attach the context menu 
     140         
     141        :return: a list of menu items with call-back function 
     142        """ 
     143        return [] 
     144     
     145    def set_schedule_full_draw(self, panel=None, func=None): 
     146        """ 
     147        Set_schedule for full draw 
     148        """ 
     149        # Not implemented 
     150        pass 
     151     
     152    def set_schedule(self, schedule=False): 
     153        """ 
     154        Set schedule for redraw 
     155        """ 
     156        # Not implemented 
     157        pass 
     158     
    131159class SLDplotpanel(PlotPanel): 
    132160    """ 
Note: See TracChangeset for help on using the changeset viewer.