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

* some bugs fixes

git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@116 efabe8c0-fbe8-4139-b769-b5e6d273206e
This commit is contained in:
skomoroh 2006-12-13 23:31:17 +00:00
parent 5c23217375
commit 1a7541a14c
8 changed files with 15 additions and 18 deletions

View file

@ -5,7 +5,8 @@
## ##
include pysol setup.py setup.cfg MANIFEST.in Makefile COPYING README include pysol setup.py setup.cfg MANIFEST.in Makefile COPYING README
#recursive-include pysollib *.py #recursive-include pysollib *.py
include pysollib/*.py pysollib/tk/*.py pysollib/tile/*.py pysollib/pysolgtk/*.py include pysollib/*.py pysollib/macosx/*.py
include pysollib/tk/*.py pysollib/tile/*.py pysollib/pysolgtk/*.py
include pysollib/games/*.py pysollib/games/special/*.py include pysollib/games/*.py pysollib/games/special/*.py
include pysollib/games/ultra/*.py pysollib/games/mahjongg/*.py include pysollib/games/ultra/*.py pysollib/games/mahjongg/*.py
include data/tcl/*.tcl include data/tcl/*.tcl

View file

@ -110,9 +110,11 @@ class Options:
self.tile_theme = 'default' self.tile_theme = 'default'
if WIN_SYSTEM == 'win32': if WIN_SYSTEM == 'win32':
self.tile_theme = 'winnative' self.tile_theme = 'winnative'
if sys.getwindowsversion() >= (5, 1): # xp
self.tile_theme = 'xpnative'
elif WIN_SYSTEM == 'x11': elif WIN_SYSTEM == 'x11':
self.tile_theme = 'step' self.tile_theme = 'step'
else: # aqua elif WIN_SYSTEM == 'aqua':
self.tile_theme = 'aqua' self.tile_theme = 'aqua'
self.toolbar = 1 # 0 == hide, 1,2,3,4 == top, bottom, lef, right self.toolbar = 1 # 0 == hide, 1,2,3,4 == top, bottom, lef, right
##self.toolbar_style = 'default' ##self.toolbar_style = 'default'

View file

@ -1328,12 +1328,12 @@ the next time you restart """)+PACKAGE,
all_themes.sort() all_themes.sort()
# #
tn = { tn = {
'default': 'Default', 'default': _('Default'),
'classic': 'Classic', 'classic': _('Classic'),
'alt': 'Revitalized', 'alt': _('Revitalized'),
'winnative': 'Windows native', 'winnative': _('Windows native'),
'xpnative': 'XP Native', 'xpnative': _('XP Native'),
'aqua': 'Aqua', 'aqua': _('Aqua'),
} }
for t in all_themes: for t in all_themes:
try: try:

View file

@ -148,7 +148,7 @@ def makeToplevel(parent, title=None):
window = Tkinter.Toplevel(parent) #, class_=PACKAGE) window = Tkinter.Toplevel(parent) #, class_=PACKAGE)
##window.wm_group(parent) ##window.wm_group(parent)
##window.wm_command("") ##window.wm_command("")
if os.name == "posix": if WIN_SYSTEM == "x11":
window.wm_command("/bin/true") window.wm_command("/bin/true")
##window.wm_protocol("WM_SAVE_YOURSELF", None) ##window.wm_protocol("WM_SAVE_YOURSELF", None)
if title: if title:

View file

@ -443,17 +443,11 @@ class MfxScrolledCanvas:
self.frame.grid_rowconfigure(0, weight=1) self.frame.grid_rowconfigure(0, weight=1)
self.frame.grid_columnconfigure(0, weight=1) self.frame.grid_columnconfigure(0, weight=1)
if hbar: if hbar:
if hbar == 3:
w = 21
self.frame.grid_rowconfigure(1, minsize=w)
self.createHbar() self.createHbar()
if not vbar: if not vbar:
bind(self.hbar, "<Map>", self._mapBar) bind(self.hbar, "<Map>", self._mapBar)
self.bindHbar() self.bindHbar()
if vbar: if vbar:
if vbar == 3:
w = 21
self.frame.grid_columnconfigure(1, minsize=w)
self.createVbar() self.createVbar()
bind(self.vbar, "<Map>", self._mapBar) bind(self.vbar, "<Map>", self._mapBar)
self.bindVbar() self.bindVbar()
@ -567,7 +561,6 @@ class MfxScrolledCanvas:
# don't work on Linux # don't work on Linux
#bind(w, '<MouseWheel>', self.mouse_wheel) #bind(w, '<MouseWheel>', self.mouse_wheel)
def mouse_wheel(self, *args): def mouse_wheel(self, *args):
print 'MfxScrolledCanvas.mouse_wheel', args print 'MfxScrolledCanvas.mouse_wheel', args

View file

@ -146,7 +146,7 @@ def makeToplevel(parent, title=None):
window = Tkinter.Toplevel(parent) #, class_=PACKAGE) window = Tkinter.Toplevel(parent) #, class_=PACKAGE)
##window.wm_group(parent) ##window.wm_group(parent)
##window.wm_command("") ##window.wm_command("")
if os.name == "posix": if WIN_SYSTEM == "x11":
window.wm_command("/bin/true") window.wm_command("/bin/true")
##window.wm_protocol("WM_SAVE_YOURSELF", None) ##window.wm_protocol("WM_SAVE_YOURSELF", None)
if title: if title:

View file

@ -47,7 +47,7 @@ from tkFont import Font
# PySol imports # PySol imports
from pysollib.mfxutil import destruct, Struct from pysollib.mfxutil import destruct, Struct
from pysollib.settings import PACKAGE, VERSION from pysollib.settings import PACKAGE, VERSION, WIN_SYSTEM
from pysollib.macosx.appSupport import setupApp from pysollib.macosx.appSupport import setupApp
from tkutil import after_idle, wm_set_icon from tkutil import after_idle, wm_set_icon
from tkconst import EVENT_HANDLED, EVENT_PROPAGATE from tkconst import EVENT_HANDLED, EVENT_PROPAGATE

View file

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