home *** CD-ROM | disk | FTP | other *** search
/ ftp.funduc.com / 2014.08.ftp.funduc.com.tar / ftp.funduc.com / fshedcode-072212.zip / fshed.h < prev    next >
C/C++ Source or Header  |  2010-09-13  |  3KB  |  84 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. // fshed.h : main header file for the FSHED application
  19. //
  20.  
  21. #if !defined(AFX_FSHED_H__BD87E549_34CD_11D5_B4F0_00B0D0719D70__INCLUDED_)
  22. #define AFX_FSHED_H__BD87E549_34CD_11D5_B4F0_00B0D0719D70__INCLUDED_
  23.  
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27.  
  28. #ifndef __AFXWIN_H__
  29.     #error include 'stdafx.h' before including this file for PCH
  30. #endif
  31.  
  32. #include "resource.h"       // main symbols
  33.  
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CFshedApp:
  36. // See fshed.cpp for the implementation of this class
  37.  
  38. class CFshedApp : public CWinApp
  39. {
  40. public:
  41.     CFshedApp();
  42.     ~CFshedApp();
  43.  
  44. // Overrides
  45.     // ClassWizard generated virtual function overrides
  46.     //{{AFX_VIRTUAL(CFshedApp)
  47.     public:
  48.     virtual BOOL InitInstance();
  49.     //}}AFX_VIRTUAL
  50.      virtual void WinHelpInternal(DWORD_PTR dwData, UINT nCmd = HELP_CONTEXT);
  51.  
  52.     CString m_TexteditorName;
  53.     int  m_iBytesPerLine;
  54.     int  m_iOffsetLen;
  55.     BOOL m_bAutomaticBPL;
  56.     BOOL m_bOpenReadOnly;
  57.     BOOL m_bUnsignedView;
  58.     int  m_iCharacterSet;
  59.        int  m_iFontSize;
  60.        int  m_iBinaryMode;
  61.     COLORREF m_clrBmk;
  62.     COLORREF m_clrSelBk;
  63.     COLORREF m_clrSelText;
  64.     COLORREF m_clrText;
  65.     COLORREF m_clrBk;
  66.     COLORREF m_clrSep;
  67.  
  68. // Implementation
  69.     //{{AFX_MSG(CFshedApp)
  70.     afx_msg void OnAppAbout();
  71.     afx_msg void OnViewOptions();
  72.     //}}AFX_MSG
  73.     DECLARE_MESSAGE_MAP()
  74. };
  75.  
  76. #define App ((CFshedApp *)AfxGetApp())
  77.  
  78. /////////////////////////////////////////////////////////////////////////////
  79.  
  80. //{{AFX_INSERT_LOCATION}}
  81. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  82.  
  83. #endif // !defined(AFX_FSHED_H__BD87E549_34CD_11D5_B4F0_00B0D0719D70__INCLUDED_)
  84.