Text2PDFDlg.h
上传用户:lqriiqpl
上传日期:2022-07-04
资源大小:258k
文件大小:2k
源码类别:

文件操作

开发平台:

Visual C++

  1. // Text2PDFDlg.h : header file
  2. //
  3. #if !defined(AFX_TEXT2PDFDLG_H__F2791FE6_B167_44AE_9AE3_D0636968967A__INCLUDED_)
  4. #define AFX_TEXT2PDFDLG_H__F2791FE6_B167_44AE_9AE3_D0636968967A__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "CommonDef.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CText2PDFDlg dialog
  11. class CText2PDFDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. void UpdateTextFile(CString FileName);
  16. CText2PDFDlg(CWnd* pParent = NULL); // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CText2PDFDlg)
  19. enum { IDD = IDD_TEXT2PDF_DIALOG };
  20. CProgressCtrl m_Progress;
  21. CString m_FileName;
  22. CString m_Font;
  23. CString m_Text;
  24. //}}AFX_DATA
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CText2PDFDlg)
  27. protected:
  28. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. HICON m_hIcon;
  33. // Generated message map functions
  34. //{{AFX_MSG(CText2PDFDlg)
  35. virtual BOOL OnInitDialog();
  36. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  37. afx_msg void OnPaint();
  38. afx_msg HCURSOR OnQueryDragIcon();
  39. afx_msg void OnClose();
  40. afx_msg void OnConvert();
  41. afx_msg void OnFileSelect();
  42. afx_msg void OnFontSelect();
  43. afx_msg void OnOptions();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. private:
  47. CString m_PDFName;
  48. void CheckConvertBtn();
  49. struct _FontSpec
  50. {
  51. LOGFONT lf;
  52. int FontSize;
  53. } FontSpec;
  54. struct _PageSpec PageSpec;
  55. };
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_TEXT2PDFDLG_H__F2791FE6_B167_44AE_9AE3_D0636968967A__INCLUDED_)