controls/DebugVariablePanel.py
changeset 715 6a3792a6bf7b
parent 714 131ea7f237b9
child 756 7eb469275611
equal deleted inserted replaced
714:131ea7f237b9 715:6a3792a6bf7b
    20 #
    20 #
    21 #You should have received a copy of the GNU General Public
    21 #You should have received a copy of the GNU General Public
    22 #License along with this library; if not, write to the Free Software
    22 #License along with this library; if not, write to the Free Software
    23 #Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    23 #Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    24 
    24 
       
    25 from types import TupleType
       
    26 
    25 import wx
    27 import wx
    26 import wx.lib.buttons
    28 import wx.lib.buttons
    27 
    29 
    28 from graphics import DebugDataConsumer, DebugViewer
    30 from graphics import DebugDataConsumer, DebugViewer
    29 from controls import CustomGrid, CustomTable
    31 from controls import CustomGrid, CustomTable
       
    32 from dialogs import ForceVariableDialog
    30 from utils.BitmapLibrary import GetBitmap
    33 from utils.BitmapLibrary import GetBitmap
       
    34 
       
    35 def AppendMenu(parent, help, id, kind, text):
       
    36     parent.Append(help=help, id=id, kind=kind, text=text)
    31 
    37 
    32 def GetDebugVariablesTableColnames():
    38 def GetDebugVariablesTableColnames():
    33     _ = lambda x : x
    39     _ = lambda x : x
    34     return [_("Variable"), _("Value")]
    40     return [_("Variable"), _("Value")]
    35 
    41