controls/DebugVariablePanel/DebugVariablePanel.py
changeset 1853 47a3f39bead0
parent 1850 614396cbffbf
child 1859 1df77c809257
equal deleted inserted replaced
1852:70c1cc354a8f 1853:47a3f39bead0
    20 #
    20 #
    21 # You should have received a copy of the GNU General Public License
    21 # You should have received a copy of the GNU General Public License
    22 # along with this program; if not, write to the Free Software
    22 # along with this program; if not, write to the Free Software
    23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    24 
    24 
       
    25 
       
    26 from __future__ import absolute_import
    25 from types import TupleType
    27 from types import TupleType
    26 import numpy
    28 import numpy
    27 
    29 
    28 import wx
    30 import wx
    29 import wx.lib.buttons
    31 import wx.lib.buttons
    35 
    37 
    36 
    38 
    37 from editors.DebugViewer import DebugViewer
    39 from editors.DebugViewer import DebugViewer
    38 from util.BitmapLibrary import GetBitmap
    40 from util.BitmapLibrary import GetBitmap
    39 
    41 
    40 from DebugVariableItem import DebugVariableItem
    42 from controls.DebugVariablePanel.DebugVariableItem import DebugVariableItem
    41 from DebugVariableTextViewer import DebugVariableTextViewer
    43 from controls.DebugVariablePanel.DebugVariableTextViewer import DebugVariableTextViewer
    42 from DebugVariableGraphicViewer import *
    44 from controls.DebugVariablePanel.DebugVariableGraphicViewer import *
    43 
    45 
    44 
    46 
    45 MILLISECOND = 1000000        # Number of nanosecond in a millisecond
    47 MILLISECOND = 1000000        # Number of nanosecond in a millisecond
    46 SECOND = 1000 * MILLISECOND  # Number of nanosecond in a second
    48 SECOND = 1000 * MILLISECOND  # Number of nanosecond in a second
    47 MINUTE = 60 * SECOND         # Number of nanosecond in a minute
    49 MINUTE = 60 * SECOND         # Number of nanosecond in a minute