#****************************************************************************** # # TASTE Msc Diagram Editor # http://taste.tuxfamily.org/ # # This file is part of TASTE Msc Editor. # # TASTE Msc Diagram Editor is free software: you can redistribute it and/or # modify it under the terms of the GNU General Public License as published # by the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # TASTE Msc Diagram Editor is distributed in the hope that it will be # useful,(but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with TASTE Msc Diagram Editor. If not, see # . # # Author: Angel Esquinas # # Copyright (c) 2012 European Space Agency # #****************************************************************************** u""" mscgraphics package contains graphical classes to draw msc elements in canvas \ scenes. """ from mscGraphItem import MscGraphItem from mscLabelable import MscLabelable from mscgraphtextitem import MscGraphTextItem from mscGraphicsView import MscGraphicsView from mscgraphcomment import MscGraphComment from basicmscgraph import * from coretographics import coreToGraphics from mscgraphics import basicmscgraph __all__ = basicmscgraph.__all__ + ['MscGraphItem', 'MscGraphicsView', 'MscGraphTextItem', 'MscGraphComment', 'coreToGraphics']