eric6/Snapshot/SnapshotModes.py

changeset 8265
0090cfa83159
parent 7923
91e843545d9a
equal deleted inserted replaced
8264:f95dde35d0ab 8265:0090cfa83159
5 5
6 """ 6 """
7 Module implementing the snapshot mode enumeration. 7 Module implementing the snapshot mode enumeration.
8 """ 8 """
9 9
10 from enum import Enum 10 import enum
11 11
12 12
13 class SnapshotModes(Enum): 13 class SnapshotModes(enum.Enum):
14 """ 14 """
15 Class implementing the snapshot modes. 15 Class implementing the snapshot modes.
16 """ 16 """
17 Fullscreen = 0 17 FULLSCREEN = 0
18 SelectedScreen = 1 18 SELECTEDSCREEN = 1
19 Rectangle = 2 19 RECTANGLE = 2
20 Freehand = 3 20 FREEHAND = 3
21 Ellipse = 4 21 ELLIPSE = 4
22 SelectedWindow = 5 22 SELECTEDWINDOW = 5

eric ide

mercurial