mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
122 lines
4.8 KiB
Python
122 lines
4.8 KiB
Python
#!/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/>.
|
|
#
|
|
# ---------------------------------------------------------------------------
|
|
|
|
import tkinter
|
|
|
|
from pysollib.mfxutil import KwStruct
|
|
from pysollib.mygettext import _
|
|
|
|
from six.moves.tkinter_colorchooser import askcolor
|
|
|
|
|
|
class BaseColorsDialog:
|
|
def _calcFrame(self):
|
|
return self._calcToolkit().Frame
|
|
|
|
def _calcLabel(self):
|
|
return self._calcToolkit().Label
|
|
|
|
def _calcButton(self):
|
|
return self._calcToolkit().Button
|
|
|
|
def __init__(self, parent, title, app, **kw):
|
|
kw = self.initKw(kw)
|
|
self._calc_MfxDialog().__init__(
|
|
self, parent, title, kw.resizable, kw.default)
|
|
top_frame, bottom_frame = self.createFrames(kw)
|
|
self.createBitmaps(top_frame, kw)
|
|
|
|
frame = self._calcFrame()(top_frame)
|
|
frame.pack(expand=True, fill='both', padx=5, pady=10)
|
|
frame.columnconfigure(0, weight=1)
|
|
|
|
self.text_var = tkinter.StringVar()
|
|
self.text_var.set(app.opt.colors['text'])
|
|
self.piles_var = tkinter.StringVar()
|
|
self.piles_var.set(app.opt.colors['piles'])
|
|
self.cards_1_var = tkinter.StringVar()
|
|
self.cards_1_var.set(app.opt.colors['cards_1'])
|
|
self.cards_2_var = tkinter.StringVar()
|
|
self.cards_2_var.set(app.opt.colors['cards_2'])
|
|
self.samerank_1_var = tkinter.StringVar()
|
|
self.samerank_1_var.set(app.opt.colors['samerank_1'])
|
|
self.samerank_2_var = tkinter.StringVar()
|
|
self.samerank_2_var.set(app.opt.colors['samerank_2'])
|
|
self.hintarrow_var = tkinter.StringVar()
|
|
self.hintarrow_var.set(app.opt.colors['hintarrow'])
|
|
self.not_matching_var = tkinter.StringVar()
|
|
self.not_matching_var.set(app.opt.colors['not_matching'])
|
|
#
|
|
row = 0
|
|
for title, var in (
|
|
(_('Text foreground:'), self.text_var),
|
|
(_('Highlight piles:'), self.piles_var),
|
|
(_('Highlight cards 1:'), self.cards_1_var),
|
|
(_('Highlight cards 2:'), self.cards_2_var),
|
|
(_('Highlight same rank 1:'), self.samerank_1_var),
|
|
(_('Highlight same rank 2:'), self.samerank_2_var),
|
|
(_('Hint arrow:'), self.hintarrow_var),
|
|
(_('Highlight not matching:'), self.not_matching_var),
|
|
):
|
|
self._calcLabel()(
|
|
frame, text=title, anchor='w',).grid(
|
|
row=row, column=0, sticky='we')
|
|
label = tkinter.Label(frame, width=10, height=2,
|
|
bg=var.get(), textvariable=var)
|
|
label.grid(row=row, column=1, padx=5)
|
|
b = self._calcButton()(
|
|
frame, text=_('Change...'), width=10,
|
|
command=lambda label=label: self.selectColor(label))
|
|
b.grid(row=row, column=2)
|
|
row += 1
|
|
#
|
|
focus = self.createButtons(bottom_frame, kw)
|
|
self.mainloop(focus, kw.timeout)
|
|
#
|
|
self.text_color = self.text_var.get()
|
|
self.piles_color = self.piles_var.get()
|
|
self.cards_1_color = self.cards_1_var.get()
|
|
self.cards_2_color = self.cards_2_var.get()
|
|
self.samerank_1_color = self.samerank_1_var.get()
|
|
self.samerank_2_color = self.samerank_2_var.get()
|
|
self.hintarrow_color = self.hintarrow_var.get()
|
|
self.not_matching_color = self.not_matching_var.get()
|
|
|
|
def selectColor(self, label):
|
|
try:
|
|
c = askcolor(parent=self.top, initialcolor=label.cget('bg'),
|
|
title=_("Select color"))
|
|
except Exception:
|
|
pass
|
|
else:
|
|
if c and c[1]:
|
|
label.configure(bg=c[1])
|
|
# label.configure(text=c[1]) # don't work
|
|
label.setvar(label.cget('textvariable'), c[1])
|
|
|
|
def initKw(self, kw):
|
|
kw = KwStruct(kw,
|
|
strings=(_("&OK"), _("&Cancel")),
|
|
default=0,
|
|
)
|
|
return self._calc_MfxDialog().initKw(self, kw)
|