Command Line Argument - Choosing a Style

2008-08-06 Thread hac
Hi, I'm developing an application to support third-party extensions that filter text. Each filter consists mainly of a property list and an executable. The idea is that the text of the current document goes into the executable along with settings specified in the property list (as arguments); text

Re: Command Line Argument - Choosing a Style

2008-08-07 Thread hac
er solution (If only I had used it from the beginning). It definitely looks worthwhile to look into, as I'm a newbie at making plug-ins. Thank you. > If that isn't an option, I would pass a bunch of --key value pairs to > retain some semblance of standard-ness :) > >

Table Column NSSegmentedCell - Segment not Selecting

2008-08-11 Thread hac
I have a table column that contains multiple types of cells. One is an NSSegmentedCell. To do this, I have tried variations of the following code. I use it in the table's data source as well as to override the column's dataCellForRow method: NSSegmentedCell *theCell = [[[NSSegmentedCell alloc] ini

Re: Table Column NSSegmentedCell - Segment not Selecting

2008-08-11 Thread hac
I've solved my own problem, finally. I have set the data source to return an NSNumber containing the selected index rather than an actual cell. I still don't really understand why I do this for only some types of cells, but this solution works fine. On Sun, Aug 10, 2008 at 11:32 PM, h