X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/f5129e7c47fa5fcf0a20f04249b90afcbc54cb9c..b39c329ecd604d815de1f772ed9c2e9598db4c46:/src/annoy/places.py?ds=inline

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]
+        ])