#include <bfxitem.h>
Inheritance diagram for BfxBrightnessContrast:
Public Member Functions | |
BfxBrightnessContrast () | |
Ask a plug-in to strut its stuff and do its work taking the pDib as a source and pOutputDIB as the result. If ApplyLast is True then asks a plug-in to strut its stuff again using the same parameters as last time. Once again doing its work taking the pDib as a source and pOutputDIB as the result. Assumes pDib and pOutputDib already allocated and are the same size etc.Constructor for a BfxBrightnessContrast plug-in. | |
virtual OpDescriptor * | GetOpDescriptor () |
Returns the OpDescriptor for the dialog box connected with this bfx plug-in ready to be invoked. | |
Private Member Functions | |
CC_DECLARE_DYNAMIC (BfxBrightnessContrast) |
Definition at line 178 of file bfxitem.h.
|
Ask a plug-in to strut its stuff and do its work taking the pDib as a source and pOutputDIB as the result. If ApplyLast is True then asks a plug-in to strut its stuff again using the same parameters as last time. Once again doing its work taking the pDib as a source and pOutputDIB as the result. Assumes pDib and pOutputDib already allocated and are the same size etc.Constructor for a BfxBrightnessContrast plug-in.
Definition at line 340 of file bfxitem.cpp. 00341 { 00342 SetFamilyName(_R(IDS_BFXDLG)); 00343 SetPlugInName(_R(IDS_BFXPLUGINDLG_BRIGHTNESS)); 00344 00345 //SetFilterName(TEXT("Fred")); 00346 //SetModuleName(TEXT("Jim")); 00347 }
|
|
|
|
Returns the OpDescriptor for the dialog box connected with this bfx plug-in ready to be invoked.
Implements BfxPlugIn. Definition at line 361 of file bfxitem.cpp. 00362 { 00363 return OpDescriptor::FindOpDescriptor(CC_RUNTIME_CLASS(BfxBrightnessContrastDlg)); 00364 }
|