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:
parent
70909f6469
commit
0135e386c2
3 changed files with 19 additions and 4 deletions
|
@ -806,6 +806,10 @@ class LImageItem(BoxLayout, LBase):
|
||||||
- Most events return EVENT_HANDLED even if they did not change anything
|
- Most events return EVENT_HANDLED even if they did not change anything
|
||||||
in current situations. I would expect specifically for stack base cards
|
in current situations. I would expect specifically for stack base cards
|
||||||
that they return HANDLE_PROPAGATE if nothing happened.
|
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.
|
LB241111.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
@ -851,7 +855,6 @@ class LImageItem(BoxLayout, LBase):
|
||||||
self.dragstart = touch.pos
|
self.dragstart = touch.pos
|
||||||
event.cardid = i
|
event.cardid = i
|
||||||
r = self.send_event_pressed(touch, event)
|
r = self.send_event_pressed(touch, event)
|
||||||
# print("********* event return = ",r)
|
|
||||||
if r == EVENT_HANDLED:
|
if r == EVENT_HANDLED:
|
||||||
AndroidScreenRotation.lock(toaster=False)
|
AndroidScreenRotation.lock(toaster=False)
|
||||||
print('grab')
|
print('grab')
|
||||||
|
@ -869,7 +872,8 @@ class LImageItem(BoxLayout, LBase):
|
||||||
event.y = ppos[1]
|
event.y = ppos[1]
|
||||||
r = self.group.bindings['<1>'](event)
|
r = self.group.bindings['<1>'](event)
|
||||||
if r == EVENT_HANDLED:
|
if r == EVENT_HANDLED:
|
||||||
return True
|
if len(self.group.stack.cards) > 0:
|
||||||
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if self.card is None:
|
if self.card is None:
|
||||||
|
@ -907,7 +911,6 @@ class LImageItem(BoxLayout, LBase):
|
||||||
event.y = ppos[1]
|
event.y = ppos[1]
|
||||||
event.cardid = i
|
event.cardid = i
|
||||||
r = self.send_event_released_1(event)
|
r = self.send_event_released_1(event)
|
||||||
# print("********* event return = ",r)
|
|
||||||
if r == EVENT_HANDLED:
|
if r == EVENT_HANDLED:
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
@ -922,7 +925,8 @@ class LImageItem(BoxLayout, LBase):
|
||||||
event.y = ppos[1]
|
event.y = ppos[1]
|
||||||
r = self.group.bindings['<ButtonRelease-1>'](event)
|
r = self.group.bindings['<ButtonRelease-1>'](event)
|
||||||
if r == EVENT_HANDLED:
|
if r == EVENT_HANDLED:
|
||||||
return True
|
if len(self.group.stack.cards) > 0:
|
||||||
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if self.card is None:
|
if self.card is None:
|
||||||
|
|
|
@ -387,6 +387,9 @@ class EditMenuDialog(LMenuDialog): # Tools
|
||||||
text=_('Shuffle tiles'), command=self.menubar.mShuffle))
|
text=_('Shuffle tiles'), command=self.menubar.mShuffle))
|
||||||
tv.add_node(LTreeNode(
|
tv.add_node(LTreeNode(
|
||||||
text=_('Deal cards'), command=self.menubar.mDeal))
|
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,
|
self.addCheckNode(tv, None,
|
||||||
_('Pause'),
|
_('Pause'),
|
||||||
|
@ -2141,6 +2144,9 @@ class PysolMenubarTk:
|
||||||
toast.show(parent=baseWindow, duration=5.0)
|
toast.show(parent=baseWindow, duration=5.0)
|
||||||
self.updateMenus()
|
self.updateMenus()
|
||||||
|
|
||||||
|
def mResetZoom(self, *args):
|
||||||
|
self.tkopt.table_zoom.value = [1.0, 0.0, 0.0]
|
||||||
|
|
||||||
def mPause(self, *args):
|
def mPause(self, *args):
|
||||||
if not self.game:
|
if not self.game:
|
||||||
return
|
return
|
||||||
|
|
|
@ -397,6 +397,10 @@ class LScatterFrame(Scatter):
|
||||||
yoff = zoom[2]
|
yoff = zoom[2]
|
||||||
self.offset = (xoff,yoff)
|
self.offset = (xoff,yoff)
|
||||||
|
|
||||||
|
def _change_command(self,inst,val):
|
||||||
|
if self.lock_pos is None:
|
||||||
|
self.set_scale(val)
|
||||||
|
|
||||||
def _update(self):
|
def _update(self):
|
||||||
# initialisation
|
# initialisation
|
||||||
if self.tkopt is None:
|
if self.tkopt is None:
|
||||||
|
@ -407,6 +411,7 @@ class LScatterFrame(Scatter):
|
||||||
self.tkopt = tkopt
|
self.tkopt = tkopt
|
||||||
self.set_scale(tkopt.table_zoom.value)
|
self.set_scale(tkopt.table_zoom.value)
|
||||||
print("table_zoom",tkopt.table_zoom.value)
|
print("table_zoom",tkopt.table_zoom.value)
|
||||||
|
tkopt.table_zoom.bind(value=self._change_command)
|
||||||
|
|
||||||
# update
|
# update
|
||||||
if self.lock_pos is None:
|
if self.lock_pos is None:
|
||||||
|
|
Loading…
Add table
Reference in a new issue