Lines Matching defs:text

30  * TextSrc.c - TextSrc object. (For use with the text widget).
165 * pos - position of the text to retreive.
166 * RETURNED text - text block that will contain returned text.
173 Read(w, pos, text, length)
176 XawTextBlock *text;
186 * Description: Replaces a block of text with new text.
188 * startPos, endPos - ends of text that will be removed.
189 * text - new text to be inserted into buffer at startPos.
195 Replace (w, startPos, endPos, text)
198 XawTextBlock *text;
204 * Description: Scans the text source for the number and type
235 * Description: Searchs the text source for the text block passed
239 * text - the text block to search for.
245 Search(w, position, dir, text)
249 XawTextBlock * text;
349 * pos - position of the text to retreive.
350 * RETURNED text - text block that will contain returned text.
357 XawTextSourceRead(Widget w, XawTextPosition pos, XawTextBlock *text,
360 XawTextSourceRead(w, pos, text, length)
363 XawTextBlock *text;
374 return((*class->textSrc_class.Read)(w, pos, text, length));
378 * Description: Replaces a block of text with new text.
380 * startPos, endPos - ends of text that will be removed.
381 * text - new text to be inserted into buffer at startPos.
389 XawTextPosition endPos, XawTextBlock *text)
391 XawTextSourceReplace (w, startPos, endPos, text)
394 XawTextBlock *text;
404 return((*class->textSrc_class.Replace)(w, startPos, endPos, text));
408 * Description: Scans the text source for the number and type
417 * Returns: The position of the text.
456 * Description: Searchs the text source for the text block passed
460 * text - the text block to search for.
461 * Returns: The position of the text we are searching for or
473 XawTextBlock *text)
475 XawTextSourceSearch(w, position, dir, text)
479 XawTextBlock * text;
489 return((*class->textSrc_class.Search)(w, position, dir, text));
567 * returns the format of text: FMT8BIT or FMTWIDE.
578 return (((TextSrcObject)(tw->text.source))->textSrc.text_format);