blob: e610c527b5b44a6b5e89efba51d59781f14c644b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import enum
class KCViewLoadProgress(enum.IntEnum):
LoadProgressNotStarted = 0
LoadProgressLoadingCaches = 1
LoadProgressLoadingImages = 2
LoadProgressFinished = 3
class KCViewState(enum.IntEnum):
Unloaded = 0
Loaded = 1
LoadedWithImages = 2
|