home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tv20cpp.zip / tutorial / tvguid15.cpp < prev    next >
C/C++ Source or Header  |  1999-05-31  |  10KB  |  340 lines

  1. /*---------------------------------------------------------*/
  2. /*                                                         */
  3. /*   Turbo Vision 1.0                                      */
  4. /*   TVGUID15 Demo Source File                             */
  5. /*   Copyright (c) 1991 by Borland International           */
  6. /*                                                         */
  7. /*---------------------------------------------------------*/
  8. /*
  9.  * Modified by Sergio Sigala <ssigala@globalnet.it>
  10.  */
  11.  
  12. // same as tvguid14 except for extra input line in dialog
  13. // modify TMyApp::newDialog
  14.  
  15. #include <stdlib.h>             // for exit(), random()
  16. #include <iostream.h>
  17. #include <fstream.h>            // for ifstream
  18. #include <stdio.h>              // for puts() etc
  19. #include <string.h>             // for strlen etc
  20. #include <ctype.h>
  21.  
  22. #define Uses_TEventQueue
  23. #define Uses_TEvent
  24. #define Uses_TProgram
  25. #define Uses_TApplication
  26. #define Uses_TKeys
  27. #define Uses_TRect
  28. #define Uses_TMenuBar
  29. #define Uses_TSubMenu
  30. #define Uses_TMenuItem
  31. #define Uses_TStatusLine
  32. #define Uses_TStatusItem
  33. #define Uses_TStatusDef
  34. #define Uses_TDeskTop
  35. #define Uses_TView
  36. #define Uses_TWindow
  37. #define Uses_TFrame
  38. #define Uses_TScroller
  39. #define Uses_TScrollBar
  40. #define Uses_TDialog
  41. #define Uses_TButton
  42. #define Uses_TSItem
  43. #define Uses_TCheckBoxes
  44. #define Uses_TRadioButtons
  45. #define Uses_TLabel
  46. #define Uses_TInputLine
  47. #include <tvision/tv.h>
  48.  
  49. // note the extra #define above
  50.  
  51. const int cmMyFileOpen = 200;   // assign new command values
  52. const int cmMyNewWin   = 201;
  53. const int cmNewDialog  = 202;
  54.  
  55. /* SS: micro change here */
  56.  
  57. //const char *fileToRead = "tvguid15.cc";
  58. const char *fileToRead = "tvguid15.cpp";
  59. const int maxLineLength = maxViewWidth+1;
  60. const int maxLines      = 100;
  61. char *lines[maxLines];
  62. int lineCount = 0;
  63. static short winNumber  = 0;    // initialize window number
  64.  
  65. class TMyApp : public TApplication
  66. {
  67.  
  68. public:
  69.     TMyApp();
  70.     static TStatusLine *initStatusLine( TRect r );
  71.     static TMenuBar *initMenuBar( TRect r );
  72.     virtual void handleEvent( TEvent& event);
  73.     void newWindow();
  74.     void newDialog();
  75. };
  76.  
  77. class TInterior : public TScroller
  78. {
  79.  
  80. public:
  81.  
  82.     TInterior( const TRect& bounds, TScrollBar *aHScrollBar,
  83.            TScrollBar *aVScrollBar );   // constructor
  84.     virtual void draw();                // override TView::draw
  85. };
  86.  
  87. class TDemoWindow : public TWindow      // define a new window class
  88. {
  89.  
  90. public:
  91.  
  92.     TDemoWindow( const TRect& bounds, const char *aTitle, short aNumber );
  93.     TInterior *makeInterior( const TRect& r, Boolean left );
  94.     virtual void sizeLimits( TPoint& minP, TPoint& maxP );
  95.     // override TWindow::sizeLimits
  96.  
  97. private:
  98.  
  99.     TInterior *lInterior, *rInterior;
  100.  
  101. };
  102.  
  103. void readFile( const char *fileName )
  104. {
  105.     ifstream fileToView( fileName );
  106.     if( !fileToView )
  107.         {
  108.         cout << "Invalid file name..." << endl;
  109.         exit( 1 );
  110.         }
  111.     else
  112.         {
  113.         char buf[maxLineLength];
  114.         while( lineCount < maxLines &&
  115.                fileToView.getline( buf, maxLineLength ) != 0 )
  116.             {
  117.             lines[lineCount] = newStr( buf );
  118.             lineCount++;
  119.             }
  120.         }
  121. }
  122.  
  123. void deleteFile()
  124. {
  125.     for( int i = 0; i < lineCount; i++ )
  126.         delete lines[i];
  127. }
  128.  
  129. TInterior::TInterior( const TRect& bounds, TScrollBar *aHScrollBar,
  130.               TScrollBar *aVScrollBar ) :
  131.        TScroller( bounds, aHScrollBar, aVScrollBar )
  132. {
  133.     options = options | ofFramed;
  134.     setLimit( maxLineLength, lineCount );
  135. }
  136.  
  137. void TInterior::draw()       // modified for scroller
  138. {
  139.     ushort color = getColor(0x0301);
  140.     for( int i = 0; i < size.y; i++ )
  141.         // for each line:
  142.         {
  143.         TDrawBuffer b;
  144.         b.moveChar( 0, ' ', color, size.x );
  145.         // fill line buffer with spaces
  146.         int j = delta.y + i;       // delta is scroller offset
  147.         if( j < lineCount && lines[j] != 0 )
  148.             {
  149.             char s[maxLineLength];
  150.             if( delta.x > strlen(lines[j] ) )
  151.                 s[0] = EOS;
  152.             else
  153.                 {
  154.                 strncpy( s, lines[j]+delta.x, size.x );
  155.                 s[size.x] = EOS;
  156.                 }
  157.             b.moveCStr( 0, s, color );
  158.             }
  159.         writeLine( 0, i, size.x, 1, b);
  160.         }
  161.  
  162. }
  163.  
  164. // modified from tvguid08:
  165. TDemoWindow::TDemoWindow( const TRect& bounds, const char *aTitle,
  166.               short aNumber) :
  167.          TWindow( bounds, aTitle, aNumber),
  168.          TWindowInit( &TDemoWindow::initFrame )
  169. {
  170.     TRect lbounds = getExtent();
  171.     TRect r( lbounds.a.x, lbounds.a.y, lbounds.b.x/2+1, lbounds.b.y );
  172.     lInterior = makeInterior( r, True );
  173.     lInterior->growMode = gfGrowHiY;
  174.     insert( lInterior );
  175.     // creates left-side scrollable interior and inserts into window
  176.     r = TRect( lbounds.b.x/2, lbounds.a.y, lbounds.b.x, lbounds.b.y );
  177.     rInterior = makeInterior( r, False );
  178.     rInterior->growMode = gfGrowHiX | gfGrowHiY;
  179.     insert( rInterior );
  180.     // likewise for right-side scroller
  181. }
  182.  
  183. TInterior *TDemoWindow::makeInterior( const TRect& bounds, Boolean left )
  184. {
  185.     TRect r = TRect( bounds.b.x-1, bounds.a.y+1, bounds.b.x, bounds.b.y-1 );
  186.     TScrollBar *vScrollBar = new TScrollBar( r );
  187.     if( vScrollBar == 0 )
  188.         {
  189.         cout << "vScrollbar init error" << endl;
  190.         exit(1);
  191.         }
  192.         // production code would display error dialog box
  193.     vScrollBar->options |= ofPostProcess;
  194.     if( left )
  195.         vScrollBar->growMode = gfGrowHiY;
  196.     insert( vScrollBar );
  197.  
  198.     r = TRect( bounds.a.x+2, bounds.b.y-1, bounds.b.x-2, bounds.b.y );
  199.     TScrollBar *hScrollBar = new TScrollBar( r );
  200.     if( hScrollBar == 0 )
  201.         {
  202.         cout << "hScrollbar init error" << endl;
  203.         exit(1);
  204.         }
  205.     hScrollBar->options |= ofPostProcess;
  206.     if( left )
  207.         hScrollBar->growMode = (gfGrowHiY | gfGrowLoY);
  208.     insert( hScrollBar );
  209.  
  210.     r = bounds;
  211.     r.grow( -1, -1 );
  212.     return new TInterior( r, hScrollBar, vScrollBar );
  213. }
  214.  
  215. void TDemoWindow::sizeLimits( TPoint& minP, TPoint& maxP )
  216. {
  217.     TWindow::sizeLimits( minP, maxP );
  218.     minP.x = lInterior->size.x+9;
  219. }
  220.  
  221. TMyApp::TMyApp() :
  222.     TProgInit( &TMyApp::initStatusLine,
  223.                &TMyApp::initMenuBar,
  224.                &TMyApp::initDeskTop
  225.              )
  226. {
  227. }
  228.  
  229. void TMyApp::handleEvent(TEvent& event)
  230. {
  231.     TApplication::handleEvent(event);
  232.     if( event.what == evCommand )
  233.         {
  234.         switch( event.message.command )
  235.             {
  236.             case cmMyNewWin:
  237.                 newWindow();
  238.                 break;
  239.             case cmNewDialog:
  240.                 newDialog();
  241.                 break;
  242.             default:
  243.                 return;
  244.             }
  245.         clearEvent( event );            // clear event after handling
  246.         }
  247. }
  248.  
  249. TMenuBar *TMyApp::initMenuBar( TRect r )
  250. {
  251.     r.b.y = r.a.y + 1;    // set bottom line 1 line below top line
  252.     return new TMenuBar( r,
  253.         *new TSubMenu( "~F~ile", kbAltF )+
  254.             *new TMenuItem( "~O~pen", cmMyFileOpen, kbF3, hcNoContext, "F3" )+
  255.             *new TMenuItem( "~N~ew",  cmMyNewWin,   kbF4, hcNoContext, "F4" )+
  256.             newLine()+
  257.             *new TMenuItem( "E~x~it", cmQuit, cmQuit, hcNoContext, "Alt-X" )+
  258.         *new TSubMenu( "~W~indow", kbAltW )+
  259.             *new TMenuItem( "~N~ext", cmNext,     kbF6, hcNoContext, "F6" )+
  260.             *new TMenuItem( "~Z~oom", cmZoom,     kbF5, hcNoContext, "F5" )+
  261.             *new TMenuItem( "~D~ialog", cmNewDialog, kbF2, hcNoContext, "F2" )
  262.             // new dialog menu added here
  263.         );
  264. }
  265.  
  266. TStatusLine *TMyApp::initStatusLine( TRect r )
  267. {
  268.     r.a.y = r.b.y - 1;     // move top to 1 line above bottom
  269.     return new TStatusLine( r,
  270.         *new TStatusDef( 0, 0xFFFF ) +
  271.         // set range of help contexts
  272.             *new TStatusItem( 0, kbF10, cmMenu ) +
  273.             // define an item
  274.             *new TStatusItem( "~Alt-X~ Exit", kbAltX, cmQuit ) +
  275.             // and another one
  276.             *new TStatusItem( "~Alt-F3~ Close", kbAltF3, cmClose )
  277.             // and another one
  278.         );
  279. }
  280.  
  281. void TMyApp::newWindow()
  282. {
  283.     TRect r( 0, 0, 45, 13 );            // set initial size and position
  284.  
  285.     /* SS: micro change here */
  286.  
  287.     r.move( random(34), random(11) ); // randomly move around screen
  288.     //r.move( random() % 34, random() % 11 ); // randomly move around screen
  289.     TDemoWindow *window = new TDemoWindow ( r, "Demo Window", ++winNumber);
  290.     deskTop->insert(window);    // put window into desktop and draw it
  291. }
  292.  
  293. // changed from tvguid12: add buttons
  294. void TMyApp::newDialog()
  295. {
  296.     TDialog *pd = new TDialog( TRect( 20, 6, 60, 19), "Demo Dialog" );
  297.     if( pd )
  298.         {
  299.         TView *b = new TCheckBoxes( TRect( 3, 3, 18, 6),
  300.             new TSItem( "~H~varti",
  301.             new TSItem( "~T~ilset",
  302.             new TSItem( "~J~arlsberg", 0 )
  303.             )));
  304.         pd->insert( b );
  305.  
  306.         pd->insert( new TLabel( TRect( 2, 2, 10, 3), "Cheeses", b ));
  307.  
  308.         b = new TRadioButtons( TRect( 22, 3, 34, 6),
  309.             new TSItem( "~S~olid",
  310.             new TSItem( "~R~unny",
  311.             new TSItem( "~M~elted", 0 )
  312.             )));
  313.         pd->insert( b );
  314.  
  315.         pd->insert( new TLabel( TRect( 21, 2, 33, 3), "Consistency", b ));
  316.  
  317.         // add input line
  318.         b = new TInputLine( TRect( 3, 8, 37, 9 ), 128 );
  319.         pd->insert( b );
  320.         pd->insert( new TLabel( TRect( 2, 7, 24, 8 ),
  321.                 "Delivery Instructions", b ));
  322.  
  323.         pd->insert( new TButton( TRect( 15, 10, 25, 12 ), "~O~K", cmOK,
  324.                     bfDefault ));
  325.         pd->insert( new TButton( TRect( 28, 10, 38, 12 ), "~C~ancel", cmCancel,
  326.                     bfNormal ));
  327.         deskTop->execView( pd );
  328.         }
  329.     destroy( pd );
  330. }
  331.  
  332. int main()
  333. {
  334.     readFile( fileToRead );
  335.     TMyApp myApp;
  336.     myApp.run();
  337.     deleteFile();
  338.     return 0;
  339. }
  340.