1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Android/Kivy:

- Event handling: Pass through for empty stacks.
- Menu entry to reset zoom.
This commit is contained in:
lufebe16 2024-11-12 10:47:35 +01:00
parent 70909f6469
commit 0135e386c2
3 changed files with 19 additions and 4 deletions

View file

@ -806,6 +806,10 @@ class LImageItem(BoxLayout, LBase):
- Most events return EVENT_HANDLED even if they did not change anything
in current situations. I would expect specifically for stack base cards
that they return HANDLE_PROPAGATE if nothing happened.
- stack __defaultclickhandler__ returns EVENT_HANDLED in any case so some
code here is obsolete or for future.
- A pragmatic way to handle this: If an empty stack is still empty
after the click then we propagate otherwise not.
LB241111.
'''
@ -851,7 +855,6 @@ class LImageItem(BoxLayout, LBase):
self.dragstart = touch.pos
event.cardid = i
r = self.send_event_pressed(touch, event)
# print("********* event return = ",r)
if r == EVENT_HANDLED:
AndroidScreenRotation.lock(toaster=False)
print('grab')
@ -869,6 +872,7 @@ class LImageItem(BoxLayout, LBase):
event.y = ppos[1]
r = self.group.bindings['<1>'](event)
if r == EVENT_HANDLED:
if len(self.group.stack.cards) > 0:
return True
return False
@ -907,7 +911,6 @@ class LImageItem(BoxLayout, LBase):
event.y = ppos[1]
event.cardid = i
r = self.send_event_released_1(event)
# print("********* event return = ",r)
if r == EVENT_HANDLED:
return True
return False
@ -922,6 +925,7 @@ class LImageItem(BoxLayout, LBase):
event.y = ppos[1]
r = self.group.bindings['<ButtonRelease-1>'](event)
if r == EVENT_HANDLED:
if len(self.group.stack.cards) > 0:
return True
return False

View file

@ -387,6 +387,9 @@ class EditMenuDialog(LMenuDialog): # Tools
text=_('Shuffle tiles'), command=self.menubar.mShuffle))
tv.add_node(LTreeNode(
text=_('Deal cards'), command=self.menubar.mDeal))
tv.add_node(LTreeNode(
text=_('Reset zoom'),
command=self.auto_close(self.menubar.mResetZoom)))
self.addCheckNode(tv, None,
_('Pause'),
@ -2141,6 +2144,9 @@ class PysolMenubarTk:
toast.show(parent=baseWindow, duration=5.0)
self.updateMenus()
def mResetZoom(self, *args):
self.tkopt.table_zoom.value = [1.0, 0.0, 0.0]
def mPause(self, *args):
if not self.game:
return

View file

@ -397,6 +397,10 @@ class LScatterFrame(Scatter):
yoff = zoom[2]
self.offset = (xoff,yoff)
def _change_command(self,inst,val):
if self.lock_pos is None:
self.set_scale(val)
def _update(self):
# initialisation
if self.tkopt is None:
@ -407,6 +411,7 @@ class LScatterFrame(Scatter):
self.tkopt = tkopt
self.set_scale(tkopt.table_zoom.value)
print("table_zoom",tkopt.table_zoom.value)
tkopt.table_zoom.bind(value=self._change_command)
# update
if self.lock_pos is None: