Lines Matching refs:stringField
103 BStringField* stringField = dynamic_cast<BStringField*>(field); in DrawField() local
147 } else if (stringField) { in DrawField()
151 if (width != stringField->Width()) { in DrawField()
152 BString truncatedString(stringField->String()); in DrawField()
155 stringField->SetClippedString(truncatedString.String()); in DrawField()
156 stringField->SetWidth(width); in DrawField()
159 DrawString(stringField->ClippedString(), parent, rect); in DrawField()
169 BStringField* stringField = dynamic_cast<BStringField*>(_field); in GetPreferredWidth() local
183 } else if (stringField) { in GetPreferredWidth()
186 width = font.StringWidth(stringField->String()) + 2 * sTextMargin; in GetPreferredWidth()
402 BBitmapStringField* stringField in DevicePath() local
405 if (stringField == NULL) in DevicePath()
408 return stringField->String(); in DevicePath()