2012-03-16 12:28:42 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
openslides.projector.signals
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Defines Signals for the projector.
|
|
|
|
|
|
|
|
:copyright: 2011 by the OpenSlides team, see AUTHORS.
|
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from django.dispatch import Signal
|
|
|
|
|
2012-04-16 16:35:30 +02:00
|
|
|
projector_overlays = Signal(providing_args=['register', 'call'])
|
2012-04-14 20:10:49 +02:00
|
|
|
|
|
|
|
projector_control_box = Signal()
|