home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / C / CKTBL / SAMPLES / MFCDEMO / DEMOTBL.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-09  |  2.2 KB  |  83 lines

  1. // cktblctr.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h" 
  5. #include "demotbl.h"
  6.           
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char BASED_CODE THIS_FILE[] = __FILE__;
  10. #endif
  11.        
  12.        
  13. IMPLEMENT_DYNAMIC( CDemoTableControl, CCKTBLControl )
  14.                                     
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CCKTBLControl
  17.  
  18. CDemoTableControl::CDemoTableControl()
  19. {       
  20.     m_GrowHorizontal = FALSE;
  21.     m_GrowVertical = FALSE;
  22. }
  23.  
  24. CDemoTableControl::~CDemoTableControl()
  25. {
  26. }  
  27.             
  28.         
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CCKTBLControl Message Map
  31.       
  32.  
  33. BEGIN_MESSAGE_MAP(CDemoTableControl, CCKTBLControl)
  34.     //{{AFX_MSG_MAP(CDemoTableControl) 
  35.     //}}AFX_MSG_MAP  
  36. END_MESSAGE_MAP()
  37.            
  38.      
  39.            
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CCKTBLControl overridables (default implementations)
  42.           
  43.             
  44. //----------------------------------------------------------------------------------- 
  45. // Overridables that provide hooks for dynamically extending the table
  46. // when the user scrolls over the bounds
  47.                  
  48. void CDemoTableControl::OnHScrollBegin()
  49. {     
  50.     // called when use tries to scroll to the left of the leftmost column 
  51.     // i.e. user presses cursor left in the leftmost column
  52. }
  53. void CDemoTableControl::OnHScrollEnd()
  54.     // called when use tries to scroll to the right of the rightmost column
  55.     // i.e. user presses cursor right in the rightmost column   
  56.     
  57.     if( m_GrowHorizontal ) {
  58.         InsertColumnsAfter( GetColumns(), 4 );
  59.     }
  60.  
  61. }
  62.  
  63. void CDemoTableControl::OnVScrollBegin()
  64. {    
  65.     // called when use tries to scroll above first row
  66.     // i.e. user presses cursor up in the first row
  67. }                                 
  68.  
  69. void CDemoTableControl::OnVScrollEnd()
  70. {
  71.     // called when use tries to scroll below the last row  
  72.     // i.e. user presses cursor right in the last row 
  73.     
  74.     if( m_GrowVertical ) {
  75.         InsertRowsAfter( GetRows(), 4 );
  76.     }
  77.     
  78. }
  79.          
  80.            
  81.                                   
  82.