00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef CFL_SCANFILTERDILATION_H
00016 #define CFL_SCANFILTERDILATION_H
00017
00018 #if _MSC_VER > 1000
00019 #pragma once
00020 #endif // _MSC_VER > 1000
00021
00022 #include <cfl/ScanFilter.h>
00023 #include <cfl/ScanBaseBuffer.h>
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061 DECLARE_CLASS( CScanFilterDilation );
00062
00063
00064
00065
00066
00067 class CScanFilterDilation : public CScanFilter
00068 {
00069 public:
00070 CScanFilterDilation();
00071 virtual ~CScanFilterDilation();
00072
00073 virtual BOOL Apply();
00074
00075 virtual BOOL CanDoDialogEntry() const { return FALSE; };
00076
00077 virtual BOOL SetParameters(LPCTSTR lpParameters);
00078 virtual LPCTSTR GetParameters() const;
00079 static LPCTSTR m_lpcsFilterName;
00080
00081
00082
00083
00084 static LPCTSTR m_lpcsShortFilterName;
00085
00086 protected:
00087
00088 virtual void Serialize(CArchive& ar);
00089
00090 DECLARE_SERIAL(CScanFilterDilation)
00091 void Dilation(DWORD dwOffset);
00092
00093 };
00094
00095
00096
00097 #endif // CFL_SCANFILTERDILATION_H
00098
00099
00100
00101
00102