programmingkidx

Results 41 comments of programmingkidx

I wanted to use some NSBezelStyle constants but I could not find them in DarwinKit. Is it because of this issue? Does this have to be done on x86_64? I...

It was not NSTextFieldBezelStyle. It was actually NSBezelStyleCircular or NSBezelStylePush. I was trying to use SetBezelStyle() on a NSButton. Here is a link to the styles I was looking at:...

That worked. Thank you. I noticed that you dropped NS from everything. I thought you were into following the standard. Why the change?

I have been thinking about this for a while. If we could use Go functions as Objective-C callbacks that would make things very interesting. I want to use NSControl's SetAction()...

I see now. I missed what you wanted. You wanted to call C functions from CoreGraphics. Doesn't sound hard to do. I am guessing the mapType() function in gen/lookup.go would...

I guess we should decide how to start. Do we use MacSchema to download a schema for Core Graphics? If so we need to enhance MacSchema to handle this case...

Do you mean like for Mac OS 10.8 compatibility I could `import "MacOS10_8"`?

Before the switch to darwinkit, I was working on adding support for multiple version of Mac OS. It worked by having the user specify which version of Mac OS was...

Implemented this pull request for resolving this issue: https://github.com/progrium/macdriver/pull/244

I think the problem is with this member initialization list: ``` template _Compiler:: _Compiler(const _CharT* __b, const _CharT* __e, const typename _TraitsT::locale_type& __loc, _FlagT __flags) : _M_flags(_S_validate(__flags)), _M_scanner(__b, __e, _M_flags,...