home *** CD-ROM | disk | FTP | other *** search
/ C/C++ User's Journal & Wi…eveloper's Journal Tools / C-C__Users_Journal_and_Windows_Developers_Journal_Tools_1997.iso / stingray / dlguser.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-27  |  1.6 KB  |  64 lines

  1. // dlguser.h : header file
  2. //
  3.  
  4. // This is a part of the Objective Grid C++ Library.
  5. // Copyright (C) 1995,1996 ClassWorks, Stefan Hoenig.
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to
  9. // the Objective Grid Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding
  12. // the Objective Grid product.
  13. //
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CUserActionsDialog dialog
  17.  
  18. class CGXGridParam;
  19.  
  20. class CUserActionsDialog : public CDialog
  21. {
  22. // Construction
  23. public:
  24.     CUserActionsDialog(CGXGridParam* pParam, CWnd* pParent = NULL);   // standard constructor
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CUserActionsDialog)
  28.     enum { IDD = IDD_USERACTIONS_DIALOG };
  29.     BOOL    m_bSizeRow;
  30.     BOOL    m_bMoveRows;
  31.     BOOL    m_bMoveCols;
  32.     BOOL    m_bSelRows;
  33.     BOOL    m_bSelCols;
  34.     BOOL    m_bSelCells;
  35.     BOOL    m_bSelTable;
  36.     BOOL    m_bSelMultiple;
  37.     BOOL    m_bSelShift;
  38.     BOOL    m_bSelKeyboard;
  39.     BOOL    m_bSizeCol;
  40.     BOOL    m_bIndHeight;
  41.     BOOL    m_bIndWidth;
  42.     BOOL    m_bLBoxSingle;
  43.     BOOL    m_bLBoxMulti;
  44.     BOOL    m_bEnhWidth;
  45.     BOOL    m_bEnhHeight;
  46.     //}}AFX_DATA
  47.  
  48.     CGXGridParam* GetParam()    { return m_pParam; }
  49.  
  50. // Implementation
  51. protected:
  52.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  53.     virtual void OnOK();
  54.  
  55.     CGXGridParam* m_pParam;
  56.  
  57.     // Generated message map functions
  58.     //{{AFX_MSG(CUserActionsDialog)
  59.         // NOTE: the ClassWizard will add member functions here
  60.     //}}AFX_MSG
  61.     DECLARE_MESSAGE_MAP()
  62. };
  63.  
  64.