#include <sprdmsg.h>
Inheritance diagram for SpreadMsg:
Public Types | |
enum | SpreadReason { SELCHANGED, LAYERCHANGES, ANIMATIONPROPERTIESCHANGED } |
Public Member Functions | |
SpreadMsg (Spread *pThisOldSpread, Spread *pThisNewSpread, SpreadReason ThisReason) | |
SpreadMsg (Spread *pThisSpread, SpreadReason ThisReason) | |
Public Attributes | |
Spread * | pOldSpread |
Spread * | pNewSpread |
SpreadReason | Reason |
Definition at line 123 of file sprdmsg.h.
|
Definition at line 130 of file sprdmsg.h. 00131 { 00132 SELCHANGED, // Sent when the selected spread changes 00133 // pOldSpread = ptr to the old selected spread 00134 // pNewSpread = ptr to the new selected spread 00135 // The new selected spread could belong to a document that 00136 // is different to the one belonging to the old selected spread 00137 // pOldSpread and/or pNewSpread can be NULL 00138 00139 LAYERCHANGES, // The layers of a spread have changed. 00140 // pOldSpread = pNewSpread = spread whose layers have changed 00141 00142 ANIMATIONPROPERTIESCHANGED // The animation properties of a spread have changed. 00143 // pOldSpread = pNewSpread = spread whose layers have changed 00144 };
|
|
Definition at line 150 of file sprdmsg.h. 00151 : pOldSpread(pThisOldSpread), pNewSpread(pThisNewSpread), Reason(ThisReason) { /* empty */ }
|
|
Definition at line 153 of file sprdmsg.h. 00154 : pOldSpread(pThisSpread), pNewSpread(pThisSpread), Reason(ThisReason) { /* empty */ }
|
|
|
|
|
|
|