home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / ctrltest / ctrltest.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.5 KB  |  50 lines

  1. // ctrltest.h : main window class interface
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1999 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "resource.h"
  14. #include "res\otherids.h"
  15.  
  16. /////////////////////////////////////////////////////////////////////////////
  17. // Application class
  18.  
  19. class CTestApp : public CWinApp
  20. {
  21. public:
  22.  
  23.     virtual BOOL InitInstance();
  24.     //{{AFX_MSG(CTestApp)
  25.     afx_msg void OnAppAbout();
  26.     //}}AFX_MSG
  27.     DECLARE_MESSAGE_MAP();
  28. };
  29.  
  30. /////////////////////////////////////////////////////////////////////////////
  31. // Main Window
  32. //   used as the context for running all the tests
  33.  
  34. class CTestWindow : public CFrameWnd
  35. {
  36. protected:
  37. // Implementation
  38.     //{{AFX_MSG(CTestWindow)
  39.     afx_msg void OnTestDerivedEdit();           // simple test
  40.     afx_msg void OnTestSubclassedEdit();        // simple test
  41.     afx_msg void OnTestBitmapButton1();         // custom control
  42.     afx_msg void OnTestBitmapButton2();         // custom control
  43.     afx_msg void OnTestBitmapButton3();         // custom control
  44.     afx_msg void OnTestSpinEdit();          // custom control
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50.