editors/SFCViewer.py
changeset 1853 47a3f39bead0
parent 1847 6198190bc121
child 1865 0bd5b3099144
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 *
    27 from types import *
    26 
    28 
    27 import wx
    29 import wx
    28 
    30 
    29 from Viewer import *
    31 from editors.Viewer import *
    30 from graphics.SFC_Objects import *
    32 from graphics.SFC_Objects import *
    31 from graphics.GraphicCommons import SELECTION_DIVERGENCE, \
    33 from graphics.GraphicCommons import SELECTION_DIVERGENCE, \
    32     SELECTION_CONVERGENCE, SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE, EAST, NORTH, WEST, SOUTH
    34     SELECTION_CONVERGENCE, SIMULTANEOUS_DIVERGENCE, SIMULTANEOUS_CONVERGENCE, EAST, NORTH, WEST, SOUTH
    33 
    35 
    34 SFC_Objects = (SFC_Step, SFC_ActionBlock, SFC_Transition, SFC_Divergence, SFC_Jump)
    36 SFC_Objects = (SFC_Step, SFC_ActionBlock, SFC_Transition, SFC_Divergence, SFC_Jump)