home *** CD-ROM | disk | FTP | other *** search
/ ftp.funduc.com / 2014.08.ftp.funduc.com.tar / ftp.funduc.com / fshedcode-072212.zip / OptionsDlg.h < prev    next >
C/C++ Source or Header  |  2010-09-13  |  3KB  |  110 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //    License (GPLv2+):
  3. //    This program is free software; you can redistribute it and/or modify
  4. //    it under the terms of the GNU General Public License as published by
  5. //    the Free Software Foundation; either version 2 of the License, or
  6. //    (at your option) any later version.
  7. //
  8. //    This program is distributed in the hope that it will be useful, but
  9. //    WITHOUT ANY WARRANTY; without even the implied warranty of
  10. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. //    General Public License for more details.
  12. //
  13. //    You should have received a copy of the GNU General Public License
  14. //    along with this program; if not, write to the Free Software
  15. //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. /////////////////////////////////////////////////////////////////////////////
  17.  
  18. #if !defined(AFX_OPTIONSDLG_H__6E1A9CC0_D306_11D5_B8AF_AFB6C918F359__INCLUDED_)
  19. #define AFX_OPTIONSDLG_H__6E1A9CC0_D306_11D5_B8AF_AFB6C918F359__INCLUDED_
  20.  
  21. #if _MSC_VER >= 1000
  22. #pragma once
  23. #endif // _MSC_VER >= 1000
  24. // OptionsDlg.h : header file
  25. //
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CDispPage dialog
  29.  
  30. class CDispPage : public CPropertyPage
  31. {
  32.     DECLARE_DYNCREATE(CDispPage)
  33.  
  34. // Construction
  35. public:
  36.     CDispPage();
  37.     ~CDispPage();
  38.  
  39. // Dialog Data
  40.     //{{AFX_DATA(CDispPage)
  41.     enum { IDD = IDD_DISP_OPT_PAGE };
  42.     int        m_nAnsi;
  43.     int        m_nFontSize;
  44.     int        m_nIntel;
  45.     int        m_nSigned;
  46.     //}}AFX_DATA
  47.  
  48.  
  49. // Overrides
  50.     // ClassWizard generate virtual function overrides
  51.     //{{AFX_VIRTUAL(CDispPage)
  52.     protected:
  53.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  54.     //}}AFX_VIRTUAL
  55.  
  56. // Implementation
  57. protected:
  58.     // Generated message map functions
  59.     //{{AFX_MSG(CDispPage)
  60.         // NOTE: the ClassWizard will add member functions here
  61.     //}}AFX_MSG
  62.     DECLARE_MESSAGE_MAP()
  63.  
  64. };
  65.  
  66. /////////////////////////////////////////////////////////////////////////////
  67. // CGenPage dialog
  68.  
  69. class CGenPage : public CPropertyPage
  70. {
  71.     DECLARE_DYNCREATE(CGenPage)
  72.  
  73. // Construction
  74. public:
  75.     CGenPage();
  76.     ~CGenPage();
  77.  
  78. // Dialog Data
  79.     //{{AFX_DATA(CGenPage)
  80.     enum { IDD = IDD_GEN_OPT_PAGE };
  81.     BOOL    m_bAdjustBytes;
  82.     CString    m_strIntBrowser;
  83.     int        m_nNumBytes;
  84.     int        m_nOffsetLen;
  85.     BOOL    m_bSetRead;
  86.     CString    m_strTextEditor;
  87.     //}}AFX_DATA
  88.  
  89.  
  90. // Overrides
  91.     // ClassWizard generate virtual function overrides
  92.     //{{AFX_VIRTUAL(CGenPage)
  93.     protected:
  94.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  95.     //}}AFX_VIRTUAL
  96.  
  97. // Implementation
  98. protected:
  99.     // Generated message map functions
  100.     //{{AFX_MSG(CGenPage)
  101.         // NOTE: the ClassWizard will add member functions here
  102.     //}}AFX_MSG
  103.     DECLARE_MESSAGE_MAP()
  104.  
  105. };
  106. //{{AFX_INSERT_LOCATION}}
  107. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  108.  
  109. #endif // !defined(AFX_OPTIONSDLG_H__6E1A9CC0_D306_11D5_B8AF_AFB6C918F359__INCLUDED_)
  110.