[go: up one dir, main page]

File: view.py

package info (click to toggle)
cozy 1.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,140 kB
  • sloc: python: 8,014; xml: 392; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 226 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
from enum import Enum, auto


class View(Enum):
    EMPTY_STATE = auto()
    PREPARING_LIBRARY = auto()
    LIBRARY = auto()
    LIBRARY_FILTER = auto()
    LIBRARY_BOOKS = auto()
    BOOK_DETAIL = auto()
    NO_MEDIA = auto()