blocks add mixins behavior support
This commit is contained in:
parent
9b6084e15d
commit
eea36456f1
@ -136,7 +136,6 @@ class Blocks(EventDispatcher):
|
||||
'klass':Factory.get(n),
|
||||
'opts':d
|
||||
})
|
||||
print('mixins=', mixins)
|
||||
env['klasses'] = klasses
|
||||
ids = [ i for i in range(len(klasses))]
|
||||
ids.reverse()
|
||||
@ -144,12 +143,11 @@ class Blocks(EventDispatcher):
|
||||
code = f"""class ClassX{klass_cnt}({klasslist}):
|
||||
def __init__(self):
|
||||
for i in range(len(klasses)):
|
||||
print(klasses[i]['opts'])
|
||||
klasses[i]['klass'].__init__(self, **klasses[i]['opts'])
|
||||
|
||||
x = ClassX{klass_cnt}()
|
||||
"""
|
||||
print(code)
|
||||
# print(code)
|
||||
exec(code, env, lenv)
|
||||
w = lenv.get('x', None)
|
||||
klass_cnt += 1
|
||||
|
@ -28,17 +28,11 @@ class ModalBehavior(object):
|
||||
self.open()
|
||||
|
||||
def on_touchdown(self, o, touch):
|
||||
print('on_touchdown() called')
|
||||
if not self.collide_point(touch.x, touch.y):
|
||||
if self.auto_dismiss:
|
||||
print('on_touchdown():auto_dismiss()')
|
||||
self.dispatch('on_pre_dismiss')
|
||||
self.dismiss()
|
||||
return True
|
||||
else:
|
||||
print('on_touchdown(): not auto_dismiss')
|
||||
else:
|
||||
print('on_touchdown():inside modal')
|
||||
|
||||
def on_target(self, *args):
|
||||
self._target = None
|
||||
|
@ -1,6 +1,7 @@
|
||||
from kivyblocks.setconfig import config_set
|
||||
from kivyblocks.blocksapp import BlocksApp
|
||||
from kivyblocks.blocks import registerWidget, Blocks
|
||||
from kivyblocks.i18n import I18n
|
||||
import kivyblocks.register
|
||||
from kivyblocks.script import set_script_env
|
||||
|
||||
@ -9,4 +10,5 @@ class ScriptApp(BlocksApp):
|
||||
|
||||
if __name__ == '__main__':
|
||||
set_script_env('userid', 'testuser')
|
||||
i18n = I18n()
|
||||
ScriptApp().run()
|
||||
|
Loading…
Reference in New Issue
Block a user