Dialogs.h
上传用户:tj_dwf
上传日期:2020-11-17
资源大小:215k
文件大小:2k
源码类别:

RichEdit

开发平台:

Visual C++

  1. /******************************************************************************
  2. *
  3. *
  4. * Notepad2
  5. *
  6. * Dialogs.h
  7. *   Definitions for Notepad2 dialog boxes
  8. *
  9. * See Readme.txt for more information about this source code.
  10. * Please send me your comments to this work.
  11. *
  12. * See License.txt for details about distribution and modification.
  13. *
  14. *                                              (c) Florian Balmer 1996-2010
  15. *                                                  florian.balmer@gmail.com
  16. *                                               http://www.flos-freeware.ch
  17. *
  18. *
  19. ******************************************************************************/
  20. #define MBINFO         0
  21. #define MBWARN         1
  22. #define MBYESNO        2
  23. #define MBYESNOWARN    3
  24. #define MBYESNOCANCEL  4
  25. #define MBOKCANCEL     8
  26. int MsgBox(int,UINT,...);
  27. void DisplayCmdLineHelp();
  28. BOOL GetDirectory(HWND,int,LPWSTR,LPCWSTR,BOOL);
  29. BOOL CALLBACK AboutDlgProc(HWND,UINT,WPARAM,LPARAM);
  30. void RunDlg(HWND,LPCWSTR);
  31. BOOL OpenWithDlg(HWND,LPCWSTR);
  32. BOOL FavoritesDlg(HWND,LPWSTR);
  33. BOOL AddToFavDlg(HWND,LPCWSTR,LPCWSTR);
  34. BOOL FileMRUDlg(HWND,LPWSTR);
  35. BOOL ChangeNotifyDlg(HWND);
  36. BOOL ColumnWrapDlg(HWND,UINT,int *);
  37. BOOL WordWrapSettingsDlg(HWND,UINT,int *);
  38. BOOL LongLineSettingsDlg(HWND,UINT,int *);
  39. BOOL TabSettingsDlg(HWND,UINT,int *);
  40. BOOL SelectDefEncodingDlg(HWND,int *);
  41. BOOL SelectEncodingDlg(HWND,int *);
  42. BOOL RecodeDlg(HWND,int *);
  43. BOOL SelectDefLineEndingDlg(HWND,int *);
  44. int  InfoBox(int,LPCWSTR,int,...);
  45. // End of Dialogs.h