mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Added ttkthemes support
This commit is contained in:
parent
feed149bd9
commit
bbaeb54266
5 changed files with 29 additions and 9 deletions
|
@ -11,6 +11,7 @@ install:
|
|||
- SET PATH=%PYTHON%;%PYTHON%\Scripts;C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
|
||||
- python3 -mpip install Pillow attrs configobj flake8 flake8-import-order
|
||||
pycotap pygame pyinstaller pysol-cards random2 setuptools six
|
||||
ttkthemes
|
||||
- perl -v
|
||||
- copy C:\msys64\mingw64\bin\mingw32-make.exe C:\msys64\mingw64\bin\make.exe
|
||||
- SET PERL5LIB=C:/_P5/lib/perl5
|
||||
|
|
2
.github/workflows/macos-package.yml
vendored
2
.github/workflows/macos-package.yml
vendored
|
@ -23,7 +23,7 @@ jobs:
|
|||
run: |
|
||||
python3 -m pip install --upgrade pip
|
||||
python3 -m pip install --no-binary=Pillow \
|
||||
Pillow attrs configobj py2app pycotap pysol-cards random2 setuptools six
|
||||
Pillow attrs configobj py2app pycotap pysol-cards random2 setuptools six ttkthemes
|
||||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||||
brew install create-dmg
|
||||
- name: Get cardsets
|
||||
|
|
|
@ -40,6 +40,7 @@ can be implemented.
|
|||
|
||||
- Other packages (optional):
|
||||
- Pillow (Python Imaging Library): https://pillow.readthedocs.io/
|
||||
- TTKThemes: https://ttkthemes.readthedocs.io/
|
||||
- Freecell Solver: https://fc-solve.shlomifish.org/
|
||||
- [Black Hole Solitaire Solver](https://www.shlomifish.org/open-source/projects/black-hole-solitaire-solver/)
|
||||
|
||||
|
|
|
@ -114,16 +114,29 @@ the next time you restart %(app)s""") % {'app': TITLE},
|
|||
|
||||
def createThemesMenu(self, menu):
|
||||
submenu = MfxMenu(menu, label=n_("Set t&heme"))
|
||||
all_themes = list(ttk.Style(self.top).theme_names())
|
||||
|
||||
try:
|
||||
from ttkthemes import themed_style
|
||||
style_path = themed_style.ThemedStyle(self.top)
|
||||
except ImportError:
|
||||
style_path = ttk.Style(self.top)
|
||||
all_themes = list(style_path.theme_names())
|
||||
|
||||
all_themes.sort()
|
||||
#
|
||||
tn = {
|
||||
'default': n_('Default'),
|
||||
'classic': n_('Classic'),
|
||||
'alt': n_('Revitalized'),
|
||||
'winnative': n_('Windows native'),
|
||||
'alt': n_('Alt/Revitalized'),
|
||||
'itft1': n_('ITFT1'),
|
||||
'scidblue': n_('Scid Blue'),
|
||||
'scidgreen': n_('Scid Green'),
|
||||
'scidgrey': n_('Scid Grey'),
|
||||
'scidmint': n_('Scid Mint'),
|
||||
'scidpink': n_('Scid Pink'),
|
||||
'scidpurple': n_('Scid Purple'),
|
||||
'scidsand': n_('Scid Sand'),
|
||||
'winnative': n_('Windows Native'),
|
||||
'winxpblue': n_('Windows XP Blue'),
|
||||
'xpnative': n_('XP Native'),
|
||||
'aqua': n_('Aqua'),
|
||||
}
|
||||
for t in all_themes:
|
||||
try:
|
||||
|
|
|
@ -53,8 +53,13 @@ def init_tile(app, top):
|
|||
|
||||
|
||||
def set_theme(app, top, theme):
|
||||
# set theme
|
||||
# set
|
||||
try:
|
||||
from ttkthemes import themed_style
|
||||
style = themed_style.ThemedStyle(top)
|
||||
except ImportError:
|
||||
style = ttk.Style(top)
|
||||
|
||||
try:
|
||||
style.theme_use(theme)
|
||||
except Exception:
|
||||
|
|
Loading…
Add table
Reference in a new issue