home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
tv20cpp.zip
/
tutorial
/
tvguid09.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1998-01-19
|
8KB
|
273 lines
/*---------------------------------------------------------*/
/* */
/* Turbo Vision 1.0 */
/* TVGUID09 Demo Source File */
/* Copyright (c) 1991 by Borland International */
/* */
/*---------------------------------------------------------*/
/*
* Modified by Sergio Sigala <ssigala@globalnet.it>
*/
// same as tvguid08 except for multiple panes
// modify TDemoWindow::makeInterior and constructor
#include <stdlib.h> // for exit(), random()
#include <iostream.h>
#include <fstream.h> // for ifstream
#include <stdio.h> // for puts() etc
#include <string.h> // for strlen etc
#include <ctype.h>
#define Uses_TEventQueue
#define Uses_TEvent
#define Uses_TProgram
#define Uses_TApplication
#define Uses_TKeys
#define Uses_TRect
#define Uses_TMenuBar
#define Uses_TSubMenu
#define Uses_TMenuItem
#define Uses_TStatusLine
#define Uses_TStatusItem
#define Uses_TStatusDef
#define Uses_TDeskTop
#define Uses_TView
#define Uses_TWindow
#define Uses_TFrame
#define Uses_TScroller
#define Uses_TScrollBar
#include <tvision/tv.h>
const int cmMyFileOpen = 200; // assign new command values
const int cmMyNewWin = 201;
/* SS: micro change here */
const char *fileToRead = "tvguid09.cc";
//const char *fileToRead = "tvguid09.cpp";
const int maxLineLength = maxViewWidth+1;
const int maxLines = 100;
char *lines[maxLines];
int lineCount = 0;
static short winNumber = 0; // initialize window number
class TMyApp : public TApplication
{
public:
TMyApp();
static TStatusLine *initStatusLine( TRect r );
static TMenuBar *initMenuBar( TRect r );
virtual void handleEvent( TEvent& event);
void newWindow();
};
class TInterior : public TScroller
{
public:
TInterior( const TRect& bounds, TScrollBar *aHScrollBar,
TScrollBar *aVScrollBar ); // constructor
virtual void draw(); // override TView::draw
};
class TDemoWindow : public TWindow // define a new window class
{
public:
TDemoWindow( const TRect& bounds, const char *aTitle, short aNumber );
TInterior *makeInterior( const TRect& r, Boolean left );
};
void readFile( const char *fileName )
{
ifstream fileToView( fileName );
if( !fileToView )
{
cout << "Invalid file name..." << endl;
exit( 1 );
}
else
{
char buf[maxLineLength];
while( lineCount < maxLines &&
fileToView.getline( buf, maxLineLength ) != 0 )
{
lines[lineCount] = newStr( buf );
lineCount++;
}
}
}
void deleteFile()
{
for( int i = 0; i < lineCount; i++ )
delete lines[i];
}
TInterior::TInterior( const TRect& bounds, TScrollBar *aHScrollBar,
TScrollBar *aVScrollBar ) :
TScroller( bounds, aHScrollBar, aVScrollBar )
{
options = options | ofFramed;
setLimit( maxLineLength, lineCount );
}
void TInterior::draw() // modified for scroller
{
ushort color = getColor(0x0301);
for( int i = 0; i < size.y; i++ )
// for each line:
{
TDrawBuffer b;
b.moveChar( 0, ' ', color, size.x );
// fill line buffer with spaces
int j = delta.y + i; // delta is scroller offset
if( j < lineCount && lines[j] != 0 )
{
char s[maxLineLength];
if( delta.x > strlen(lines[j] ) )
s[0] = EOS;
else
{
strncpy( s, lines[j]+delta.x, size.x );
s[size.x] = EOS;
}
b.moveCStr( 0, s, color );
}
writeLine( 0, i, size.x, 1, b);
}
}
TDemoWindow::TDemoWindow( const TRect& bounds, const char *aTitle,
short aNumber) :
TWindow( bounds, aTitle, aNumber),
TWindowInit( &TDemoWindow::initFrame )
{
TRect lbounds = getExtent();
TRect r( lbounds.a.x, lbounds.a.y, lbounds.b.x/2+1, lbounds.b.y );
TInterior *lInterior = makeInterior( r, True );
lInterior->growMode = gfGrowHiY;
insert( lInterior );
// creates left-side scrollable interior and inserts into window
r = TRect( lbounds.b.x/2, lbounds.a.y, lbounds.b.x, lbounds.b.y );
TInterior *rInterior = makeInterior( r, False );
rInterior->growMode = gfGrowHiX | gfGrowHiY;
insert( rInterior );
// likewise for right-side scroller
}
TInterior *TDemoWindow::makeInterior( const TRect& bounds, Boolean left )
{
TRect r = TRect( bounds.b.x-1, bounds.a.y+1, bounds.b.x, bounds.b.y-1 );
TScrollBar *vScrollBar = new TScrollBar( r );
if( vScrollBar == 0 )
{
cout << "vScrollbar init error" << endl;
exit(1);
}
// production code would display error dialog box
vScrollBar->options |= ofPostProcess;
if( left )
vScrollBar->growMode = gfGrowHiY;
insert( vScrollBar );
r = TRect( bounds.a.x+2, bounds.b.y-1, bounds.b.x-2, bounds.b.y );
TScrollBar *hScrollBar = new TScrollBar( r );
if( hScrollBar == 0 )
{
cout << "hScrollbar init error" << endl;
exit(1);
}
hScrollBar->options |= ofPostProcess;
if( left )
hScrollBar->growMode = (gfGrowHiY | gfGrowLoY);
insert( hScrollBar );
r = bounds;
r.grow( -1, -1 );
return new TInterior( r, hScrollBar, vScrollBar );
}
TMyApp::TMyApp() :
TProgInit( &TMyApp::initStatusLine,
&TMyApp::initMenuBar,
&TMyApp::initDeskTop
)
{
}
void TMyApp::handleEvent(TEvent& event)
{
TApplication::handleEvent(event); // act like base!
if( event.what == evCommand )
{
switch( event.message.command )
{
case cmMyNewWin: // but respond to additional commands
newWindow(); // define action for cmMyNewWin
// command
break;
default:
return;
}
clearEvent( event ); // clear event after handling
}
}
TMenuBar *TMyApp::initMenuBar( TRect r )
{
r.b.y = r.a.y + 1; // set bottom line 1 line below top line
return new TMenuBar( r,
*new TSubMenu( "~F~ile", kbAltF )+
*new TMenuItem( "~O~pen", cmMyFileOpen, kbF3, hcNoContext, "F3" )+
*new TMenuItem( "~N~ew", cmMyNewWin, kbF4, hcNoContext, "F4" )+
newLine()+
*new TMenuItem( "E~x~it", cmQuit, cmQuit, hcNoContext, "Alt-X" )+
*new TSubMenu( "~W~indow", kbAltW )+
*new TMenuItem( "~N~ext", cmNext, kbF6, hcNoContext, "F6" )+
*new TMenuItem( "~Z~oom", cmZoom, kbF5, hcNoContext, "F5" )
);
}
TStatusLine *TMyApp::initStatusLine( TRect r )
{
r.a.y = r.b.y - 1; // move top to 1 line above bottom
return new TStatusLine( r,
*new TStatusDef( 0, 0xFFFF ) +
// set range of help contexts
*new TStatusItem( 0, kbF10, cmMenu ) +
// define an item
*new TStatusItem( "~Alt-X~ Exit", kbAltX, cmQuit ) +
// and another one
*new TStatusItem( "~Alt-F3~ Close", kbAltF3, cmClose )
// and another one
);
}
void TMyApp::newWindow()
{
TRect r( 0, 0, 45, 13 ); // set initial size and position
/* SS: micro change here */
//r.move( random(34), random(11) ); // randomly move around screen
r.move( random() % 34, random() % 11 ); // randomly move around screen
TDemoWindow *window = new TDemoWindow ( r, "Demo Window", ++winNumber);
deskTop->insert(window); // put window into desktop and draw it
}
int main()
{
readFile( fileToRead );
TMyApp myApp;
myApp.run();
deleteFile();
return 0;
}