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

Re-enabled toolbar style selection option.

This commit is contained in:
Joe R 2021-11-19 17:57:59 -05:00
parent c2bc75caf7
commit 962dc3ffeb
14 changed files with 17 additions and 17 deletions

View file

@ -0,0 +1 @@
Icons by remixicon.com

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 413 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 B

View file

@ -22,21 +22,27 @@ from six.moves import tkinter_tkfiledialog
def createToolbarMenu(menubar, menu):
tearoff = menu.cget('tearoff')
# data_dir = os.path.join(menubar.app.dataloader.dir, 'images', 'toolbar')
# submenu = MfxMenu(menu, label=n_('Style'), tearoff=tearoff)
# for f in os.listdir(data_dir):
# d = os.path.join(data_dir, f)
# if os.path.isdir(d) and os.path.exists(os.path.join(d, 'small')):
# name = f.replace('_', ' ').capitalize()
# submenu.add_radiobutton(
# label=name,
# variable=menubar.tkopt.toolbar_style,
# value=f, command=menubar.mOptToolbarStyle)
data_dir = os.path.join(menubar.app.dataloader.dir, 'images', 'toolbar')
submenu = MfxMenu(menu, label=n_('Style'), tearoff=tearoff)
for f in os.listdir(data_dir):
d = os.path.join(data_dir, f)
if os.path.isdir(d) and os.path.exists(os.path.join(d, 'small')):
name = f.replace('_', ' ').capitalize()
submenu.add_radiobutton(
label=name,
variable=menubar.tkopt.toolbar_style,
value=f, command=menubar.mOptToolbarStyle)
submenu = MfxMenu(menu, label=n_('Compound'), tearoff=tearoff)
for comp, label in COMPOUNDS:
submenu.add_radiobutton(
label=label, variable=menubar.tkopt.toolbar_compound,
value=comp, command=menubar.mOptToolbarCompound)
submenu = MfxMenu(menu, label=n_('Visible buttons'), tearoff=tearoff)
for w in TOOLBAR_BUTTONS:
submenu.add_checkbutton(
label=_(w.capitalize()),
variable=menubar.tkopt.toolbar_vars[w],
command=lambda m=menubar, w=w: m.mOptToolbarConfig(w))
menu.add_separator()
menu.add_radiobutton(label=n_("Hide"),
variable=menubar.tkopt.toolbar, value=0,
@ -60,13 +66,6 @@ def createToolbarMenu(menubar, menu):
# menu.add_radiobutton(label=n_("Large icons"),
# variable=menubar.tkopt.toolbar_size, value=1,
# command=menubar.mOptToolbarSize)
menu.add_separator()
submenu = MfxMenu(menu, label=n_('Visible buttons'), tearoff=tearoff)
for w in TOOLBAR_BUTTONS:
submenu.add_checkbutton(
label=_(w.capitalize()),
variable=menubar.tkopt.toolbar_vars[w],
command=lambda m=menubar, w=w: m.mOptToolbarConfig(w))
# ************************************************************************