etherlab/ConfigEditor.py
changeset 2405 af050469fc5c
parent 2395 d47666f33923
child 2406 ffd091b51cd0
equal deleted inserted replaced
2404:87eb184414bd 2405:af050469fc5c
     7 #                          RTES Lab : CRKim, JBLee, youcu
     7 #                          RTES Lab : CRKim, JBLee, youcu
     8 #                          Higen Motor : Donggu Kang
     8 #                          Higen Motor : Donggu Kang
     9 #
     9 #
    10 # See COPYING file for copyrights details.
    10 # See COPYING file for copyrights details.
    11 
    11 
       
    12 from __future__ import absolute_import
    12 import os
    13 import os
    13 import re
    14 import re
    14 from types import TupleType
    15 from types import TupleType
    15 
    16 
    16 import wx
    17 import wx
    24 from editors.ConfTreeNodeEditor import ConfTreeNodeEditor, SCROLLBAR_UNIT
    25 from editors.ConfTreeNodeEditor import ConfTreeNodeEditor, SCROLLBAR_UNIT
    25 from util.BitmapLibrary import GetBitmap
    26 from util.BitmapLibrary import GetBitmap
    26 from util.TranslationCatalogs import NoTranslate
    27 from util.TranslationCatalogs import NoTranslate
    27 
    28 
    28 # -----------------------------------------------------------------------
    29 # -----------------------------------------------------------------------
    29 from EtherCATManagementEditor import EtherCATManagementTreebook, MasterStatePanelClass
    30 from etherlab.EtherCATManagementEditor import EtherCATManagementTreebook, MasterStatePanelClass
    30 # -----------------------------------------------------------------------
    31 # -----------------------------------------------------------------------
    31 
    32 
    32 [ETHERCAT_VENDOR, ETHERCAT_GROUP, ETHERCAT_DEVICE] = range(3)
    33 [ETHERCAT_VENDOR, ETHERCAT_GROUP, ETHERCAT_DEVICE] = range(3)
    33 
    34 
    34 
    35