diff --git a/MANIFEST.in b/MANIFEST.in index 9bf48565..5b37694e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,7 +3,7 @@ ## ## code ## -include pysol setup.py setup.cfg MANIFEST.in Makefile COPYING README +include pysol.py setup.py setup.cfg MANIFEST.in Makefile COPYING README #recursive-include pysollib *.py include pysollib/*.py pysollib/macosx/*.py include pysollib/tk/*.py pysollib/tile/*.py pysollib/pysolgtk/*.py @@ -19,7 +19,7 @@ include scripts/all_games.py scripts/cardset_viewer.py ## include docs/* graft data/html -graft data/html-src +graft html-src ## ## data - images ## diff --git a/pysollib/main.py b/pysollib/main.py index 9c612504..ba52025a 100644 --- a/pysollib/main.py +++ b/pysollib/main.py @@ -49,6 +49,7 @@ from pysolaudio import thread, pysolsoundserver from pysolaudio import AbstractAudioClient, PysolSoundServerModuleClient from pysolaudio import Win32AudioClient, OSSAudioClient, PyGameAudioClient from settings import PACKAGE, SOUND_MOD +from tksettings import initRootWindow # Toolkit imports from pysoltk import wm_withdraw, loadImage @@ -84,9 +85,6 @@ def parse_option(argv): try: optlist, args = getopt.getopt(argv[1:], "g:i:hD:", ["game=", "gameid=", - "fg=", "foreground=", - "bg=", "background=", - "fn=", "font=", "french-only", "noplugins", "nosound", @@ -99,9 +97,6 @@ def parse_option(argv): opts = {"help" : False, "game" : None, "gameid" : None, - "fg" : None, - "bg" : None, - "fn" : None, "french-only" : False, "noplugins" : False, "nosound" : False, @@ -114,12 +109,6 @@ def parse_option(argv): opts["game"] = i[1] elif i[0] in ("-i", "--gameid"): opts["gameid"] = i[1] - elif i[0] in ("--fg", "--foreground"): - opts["fg"] = i[1] - elif i[0] in ("--bg", "--background"): - opts["bg"] = i[1] - elif i[0] in ("--fn", "--font"): - opts["fn"] = i[1] elif i[0] == "--french-only": opts["french-only"] = True elif i[0] == "--noplugins": @@ -261,7 +250,7 @@ def pysol_init(app, args): app.opt.sound_mode = 0 # init toolkit 2) - top.initToolkit(app, opts['fg'], opts['bg'], opts['fn']) + initRootWindow(top, app) # check games if len(app.gdb.getGamesIdSortedByName()) == 0: diff --git a/pysollib/tile/menubar.py b/pysollib/tile/menubar.py index 3ce355c7..9cb09d69 100644 --- a/pysollib/tile/menubar.py +++ b/pysollib/tile/menubar.py @@ -340,11 +340,6 @@ class PysolMenubar(PysolMenubarActions): def _createMenubar(self): MfxMenubar.addPath = self._addPath kw = { "name": "menubar" } - if WIN_SYSTEM == "x11": - pass - ##kw["relief"] = "groove" - kw["activeborderwidth"] = 1 - kw['bd'] = 1 self.__menubar = apply(MfxMenubar, (self.top,), kw) # init keybindings diff --git a/pysollib/tile/tkutil.py b/pysollib/tile/tkutil.py index b1cdc383..47fad529 100644 --- a/pysollib/tile/tkutil.py +++ b/pysollib/tile/tkutil.py @@ -158,26 +158,9 @@ def makeToplevel(parent, title=None): def make_help_toplevel(app, title=None): # Create an independent Toplevel window. - parent = app.top + from pysollib.tksettings import initRootWindow window = Tkinter.Tk(className=PACKAGE) - theme = app.opt.tile_theme - init_tile(app, window, theme) - font = parent.option_get('font', '') - if font: - window.option_add('*font', font) - fg, bg = app.top_palette - if bg: - window.tk_setPalette(bg) - if fg: - window.option_add('*foreground', fg) - window.option_add('*selectBackground', '#00008b', 50) - window.option_add('*selectForeground', 'white', 50) - if WIN_SYSTEM == "x11": - window.option_add('*Scrollbar.elementBorderWidth', '1', 60) - window.option_add('*Scrollbar.borderWidth', '1', 60) - if title: - window.wm_title(title) - window.wm_iconname(title) + initRootWindow(window, app) return window diff --git a/pysollib/tile/toolbar.py b/pysollib/tile/toolbar.py index f3d6abb6..3dfe026b 100644 --- a/pysollib/tile/toolbar.py +++ b/pysollib/tile/toolbar.py @@ -49,8 +49,9 @@ except ImportError: # PySol imports from pysollib.mfxutil import destruct from pysollib.util import IMAGE_EXTENSIONS -from pysollib.settings import PACKAGE, WIN_SYSTEM +from pysollib.settings import PACKAGE from pysollib.actions import PysolToolbarActions +from pysollib.tksettings import TkSettings # Toolkit imports from tkconst import EVENT_HANDLED, EVENT_PROPAGATE @@ -77,17 +78,13 @@ class AbstractToolbarButton: return self.visible = True if orient == 'horizontal': - padx, pady = 0, 2 - if WIN_SYSTEM == 'win32': - padx, pady = 2, 2 + padx, pady = TkSettings.toolbar_button_padding self.grid(row=0, column=self.position, padx=padx, pady=pady, sticky='nsew') else: - padx, pady = 2, 0 - if WIN_SYSTEM == 'win32': - padx, pady = 2, 2 + pady, padx = TkSettings.toolbar_button_padding self.grid(row=self.position, column=0, padx=padx, pady=pady, @@ -153,9 +150,7 @@ class ToolbarLabel(Tkinter.Message): if self.visible and not force: return self.visible = True - padx, pady = 4, 4 - if WIN_SYSTEM == 'win32': - padx, pady = 6, 6 + padx, pady = TkSettings.toolbar_label_padding if orient == 'horizontal': self.grid(row=0, column=self.position, @@ -192,7 +187,9 @@ class PysolToolbar(PysolToolbarActions): self.compound = compound self.orient='horizontal' # - self.frame = Tkinter.Frame(top, class_='Toolbar') + self.frame = Tkinter.Frame(top, class_='Toolbar', + relief=TkSettings.toolbar_relief, + borderwidth=TkSettings.toolbar_borderwidth) # for l, f, t in ( (n_("New"), self.mNewGame, _("New game")), @@ -231,13 +228,6 @@ class PysolToolbar(PysolToolbarActions): self.frame.bind("<3>", self.rightclickHandler) # self.setCompound(compound, force=True) - # Change the look of the frame to match the platform look - if WIN_SYSTEM == 'x11': - pass - elif WIN_SYSTEM == "win32": - self.frame.config(relief='groove') - else: - pass def config(self, w, v): if w == 'player': diff --git a/pysollib/tk/menubar.py b/pysollib/tk/menubar.py index 530fb039..7a5ebedf 100644 --- a/pysollib/tk/menubar.py +++ b/pysollib/tk/menubar.py @@ -80,16 +80,6 @@ def createToolbarMenu(menubar, menu): submenu.add_radiobutton(label=name, variable=menubar.tkopt.toolbar_style, value=f, command=menubar.mOptToolbarStyle) - - submenu = MfxMenu(menu, label=n_('Relief'), tearoff=tearoff) - submenu.add_radiobutton(label=n_('Flat'), - variable=menubar.tkopt.toolbar_relief, - value=Tkinter.FLAT, - command=menubar.mOptToolbarRelief) - submenu.add_radiobutton(label=n_('Raised'), - variable=menubar.tkopt.toolbar_relief, - value=Tkinter.RAISED, - command=menubar.mOptToolbarRelief) if Tkinter.TkVersion >= 8.4: submenu = MfxMenu(menu, label=n_('Compound'), tearoff=tearoff) for comp, label in COMPOUNDS: @@ -347,11 +337,6 @@ class PysolMenubar(PysolMenubarActions): def _createMenubar(self): MfxMenubar.addPath = self._addPath kw = { "name": "menubar" } - if WIN_SYSTEM == "x11": - pass - ##kw["relief"] = "groove" - kw["activeborderwidth"] = 1 - kw['bd'] = 1 self.__menubar = apply(MfxMenubar, (self.top,), kw) # init keybindings diff --git a/pysollib/tk/tkutil.py b/pysollib/tk/tkutil.py index 8d273af6..a44b7148 100644 --- a/pysollib/tk/tkutil.py +++ b/pysollib/tk/tkutil.py @@ -156,25 +156,9 @@ def makeToplevel(parent, title=None): def make_help_toplevel(app, title=None): # Create an independent Toplevel window. - parent = app.top + from pysollib.tksettings import initRootWindow window = Tkinter.Tk(className=PACKAGE) - font = parent.option_get('font', '') - if font: - window.option_add('*font', font) - fg, bg = app.top_palette - if bg: - window.tk_setPalette(bg) - if fg: - window.option_add('*foreground', fg) - window.option_add('*selectBackground', '#00008b', 50) - window.option_add('*selectForeground', 'white', 50) - if WIN_SYSTEM == "x11": - window.option_add('*Scrollbar.elementBorderWidth', '1', 60) - window.option_add('*Scrollbar.borderWidth', '1', 60) - - if title: - window.wm_title(title) - window.wm_iconname(title) + initRootWindow(window, app) return window diff --git a/pysollib/tk/tkwrap.py b/pysollib/tk/tkwrap.py index 4b9a852f..f1e1d372 100644 --- a/pysollib/tk/tkwrap.py +++ b/pysollib/tk/tkwrap.py @@ -52,6 +52,7 @@ from pysollib.macosx.appSupport import setupApp from tkutil import after_idle, wm_set_icon from tkconst import EVENT_HANDLED, EVENT_PROPAGATE + # /*********************************************************************** # // menubar # ************************************************************************/ diff --git a/pysollib/tk/toolbar.py b/pysollib/tk/toolbar.py index b3a24e52..66fcdde1 100644 --- a/pysollib/tk/toolbar.py +++ b/pysollib/tk/toolbar.py @@ -49,6 +49,7 @@ from pysollib.mfxutil import destruct from pysollib.util import IMAGE_EXTENSIONS from pysollib.settings import PACKAGE, WIN_SYSTEM from pysollib.actions import PysolToolbarActions +from pysollib.tksettings import TkSettings # Toolkit imports from tkconst import EVENT_HANDLED, EVENT_PROPAGATE @@ -149,8 +150,7 @@ class ToolbarLabel(Tkinter.Message): if self.visible and not force: return self.visible = True - padx = 4 - pady = 4 + padx, pady = TkSettings.toolbar_label_padding if orient == Tkinter.HORIZONTAL: self.grid(row=0, column=self.position, @@ -179,7 +179,7 @@ class PysolToolbar(PysolToolbarActions): PysolToolbarActions.__init__(self) self.top = top - self._setRelief(relief) + #self._setRelief(relief) self.side = -1 self._tooltips = [] self._widgets = [] @@ -187,11 +187,10 @@ class PysolToolbar(PysolToolbarActions): self.size = size self.compound = compound self.orient=Tkinter.HORIZONTAL - self.label_padx = 4 - self.label_pady = 4 self.button_pad = 2 # - self.frame = Tkinter.Frame(top) + self.frame = Tkinter.Frame(top, relief=TkSettings.toolbar_relief, + bd=TkSettings.toolbar_borderwidth) # for l, f, t in ( (n_("New"), self.mNewGame, _("New game")), @@ -232,17 +231,6 @@ class PysolToolbar(PysolToolbarActions): self.frame.bind("<3>", self.rightclickHandler) # self.setCompound(compound, force=True) - # Change the look of the frame to match the platform look - # (see also setRelief) - if WIN_SYSTEM == 'x11': - #self.frame.config(bd=0, highlightthickness=1) - self.frame.config(bd=1, relief=self.frame_relief, highlightthickness=0) - elif WIN_SYSTEM == "win32": - self.frame.config(bd=2, relief=self.frame_relief, padx=2, pady=2) - #self._createSeparator(width=4, side=Tkinter.LEFT, relief=Tkinter.FLAT) - #self._createSeparator(width=4, side=Tkinter.RIGHT, relief=Tkinter.FLAT) - else: - self.frame.config(bd=0, highlightthickness=1) def config(self, w, v): if w == 'player': @@ -273,27 +261,6 @@ class PysolToolbar(PysolToolbarActions): if w.visible: prev_visible = w - def _setRelief(self, relief): - if type(relief) is types.IntType: - relief = ('raised', 'flat')[relief] - elif relief in ('raised', 'flat'): - pass - else: - relief = 'flat' - self.button_relief = relief - if relief == 'raised': - self.frame_relief = 'flat' - self.separator_relief = 'flat' - if WIN_SYSTEM == 'win32': - self.frame_relief = 'groove' - else: - self.frame_relief = 'raised' - self.separator_relief = 'sunken' #'raised' - if WIN_SYSTEM == 'win32': - self.frame_relief = 'groove' - self.separator_relief = 'groove' - return relief - # util def _loadImage(self, name): file = os.path.join(self.dir, name) @@ -317,7 +284,7 @@ class PysolToolbar(PysolToolbarActions): highlightthickness=1, width=4, takefocus=0, - relief=self.separator_relief) + relief=TkSettings.toolbar_separator_relief) sep.show(orient=self.orient) self._widgets.append(sep) return sep @@ -342,7 +309,9 @@ class PysolToolbar(PysolToolbarActions): name = label.lower() image = self._loadImage(name) position = len(self._widgets) - bd = self.button_relief == 'flat' and 1 or 2 + button_relief = TkSettings.toolbar_button_relief + bd = TkSettings.toolbar_button_borderwidth + padx, pady = TkSettings.toolbar_button_padding kw = { 'position' : position, 'toolbar' : self, @@ -351,9 +320,9 @@ class PysolToolbar(PysolToolbarActions): 'takefocus' : 0, 'text' : gettext(label), 'bd' : bd, - 'relief' : self.button_relief, - 'padx' : self.button_pad, - 'pady' : self.button_pad + 'relief' : button_relief, + 'padx' : padx, + 'pady' : pady, } if Tkinter.TkVersion >= 8.4: kw['overrelief'] = 'raised' @@ -361,7 +330,7 @@ class PysolToolbar(PysolToolbarActions): kw['image'] = image if check: if Tkinter.TkVersion >= 8.4: - kw['offrelief'] = self.button_relief + kw['offrelief'] = button_relief kw['indicatoron'] = False kw['selectcolor'] = '' button = ToolbarCheckbutton(self.frame, **kw) @@ -498,23 +467,6 @@ class PysolToolbar(PysolToolbarActions): self.setCompound(self.compound, force=True) return 1 - def setRelief(self, relief): - if self.button_relief == relief: - return False - self._setRelief(relief) - self.frame.config(relief=self.frame_relief) - for w in self._widgets: - bd = relief == 'flat' and 1 or 2 - if isinstance(w, ToolbarButton): - w.config(relief=self.button_relief, bd=bd) - elif isinstance(w, ToolbarCheckbutton): - w.config(relief=self.button_relief, bd=bd) - if Tkinter.TkVersion >= 8.4: - w.config(offrelief=self.button_relief) - elif w.__class__ is ToolbarSeparator: # not ToolbarFlatSeparator - w.config(relief=self.separator_relief) - return True - def setCompound(self, compound, force=False): if Tkinter.TkVersion < 8.4: return False diff --git a/pysollib/tksettings/__init__.py b/pysollib/tksettings/__init__.py new file mode 100644 index 00000000..e9691e0c --- /dev/null +++ b/pysollib/tksettings/__init__.py @@ -0,0 +1,32 @@ +##---------------------------------------------------------------------------## +## +## PySol -- a Python Solitaire game +## +## 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 2 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; see the file COPYING. +## If not, write to the Free Software Foundation, Inc., +## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +## +##---------------------------------------------------------------------------## + +from pysollib.settings import WIN_SYSTEM + +if WIN_SYSTEM == 'win32': + import win32 as gui +elif WIN_SYSTEM == 'aqua': + import aqua as gui +else: # 'x11' + import x11 as gui + +initRootWindow = gui.initRootWindow +TkSettings = gui.TkSettings diff --git a/pysollib/tksettings/aqua.py b/pysollib/tksettings/aqua.py new file mode 100644 index 00000000..5f97b694 --- /dev/null +++ b/pysollib/tksettings/aqua.py @@ -0,0 +1,47 @@ +##---------------------------------------------------------------------------## +## +## PySol -- a Python Solitaire game +## +## 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 2 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; see the file COPYING. +## If not, write to the Free Software Foundation, Inc., +## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +## +##---------------------------------------------------------------------------## + +import sys, os + +from pysollib.settings import TOOLKIT, USE_TILE +from pysollib.tile import Tile +from pysollib.macosx.appSupport import setupApp, hideTkConsole + +from common import baseInitRootWindow, BaseTkSettings + + +class initRootWindow(baseInitRootWindow): + def __init__(self, root, app): + baseInitRootWindow.__init__(self, root, app) + #setupApp(app) + hideTkConsole(root) + if TOOLKIT == 'gtk': + pass + elif USE_TILE: + pass + else: + #root.option_add(...) + pass + + +class TkSettings(BaseTkSettings): + pass + diff --git a/pysollib/tksettings/common.py b/pysollib/tksettings/common.py new file mode 100644 index 00000000..00717c1d --- /dev/null +++ b/pysollib/tksettings/common.py @@ -0,0 +1,94 @@ +##---------------------------------------------------------------------------## +## +## PySol -- a Python Solitaire game +## +## 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 2 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; see the file COPYING. +## If not, write to the Free Software Foundation, Inc., +## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +## +##---------------------------------------------------------------------------## + +import sys, os, traceback + +from pysollib.settings import PACKAGE, VERSION +from pysollib.settings import TOOLKIT, USE_TILE +from pysollib.tile import Tile +from pysollib.pysoltk import wm_set_icon + + +def init_tile(app, top, theme): + top.tk.call("package", "require", "tile") + # load available themes + d = os.path.join(app.dataloader.dir, 'themes') + if os.path.isdir(d): + top.tk.call('lappend', 'auto_path', d) + for t in os.listdir(d): + if os.path.exists(os.path.join(d, t, 'pkgIndex.tcl')): + try: + top.tk.call('package', 'require', 'tile::theme::'+t) + #print 'load theme:', t + except: + traceback.print_exc() + pass + +def set_theme(top, theme): + # set theme + style = Tile.Style(top) + all_themes = style.theme_names() + if theme not in all_themes: + print >> sys.stderr, 'WARNING: invalid theme name:', theme + theme = 'default' + style.theme_use(theme) + + +class baseInitRootWindow: + def __init__(self, root, app): + #root.wm_group(root) + root.wm_title(PACKAGE + ' ' + VERSION) + root.wm_iconname(PACKAGE + ' ' + VERSION) + try: + wm_set_icon(root, app.dataloader.findIcon()) + except: pass + # set minsize + sw, sh, sd = (root.winfo_screenwidth(), + root.winfo_screenheight(), + root.winfo_screendepth()) + if sw < 640 or sh < 480: + root.wm_minsize(400, 300) + else: + root.wm_minsize(520, 360) + + if TOOLKIT == 'gtk': + pass + elif USE_TILE: + theme = app.opt.tile_theme + init_tile(app, root, theme) + set_theme(root, theme) + else: + pass + +class BaseTkSettings: + toolbar_button_padding = (2, 2) + toolbar_label_padding = (4, 4) + if USE_TILE: + toolbar_relief = 'flat' + toolbar_borderwidth = 0 + else: + toolbar_relief = 'raised' + toolbar_button_relief = 'flat' + toolbar_separator_relief = 'sunken' + toolbar_borderwidth = 1 + toolbar_button_borderwidth = 1 + + diff --git a/pysollib/tksettings/win32.py b/pysollib/tksettings/win32.py new file mode 100644 index 00000000..6fe4b838 --- /dev/null +++ b/pysollib/tksettings/win32.py @@ -0,0 +1,57 @@ +##---------------------------------------------------------------------------## +## +## PySol -- a Python Solitaire game +## +## 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 2 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; see the file COPYING. +## If not, write to the Free Software Foundation, Inc., +## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +## +##---------------------------------------------------------------------------## + +import sys, os + +from pysollib.settings import TOOLKIT, USE_TILE +from pysollib.tile import Tile + +from common import baseInitRootWindow + + +class initRootWindow(baseInitRootWindow): + def __init__(self, root, app): + baseInitRootWindow.__init__(self, root, app) + if TOOLKIT == 'gtk': + pass + elif USE_TILE: + theme = app.opt.tile_theme + if theme not in ('winnative', 'xpnative'): + color = style.lookup('.', 'background') + if color: + top.tk_setPalette(color) + ##top.option_add('*Menu.foreground', 'black') + top.option_add('*Menu.activeBackground', '#08246b') + top.option_add('*Menu.activeForeground', 'white') + if theme == 'winnative': + style.configure('Toolbutton', padding=2) + else: + #root.option_add(...) + pass + + +class TkSettings(BaseTkSettings): + toolbar_relief = 'groove' + toolbar_borderwidth = 2 + if USE_TILE: + toolbar_button_padding = (2, 0) + toolbar_label_padding = (6, 6) + diff --git a/pysollib/tksettings/x11.py b/pysollib/tksettings/x11.py new file mode 100644 index 00000000..3f92ecff --- /dev/null +++ b/pysollib/tksettings/x11.py @@ -0,0 +1,78 @@ +##---------------------------------------------------------------------------## +## +## PySol -- a Python Solitaire game +## +## 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 2 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; see the file COPYING. +## If not, write to the Free Software Foundation, Inc., +## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +## +##---------------------------------------------------------------------------## + +import sys, os + +from pysollib.settings import TOOLKIT, USE_TILE +from pysollib.tile import Tile + +from common import baseInitRootWindow, BaseTkSettings + + +# /*********************************************************************** +# // Init root window +# ************************************************************************/ + +class initRootWindow(baseInitRootWindow): + def __init__(self, root, app): + baseInitRootWindow.__init__(self, root, app) + + ##root.self.wm_maxsize(9999, 9999) # unlimited + if TOOLKIT == 'gtk': + pass + elif USE_TILE: + f = os.path.join(app.dataloader.dir, 'tcl', 'menu8.4.tcl') + if os.path.exists(f): + root.tk.call('source', f) + style = Tile.Style(root) + color = style.lookup('.', 'background') + if color: + root.tk_setPalette(color) + color = style.lookup('.', 'background', 'active') + if color: + root.option_add('*Menu.activeBackground', color) + font = style.lookup('.', 'font') + if font: + root.option_add('*font', font) + root.option_add('*Menu.borderWidth', 1, 60) + root.option_add('*Menu.activeBorderWidth', 1, 60) + # + else: + root.option_add('*Entry.background', 'white', 60) + root.option_add('*Entry.foreground', 'black', 60) + root.option_add('*Listbox.background', 'white', 60) + root.option_add('*Listbox.foreground', 'black', 60) + ##root.option_add('*borderWidth', '1', 50) + ##root.option_add('*Button.borderWidth', '1', 50) + root.option_add('*Scrollbar.elementBorderWidth', 1, 60) + root.option_add('*Scrollbar.borderWidth', 1, 60) + root.option_add('*Menu.borderWidth', 1, 60) + root.option_add('*Menu.activeBorderWidth', 1, 60) + #root.option_add('*Button.HighlightBackground', '#595d59') + #root.option_add('*Button.HighlightThickness', '1') + root.option_add('*font', 'helvetica 12', 60) + + + +class TkSettings(BaseTkSettings): + pass + + diff --git a/setup.py b/setup.py index 4ae9b92e..6ec5b87d 100644 --- a/setup.py +++ b/setup.py @@ -77,7 +77,7 @@ kw = { } if os.name == 'nt': - kw['windows'] = [{'script': 'pysol', + kw['windows'] = [{'script': 'pysol.py', 'icon_resources': [(1, 'data/pysol.ico')], }] kw['packages'].remove('pysollib.pysolgtk')