Re: Kerning Pairs

2014-10-13 Thread Aandi Inston
> > > It sounds like you're trying rrreay hard to avoid admitting to > > yourself that your model code needs to be rewritten. > > I don't think so as our model code works just fine when driven from > Windows V-C that get a font, gets it its outline and mer table and call the > model. Beautiful

Re: NSPopover tear-off problem

2014-10-13 Thread Keary Suska
On Oct 12, 2014, at 10:02 PM, Graham Cox wrote: > On 13 Oct 2014, at 2:43 pm, Graham Cox wrote: > >> But if I turn the popover into a window by allowing it to be dragged, the >> window's content is screwed up - instead of sizing the overall view to fit >> the window, a subview (an NSTableView

Re: How to pretty print floating numbers (without loosing precision)?

2014-10-13 Thread Richard Charles
A float has 7.22 decimal digits of precision. A double has 15.95 decimal digits of precision. http://en.wikipedia.org/wiki/IEEE_floating_point The format specification Apple uses for [NSNumber descriptionWithLocale:] with a data type of double is %0.16g. Refer to Apple documentation. [NSNumber

Code signing problem using shared framework in Yosemite-SOLVED

2014-10-13 Thread Bill Cheeseman
On Oct 12, 2014, at 12:21 PM, Bill Cheeseman wrote: > The code signing warning is surprising, because both the UI Browser > application and the framework pass all of the codesign tests for proper > signatures on disk. > > Is code signing now making it impossible to use shared frameworks at all

UIDocumentInteractionController on iOS 8 not work

2014-10-13 Thread Dong Feng
I use class UIDocumentInteractionController for two cases. 1. I want iOS to show the Open-In panel which lists *ALL* apps supporting open-in with a JPEG/PNG files. 2. I want iOS to show the Open-In panel which only has an Instagram icon in it. For the first case, I use the following c

Bottom - Source/Accessory ToolBar question

2014-10-13 Thread Luther Baker
A few years back, many Mac apps had a similar looking bottom bar on the left hand side of the app. Specifically, apps that had a "Source" style outline view on the left hand side had this silverish gradient styled bottom bar that often consisted of "plus" and "minus" buttons on the left and a gripp

Re: Bottom - Source/Accessory ToolBar question

2014-10-13 Thread Graham Cox
Pretty sure you have to make it yourself. Making it act as a "gripper" for the split pane is easy enough, that class has a way to nominate an additional region for dragging the split bar via its delegate: -[NSSplitViewDelegate splitView:additionalEffectiveRectOfDividerAtIndex:] The gradient yo

Re: Bottom - Source/Accessory ToolBar question

2014-10-13 Thread Ken Thomases
On Oct 13, 2014, at 6:54 PM, Luther Baker wrote: > A few years back, many Mac apps had a similar looking bottom bar on the > left hand side of the app. Specifically, apps that had a "Source" style > outline view on the left hand side had this silverish gradient styled > bottom bar that often cons

Re: Bottom - Source/Accessory ToolBar question

2014-10-13 Thread Luther Baker
Thanks both of you! -Luther On Mon, Oct 13, 2014 at 7:21 PM, Ken Thomases wrote: > On Oct 13, 2014, at 6:54 PM, Luther Baker wrote: > > > A few years back, many Mac apps had a similar looking bottom bar on the > > left hand side of the app. Specifically, apps that had a "Source" style > > out