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

Prune pysollib.macosx; it no longer had any effect

This commit is contained in:
Juhani Numminen 2020-10-12 15:35:55 +03:00
parent 07aac001b7
commit d3faa78e75
6 changed files with 1 additions and 69 deletions

View file

@ -7,7 +7,7 @@ include pysol.py setup.py setup_osx.py setup.cfg MANIFEST.in Makefile
include COPYING README.md AUTHORS.md README.android README.kivy
include NEWS.asciidoc
#recursive-include pysollib *.py
include pysollib/*.py pysollib/macosx/*.py
include pysollib/*.py
include pysollib/winsystems/*.py
include pysollib/tk/*.py pysollib/tile/*.py pysollib/pysolgtk/*.py
include pysollib/game/*.py

View file

@ -106,11 +106,6 @@ def init():
sys.exit("%s needs Tcl/Tk 8.4 or better (you have %s)" %
(pysollib.settings.TITLE, str(tkinter.TkVersion)))
pysollib.settings.WIN_SYSTEM = root.tk.call('tk', 'windowingsystem')
if pysollib.settings.WIN_SYSTEM == 'aqua':
# TkAqua displays the console automatically in application
# bundles, so we hide it here.
from pysollib.macosx.appSupport import hideTkConsole
hideTkConsole(root)
#
if pysollib.settings.USE_TILE == 'auto':
# check Tile

View file

@ -1,51 +0,0 @@
#!/usr/bin/env python
# -*- mode: python; coding: utf-8; -*-
# ---------------------------------------------------------------------------##
#
# Copyright (C) 1998-2003 Markus Franz Xaver Johannes Oberhumer
# Copyright (C) 2003 Mt. Hood Playing Card Co.
# Copyright (C) 2005-2009 Skomoroh
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# ---------------------------------------------------------------------------##
"""
A number of function that enhance PySol on MacOSX when it used as a normal
GUI application (as opposed to an X11 application).
"""
import sys
from six.moves.tkinter import TclError
def runningAsOSXApp():
""" Returns True if-and-only-if running from the
PySol.app bundle on OSX """
return (sys.platform == 'darwin' and 'PySol.app' in sys.argv[0])
def hideTkConsole(root):
try:
root.tk.call('console', 'hide')
except TclError:
pass
def setupApp(app):
"""
Perform setup for the OSX application bundle.
"""
if not runningAsOSXApp():
return
hideTkConsole(app.top)

View file

@ -21,22 +21,11 @@
#
# ---------------------------------------------------------------------------##
from pysollib.macosx.appSupport import hideTkConsole
from pysollib.settings import TOOLKIT, USE_TILE
from pysollib.winsystems.common import BaseTkSettings, base_init_root_window
def init_root_window(root, app):
base_init_root_window(root, app)
if TOOLKIT == 'tk':
hideTkConsole(root)
if TOOLKIT == 'gtk':
pass
elif USE_TILE:
pass
else: # pure Tk
# root.option_add(...)
pass
class TkSettings(BaseTkSettings):

View file

@ -83,7 +83,6 @@ kw = {
'license': 'GPL',
'scripts': ['pysol.py'],
'packages': ['pysollib',
'pysollib.macosx',
'pysollib.winsystems',
'pysollib.tk',
'pysollib.tile',