Changeset 951a2f5 in sasview


Ignore:
Timestamp:
Sep 28, 2011 2:50:19 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:
817991b
Parents:
079072e
Message:

small fix for the key copy to clipboard

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fittingview/src/sans/perspectives/fitting/basepage.py

    rc572e5e r951a2f5  
    153153        ## dictionary of saved state 
    154154        self.saved_states = {}  
     155        # clipbord str state 
     156        self.clipboard_str_state = None 
    155157        ## Create context menu for page 
    156158        self.popUpMenu = wx.Menu() 
     
    675677         
    676678        # messages depending on the flag 
    677         self._copy_info(None) 
     679        #self._copy_info(None) 
    678680         
    679681    def on_paste(self, event): 
     
    28162818        event.Skip() 
    28172819         
    2818              
    2819     def get_copy(self):  
     2820    def get_copy(self): 
     2821        """ 
     2822        Get copy params to clipboard 
     2823        """ 
     2824        content = self.get_copy_params()  
     2825        flag = self.set_clipboard(content) 
     2826        self._copy_info(flag)  
     2827        return flag  
     2828             
     2829    def get_copy_params(self):  
    28202830        """ 
    28212831        Get the string copies of the param names and values in the tap 
     
    28442854                                           self.orientation_params) 
    28452855            content += string 
    2846  
     2856            return content 
     2857        else: 
     2858            return False 
     2859     
     2860    def set_clipboard(self, content=None):  
     2861        """ 
     2862        Put the string to the clipboard 
     2863        """    
     2864        if not content: 
     2865            return False 
    28472866        if wx.TheClipboard.Open(): 
    28482867            wx.TheClipboard.SetData(wx.TextDataObject(str(content))) 
     
    28512870            text = data.GetText() 
    28522871            wx.TheClipboard.Close() 
    2853      
     2872            return True 
    28542873        return None 
    28552874     
     
    28792898             
    28802899        return content 
    2881      
    2882     def get_paste(self):  
     2900    
     2901    def get_clipboard(self):    
     2902        """ 
     2903        Get strings in the clipboard 
     2904        """ 
     2905        text = ""   
     2906        # Get text from the clip board         
     2907        if wx.TheClipboard.Open(): 
     2908           if wx.TheClipboard.IsSupported(wx.DataFormat(wx.DF_TEXT)): 
     2909               data = wx.TextDataObject() 
     2910               # get wx dataobject 
     2911               success = wx.TheClipboard.GetData(data) 
     2912               # get text 
     2913               text = data.GetText() 
     2914           # close clipboard 
     2915           wx.TheClipboard.Close() 
     2916            
     2917        return text 
     2918     
     2919    def get_paste(self): 
     2920        """ 
     2921        Paste params from the clipboard 
     2922        """ 
     2923        text = self.get_clipboard() 
     2924         
     2925        return self.get_paste_from_clipboard(text) 
     2926         
     2927    def get_paste_from_clipboard(self, text=''):  
    28832928        """ 
    28842929        Get the string copies of the param names and values in the tap 
    28852930        """   
    2886         context = {} 
    2887         text = "" 
    2888          
    2889         # Get text from the clip board         
    2890         if wx.TheClipboard.Open(): 
    2891             if wx.TheClipboard.IsSupported(wx.DataFormat(wx.DF_TEXT)): 
    2892                 data = wx.TextDataObject() 
    2893                 # get wx dataobject 
    2894                 success = wx.TheClipboard.GetData(data) 
    2895                 # get text 
    2896                 text = data.GetText() 
    2897             # close clipboard 
    2898             wx.TheClipboard.Close() 
    2899              
     2931        context = {}     
    29002932        # put the text into dictionary     
    29012933        lines = text.split(':') 
Note: See TracChangeset for help on using the changeset viewer.