factory: add missing classes

This commit is contained in:
Mathieu Virbel 2010-11-05 22:48:10 -04:00
parent 7a27aab7d7
commit 0cc55252db
1 changed files with 3 additions and 0 deletions

View File

@ -27,6 +27,7 @@ Factory.register('TouchShape', module='kivy.input.shape')
Factory.register('TouchShapeRect', module='kivy.input.shape')
Factory.register('Widget', module='kivy.uix.widget')
Factory.register('Button', module='kivy.uix.button')
Factory.register('Label', module='kivy.uix.label')
Factory.register('EventDispatcher', module='kivy.c_ext.event')
Factory.register('Canvas', module='kivy.c_ext.graphics')
Factory.register('GraphicInstruction', module='kivy.c_ext.graphics')
@ -52,3 +53,5 @@ Factory.register('PathStart', module='kivy.c_ext.graphics')
Factory.register('PathLineTo', module='kivy.c_ext.graphics')
Factory.register('PathClose', module='kivy.c_ext.graphics')
Factory.register('PathEnd', module='kivy.c_ext.graphics')
Factory.register('PathStroke', module='kivy.c_ext.graphics')
Factory.register('PathFill', module='kivy.c_ext.graphics')