home *** CD-ROM | disk | FTP | other *** search
/ ftp.funduc.com / 2014.08.ftp.funduc.com.tar / ftp.funduc.com / fshedcode-072212.zip / GotoDlg.h < prev    next >
C/C++ Source or Header  |  2010-09-13  |  2KB  |  46 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. #pragma once
  19.  
  20. // CGotoDlg dialog
  21.  
  22. class CGotoDlg : public CDialog
  23. {
  24.     DECLARE_DYNAMIC(CGotoDlg)
  25.  
  26. public:
  27.     CGotoDlg(CWnd* pParent = NULL);   // standard constructor
  28.     virtual ~CGotoDlg();
  29.  
  30. // Dialog Data
  31.     enum { IDD = IDD_GOTODIALOG };
  32.  
  33. protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.  
  36.     // Generated message map functions
  37.     //{{AFX_MSG(CGotoDlg)
  38.     virtual BOOL OnInitDialog();
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. public:
  42.     CString m_strOffset;
  43.     int m_nOffset;
  44.     bool m_bRelative;
  45. };
  46.