mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
+ improved tile support
git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@79 efabe8c0-fbe8-4139-b769-b5e6d273206e
This commit is contained in:
parent
9e682f4bfe
commit
d89f589b82
5 changed files with 51 additions and 19 deletions
|
@ -17,6 +17,7 @@ include scripts/all_games.py scripts/cardset_viewer.py
|
||||||
include docs/*
|
include docs/*
|
||||||
graft data/html
|
graft data/html
|
||||||
graft data/html-src
|
graft data/html-src
|
||||||
|
graft data/themes
|
||||||
##
|
##
|
||||||
## data - images
|
## data - images
|
||||||
##
|
##
|
||||||
|
|
|
@ -213,9 +213,6 @@ def pysol_init(app, args):
|
||||||
app.debug = int(opts['debug'])
|
app.debug = int(opts['debug'])
|
||||||
except:
|
except:
|
||||||
print >> sys.stderr, 'invalid argument for debug'
|
print >> sys.stderr, 'invalid argument for debug'
|
||||||
if opts['tile-theme']:
|
|
||||||
import settings
|
|
||||||
settings.TILE_THEME = opts['tile-theme']
|
|
||||||
|
|
||||||
# init games database
|
# init games database
|
||||||
import games
|
import games
|
||||||
|
@ -245,8 +242,15 @@ def pysol_init(app, args):
|
||||||
app.top_bg = top.cget("bg")
|
app.top_bg = top.cget("bg")
|
||||||
app.top_palette = [None, None] # [fg, bg]
|
app.top_palette = [None, None] # [fg, bg]
|
||||||
app.top_cursor = top.cget("cursor")
|
app.top_cursor = top.cget("cursor")
|
||||||
|
if USE_TILE:
|
||||||
# print some debug info
|
import settings
|
||||||
|
if opts['tile-theme']:
|
||||||
|
settings.TILE_THEME = opts['tile-theme']
|
||||||
|
from pysoltk import load_theme
|
||||||
|
try:
|
||||||
|
load_theme(app, top, settings.TILE_THEME)
|
||||||
|
except Exception, err:
|
||||||
|
print >> sys.stderr, 'ERROR: set theme:', err
|
||||||
|
|
||||||
# load options
|
# load options
|
||||||
app.loadOptions()
|
app.loadOptions()
|
||||||
|
|
|
@ -52,6 +52,7 @@ __all__ = ['wm_withdraw',
|
||||||
#'fillImage',
|
#'fillImage',
|
||||||
'createImage',
|
'createImage',
|
||||||
'get_text_width',
|
'get_text_width',
|
||||||
|
'load_theme',
|
||||||
]
|
]
|
||||||
|
|
||||||
# imports
|
# imports
|
||||||
|
@ -174,14 +175,9 @@ def make_help_toplevel(app, title=None):
|
||||||
# Create an independent Toplevel window.
|
# Create an independent Toplevel window.
|
||||||
parent = app.top
|
parent = app.top
|
||||||
window = Tkinter.Tk(className=PACKAGE)
|
window = Tkinter.Tk(className=PACKAGE)
|
||||||
window.tk.call('package', 'require', 'tile')
|
|
||||||
from pysollib.settings import TILE_THEME
|
from pysollib.settings import TILE_THEME
|
||||||
if TILE_THEME:
|
if TILE_THEME:
|
||||||
##window.tk.call('style', 'theme', 'use', TILE_THEME)
|
load_theme(app, window, TILE_THEME)
|
||||||
style = Tkinter.Style(window)
|
|
||||||
style.theme_use(TILE_THEME)
|
|
||||||
bg = window.tk.call('style', 'lookup', TILE_THEME, '-background')
|
|
||||||
window.tk_setPalette(bg)
|
|
||||||
font = parent.option_get('font', '')
|
font = parent.option_get('font', '')
|
||||||
if font:
|
if font:
|
||||||
window.option_add('*font', font)
|
window.option_add('*font', font)
|
||||||
|
@ -195,7 +191,6 @@ def make_help_toplevel(app, title=None):
|
||||||
if os.name == "posix":
|
if os.name == "posix":
|
||||||
window.option_add('*Scrollbar.elementBorderWidth', '1', 60)
|
window.option_add('*Scrollbar.elementBorderWidth', '1', 60)
|
||||||
window.option_add('*Scrollbar.borderWidth', '1', 60)
|
window.option_add('*Scrollbar.borderWidth', '1', 60)
|
||||||
|
|
||||||
if title:
|
if title:
|
||||||
window.wm_title(title)
|
window.wm_title(title)
|
||||||
window.wm_iconname(title)
|
window.wm_iconname(title)
|
||||||
|
@ -409,3 +404,31 @@ def createImage(width, height, fill, outline=None):
|
||||||
def get_text_width(text, font, root=None):
|
def get_text_width(text, font, root=None):
|
||||||
return Font(root=root, font=font).measure(text)
|
return Font(root=root, font=font).measure(text)
|
||||||
|
|
||||||
|
|
||||||
|
# /***********************************************************************
|
||||||
|
# //
|
||||||
|
# ************************************************************************/
|
||||||
|
|
||||||
|
def load_theme(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):
|
||||||
|
#top.tk.call('tile::setTheme', t)
|
||||||
|
try:
|
||||||
|
top.tk.call('package', 'require', 'tile::theme::'+t)
|
||||||
|
##print 'load theme:', t
|
||||||
|
except:
|
||||||
|
traceback.print_exc()
|
||||||
|
pass
|
||||||
|
# set theme
|
||||||
|
if theme:
|
||||||
|
top.tk.call('style', 'theme', 'use', theme)
|
||||||
|
bg = top.tk.call('style', 'lookup', '.', '-background')
|
||||||
|
top.tk_setPalette(bg)
|
||||||
|
bg = top.tk.call('style', 'lookup', '.', '-background', 'active')
|
||||||
|
top.option_add('*Menu.activeBackground', bg)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -85,12 +85,12 @@ StringVar = Tkinter.StringVar
|
||||||
class MfxRoot(Tkinter.Tk):
|
class MfxRoot(Tkinter.Tk):
|
||||||
def __init__(self, **kw):
|
def __init__(self, **kw):
|
||||||
apply(Tkinter.Tk.__init__, (self,), kw)
|
apply(Tkinter.Tk.__init__, (self,), kw)
|
||||||
self.tk.call("package", "require", "tile")
|
## self.tk.call("package", "require", "tile")
|
||||||
from pysollib.settings import TILE_THEME
|
## from pysollib.settings import TILE_THEME
|
||||||
if TILE_THEME:
|
## if TILE_THEME:
|
||||||
##self.tk.call('style', 'theme', 'use', TILE_THEME)
|
## ##self.tk.call('style', 'theme', 'use', TILE_THEME)
|
||||||
style = Tkinter.Style(self)
|
## style = Tkinter.Style(self)
|
||||||
style.theme_use(TILE_THEME)
|
## style.theme_use(TILE_THEME)
|
||||||
self.app = None
|
self.app = None
|
||||||
# for interruptible sleep
|
# for interruptible sleep
|
||||||
#self.sleep_var = Tkinter.IntVar(self)
|
#self.sleep_var = Tkinter.IntVar(self)
|
||||||
|
|
|
@ -38,6 +38,7 @@ __all__ = ['PysolToolbar'] #, 'TOOLBAR_BUTTONS']
|
||||||
# imports
|
# imports
|
||||||
import os, sys, types
|
import os, sys, types
|
||||||
import traceback
|
import traceback
|
||||||
|
import Tkinter as Tk
|
||||||
import Tile as Tkinter
|
import Tile as Tkinter
|
||||||
try:
|
try:
|
||||||
# PIL
|
# PIL
|
||||||
|
@ -223,7 +224,8 @@ class PysolToolbar(PysolToolbarActions):
|
||||||
self.label_pady = 4
|
self.label_pady = 4
|
||||||
self.button_pad = 2
|
self.button_pad = 2
|
||||||
#
|
#
|
||||||
self.frame = Tkinter.Frame(top, class_='Toolbar')
|
#self.frame = Tkinter.Frame(top, class_='Toolbar')
|
||||||
|
self.frame = Tk.Frame(top)
|
||||||
#
|
#
|
||||||
for l, f, t in (
|
for l, f, t in (
|
||||||
(n_("New"), self.mNewGame, _("New game")),
|
(n_("New"), self.mNewGame, _("New game")),
|
||||||
|
@ -273,6 +275,7 @@ class PysolToolbar(PysolToolbarActions):
|
||||||
if os.name == 'posix':
|
if os.name == 'posix':
|
||||||
#self.frame.config(bd=0, highlightthickness=1)
|
#self.frame.config(bd=0, highlightthickness=1)
|
||||||
#~self.frame.config(bd=1, relief=self.frame_relief, highlightthickness=0)
|
#~self.frame.config(bd=1, relief=self.frame_relief, highlightthickness=0)
|
||||||
|
self.frame.config(bd=1, relief='raised', highlightthickness=0)
|
||||||
pass
|
pass
|
||||||
elif os.name == "nt":
|
elif os.name == "nt":
|
||||||
self.frame.config(bd=2, relief=self.frame_relief, padx=2, pady=2)
|
self.frame.config(bd=2, relief=self.frame_relief, padx=2, pady=2)
|
||||||
|
@ -536,6 +539,7 @@ class PysolToolbar(PysolToolbarActions):
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
def setRelief(self, relief):
|
def setRelief(self, relief):
|
||||||
|
return True
|
||||||
if self.button_relief == relief:
|
if self.button_relief == relief:
|
||||||
return False
|
return False
|
||||||
self._setRelief(relief)
|
self._setRelief(relief)
|
||||||
|
|
Loading…
Add table
Reference in a new issue