Laurent@814: #!/usr/bin/env python
Laurent@814: # -*- coding: utf-8 -*-
Laurent@814: 
andrej@1571: # This file is part of Beremiz, a Integrated Development Environment for
andrej@1571: # programming IEC 61131-3 automates supporting plcopen standard and CanFestival.
Laurent@814: #
andrej@1571: # Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD
Laurent@814: #
andrej@1571: # See COPYING file for copyrights details.
Laurent@814: #
andrej@1571: # This program is free software; you can redistribute it and/or
andrej@1571: # modify it under the terms of the GNU General Public License
andrej@1571: # as published by the Free Software Foundation; either version 2
andrej@1571: # of the License, or (at your option) any later version.
Laurent@814: #
andrej@1571: # This program is distributed in the hope that it will be useful,
andrej@1571: # but WITHOUT ANY WARRANTY; without even the implied warranty of
andrej@1571: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
andrej@1571: # GNU General Public License for more details.
Laurent@814: #
andrej@1571: # You should have received a copy of the GNU General Public License
andrej@1571: # along with this program; if not, write to the Free Software
andrej@1571: # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
andrej@1571: 
Laurent@814: 
Laurent@814: # Package initialization
Laurent@814: 
kinsamanka@3750: 
andrej@1853: 
andrej@2347: from dialogs.CommentEditDialog import CommentEditDialog
andrej@1853: from dialogs.ConnectionDialog import ConnectionDialog
andrej@1853: from dialogs.ActionBlockDialog import ActionBlockDialog
andrej@1853: from dialogs.FBDBlockDialog import FBDBlockDialog
andrej@1853: from dialogs.FBDVariableDialog import FBDVariableDialog
andrej@1853: from dialogs.LDElementDialog import LDElementDialog
andrej@1853: from dialogs.LDPowerRailDialog import LDPowerRailDialog
andrej@1853: from dialogs.SFCStepDialog import SFCStepDialog
andrej@1853: from dialogs.SFCStepNameDialog import SFCStepNameDialog
andrej@1853: from dialogs.SFCTransitionDialog import SFCTransitionDialog
andrej@1853: from dialogs.SFCDivergenceDialog import SFCDivergenceDialog
andrej@1853: from dialogs.ForceVariableDialog import ForceVariableDialog
andrej@1853: from dialogs.ArrayTypeDialog import ArrayTypeDialog
andrej@1853: from dialogs.DurationEditorDialog import DurationEditorDialog
andrej@1853: from dialogs.SearchInProjectDialog import SearchInProjectDialog
andrej@1853: from dialogs.BrowseLocationsDialog import BrowseLocationsDialog
andrej@1853: from dialogs.ProjectDialog import ProjectDialog
andrej@1853: from dialogs.PouDialog import PouDialog
andrej@1853: from dialogs.PouTransitionDialog import PouTransitionDialog
andrej@1853: from dialogs.PouActionDialog import PouActionDialog
andrej@1853: from dialogs.FindInPouDialog import FindInPouDialog
andrej@1853: from dialogs.BrowseValuesLibraryDialog import BrowseValuesLibraryDialog
Edouard@2330: from dialogs.UriEditor import UriEditor
Edouard@2337: from dialogs.IDManager import IDManager
edouard@3573: from dialogs.MessageBoxOnce import MessageBoxOnce