#include <selmsg.h>
Inheritance diagram for SelChangingMsg:
Public Types | |
enum | SelectionState { SELECTIONCHANGED, COLOURATTCHANGED, NONCOLOURATTCHANGED, NODECHANGED, EFFECTSTACKCHANGED } |
Public Member Functions | |
SelChangingMsg (SelectionState NewState, BOOL DiffDoc=FALSE) | |
Public Attributes | |
SelectionState | State |
BOOL | InDifferentDocument |
Definition at line 123 of file selmsg.h.
|
Definition at line 135 of file selmsg.h. 00136 { 00137 SELECTIONCHANGED, // The selection has changed (ie. nodes have been added/removed 00138 // from the Selection). 00139 COLOURATTCHANGED, // An attribute in the selection to do with colours in some way has changed 00140 NONCOLOURATTCHANGED, // An attribute in the selection not to do with colours has changed 00141 NODECHANGED, // At least one of the nodes in the selection has changed 00142 // NOTE! This means that its bounds may have changed 00143 EFFECTSTACKCHANGED // An effect/effects applied to the selection has changed 00144 // Cor! Lots of ways the selection can change, huh?! 00145 };
|
|
Definition at line 154 of file selmsg.h. 00155 : State(NewState), InDifferentDocument(DiffDoc) 00156 { /* empty */ }
|
|
|
|
|