#include <opliveeffects.h>
Inheritance diagram for OpDeleteLiveEffect:
Public Member Functions | |
virtual void | GetOpName (String_256 *pstrOpName) |
virtual BOOL | DoEffectOp (ListRange *pLevelRange, OpLiveEffectParam *pLEOpParam) |
virtual BOOL | MayChangeNodeBounds () const |
Static Public Member Functions | |
static OpState | GetState (String_256 *pstrDescription, OpDescriptor *pOpDesc) |
Private Member Functions | |
CC_DECLARE_DYNCREATE (OpDeleteLiveEffect) |
Definition at line 432 of file opliveeffects.h.
|
|
|
Reimplemented from OpLiveEffect. Definition at line 3389 of file opliveeffects.cpp. 03390 { 03391 OpLiveEffect::DoDeletePostProcessor(this, pLevelRange); 03392 03393 return TRUE; 03394 }
|
|
Reimplemented from Operation. Definition at line 3367 of file opliveeffects.cpp. 03368 { 03369 *pstrOpName = String_256(_R(IDS_LE_OPDELETE)); 03370 }
|
|
Definition at line 3335 of file opliveeffects.cpp. 03336 { 03337 // default is an unticked, *GREYED*, on-menu state. 03338 OpState OpSt; 03339 OpSt.Greyed = FALSE; 03340 *pstrDescription = String_256(_R(IDS_DESCRIBE_LIVEEFFECT)); 03341 03342 if (XPEHost::IsEditSessionRunning()) 03343 { 03344 OpSt.Greyed = TRUE; 03345 *pstrDescription = String_256(_R(IDS_LE_EDIT_RUNNING)); 03346 } 03347 03348 return OpSt; 03349 }
|
|
Reimplemented from SelOperation. Definition at line 448 of file opliveeffects.h. 00448 { return TRUE; }
|