#include <filters.h>
Inheritance diagram for BitmapFilterFamily:
Public Member Functions | |
BitmapFilterFamily () | |
Sets up the bitmap filter object to interface to all the installed filters that decode bitmap file formats. | |
BOOL | Init () |
Set up a bitmap filter object. This creates the associated OILFilter object, and sets up the filter ID number and strings. | |
Private Member Functions | |
CC_DECLARE_DYNAMIC (BitmapFilterFamily) |
Definition at line 1108 of file filters.h.
|
Sets up the bitmap filter object to interface to all the installed filters that decode bitmap file formats.
Definition at line 5282 of file filters.cpp. 05283 { 05284 // This is the bitmap files filter, so we want *all* bitmap filters in it. 05285 pFilterType = CC_RUNTIME_CLASS(BitmapFilter); 05286 }
|
|
|
|
Set up a bitmap filter object. This creates the associated OILFilter object, and sets up the filter ID number and strings.
Implements Filter. Definition at line 5302 of file filters.cpp. 05303 { 05304 // Get the OILFilter object 05305 pOILFilter = new OILFilterFamily(this, _R(IDT_FILTERNAME_BITMAP)); 05306 if (pOILFilter == NULL) 05307 return FALSE; 05308 05309 // Load the description strings 05310 FilterName.Load(_R(IDT_BITMAP_FILTERNAME)); 05311 FilterInfo.Load(_R(IDT_BITMAP_FILTERINFO)); 05312 FilterID = FILTERID_BITMAP; 05313 05314 // All ok 05315 return TRUE; 05316 }
|