mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Kivy/Android
- refactoring
This commit is contained in:
parent
a961bca6ff
commit
2c48745781
4 changed files with 215 additions and 389 deletions
|
@ -29,41 +29,43 @@ from kivy.properties import StringProperty
|
||||||
# as 'command'. It will be called whenever the value changes.
|
# as 'command'. It will be called whenever the value changes.
|
||||||
|
|
||||||
class LObjWrap(EventDispatcher):
|
class LObjWrap(EventDispatcher):
|
||||||
def __init__(self,obj,ref,command=None):
|
def __init__(self,obj,ref=None,command=None):
|
||||||
self.obj = obj
|
self.obj = obj
|
||||||
self.ref = ref
|
self.ref = ref
|
||||||
self.value = getattr(self.obj,self.ref)
|
if self.ref is not None:
|
||||||
# logging.info("LObjWrap: setup for %s" % (self.ref))
|
self.value = getattr(self.obj,self.ref)
|
||||||
self.bind(value=self.on_value)
|
# logging.info("LObjWrap: setup for %s" % (self.ref))
|
||||||
|
self.bind(value=self.on_value)
|
||||||
if command is not None:
|
if command is not None:
|
||||||
self.bind(value=command)
|
self.bind(value=command)
|
||||||
|
|
||||||
def on_value(self,inst,val):
|
def on_value(self,inst,val):
|
||||||
logging.info("LObjWrap: %s = %s" % (self.ref,val))
|
logging.info("LObjWrap: %s = %s" % (self.ref,val))
|
||||||
setattr(self.obj,self.ref,val)
|
if self.ref is not None:
|
||||||
|
setattr(self.obj,self.ref,val)
|
||||||
|
|
||||||
class LBoolWrap(LObjWrap):
|
class LBoolWrap(LObjWrap):
|
||||||
value = BooleanProperty(False)
|
value = BooleanProperty(False)
|
||||||
|
|
||||||
def __init__(self,obj,ref,command=None):
|
def __init__(self,obj,ref=None,command=None):
|
||||||
super(LBoolWrap,self).__init__(obj,ref,command)
|
super(LBoolWrap,self).__init__(obj,ref,command)
|
||||||
|
|
||||||
class LNumWrap(LObjWrap):
|
class LNumWrap(LObjWrap):
|
||||||
value = NumericProperty(0)
|
value = NumericProperty(0)
|
||||||
|
|
||||||
def __init__(self,obj,ref,command=None):
|
def __init__(self,obj,ref=None,command=None):
|
||||||
super(LNumWrap,self).__init__(obj,ref,command)
|
super(LNumWrap,self).__init__(obj,ref,command)
|
||||||
|
|
||||||
class LStringWrap(LObjWrap):
|
class LStringWrap(LObjWrap):
|
||||||
value = StringProperty('')
|
value = StringProperty('')
|
||||||
|
|
||||||
def __init__(self,obj,ref,command=None):
|
def __init__(self,obj,ref=None,command=None):
|
||||||
super(LStringWrap,self).__init__(obj,ref,command)
|
super(LStringWrap,self).__init__(obj,ref,command)
|
||||||
|
|
||||||
class LListWrap(LObjWrap):
|
class LListWrap(LObjWrap):
|
||||||
value = ListProperty([])
|
value = ListProperty([])
|
||||||
|
|
||||||
def __init__(self,obj,ref,command=None):
|
def __init__(self,obj,ref=None,command=None):
|
||||||
super(LListWrap,self).__init__(obj,ref,command)
|
super(LListWrap,self).__init__(obj,ref,command)
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
|
|
@ -129,7 +129,7 @@ class _OneImageCard(_HideableCard):
|
||||||
|
|
||||||
def updateCardBackground(self, image):
|
def updateCardBackground(self, image):
|
||||||
print('card: updateCardBackground = %s' % image.source)
|
print('card: updateCardBackground = %s' % image.source)
|
||||||
self._back_image = LImage(texture=image.texture)
|
self._back_image.texture = image.texture
|
||||||
if not self.face_up:
|
if not self.face_up:
|
||||||
self._setImage(image=self._back_image)
|
self._setImage(image=self._back_image)
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -61,10 +61,6 @@ class MyButtonBase(ButtonBehavior, KivyImage, LBase):
|
||||||
self.source = self.src
|
self.source = self.src
|
||||||
self.allow_stretch = True
|
self.allow_stretch = True
|
||||||
|
|
||||||
def set_shown(self, instance, value):
|
|
||||||
# print ('** set shown (',self.name ,') called', value)
|
|
||||||
self.shown = value
|
|
||||||
|
|
||||||
def set_enabled(self, instance, value):
|
def set_enabled(self, instance, value):
|
||||||
# print ('** set enabled (',self.name ,') called', value)
|
# print ('** set enabled (',self.name ,') called', value)
|
||||||
self.enabled = value
|
self.enabled = value
|
||||||
|
@ -297,17 +293,6 @@ class PysolToolbarTk(BoxLayout):
|
||||||
# print('button name: ', button.name)
|
# print('button name: ', button.name)
|
||||||
self.buttond[button.name] = button
|
self.buttond[button.name] = button
|
||||||
|
|
||||||
# check buttons if configurated or opted out.
|
|
||||||
# (could ev. be integrated into _createButton)
|
|
||||||
|
|
||||||
toolbar_opt = getattr(self.menubar.tkopt, 'toolbar_vars')
|
|
||||||
for k in toolbar_opt.keys():
|
|
||||||
opt = toolbar_opt[k]
|
|
||||||
if k in self.buttond.keys():
|
|
||||||
b = self.buttond[k]
|
|
||||||
b.config = opt.get()
|
|
||||||
opt.bind(value=b.set_config)
|
|
||||||
|
|
||||||
self.redraw()
|
self.redraw()
|
||||||
Window.bind(size=self.doResize)
|
Window.bind(size=self.doResize)
|
||||||
|
|
||||||
|
@ -315,7 +300,7 @@ class PysolToolbarTk(BoxLayout):
|
||||||
self.show(True)
|
self.show(True)
|
||||||
|
|
||||||
def show(self, on, **kw):
|
def show(self, on, **kw):
|
||||||
side = self.menubar.tkopt.toolbar.get()
|
side = self.menubar.tkopt.toolbar.value
|
||||||
self.win.setTool(None, side)
|
self.win.setTool(None, side)
|
||||||
|
|
||||||
# size_hint dependent on screen orientation:
|
# size_hint dependent on screen orientation:
|
||||||
|
@ -412,10 +397,17 @@ class PysolToolbarTk(BoxLayout):
|
||||||
else:
|
else:
|
||||||
button = MyButton(**kw)
|
button = MyButton(**kw)
|
||||||
|
|
||||||
|
# config settings (button.config bindings)
|
||||||
|
|
||||||
|
opt = self.menubar.tkopt.toolbar_vars[name]
|
||||||
|
button.config = opt.value
|
||||||
|
opt.bind(value=button.set_config)
|
||||||
|
|
||||||
|
# support settings (button.enabled bindings)
|
||||||
try:
|
try:
|
||||||
oname = name
|
oname = name
|
||||||
# redo is handled same way as undo, there is no separate option.
|
|
||||||
if name == 'redo':
|
if name == 'redo':
|
||||||
|
# no separate option for redo, goes with undo.
|
||||||
oname = 'undo'
|
oname = 'undo'
|
||||||
opt = getattr(self.menubar.tkopt, oname)
|
opt = getattr(self.menubar.tkopt, oname)
|
||||||
|
|
||||||
|
@ -423,16 +415,17 @@ class PysolToolbarTk(BoxLayout):
|
||||||
# - autodrop button has no own option. option 'autodrop' is used
|
# - autodrop button has no own option. option 'autodrop' is used
|
||||||
# for the different effect of fully automatic dropping!
|
# for the different effect of fully automatic dropping!
|
||||||
# - pause button sets and clears the pause option, not vice versa!
|
# - pause button sets and clears the pause option, not vice versa!
|
||||||
# it is an option that only exists internaly (not saved). (same
|
# it is an option that only exists internaly (not saved).
|
||||||
# applies also to the tk and tile implementations)
|
|
||||||
if oname not in ['autodrop', 'pause']:
|
if oname not in ['autodrop', 'pause']:
|
||||||
button.enabled = opt.get()
|
button.enabled = opt.value
|
||||||
# print('** ', oname, '(enabled) = ', opt.get())
|
# print('** ', oname, '(enabled) = ', opt.value)
|
||||||
opt.bind(value=button.set_enabled)
|
opt.bind(value=button.set_enabled)
|
||||||
|
|
||||||
button.bind(enabled=self.changed_state)
|
button.bind(enabled=self.changed_state)
|
||||||
button.bind(shown=self.changed_state)
|
button.bind(shown=self.changed_state)
|
||||||
except: # noqa
|
except: # noqa
|
||||||
|
# print('exception: button enable settings',name)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
button.bind(config=self.changed_state)
|
button.bind(config=self.changed_state)
|
||||||
|
|
Loading…
Add table
Reference in a new issue