wxArt2D
|
specialized wxScrolledWindow to handle a2dView events More...
#include <docviewref.h>
Public Member Functions | |
a2dDocumentViewScrolledWindow (a2dView *view, wxWindow *parent, wxWindowID id=-1, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxHSCROLL|wxVSCROLL, const wxString &name=wxT("a2dDocumentViewScrolledWindow")) | |
Constructor for creation with view. More... | |
a2dDocumentViewScrolledWindow (wxWindow *parent, wxWindowID id=-1, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxHSCROLL|wxVSCROLL, const wxString &name=wxT("a2dDocumentViewScrolledWindow")) | |
Constructor for creation without view. More... | |
~a2dDocumentViewScrolledWindow () | |
Destructor. | |
![]() | |
a2dViewWindow (a2dView *view, wxWindow *parent, wxWindowID id=-1, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxHSCROLL|wxVSCROLL, const wxString &name=wxT("a2dViewWindow")) | |
Constructor for creation with view. More... | |
a2dViewWindow (wxWindow *parent, wxWindowID id=-1, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxHSCROLL|wxVSCROLL, const wxString &name=wxT("a2dViewWindow")) | |
Constructor for creation without view. More... | |
~a2dViewWindow () | |
Destructor. | |
virtual void | SetView (a2dView *view) |
to switch the view in this window to another view More... | |
a2dView * | GetView () |
get the current view | |
virtual bool | ProcessEvent (wxEvent &event) |
Extend event processing to search the view's event table. More... | |
virtual void | OnDraw (wxDC &dc) |
Override this function to draw the graphic (or just process EVT_PAINT) | |
void | OnCloseView (a2dCloseViewEvent &event) |
resets view to NULL when view was closed and skips the event for the parent window/frame. | |
void | OnPaint (wxPaintEvent &event) |
calls OnDraw(dc); | |
Additional Inherited Members | |
![]() | |
a2dSmrtPtr< a2dView > | m_view |
the view that uses this window to display itself | |
specialized wxScrolledWindow to handle a2dView events
The following events are sent up from the a2dView to this window.
::wxEVT_CLOSE_VIEW
Next one can be recieved from the a2dDocument after Registering this class.
::wxEVT_CHANGEDFILENAME_DOCUMENT
When the a2dView sent this events it disables itself until return, to prevent looping.
::wxEVT_CLOSE_VIEW should be handled in a derived class, or in some/the parent window of this window. The handler must call a2dDocumentViewScrolledWindow::SetView( NULL ) or set m_view to NULL and release it, this Detaches the view from the window, In case the window gets deleted via a Destroy() this will be done automatically.
These event are of type commandevents, and travel up to the parent of this window if not handled here.
All other events to the window are sent first to the a2dView and if not handled there, can be handled here.
Definition at line 3856 of file docviewref.h.
a2dDocumentViewScrolledWindow::a2dDocumentViewScrolledWindow | ( | a2dView * | view, |
wxWindow * | parent, | ||
wxWindowID | id = -1 , |
||
const wxPoint & | pos = wxDefaultPosition , |
||
const wxSize & | size = wxDefaultSize , |
||
long | style = wxHSCROLL | wxVSCROLL , |
||
const wxString & | name = wxT( "a2dDocumentViewScrolledWindow" ) |
||
) |
Constructor for creation with view.
view | The view for the document ( can be NULL ) |
parent | the parent window for this window |
id | The window identifier. It may take a value of -1 to indicate a default value. |
pos | The window position. |
size | The window size. |
style | Window style, please look into wxWindows docs for an overview. |
name | The name of the window. |
Definition at line 2331 of file docviewref.cpp.
a2dDocumentViewScrolledWindow::a2dDocumentViewScrolledWindow | ( | wxWindow * | parent, |
wxWindowID | id = -1 , |
||
const wxPoint & | pos = wxDefaultPosition , |
||
const wxSize & | size = wxDefaultSize , |
||
long | style = wxHSCROLL | wxVSCROLL , |
||
const wxString & | name = wxT( "a2dDocumentViewScrolledWindow" ) |
||
) |
Constructor for creation without view.
parent | the parent window for this window |
id | The window identifier. It may take a value of -1 to indicate a default value. |
pos | The window position. |
size | The window size. |
style | Window style, please look into wxWindows docs for an overview. |
name | The name of the window. |
Definition at line 2336 of file docviewref.cpp.