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

Add topmost logic to HTML viewer

This commit is contained in:
Joe R 2024-12-28 21:20:58 -05:00
parent 9cd7a2c5fe
commit 7940e62285
2 changed files with 14 additions and 1 deletions

View file

@ -35,7 +35,7 @@ from pysollib.app_stat_result import GameStatResult
from pysollib.app_statistics import Statistics
from pysollib.cardsetparser import read_cardset_config
from pysollib.gamedb import GAME_DB, GI, loadGame
from pysollib.help import destroy_help_html, help_about
from pysollib.help import destroy_help_html, help_about, raise_help_html
from pysollib.images import Images, SubsampledImages
from pysollib.mfxutil import Struct, destruct
from pysollib.mfxutil import USE_PIL
@ -523,6 +523,7 @@ class Application:
raise_find_card_dialog(self.game)
raise_full_picture_dialog(self.game)
raise_solver_dialog(self.game)
raise_help_html(self.game)
def loadImages1(self):
# load dialog images

View file

@ -160,9 +160,21 @@ def help_html(app, document, dir_, top=None):
viewer.parent.wm_deiconify()
viewer.parent.tkraise()
help_html_viewer = viewer
raise_help_html(app.game)
return viewer
def raise_help_html(game):
try:
if game.app.opt.topmost_dialogs:
help_html_viewer.parent.tkraise()
help_html_viewer.parent.attributes("-topmost", True)
else:
help_html_viewer.parent.attributes("-topmost", False)
except Exception:
pass
def destroy_help_html():
try:
help_html_viewer.destroy()