Forum Replies Created
-
AuthorPosts
-
The way that your program is written right now, you could only be using functions. Classes are a way of creating objects that work as a kind of state machine. Usually they represent some kind of resource that your program has to work with and manipulate over the course of the script. What’s helpful about classes is that they can store variables that are scoped to the class instance, and those variables can be accessible from other class functions.
For instance, you currently have activateSet, deactivateSet, saveThisSet, and isExternal. All of these take a set as an argument and do something to it. That all of these functions manipulate the same resource is a good indication that it could be better expressed as a class.
For example:
class GlyphSet(object): def __init__(self, set): self.set = set def activate(self): addSmartSet(self.set) # ... def deactivate(self): # perform deactivation on self.set def save(self): # perform save on self.set def is_external(self): # check if self.set is 'external' for set in getSmartSets(): glyph_set = GlyphSet(set) glyph_set.activate() if glyph_set.is_external(): glyph_set.save() # etc...
I’d recommend reading this chapter of Learn Python the Hard Way, which details how modules and classes work and what you can use them for: http://learnpythonthehardway.org/book/ex40.html
As a general comment, your methods are pretty long. Breaking up your methods into logical chunks will help make it more readable and easier to maintain (since you can probably reuse them in other places).
Frederik will have to help you with the other technical bits. :)
Perfect!
That’s good to know about referencing images in a bundle. Is it also possible to reference the resources that are built in to RoboFont (like extensionIcon.png)?
Haha, not the answer I was expecting. Next time I’ll come up with more outlandish things to do.
Sorry about missing the mogo.extensions thing. I guess I need to sit down with the docs and read everything over again to make sure I don’t ask any more dumb questions.
Getting the list of extensions should work well for what I’m working on now, but one of those other methods will be handy down the line. Really looking forward to custom events. :D
Well, I’ve gotten past that hurdle by reading the the NSImage docs, now I just need to figure out how the “view” option works for the vanilla addToolbar method (as I’m trying to match the style of the Glyph view buttons. I snooped around and found that the toolbar in the Glyph view is using a view called ToolbarGlyphTools, and I think that I’m importing that module from lib.UI.toolbarGlyphTools. Not sure how to get this hooked up because this doesn’t seem to work. Maybe I’m barking up the wrong tree…
from lib.UI.toolbarGlyphTools import ToolbarGlyphTools newItem = dict(itemIdentifier="myNewButton", label="Button", imageObject=NSImage.alloc().initByReferencingFile_(imagePath), callback=self.myCallback, view = ToolbarGlyphTools.alloc().init() )
not sure how to do code tags either…
Not to let all of your tricks out of the bag, but is there a shortcut available to set the icons as PDFs like you’re doing in other parts of the application?
My ObjC abilities are poor, and I’m not sure if this is a job for NSPDFImageRef or…?
Haha, it’s easy if you say so, frederik.
Is there a list of the observable events that RoboFont supports? I assume that I can just read through the source of defcon to find its events…
Thanks. :)
-
AuthorPosts