-rw-r--r-- | src/model/selection_info.h | 41 | ||||
-rw-r--r-- | src/model/selection_info_init.c | 12 | ||||
-rw-r--r-- | src/model/selection_info_init.h | 8 | ||||
-rw-r--r-- | src/model/selection_purposes.h | 17 | ||||
-rw-r--r-- | src/model/zoom_info.h | 21 | ||||
-rw-r--r-- | src/model/zoom_info_init.c | 9 | ||||
-rw-r--r-- | src/model/zoom_info_init.h | 8 |
7 files changed, 116 insertions, 0 deletions
diff --git a/src/model/selection_purposes.h b/src/model/selection_purposes.h new file mode 100644 index 0000000..12d6ec7 --- a/dev/null +++ b/src/model/selection_purposes.h | |||
@@ -0,0 +1,17 @@ | |||
1 | #ifndef SELECTION_PURPOSES_H | ||
2 | #define SELECTION_PURPOSES_H | ||
3 | |||
4 | typedef enum | ||
5 | { | ||
6 | /* | ||
7 | * The selection will define a new set. | ||
8 | */ | ||
9 | SET, | ||
10 | |||
11 | /* | ||
12 | * The selection will define a zoom region. | ||
13 | */ | ||
14 | ZOOM | ||
15 | } SELECTION_PURPOSES; | ||
16 | |||
17 | #endif // SELECTION_PURPOSES_H | ||