1 |
# Copyright (c) 2001, 2002 by Intevation GmbH |
2 |
# Authors: |
3 |
# Bernhard Herzog <[email protected]> |
4 |
# |
5 |
# This program is free software under the GPL (>=v2) |
6 |
# Read the file COPYING coming with Thuban for details. |
7 |
|
8 |
|
9 |
""" |
10 |
Define the message types used in Thuban's GUI. The messages types are |
11 |
simply strings. The message system itself is implemented in |
12 |
Thuban.Lib.connector. |
13 |
""" |
14 |
|
15 |
__version__ = "$Revision$" |
16 |
|
17 |
# Application object |
18 |
SESSION_CHANGED = "SESSION_CHANGED" |
19 |
|
20 |
# events for the interactor |
21 |
SELECTED_MAP = "SELECTED_MAP" |
22 |
SELECTED_LAYER = "SELECTED_LAYER" |
23 |
SELECTED_TABLE = "SELECTED_TABLE" |
24 |
SELECTED_SHAPE = "SELECTED_SHAPE" |
25 |
|
26 |
# events for the view |
27 |
VIEW_POSITION = "VIEW_POSITION" |