__init__.py
author laurent
Sun, 08 Jan 2012 19:16:58 +0100
changeset 616 8a60ffcfd70b
parent 58 39cd981ff242
permissions -rw-r--r--
Adding support for drag'n dropping variable from global defined in configurations and resources to POU variable panel or body editor for declaring external variables
Adding support for drag'n dropping located variables from topology panel to configurations and resources variable panel for declaring global located variables
47
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
     1
#!/usr/bin/env python
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
     2
# -*- coding: utf-8 -*-
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
     3
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
     4
#This file is part of PLCOpenEditor, a library implementing an IEC 61131-3 editor
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
     5
#based on the plcopen standard. 
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
     6
#
58
39cd981ff242 Changing file headers
lbessard
parents: 47
diff changeset
     7
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD
47
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
     8
#
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
     9
#See COPYING file for copyrights details.
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    10
#
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    11
#This library is free software; you can redistribute it and/or
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    12
#modify it under the terms of the GNU General Public
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    13
#License as published by the Free Software Foundation; either
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    14
#version 2.1 of the License, or (at your option) any later version.
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    15
#
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    16
#This library is distributed in the hope that it will be useful,
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    17
#but WITHOUT ANY WARRANTY; without even the implied warranty of
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    18
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
58
39cd981ff242 Changing file headers
lbessard
parents: 47
diff changeset
    19
#General Public License for more details.
47
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    20
#
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    21
#You should have received a copy of the GNU General Public
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    22
#License along with this library; if not, write to the Free Software
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    23
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    24
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    25
# Package initialisation
2b2f8d88e6d3 Interface changed to show pou interface at the bottom of the window
lbessard
parents:
diff changeset
    26