Skip to Content
Volume 7A: XView Programming Manual
book

Volume 7A: XView Programming Manual

by Dan Heller
October 1994
Intermediate to advanced
770 pages
22h 58m
English
O'Reilly Media, Inc.
Content preview from Volume 7A: XView Programming Manual
The text can then be read via the usual file input utilities, or the file itself can be passed off to
another routine or program.
It is, however, useful to be able to directly examine the text in the text subwindow. You can
do this using the TEXTSW_CONTENTS attribute. The code fragment below illustrates how to
use TEXTSW_CONTENTS to get a span of characters from the text subwindow. It gets 1000
characters beginning at position 500 out of the text subwindow and places them into a NULL-
terminated string.
#define TO_READ 1000
char buf[TO_READ+1];
Textsw_index next_pos;
next_pos = (Textsw_index) xv_get(textsw, TEXTSW_CONTENTS, 500,
buf, TO_READ);
if (next_pos != 500+TO_READ) {
/* handle error case */
} else
buf[TO_READ] = ’\0’;
8.4.5 Deleting Text
You can delete a contiguous span of characters from a text subwindow by calling:
Textsw_index
textsw_delete(textsw, first, last_plus_one)
Textsw textsw;
Textsw_index first, last_plus_one;
first specifies the first character of the span that will be deleted; last_plus_one speci-
fies the first character after the span that will not be deleted. first should be less than or
equal to last_plus_one. To delete to the end of the text, pass the special value
TEXTSW_INFINITY for last_plus_one.
The return value is the number of characters deleted or:
last_plus_one - first
unless the specified span is read-only. If the insertion point is in the span being deleted, it
will be left at first.
A side effect of calling textsw_delete() is that the deleted characters become the con-
tents ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Volume 6A: Motif Programming Manual

Volume 6A: Motif Programming Manual

David Brennan, Dan Heller, Paula Ferguson
Java™ Media APIs: Cross-Platform Imaging, Media, and Visualization

Java™ Media APIs: Cross-Platform Imaging, Media, and Visualization

Alejandro Terrazas, John Ostuni, Michael Barlow
JFC Swing Tutorial, The: A Guide to Constructing GUIs, Second Edition

JFC Swing Tutorial, The: A Guide to Constructing GUIs, Second Edition

Kathy Walrath, Mary Campione, Alison Huml, Sharon Zakhour

Publisher Resources

ISBN: 9780937175873