Dec 192017
 
Example of using TCXL library in a File Viewer.
File TCXLV103.ZIP from The Programmer’s Corner in
Category C Source Code
Example of using TCXL library in a File Viewer.
File Name File Size Zip Size Zip Type
V.EXE 51624 27572 deflated
V.ASC 1907 750 deflated
V.HLP 2694 856 deflated
V.C 13880 4715 deflated
V.TXT 4108 1969 deflated

Download File TCXLV103.ZIP Here

Contents of the V.TXT file


V.C
---

V.C is a file viewer written to demonstrate how TCXL 5.5 can be used
in a real-world application. The program makes full use of TCXL's
new coding conventions. Its features include: a file-picking window;
four-way scrolling; searching (case-sensitive and case-insensitive);
settable tabs; goto line number; and on-line help.

Included files:
V.Csource code for Turbo C/C++
V.EXEexecutable
V.ASCASCII text for help screens
V.HLPcompiled help screens
V.TXTthis file

Usage: v [-tn] [filespec]
where n is the tab width for the file display. The filespec is
optional; if it is omitted, the user is prompted for a filename. If
the filename contains wildcards (? or *), or if the user presses
[Enter] or [Esc] without entering a filename, a file-picking window will
pop up.

There is a help screen for each part of the program, accessible by
pressing [F1] at any time. Also, pressing [Alt-X] at any time
(except when viewing a help screen) will cause the program to quit.

When viewing a file, the following keys are active:

KeyFunction
-----------
F1Help
Esc/Alt-XQuit view window
HomeBeginning of file
EndEnd of file
UpArrowScroll up one line
DownArrowScroll down one line
LeftArrowScroll left one column
S-LeftArrowScroll left to first column
RighArrowScroll right one column
PgUpScroll up one screen
PgDnScroll down one screen
TabSet new tab width
F3Search (case-sensitive)
F4Search (case-insensitive)
F2Search again (using previous
search string and case-sensitivity)
F5Goto line

V is fast and functional, but definitely has room for improvement in
several areas: it will only read as much of a file as it can allocate
memory for; also, it reads the file in all at once, so there is a delay
before you can navigate in the file. I intend to address this design
flaw in the near future.

Changes in version 1.01:
-----------------------
oTab-expansion handling has been fixed, so that long expanded lines
will never wrap or overwrite the window border (thanks to Ed Girou
for pointing this out).
oA command-line parsing bug has been fixed (if you used the '-v'
switch without an argument, bad things would happen).

Changes in version 1.02:
-----------------------
oI added validation to the function that gets a new tab setting from
the user; this fixes a bug that resulted if the user pressed Enter
in the empty input field (thanks to Ed Girou again--gettin'
to be a real nuisance there, Ed!).
oWhen I fixed tab expansion, I forget to apply the fix the the
function that displays a found search string; this is now fixed.
oFixed a bug that prevented the rightmost column in the
window to be used.
oFixed a bug related to horizontal scrolling.
oAnother change, not a bug fix, was to replace almost all calls
to Wputs() to Wprts(); since I'm doing my own tab expansion, I no
longer need the tab expansion (or any other translation) built
into Wputs(). Besides, Wprts() is smaller, presumably faster,
and eliminates the need to call Wgotoxy().

Changes in version 1.03:
-----------------------
oThe program now looks through the path to find the help file.
oUnix-style text files (LF instead of CR/LF) are now properly
shown.
oI added validation to the search prompt, so that the request
is ignored if the user Esc's out, or presses Enter in the
empty field.
oI cleaned up the display of the line where found text is
located.
oI changed horizontal scrolling a little so that the user can
always scroll to the right, just like LIST et al.
oVarious other cleanups, mostly ones that are invisible to
the user.

V was written by Dave Seidel. V.C and V.ASC are Copyright (c) 1990
David A. Seidel. V is freeware; you are welcome to use and
distribute these files as long as you don't charge any money for
them. I am interested in your feedback, code fixes, improvements,
etc. My CompuServe ID is [71511,2217]. You can send me Cmail, or
leave messages in PCVENC, section 6, or BPROGB, sections 3 or 5.



 December 19, 2017  Add comments

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)