#include <colmsg.h>
Inheritance diagram for ColourChangingMsg:
Public Types | |
enum | ColourState { LISTPAGED, LISTUPDATED, COLOURUPDATED, COLOURUPDATEDINVISIBLE, LISTDESELECTED, LISTDELETED, NEWLISTBORN, SELVIEWCONTEXTCHANGE } |
Public Member Functions | |
ColourChangingMsg (Document *pScopeDocument, ColourList *pChangedList, IndexedColour *pChangedColour, ColourState NewState) | |
Public Attributes | |
Document * | ScopeDoc |
ColourList * | NewColourList |
IndexedColour * | ChangedColour |
ColourState | State |
Definition at line 127 of file colmsg.h.
|
Definition at line 133 of file colmsg.h. 00134 { 00135 LISTPAGED, // Sent when a different list is paged in 00136 LISTUPDATED, // Sent when the existing list is edited 00137 COLOURUPDATED, // Sent when a colour has changed (visibly - see below) 00138 COLOURUPDATEDINVISIBLE, // Sent when a colour has changed (invisibly - see below) 00139 LISTDESELECTED, // Sent when there is now no selected list 00140 LISTDELETED, // Sent when a list has been deleted 00141 00142 NEWLISTBORN, // Sent when a new list is created, so that 00143 // others can add sort modes to it. 00144 00145 SELVIEWCONTEXTCHANGE // Sent when the colour context attached to the 00146 // selected view changes (so the col editor, gallery, 00147 // line can redraw using new colour correction info) 00148 };
|
|
Definition at line 156 of file colmsg.h. 00158 : ScopeDoc(pScopeDocument), NewColourList(pChangedList), ChangedColour(pChangedColour), State(NewState) 00159 { /* empty */ }
|
|
|
|
|
|
|
|
|