#include <docmsgs.h>
Inheritance diagram for DocChangingMsg:
Public Types | |
enum | DocState { BORN, SELCHANGED, ABOUTTODIE, KILLED, TITLECHANGED, BORNANDSTABLE } |
Public Member Functions | |
DocChangingMsg (Document *pdoc, DocState state) | |
DocChangingMsg (Document *pThisOldDoc, Document *pThisNewDoc, DocState state) | |
Public Attributes | |
Document * | pChangingDoc |
Document * | pOldDoc |
Document * | pNewDoc |
DocState | State |
SELCHANGED (pOldDoc,pNewDoc)- When SelectedDoc has changed MonoOff
Documentation: docs.doc
Definition at line 133 of file docmsgs.h.
|
Definition at line 139 of file docmsgs.h. 00140 { 00141 BORN, // sent when a document has just been constructed 00142 SELCHANGED, // New style (22/7/94) selection changing message 00143 // as described in the docstate.doc document, 00144 // pOldDoc being the one that is being unselected 00145 // and pNewDoc being the one selected. 00146 // NOTE!!!! pOldDoc and/or pNewDoc can be NULL!!!!! 00147 00148 ABOUTTODIE, // sent just before a document is destroyed 00149 KILLED, // sent after a document has been destroyed 00150 00151 TITLECHANGED, // sent if the doc's title text has been changed 00152 BORNANDSTABLE // sent as the last part of a document creation process 00153 // at present it is sent as the last part of a new 00154 // document or open document process. This means that 00155 // the document is loaded, selected, everything is set up 00156 // and ready, so now is the time to update details on the 00157 // document such as those displayed in the options dialog 00158 };
|
|
Definition at line 170 of file docmsgs.h.
|
|
Definition at line 173 of file docmsgs.h. 00174 : pChangingDoc(NULL), pOldDoc(pThisOldDoc), pNewDoc(pThisNewDoc), State(state) { /* empty */ }
|
|
|
|
|
|
|
|
|