Lines Matching refs:textField
375 NSTextField *textField = createLabelWithString(label); in createUserPane() local
376 [textField sizeToFit]; in createUserPane()
377 m_aMapListLabelFields[(NSPopUpButton*)pControl] = textField; in createUserPane()
378 [m_pUserPane addSubview:textField]; in createUserPane()
380 NSRect tfRect = [textField frame]; in createUserPane()
381 …OSL_TRACE("frame for textfield %s is {%f, %f, %f, %f}", [[textField description] UTF8String], tfRe… in createUserPane()
960 NSTextField *textField = [NSTextField new]; in createLabelWithString() local
961 [textField setEditable:NO]; in createLabelWithString()
962 [textField setSelectable:NO]; in createLabelWithString()
963 [textField setDrawsBackground:NO]; in createLabelWithString()
964 [textField setBordered:NO]; in createLabelWithString()
965 [[textField cell] setTitle:labelString]; in createLabelWithString()
968 return textField; in createLabelWithString()