1 /* the widget classes and definitions */
2
3 IriSP.Widget = function(Popcorn) {
4 this.Popcorn = Popcorn;
5 };
6
7 IriSP.Widget.prototype.draw = function() {
8 /* implemented by "sub-classes" */
9 };