author | Laurent Bessard |
Sat, 07 Jul 2012 20:48:23 +0200 | |
changeset 720 | 2a9d4eafaddd |
parent 711 | 5f6a743dcde5 |
permissions | -rw-r--r-- |
577
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
1 |
#!/usr/bin/env python |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
2 |
# -*- coding: utf-8 -*- |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
3 |
|
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
4 |
#This file is part of PLCOpenEditor, a library implementing an IEC 61131-3 editor |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
5 |
#based on the plcopen standard. |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
6 |
# |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
7 |
#Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
8 |
# |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
9 |
#See COPYING file for copyrights details. |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
10 |
# |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
11 |
#This library is free software; you can redistribute it and/or |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
12 |
#modify it under the terms of the GNU General Public |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
13 |
#License as published by the Free Software Foundation; either |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
14 |
#version 2.1 of the License, or (at your option) any later version. |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
15 |
# |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
16 |
#This library is distributed in the hope that it will be useful, |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
17 |
#but WITHOUT ANY WARRANTY; without even the implied warranty of |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
18 |
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
19 |
#General Public License for more details. |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
20 |
# |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
21 |
#You should have received a copy of the GNU General Public |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
22 |
#License along with this library; if not, write to the Free Software |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
23 |
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
24 |
|
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
25 |
# Package initialization |
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
26 |
|
9dbb79722fbc
Adding support for giving keyboard focus to the first control of every dialogs
laurent
parents:
diff
changeset
|
27 |
from CustomEditableListBox import CustomEditableListBox |
586
9aa96a36cf33
Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents:
577
diff
changeset
|
28 |
from CustomGrid import CustomGrid |
604
5b42b4401e6b
Adding support for unifying grid table control elements
laurent
parents:
586
diff
changeset
|
29 |
from CustomTable import CustomTable |
700
cf3db1775105
Separating ProjectDialog from PLCOpenEditor for integration of panel into Beremiz project window
Laurent Bessard
parents:
684
diff
changeset
|
30 |
from CustomTree import CustomTree |
711
5f6a743dcde5
Adding support for exporting graph value to csv formatted string to clipboard
Laurent Bessard
parents:
700
diff
changeset
|
31 |
from DebugVariablePanel import DebugVariablePanel |
700
cf3db1775105
Separating ProjectDialog from PLCOpenEditor for integration of panel into Beremiz project window
Laurent Bessard
parents:
684
diff
changeset
|
32 |
from DurationCellEditor import DurationCellEditor |
586
9aa96a36cf33
Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents:
577
diff
changeset
|
33 |
from EditorPanel import EditorPanel |
700
cf3db1775105
Separating ProjectDialog from PLCOpenEditor for integration of panel into Beremiz project window
Laurent Bessard
parents:
684
diff
changeset
|
34 |
from LibraryPanel import LibraryPanel |
586
9aa96a36cf33
Moving variable panel from bottom notebook panel to POU editor panel
laurent
parents:
577
diff
changeset
|
35 |
from LocationCellEditor import LocationCellEditor |
700
cf3db1775105
Separating ProjectDialog from PLCOpenEditor for integration of panel into Beremiz project window
Laurent Bessard
parents:
684
diff
changeset
|
36 |
from PouInstanceVariablesPanel import PouInstanceVariablesPanel |
cf3db1775105
Separating ProjectDialog from PLCOpenEditor for integration of panel into Beremiz project window
Laurent Bessard
parents:
684
diff
changeset
|
37 |
from ProjectPropertiesPanel import ProjectPropertiesPanel |
604
5b42b4401e6b
Adding support for unifying grid table control elements
laurent
parents:
586
diff
changeset
|
38 |
from VariablePanel import VariablePanel |