-rw-r--r-- | Makefile.am | 10 | ||||
-rw-r--r-- | r/connect.R | 16 | ||||
-rw-r--r-- | src/controller/exp004mouse.c | 51 | ||||
-rw-r--r-- | src/controller/exp004processhits.c | 16 | ||||
-rw-r--r-- | src/controller/exp004reshape.c | 26 | ||||
-rw-r--r-- | src/controller/keyboard.c | 2 | ||||
-rw-r--r-- | src/controller/selection_from_db.sqc | 9 | ||||
-rw-r--r-- | src/controller/selsave.sqc | 4 | ||||
-rw-r--r-- | src/controller/set_ortho.c | 11 | ||||
-rw-r--r-- | src/controller/vis_sel_set.h | 3 | ||||
-rw-r--r-- | src/model/coordinates.h | 3 | ||||
-rw-r--r-- | src/model/exp004base.sqc | 30 | ||||
-rw-r--r-- | src/model/exp004state.h | 30 | ||||
-rw-r--r-- | src/model/selection_info.h | 11 | ||||
-rw-r--r-- | src/model/selection_info_init.c | 2 | ||||
-rw-r--r-- | src/model/selection_info_init.h | 2 | ||||
-rw-r--r-- | src/model/selection_purposes.h | 22 | ||||
-rw-r--r-- | src/model/zoom_info.h | 5 | ||||
-rw-r--r-- | src/model/zoom_info_init.c | 2 | ||||
-rw-r--r-- | src/model/zoom_info_init.h | 2 | ||||
-rw-r--r-- | src/util/pick_convert.c | 7 | ||||
-rw-r--r-- | src/util/sqlinfoprint.c | 2 | ||||
-rw-r--r-- | src/util/sqlinfoprint.h | 7 | ||||
-rw-r--r-- | src/view/exp004geometry.c | 6 | ||||
-rw-r--r-- | src/view/exp004view.c | 7 |
25 files changed, 140 insertions, 146 deletions
diff --git a/src/model/selection_purposes.h b/src/model/selection_purposes.h index 12d6ec7..6c2e651 100644 --- a/src/model/selection_purposes.h +++ b/src/model/selection_purposes.h | |||
@@ -1,17 +1,17 @@ | |||
1 | #ifndef SELECTION_PURPOSES_H | 1 | #ifndef SELECTION_PURPOSES_H |
2 | #define SELECTION_PURPOSES_H | 2 | #define SELECTION_PURPOSES_H |
3 | 3 | ||
4 | typedef enum | 4 | typedef enum |
5 | { | 5 | { |
6 | /* | 6 | /* |
7 | * The selection will define a new set. | 7 | * The selection will define a new set. |
8 | */ | 8 | */ |
9 | SET, | 9 | SET, |
10 | 10 | ||
11 | /* | 11 | /* |
12 | * The selection will define a zoom region. | 12 | * The selection will define a zoom region. |
13 | */ | 13 | */ |
14 | ZOOM | 14 | ZOOM |
15 | } SELECTION_PURPOSES; | 15 | } SELECTION_PURPOSES; |
16 | 16 | ||
17 | #endif // SELECTION_PURPOSES_H | 17 | #endif // SELECTION_PURPOSES_H |