Forum Replies Created
-
AuthorPosts
-
He Michael
could you post your issue here: http://forum.robofont.com
this forum will be closed soon…
thanks
no problem
here are some hints and tricks to get it working :)
I hope this sets you in the right direction
good luck
from mojo.canvas import Canvas from mojo.drawingTools import * import mojo.drawingTools as mojoDrawingTools from vanilla import * from mojo.events import addObserver,removeObserver from defconAppKit.windows.baseWindow import BaseWindowController import AppKit class ExampleWindow(BaseWindowController): def __init__(self): self.size = 50 self.offset = 0, 0 self.w = Window((400, 400), minSize=(200, 200)) self.w.slider = Slider((10, 5, -10, 22), value=self.size, callback=self.sliderCallback) self.w.canvas = Canvas((0, 30, -0, 400), canvasSize=(1000, 1000),delegate=self, hasHorizontalScroller=True, hasVerticalScroller=True)#,acceptsMouseMoved=True) # acceptsMouseMoved=True sounds useful, but it is an unexpected keyword? # ----->>>> 'acceptsMouseMoved' is a method, return True to receive mouseMoved callback in the delegate (see below) self.setUpBaseWindowBehavior() self.w.open() print help(mojoDrawingTools) # module docs link broken http://docs.python.org/library/mojo.drawingTools # ----->>>>> euh funny :) print help(Canvas) ## HELP ## if I use these observers, I can only get information about the mouse when clicking in a glyph window, ## I Want the information when I click in the canvas I created ## If I don't use these observers and use the methods directly, I do get the event when clicking on the canvas, but it is NSEvent, the information for instance location is relative to this window, which is what I want. ## how can I get this inforation as python dict or tuples or lists? addObserver(self, "_mouseMoved", "mouseMoved") addObserver(self, "_mouseDown", "mouseDown") # ----->>>>> # this object acts a delegate for the canvas object # every event can be redirected to this object from the canvas object # this will provide you info about events within the canvas object # obserers just observer a specific action and send a notification to a given method # < <<<<<----- def windowCloseCallback(self, sender): #when this window w is closed, remove the observer removeObserver(self, "mouseMoved") removeObserver(self, "mouseDown") # super I do not know what it's for, but it is in the example # ------>>>>> you need this as the BaseWindowController also does stuff while closing the window super(ExampleWindow, self).windowCloseCallback(sender) def sliderCallback(self, sender): self.size = sender.get() self.w.canvas.update() def draw(self): # offset the canvas x, y = self.offset translate(x, y) #set scale of canvas scale(self.size*0.1) #print CurrentGlyph() if CurrentGlyph(): #draw current glyph to canvas (will need to observe when current glyph changes, but this is just to test) drawGlyph(CurrentGlyph()) def acceptsMouseMoved(self): return False # mouse down that is not from observer, gives NSEvent for click relative to window def mouseDown(self, event): # ----->>>> see https://developer.apple.com/documentation/appkit/nsevent?language=objc print type(event) view = self.w.canvas.getNSView() print view.convertPoint_fromView_(event.locationInWindow(), None) # mouse down from observer give info as dict def _mouseDown(self, notification): print notification["event"] print notification["glyph"] print notification["point"] # mouse moved that is not from observer, gives NSEvent for mouse relative to window def mouseMoved(self, event): print event.locationInWindow() # mouse moved from observer give info as dict def _mouseMoved(self, notification): print notification def mouseDragged(self, event): # how to grab and drag the canvas? from sender I get information in an NSEvent, how can I access that information and do something useful with it? print 'drag?', event x, y = self.offset self.offset = x + event.deltaX(), y - event.deltaY() self.w.canvas.update() ExampleWindow()
and for
acceptsMouseMoved
that seems to be a typo in the docsyour controller class needs:
def acceptsMouseMoved(self): return True
– you can transform the canvas with a drawBot style api see http://doc.robofont.com/api/mojo/mojo-drawingtools/
scale(value)
will do it–
acceptsMouseMoved
is very intensive as the canvas would send notifications whenever the mouse has moved, instead of the sequencemouseDown
mouseDrag
mouseUp
but you will needmouseMoved
to– you will need to check for the notifications: “glyphWindowWillOpen” and “glyphWindowWillClose” and “currentGlyphChanged” to be able to make such a panning panel
– each glyph window has a glyph view, and a handy method is
_getMousePosition(nsEventObj)
now private, but I can open that in next versions… this is converting the nsevent mouse positions to glyph space coordinates.I guess from here you should be able to make the puzzle :)
other wise ask
enjoy!
May 15, 2017 at 15:23 in reply to: Tool tip or similar to reveal, for example, which name table entry is which #6317I will add this to the to-do list. The tooltip could refer to the UFO info attribute. Also see https://doc.robofont.com/documentation/workspace/font-info/ for detailed documentation
Thanks
April 5, 2017 at 07:57 in reply to: Retain side bearings of base glyph when creating diacritic (component) #6312he Josh
could you provide a real example?
it should take the metrics of the first component, in your exampleagrave=a+grave@top
theagrave
should have the same metrics asa
thanks
mmm, not directly from the robofab objects
but you could use the naked object
g = CurrentGlyph() # remove the first segment from the first contour g[0].naked().removeSegment(0, preserveCurve=True)
good luck!
Hi Josh
This was reased by fontTools, an internal package to read and write binary fonts.
see the discussion over here https://github.com/fonttools/fonttools/issues/767
this will be resolved in the next update
thanks
the names comes from https://github.com/LettError/glyphNameFormatter
it has support for 9000 unicode to glyph names
(AGL has only 600 entries)you can adjust this list or use your own if you like, see the prefs
you can access glyphNameFormatter with a script, glyph.autoUnicode is already using this for setting unicode values
from glyphNameFormatter import GlyphName n = GlyphName(uniNumber=0x1234, scriptSeparator=":", scriptAsPrefix=True) print n.getName()
December 10, 2016 at 14:11 in reply to: Cap height + descender adjustments affect line spacing #6297Hi Josh
The metrics settings in the font info panel are always related to the
units per em
value. If you did not change the value ofunits per em
then the line space will increase.The ascender and descender value should match up with the units per em value, depending your design off course.
good luck!
Good point!
In the next update, OpenWindow will return True when the window is already open and False if it hast to create a new instance of the class
Thanks
As far is I understand this example, this will run forever until a traceback is raised.
This seems to work fine with an htmlView inside RoboFont.
Good luck
Hi Eduardo
I dont have this script: ’12 EMT Generar si UI.py’
but
f.info.postscrverticaliptFontName
should be
f.info.postscriptFontName
and it is not advised to use spaces in a script file name
good luck
Could you send me the UFO file? If you wish I have a look at it
There is a somewhere (I guess in the font info) a non ascii character, as Ben mentions
You will have to write a tiny script that takes a font and creates a new window with a glyph collection view. Any double click could then open a glyph window.
Could you elaborate why you would need a second (or multiple) font overviews?
I can make you an example, if you wish…
-
AuthorPosts