#include <docvmsg.h>
Inheritance diagram for DocViewMsg:
Public Types | |
enum | DocViewState { BORN, NEWANDSTABLE, SCALECHANGED, SELCHANGED, KILLED, SELABOUTTOCHANGE } |
Public Member Functions | |
DocViewMsg (DocView *pview, DocViewState state) | |
DocViewMsg (DocView *pThisOldDocView, DocView *pThisNewDocView, DocViewState state) | |
Public Attributes | |
DocView * | pDocView |
DocView * | pOldDocView |
DocView * | pNewDocView |
DocViewState | State |
Definition at line 127 of file docvmsg.h.
|
Definition at line 133 of file docvmsg.h. 00134 { 00135 BORN, // sent when a view is first constructed 00136 NEWANDSTABLE, // sent out when a new docview is stable 00137 SCALECHANGED, // DocView scale factor changed 00138 SELCHANGED, // New style (22/7/94) selection changing message 00139 // as described in the docstate.doc document 00140 // Combines the SELECTED and UNSELECTED messages into one 00141 // message, with pOldDocView being the one that is being unselected 00142 // and pNewDocView being the one selected. 00143 // NOTE!!!! pOldDocView and/or pNewDocView can be NULL!!!!! 00144 KILLED, // sent when a view is destroyed 00145 SELABOUTTOCHANGE // This message is broadcast around just before the selected document 00146 // is changed (ie, it will be closly followed by a SELCHANGED message. 00147 // When this message is sent, nothing has actually been changed yet. 00148 };
|
|
Definition at line 157 of file docvmsg.h. 00158 : pDocView(pview), pOldDocView(0), pNewDocView(0), State(state) { /* empty */ };
|
|
Definition at line 160 of file docvmsg.h. 00161 : pDocView(0), pOldDocView(pThisOldDocView), pNewDocView(pThisNewDocView), State(state) { /* empty */ }
|
|
|
|
|
|
|
|
|