Re: Brushed/Polished Metal in 10.5/10.6?

2011-03-15 Thread Kyle Sluder
On Mar 14, 2011, at 3:40 PM, Tristan Seifert wrote: > I've been needing an interface similar to the polished metal in Mac OS X 10.4 > in my 10.6 app. First of all, is there a way to get back the brushed metal > using an API call, or how would I implement this? I've accomplished rendering > the

Re: Brushed/Polished Metal in 10.5/10.6?

2011-03-15 Thread John Joyce
> >> I've been needing an interface similar to the polished metal in Mac OS X >> 10.4 in my 10.6 app. First of all, is there a way to get back the brushed >> metal using an API call, or how would I implement this? I've accomplished >> rendering the metal on the window itself, but the little 'sh

Re: Faster text drawing with configurable stroke width

2011-03-15 Thread Kyle Sluder
On Mar 13, 2011, at 3:03 PM, George Nachman wrote: > Hi cocoa-dev, > > I'm currently drawing text one character at a time with -[NSAttributedString > drawWithRect:options:], and it is really slow. I'm looking for a faster > alternative. I'm not an expert on the Cocoa text system, but it looks l

IKImageBrowserView items image need to download from internet

2011-03-15 Thread XiaoGang Li
I am having trouble with IKImageBrowserView, hope you can give me some guides to find a best solution. Some background information here about my application: There is a massive of graphics on the server site, and have been well organized. On the client site, the application will show customer ou

Re: How hidden the Keyboard in a UIWebView

2011-03-15 Thread Rodrigo Zanatta Silva
Anyone have any idea? I am stuck... It's easy do this with UITextView, but the text field in a web page have less control. I really need a new idea, please, anyone give-me a idea??!?!? 2011/3/14 Rodrigo Zanatta Silva > I searched a lot, and all thing that hidden the keyboard is when you are in >

Re: iOS 4.2 - Printing Quality

2011-03-15 Thread David Duncan
On Mar 14, 2011, at 10:55 PM, Development wrote: > Ok I'm rendering my images slightly larger than the view's that they are > being printed from. > Basically the quality is less than great. Is there a way to change the > CGImage dpi? Or a way to change the quality of the print to maximum? > > O

Count of records in an NSArrayController when associated NSTableView is filtered

2011-03-15 Thread Darren Wheatley
Hi, I have an NSTableView bound to an NSArrayController. I would like to have a dashboard onscreen that shows counts of the data based on field values in the entity, e.g.: all records records with active = Y records with updated = Y records with updated = N Is it possible to bind these values i

Re: How hidden the Keyboard in a UIWebView

2011-03-15 Thread Conrad Shultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 3/15/11 7:09 AM, Rodrigo Zanatta Silva wrote: > Anyone have any idea? I am stuck... It's easy do this with > UITextView, but the text field in a web page have less control. I > really need a new idea, please, anyone give-me a idea??!?!? Please be p

crash in initWithCoder

2011-03-15 Thread James Maxwell
I'm getting a crash in initWithCoder, which seems related to decoding a property called "value", which is of type id. Sometimes this object is an NSString, sometimes it's an NSNumber, and sometimes it's an NSArray. The crash only occurs in cases where "value" is an NSArray. The last few lines in

Re: crash in initWithCoder

2011-03-15 Thread Greg Parker
On Mar 15, 2011, at 4:10 PM, James Maxwell wrote: > I'm getting a crash in initWithCoder, which seems related to decoding a > property called "value", which is of type id. Sometimes this object is an > NSString, sometimes it's an NSNumber, and sometimes it's an NSArray. The > crash only occurs i

Re-mapping secondary function keys

2011-03-15 Thread Rick Mann
A long time ago, I managed to somehow change the behavior of the expose key (F3) on my MacBook Pro. Instead of Exposeing all windows, it would reveal the desktop. I either found a preference in the UI somewhere, or I set a user default on the command line, or I modified a file in the System some

Re: Re-mapping secondary function keys

2011-03-15 Thread Rick Mann
On Mar 15, 2011, at 10:02 PM, Mark Montague wrote: > You're on the wrong mailing list -- this is not a Cocoa development question. > > Go to System Preferences -> Exposé and Spaces -> Exposé, and select "F3" from > the first of the two "Show Desktop" pulldown menus. Well, it's a general OS dev

NSTableView Column Count

2011-03-15 Thread Nicholas Zaccardi
I am trying to make an NSTableView with only one column. Here is what I do: 1. Open nib 2. Add TableView 3. Decrease column count 4. Save the NIB However if I build and run, I still get 2 columns. Any suggestions? ___ Cocoa-dev mailing list (Cocoa-dev@

[Moderator] Lion NDA reminder

2011-03-15 Thread Scott Anguish
While there haven’t been any issues that I’m aware of I wanted to take an opportunity to remind subscribers... Lion APIs, features, changes, etc. are all covered by non-disclosure. So they can’t be discussed here. However, there are forums at devforums.apple.com that have facilities for this.

Re: NSTableView Column Count

2011-03-15 Thread Scott Anguish
On Mar 15, 2011, at 1:13 PM, Nicholas Zaccardi wrote: > I am trying to make an NSTableView with only one column. Here is what I do: > > 1. Open nib > 2. Add TableView > 3. Decrease column count > 4. Save the NIB > > However if I build and run, I still get 2 columns. Any suggestions? are you su

Re: Count of records in an NSArrayController when associated NSTableView is filtered

2011-03-15 Thread Scott Anguish
assuming I understand (that you want the tableview, but you also want text fields that have these summaries separate)... you could certainly use separate methods with NSPredicates that examine the original data model to return those numbers. If you’re table is filtered you could incorporate tha

Re: [SOLVED] Re-mapping secondary function keys

2011-03-15 Thread Rick Mann
Argh. It was being re-mapped in the CGEventTap I wrote. I just overlooked it in the code. Sorry for the noise. -- Rick On Mar 15, 2011, at 10:05 PM, Rick Mann wrote: > > On Mar 15, 2011, at 10:02 PM, Mark Montague wrote: > >> You're on the wrong mailing list -- this is not a Cocoa developmen