mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Add fullscreen mode
This commit is contained in:
parent
f448248741
commit
d0ca03a49a
5 changed files with 14 additions and 0 deletions
|
@ -132,4 +132,5 @@ to the main <i>data/tiles</i> or your home <i>~/.PySolFC/tiles</i> directory.
|
|||
<li> <i>Ctrl-U</i> - Play the next music song
|
||||
<li> <i>Ctrl-W</i> - Select game, using old game select window
|
||||
<li> <i>F5</i> - Refresh the game layout
|
||||
<li> <i>F11</i> - Toggle fullscreen display
|
||||
</ul>
|
||||
|
|
|
@ -506,6 +506,10 @@ class Application:
|
|||
wm_withdraw(self.top)
|
||||
self.top.busyUpdate()
|
||||
|
||||
def wm_toggle_fullscreen(self):
|
||||
self.opt.wm_fullscreen = not self.opt.wm_fullscreen
|
||||
self.top.attributes("-fullscreen", self.opt.wm_fullscreen)
|
||||
|
||||
def loadImages1(self):
|
||||
# load dialog images
|
||||
dirname = os.path.join("images", "logos")
|
||||
|
|
|
@ -828,6 +828,7 @@ class Game(object):
|
|||
# unhide toplevel when we use a progress bar
|
||||
if not self.preview:
|
||||
wm_map(self.top, maximized=self.app.opt.wm_maximized)
|
||||
self.top.attributes('-fullscreen', self.app.opt.wm_fullscreen)
|
||||
self.top.busyUpdate()
|
||||
if TOOLKIT == 'gtk':
|
||||
# FIXME
|
||||
|
@ -910,6 +911,7 @@ class Game(object):
|
|||
if not self.preview:
|
||||
self.updateMenus()
|
||||
wm_map(self.top, maximized=self.app.opt.wm_maximized)
|
||||
self.top.attributes('-fullscreen', self.app.opt.wm_fullscreen)
|
||||
self.setCursor(cursor=self.app.top_cursor)
|
||||
self.stats.update_time = time.time()
|
||||
self.busy = old_busy
|
||||
|
|
|
@ -112,6 +112,7 @@ num_recent_games = integer(10, 100)
|
|||
last_gameid = integer
|
||||
game_holded = integer
|
||||
wm_maximized = boolean
|
||||
wm_fullscreen = boolean
|
||||
splashscreen = boolean
|
||||
date_format = string
|
||||
mouse_type = string
|
||||
|
@ -287,6 +288,7 @@ class Options:
|
|||
('last_gameid', 'int'),
|
||||
('game_holded', 'int'),
|
||||
('wm_maximized', 'bool'),
|
||||
('wm_fullscreen', 'bool'),
|
||||
('splashscreen', 'bool'),
|
||||
('date_format', 'str'),
|
||||
('mouse_type', 'str'),
|
||||
|
@ -490,6 +492,7 @@ class Options:
|
|||
self.last_gameid = 0 # last game played
|
||||
self.game_holded = 0 # gameid or 0
|
||||
self.wm_maximized = 1
|
||||
self.wm_fullscreen = 0
|
||||
self.save_games_geometry = False
|
||||
# saved games geometry (gameid: (width, height))
|
||||
self.games_geometry = {}
|
||||
|
|
|
@ -994,6 +994,7 @@ class PysolMenubarTkCommon:
|
|||
self._bindKey(ctrl, "Down", self.mSelectNextGameById)
|
||||
|
||||
self._bindKey("", "F5", self.refresh)
|
||||
self._bindKey("", "F11", self.togglefullscreen)
|
||||
|
||||
if os.name == 'posix' and platform.system() != 'Darwin':
|
||||
self._bindKey('Alt-', 'F4', self.mQuit)
|
||||
|
@ -2030,6 +2031,9 @@ Unsupported game for import.
|
|||
self.game.endGame(bookmark=1)
|
||||
self.game.quitGame(bookmark=1)
|
||||
|
||||
def togglefullscreen(self, *event):
|
||||
self.app.wm_toggle_fullscreen()
|
||||
|
||||
#
|
||||
# toolbar support
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue