FilterDlg.h
上传用户:yatsl7111
上传日期:2007-01-08
资源大小:1433k
文件大小:2k
源码类别:

图形图象

开发平台:

Visual C++

  1. #if !defined(AFX_FILTERDLG_H__2DB7EAC6_3E53_4CFA_BAB0_D6289628A191__INCLUDED_)
  2. #define AFX_FILTERDLG_H__2DB7EAC6_3E53_4CFA_BAB0_D6289628A191__INCLUDED_
  3. #include "ModuleLogo.h"
  4. #include "LineTrackBar.h" // Added by ClassView
  5. #include "SignEdit.h"
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. // FilterDlg.h : header file
  10. //
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CFilterDlg dialog
  13. class CFilterDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17. CFilterDlg(CWnd* pParent = NULL);   // standard constructor
  18. CModuleLogo   m_wndLogo;
  19. // Dialog Data
  20. //{{AFX_DATA(CFilterDlg)
  21. enum { IDD = IDD_DLG_FILTER };
  22. CButton m_ButEdit;
  23. CSignEdit m_EditFilter;
  24. CTabCtrl m_TabInfo;
  25. CComboBox m_Combo_Stype;
  26. BOOL m_Check_PreView;
  27. CString m_strFilter;
  28. //}}AFX_DATA
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CFilterDlg)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. // Generated message map functions
  38. //{{AFX_MSG(CFilterDlg)
  39. virtual BOOL OnInitDialog();
  40. virtual void OnOK();
  41. virtual void OnCancel();
  42. afx_msg void OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct);
  43. afx_msg void OnSelchangeComboFilter();
  44. afx_msg void OnTimer(UINT nIDEvent);
  45. afx_msg void OnPaint();
  46. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  47. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  48. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  49. afx_msg void OnCheckPrevfilter();
  50. afx_msg void OnSelchangeTabFilter(NMHDR* pNMHDR, LRESULT* pResult);
  51. afx_msg void OnChangeEditFilter();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. private:
  55. void PreView();
  56. void InitCombo();
  57. void Filter();
  58. HCURSOR m_curDown,m_curUp,m_curNormal;
  59. CDC      m_MemDC;
  60. CBitmap  m_Bitmap;
  61. int m_nPosx;
  62. int m_nPosy;
  63. CPoint Oldpoint;
  64. BOOL m_bMouseShow;
  65. BOOL m_bMouseDown;
  66. int m_nFilter;
  67. CLineTrackBar m_wndFilterBar;
  68. int m_nStrength;
  69. };
  70. //{{AFX_INSERT_LOCATION}}
  71. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  72. #endif // !defined(AFX_FILTERDLG_H__2DB7EAC6_3E53_4CFA_BAB0_D6289628A191__INCLUDED_)