Added hint button to the toolbar.
BIN
data/images/toolbar/bluecurve/large/hint.gif
Normal file
After Width: | Height: | Size: 784 B |
BIN
data/images/toolbar/bluecurve/large/hint.png
Normal file
After Width: | Height: | Size: 982 B |
BIN
data/images/toolbar/bluecurve/small/hint.gif
Normal file
After Width: | Height: | Size: 636 B |
BIN
data/images/toolbar/bluecurve/small/hint.png
Normal file
After Width: | Height: | Size: 692 B |
BIN
data/images/toolbar/bluecurve/xlarge/hint.gif
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
data/images/toolbar/bluecurve/xlarge/hint.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
data/images/toolbar/crystal/large/hint.gif
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
data/images/toolbar/crystal/large/hint.png
Normal file
After Width: | Height: | Size: 1,014 B |
BIN
data/images/toolbar/crystal/small/hint.gif
Normal file
After Width: | Height: | Size: 400 B |
BIN
data/images/toolbar/crystal/small/hint.png
Normal file
After Width: | Height: | Size: 493 B |
BIN
data/images/toolbar/default/large/hint.gif
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
data/images/toolbar/default/large/hint.png
Normal file
After Width: | Height: | Size: 1,014 B |
BIN
data/images/toolbar/default/small/hint.gif
Normal file
After Width: | Height: | Size: 400 B |
BIN
data/images/toolbar/default/small/hint.png
Normal file
After Width: | Height: | Size: 493 B |
BIN
data/images/toolbar/human/large/hint.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
data/images/toolbar/human/small/hint.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
data/images/toolbar/human/xlarge/hint.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
data/images/toolbar/remix light/large/hint.png
Normal file
After Width: | Height: | Size: 832 B |
BIN
data/images/toolbar/remix light/small/hint.png
Normal file
After Width: | Height: | Size: 583 B |
BIN
data/images/toolbar/remix light/xlarge/hint.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
data/images/toolbar/remix/large/hint.png
Normal file
After Width: | Height: | Size: 790 B |
BIN
data/images/toolbar/remix/small/hint.png
Normal file
After Width: | Height: | Size: 543 B |
BIN
data/images/toolbar/remix/xlarge/hint.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
data/images/toolbar/tango/large/hint.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
data/images/toolbar/tango/small/hint.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
data/images/toolbar/tango/xlarge/hint.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
|
@ -941,6 +941,11 @@ class PysolToolbar(PysolToolbarTk):
|
|||
self.menubar.mShuffle()
|
||||
return 1
|
||||
|
||||
def mHint(self, *args):
|
||||
if not self._busy():
|
||||
self.menubar.mHint()
|
||||
return 1
|
||||
|
||||
def mPause(self, *args):
|
||||
if not self._busy():
|
||||
self.menubar.mPause()
|
||||
|
|
|
@ -198,6 +198,7 @@ class PysolToolbarTk(BoxLayout):
|
|||
(n_("Redo"), self.mRedo, _("Redo last move")),
|
||||
(n_("Autodrop"), self.mDrop, _("Auto drop cards")),
|
||||
(n_("Shuffle"), self.mShuffle, _("Shuffle tiles")),
|
||||
(n_("Hint"), self.mPause, _("Hint")),
|
||||
(n_("Pause"), self.mPause, _("Pause game")),
|
||||
(None, None, None),
|
||||
# (n_("Statistics"), self.mPlayerStats, _("View statistics")),
|
||||
|
|
|
@ -184,6 +184,7 @@ class PysolToolbarTk:
|
|||
(n_("Redo"), self.mRedo, _("Redo last move")),
|
||||
(n_("Autodrop"), self.mDrop, _("Auto drop cards")),
|
||||
(n_("Shuffle"), self.mShuffle, _("Shuffle tiles")),
|
||||
(n_("Hint"), self.mHint, _("Hint")),
|
||||
(n_("Pause"), self.mPause, _("Pause game")),
|
||||
(None, None, None),
|
||||
(n_("Statistics"), self.mPlayerStats, _("View statistics")),
|
||||
|
|
|
@ -193,6 +193,7 @@ class PysolToolbarTk:
|
|||
(n_("Redo"), self.mRedo, _("Redo last move")),
|
||||
(n_("Autodrop"), self.mDrop, _("Auto drop cards")),
|
||||
(n_("Shuffle"), self.mShuffle, _("Shuffle tiles")),
|
||||
(n_("Hint"), self.mHint, _("Hint")),
|
||||
(n_("Pause"), self.mPause, _("Pause game")),
|
||||
(None, None, None),
|
||||
(n_("Statistics"), self.mPlayerStats, _("View statistics")),
|
||||
|
|
|
@ -65,6 +65,7 @@ TOOLBAR_BUTTONS = (
|
|||
"redo",
|
||||
"autodrop",
|
||||
"shuffle",
|
||||
"hint",
|
||||
"pause",
|
||||
"statistics",
|
||||
"rules",
|
||||
|
|