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

  1. // insertro.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "mfcdemo.h"
  6. #include "insertro.h"
  7. #include "demotbl.h"
  8.  
  9. #ifdef _DEBUG
  10. #undef THIS_FILE
  11. static char BASED_CODE THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CInsertRowColDialog dialog
  16.  
  17.  
  18. CInsertRowColDialog::CInsertRowColDialog(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CInsertRowColDialog::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(CInsertRowColDialog)
  22.     m_Amount = 0;
  23.     m_Before = 0;
  24.     //}}AFX_DATA_INIT
  25. }
  26.  
  27. void CInsertRowColDialog::DoDataExchange(CDataExchange* pDX)
  28. {
  29.     CDialog::DoDataExchange(pDX);
  30.     //{{AFX_DATA_MAP(CInsertRowColDialog)
  31.     DDX_Text(pDX, IDC_INSERT_AMOUNT, m_Amount);
  32.     DDV_MinMaxInt(pDX, m_Amount, 1, 32767);
  33.     DDX_Text(pDX, IDC_INSERT_BEFORE, m_Before);
  34.     DDV_MinMaxInt(pDX, m_Before, 0, 32767);
  35.     //}}AFX_DATA_MAP
  36. }
  37.  
  38. BEGIN_MESSAGE_MAP(CInsertRowColDialog, CDialog)
  39.     //{{AFX_MSG_MAP(CInsertRowColDialog)
  40.     //}}AFX_MSG_MAP
  41. END_MESSAGE_MAP()
  42.                              
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CInsertRowColDialog publics
  46.  
  47. void CInsertRowColDialog::InitializeFrom( CDemoTableControl * aCKTBL )
  48.     cktbl = aCKTBL;                  
  49.     m_Amount = 1;
  50.     if(rows) 
  51.         m_Before = cktbl->GetCurrentRow();
  52.     else
  53.         m_Before = cktbl->GetCurrentColumn();
  54.     
  55.     if(m_Before<1) m_Before=1;
  56. }
  57.  
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CInsertRowColDialog message handlers
  60.  
  61. BOOL CInsertRowColDialog::OnInitDialog()
  62. {
  63.     CDialog::OnInitDialog();
  64.     
  65.     char * title;
  66.     char * group; 
  67.     
  68.     // TODO: Add extra initialization here 
  69.     
  70.     if(rows) {
  71.         title = "CKTBL Insert Rows";
  72.         group = "Insert Rows";
  73.     } else {
  74.         title = "CKTBL Insert Columns";
  75.         group = "Insert Columns";
  76.     }
  77.      
  78.     SetWindowText(title);
  79.     GetDlgItem(IDC_INSERT_GROUP)->SetWindowText(group);
  80.      
  81.     return TRUE;  // return TRUE  unless you set the focus to a control
  82. }
  83.  
  84. void CInsertRowColDialog::OnOK()
  85. {
  86.     // TODO: Add extra validation here
  87.     
  88.     CDialog::OnOK(); 
  89.     
  90.     if(rows) 
  91.         cktbl->InsertRowsAfter( m_Before-1, m_Amount );
  92.     else
  93.         cktbl->InsertColumnsAfter( m_Before-1, m_Amount );
  94.     
  95. }
  96.