1 |
# Copyright (c) 2003-2004 by Intevation GmbH |
# Copyright (c) 2003-2005 by Intevation GmbH |
2 |
# Authors: |
# Authors: |
3 |
# Jan-Oliver Wagner <[email protected]> (2003-2004) |
# Jan-Oliver Wagner <[email protected]> (2003-2004) |
4 |
# Martin Schulze <[email protected]> (2004) |
# Martin Schulze <[email protected]> (2004) |
44 |
from Thuban.UI.layerproperties import LayerProperties |
from Thuban.UI.layerproperties import LayerProperties |
45 |
from messages import MAP_REPLACED |
from messages import MAP_REPLACED |
46 |
|
|
|
ID_CLASS_TABLE = 40011 |
|
|
|
|
47 |
|
|
48 |
# table columns |
# table columns |
49 |
COL_VISIBLE = 0 |
COL_VISIBLE = 0 |
73 |
clazz -- the working classification that this grid should |
clazz -- the working classification that this grid should |
74 |
use for display. |
use for display. |
75 |
""" |
""" |
76 |
|
wxGrid.__init__(self, parent, -1, style = 0) |
|
wxGrid.__init__(self, parent, ID_CLASS_TABLE, style = 0) |
|
77 |
|
|
78 |
self.classifier = classifier |
self.classifier = classifier |
79 |
|
|
787 |
controlButtonBox.Add(button_moveup, 0, wxGROW|wxALL, 4) |
controlButtonBox.Add(button_moveup, 0, wxGROW|wxALL, 4) |
788 |
controlButtonBox.Add(button_movedown, 0, wxGROW|wxALL, 4) |
controlButtonBox.Add(button_movedown, 0, wxGROW|wxALL, 4) |
789 |
controlButtonBox.Add(button_edit, 0, wxGROW|wxALL, 4) |
controlButtonBox.Add(button_edit, 0, wxGROW|wxALL, 4) |
790 |
controlButtonBox.Add(60, 20, 0, wxGROW|wxALL|wxALIGN_BOTTOM, 4) |
controlButtonBox.Add( (60, 20), 0, wxGROW|wxALL|wxALIGN_BOTTOM, 4) |
791 |
controlButtonBox.Add(button_remove, 0, |
controlButtonBox.Add(button_remove, 0, |
792 |
wxGROW|wxALL|wxALIGN_BOTTOM, 4) |
wxGROW|wxALL|wxALIGN_BOTTOM, 4) |
793 |
|
|