X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/69bc720ec22682c6efb1a4eca631947241804428..13042ddcb4ad5af860cff616d2a69d4f05dac5d8:/src/annoy/places.py diff --git a/src/annoy/places.py b/src/annoy/places.py index 93b22e44e..7663a6105 100644 --- a/src/annoy/places.py +++ b/src/annoy/places.py @@ -5,7 +5,11 @@ PLACE_DEFINITIONS = [ ('book-page', _('Book page'), False), ('book-text-intermission', _('Book text intermission'), False), ('book-fragment-list', _('Next to list of book fragments.'), False), - ('blackout', _('Blackout'), True), + ('blackout', _('Blackout'), True, ( + ('full', _('Full screen')), +# ('centre', _('Centre of screen')), + ('upper', _('Upper half of screen')), + )), ] PLACE_CHOICES = [p[:2] for p in PLACE_DEFINITIONS] @@ -14,3 +18,12 @@ PLACES = { p[0]: p[2] for p in PLACE_DEFINITIONS } + + +STYLES = [] +for p in PLACE_DEFINITIONS: + if len(p) > 3: + STYLES.extend([ + (f'{p[0]}_{s[0]}', s[1]) + for s in p[3] + ])