예제 #1
0
 def _goToGlyph(self, glyphName):
     widget = self.parent()
     font = self._glyph.font
     if glyphName in font:
         glyph = font[glyphName]
         glyphWindow = GlyphWindow(glyph, widget.window().parent())
         glyphWindow.show()
예제 #2
0
 def _glyphActivated(self, glyph):
     glyphWindow = GlyphWindow(glyph, self.parent())
     glyphWindow.show()
예제 #3
0
파일: fontWindow.py 프로젝트: madig/trufont
 def _glyphActivated(self, glyph):
     glyphWindow = GlyphWindow(glyph, self)
     glyphWindow.show()
예제 #4
0
 def _glyphActivated(self, glyph):
     # TODO: parent should be self. make glyphWindow independent of its
     # parent
     glyphWindow = GlyphWindow(glyph, self.parent())
     glyphWindow.show()