cpython/Tools/pynche/Switchboard.py

38 lines
1.2 KiB
Python
Raw Normal View History

1998-10-02 13:20:14 -03:00
"""Switchboard class.
This class is used to coordinate updates among all Viewers. Every Viewer must
conform to the following interface:
- it must include a method called update_yourself() which takes three
arguments; the red, green, and blue values of the selected color.
- When a Viewer selects a color and wishes to update all other Views, it
should call update_views() on the Switchboard object. Not that the
Viewer typically does *not* update itself before calling update_views(),
since this would cause it to get updated twice.
"""
1998-09-28 12:59:21 -03:00
class Switchboard:
1998-09-29 17:04:19 -03:00
def __init__(self, colordb):
1998-09-28 12:59:21 -03:00
self.__views = []
1998-09-29 17:04:19 -03:00
self.__colordb = colordb
1998-10-01 13:46:43 -03:00
self.__red = 0
self.__green = 0
self.__blue = 0
1998-09-28 12:59:21 -03:00
def add_view(self, view):
self.__views.append(view)
1998-09-28 20:41:12 -03:00
def update_views(self, red, green, blue):
1998-10-01 13:46:43 -03:00
self.__red = red
self.__green = green
self.__blue = blue
1998-09-28 12:59:21 -03:00
for v in self.__views:
1998-09-28 20:41:12 -03:00
v.update_yourself(red, green, blue)
1998-09-29 17:04:19 -03:00
1998-10-01 13:46:43 -03:00
def update_views_current(self):
self.update_views(self.__red, self.__green, self.__blue)
1998-09-29 17:04:19 -03:00
def colordb(self):
return self.__colordb