Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
568 B

  1. //
  2. // CFindDialog.h
  3. //
  4. // Find Dialog Class
  5. //
  6. #ifndef _CFINDDIALOG_H_
  7. #define _CFINDDIALOG_H_
  8. //
  9. // CFindDialog
  10. //
  11. class
  12. CFindDialog
  13. {
  14. private: // data
  15. HWND _hDlg;
  16. HWND _hParent;
  17. private: // methods
  18. static LRESULT CALLBACK
  19. DlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
  20. LRESULT
  21. _OnCommand( WPARAM wParam, LPARAM lParam );
  22. LRESULT
  23. _OnInitDialog( HWND hDlg );
  24. LRESULT
  25. _OnDestroyWindow( );
  26. public: // methods
  27. CFindDialog( HWND hParent );
  28. ~CFindDialog( );
  29. };
  30. #endif // _CFINDDIALOG_H_