Engauge Digitizer  2
 All Classes Files Functions Variables Enumerations Enumerator Friends Pages
ZoomFactorInitial.h
1 #ifndef ZOOM_FACTOR_INITIAL_H
2 #define ZOOM_FACTOR_INITIAL_H
3 
4 enum ZoomFactorInitial {
5  ZOOM_INITIAL_16_TO_1,
6  ZOOM_INITIAL_8_TO_1,
7  ZOOM_INITIAL_4_TO_1,
8  ZOOM_INITIAL_2_TO_1,
9  ZOOM_INITIAL_1_TO_1,
10  ZOOM_INITIAL_1_TO_2,
11  ZOOM_INITIAL_1_TO_4,
12  ZOOM_INITIAL_1_TO_8,
13  ZOOM_INITIAL_1_TO_16,
14  ZOOM_INITIAL_FILL,
15  ZOOM_INITIAL_PREVIOUS
16 };
17 
18 // ZOOM_INITIAL_PREVIOUS is default according to the principle of least surprises for the user interface.
19 const ZoomFactorInitial DEFAULT_ZOOM_FACTOR_INITIAL = ZOOM_INITIAL_PREVIOUS;
20 
21 #endif // ZOOM_FACTOR_INITIAL_H