controls/DebugVariablePanel/DebugVariableTextViewer.py
changeset 1736 7e61baa047f0
parent 1730 64d8f52bc8c8
child 1745 f9d32913bad4
equal deleted inserted replaced
1735:c02818d7e29f 1736:7e61baa047f0
    32 
    32 
    33 #-------------------------------------------------------------------------------
    33 #-------------------------------------------------------------------------------
    34 #                     Debug Variable Text Viewer Drop Target
    34 #                     Debug Variable Text Viewer Drop Target
    35 #-------------------------------------------------------------------------------
    35 #-------------------------------------------------------------------------------
    36 
    36 
    37 """
       
    38 Class that implements a custom drop target class for Debug Variable Text Viewer
       
    39 """
       
    40 
    37 
    41 class DebugVariableTextDropTarget(wx.TextDropTarget):
    38 class DebugVariableTextDropTarget(wx.TextDropTarget):
       
    39     """
       
    40     Class that implements a custom drop target class for Debug Variable Text Viewer
       
    41     """
    42 
    42 
    43     def __init__(self, parent, window):
    43     def __init__(self, parent, window):
    44         """
    44         """
    45         Constructor
    45         Constructor
    46         @param parent: Reference to Debug Variable Text Viewer
    46         @param parent: Reference to Debug Variable Text Viewer
   142 
   142 
   143 #-------------------------------------------------------------------------------
   143 #-------------------------------------------------------------------------------
   144 #                      Debug Variable Text Viewer Class
   144 #                      Debug Variable Text Viewer Class
   145 #-------------------------------------------------------------------------------
   145 #-------------------------------------------------------------------------------
   146 
   146 
   147 """
       
   148 Class that implements a Viewer that display variable values as a text
       
   149 """
       
   150 
       
   151 class DebugVariableTextViewer(DebugVariableViewer, wx.Panel):
   147 class DebugVariableTextViewer(DebugVariableViewer, wx.Panel):
       
   148     """
       
   149     Class that implements a Viewer that display variable values as a text
       
   150     """
   152 
   151 
   153     def __init__(self, parent, window, items=[]):
   152     def __init__(self, parent, window, items=[]):
   154         """
   153         """
   155         Constructor
   154         Constructor
   156         @param parent: Parent wx.Window of DebugVariableText
   155         @param parent: Parent wx.Window of DebugVariableText