toggle font window toolbar in robofont
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# menuTitle : Toggle Font Toolbar | |
# shortCut : command+alt+` | |
from mojo.UI import AllFontWindows | |
''' | |
toggle the visibility of the toolbar and the status bar in robofont's font overview window | |
sorry, i haven't tested this in single window mode or anything | |
''' | |
def toggleFontWindowToolbar(): | |
# get first window state and use that for the other windows so they all stay in sync | |
w1 = AllFontWindows()[0].window().getNSWindow() | |
w1state = w1._toolbarIsShown() | |
for window in AllFontWindows(): | |
if window is None: | |
return | |
w = window.window().getNSWindow() | |
(wX, wY), (wW, wH) = w.frame() | |
if w1state == 1: | |
w.hideToolbar_(True) | |
show = False | |
else: | |
w.showToolbar_(True) | |
show = True | |
w.setFrame_display_animate_(((wX, wY), (wW, wH)), True, False) | |
fo = window.fontOverview | |
fo.statusBar.show(show) | |
fo.views.selectionStatus.show(show) | |
fo.views.sizeSlider.show(show) | |
fo.getGlyphCollection().setPosSize((0, 0, 0, -20)) | |
if show is False: | |
fo.getGlyphCollection().setPosSize((0, 0, 0, 0)) | |
# the view mode buttons, there has to be a better way | |
vmb = fo.views.collectionSplitView.getSplitView().subviews()[1] | |
vmb.subviews()[1].vanillaWrapper().show(show) | |
vmb.subviews()[2].vanillaWrapper().show(show) | |
toggleFontWindowToolbar() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
quick fix to make sure all windows have the same toolbar state