-rw-r--r-- | src/controller/clear_selection.sqc | 9 | ||||
-rw-r--r-- | src/controller/exp004processhits.c | 6 | ||||
-rw-r--r-- | src/controller/keyboard.c | 10 | ||||
-rw-r--r-- | src/controller/selection_from_db.sqc | 6 | ||||
-rw-r--r-- | src/model/density_legend_geometry.c | 20 | ||||
-rw-r--r-- | src/model/exp004state.h | 7 | ||||
-rw-r--r-- | src/model/protein_geometry.c | 2 | ||||
-rw-r--r-- | src/view/exp004geometry.c | 26 | ||||
-rw-r--r-- | src/view/exp004init.c | 3 |
9 files changed, 59 insertions, 30 deletions
diff --git a/src/model/exp004state.h b/src/model/exp004state.h index 5a9761a..6473028 100644 --- a/src/model/exp004state.h +++ b/src/model/exp004state.h | |||
@@ -24,7 +24,7 @@ | |||
24 | #define SELECT_COLOR_A 0.75 | 24 | #define SELECT_COLOR_A 0.75 |
25 | 25 | ||
26 | typedef enum | 26 | typedef enum |
27 | { PROTEIN_GEOMETRY, DENSITY_LEGEND_GEOMETRY } LISTS; | 27 | { PROTEIN_GEOMETRY, DENSITY_LEGEND_GEOMETRY, MAP_GEOMETRY } LISTS; |
28 | #define NUM_LISTS 2 | 28 | #define NUM_LISTS 2 |
29 | 29 | ||
30 | /* | 30 | /* |
@@ -102,6 +102,11 @@ typedef struct | |||
102 | 102 | ||
103 | ZOOM_INFO zoom; | 103 | ZOOM_INFO zoom; |
104 | 104 | ||
105 | /* | ||
106 | * Display a legend on the map. | ||
107 | */ | ||
108 | bool legend; | ||
109 | |||
105 | } EXP004STATE; | 110 | } EXP004STATE; |
106 | 111 | ||
107 | #endif // EXP004STATE_H | 112 | #endif // EXP004STATE_H |