• Home
  • Raw
  • Download

Lines Matching refs:cell

175 - (void)tableView:(NSTableView *)tableView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *…
185 [cell selectItemAtIndex:[(NSPopUpButtonCell*)storedCell indexOfSelectedItem]];
188 [cell setFloatValue:[storedCell floatValue]];
191 [cell setState:[(NSButtonCell*)storedCell state]];
195 [cell setStringValue:[storedCell stringValue]];
198 [cell setState:[(NSButtonCell*)storedCell state]];
205 [(SkTextFieldCell*)cell setEditable:NO];
213 NSCell* cell = option.fCell;
220 [(NSPopUpButtonCell*)cell selectItemAtIndex:[anObject intValue]];
224 [cell setFloatValue:[anObject floatValue]];
228 [cell setState:[anObject boolValue]];
233 [cell setStringValue:anObject];
238 [cell setState:[anObject intValue]];
249 NSButtonCell* cell = [[[NSButtonCell alloc] init] autorelease];
250 [cell setTitle:@""];
251 [cell setButtonType:NSMomentaryPushInButton];
252 [cell setBezelStyle:NSSmallSquareBezelStyle];
253 return cell;
257 NSPopUpButtonCell* cell = [[[NSPopUpButtonCell alloc] init] autorelease];
258 [cell addItemsWithTitles:items];
259 [cell selectItemAtIndex:index];
260 [cell setArrowPosition:NSPopUpArrowAtBottom];
261 [cell setBezelStyle:NSSmallSquareBezelStyle];
262 return cell;
266 NSSliderCell* cell = [[[NSSliderCell alloc] init] autorelease];
267 [cell setFloatValue:value];
268 [cell setMinValue:min];
269 [cell setMaxValue:max];
270 return cell;
274 NSButtonCell* cell = [[[NSButtonCell alloc] init] autorelease];
275 [cell setState:state];
276 [cell setTitle:@""];
277 [cell setButtonType:NSSwitchButton];
278 return cell;
282 SkTextFieldCell* cell = [[[SkTextFieldCell alloc] init] autorelease];
283 [cell setEditable:YES];
284 [cell setStringValue:@""];
285 [cell setPlaceholderString:placeHolder];
286 return cell;
290 NSButtonCell* cell = [[[NSButtonCell alloc] init] autorelease];
291 [cell setAllowsMixedState:TRUE];
292 [cell setTitle:@""];
293 [cell setState:(NSInteger)state];
294 [cell setButtonType:NSSwitchButton];
295 return cell;