// set the associated frame, it is used to reset its view when we're
// destroyed
- void SetDocChildFrame(wxDocChildFrameAnyBase *docChildFrame)
- {
- m_docChildFrame = docChildFrame;
- }
+ void SetDocChildFrame(wxDocChildFrameAnyBase *docChildFrame);
protected:
// hook the document into event handlers chain here
// wxDocChildFrameAny does
// ----------------------------------------------------------------------------
-class wxDocChildFrameAnyBase
+class WXDLLIMPEXP_CORE wxDocChildFrameAnyBase
{
public:
- wxDocChildFrameAnyBase(wxDocument *doc, wxView *view)
+ wxDocChildFrameAnyBase(wxDocument *doc, wxView *view, wxWindow *win)
+ : m_win(win)
{
m_childDocument = doc;
m_childView = view;
view->SetDocChildFrame(this);
}
+ ~wxDocChildFrameAnyBase()
+ {
+ // prevent the view from deleting us if we're being deleted directly
+ // (and not via Close() + Destroy())
+ if ( m_childView )
+ m_childView->SetDocChildFrame(NULL);
+ }
+
wxDocument *GetDocument() const { return m_childDocument; }
wxView *GetView() const { return m_childView; }
void SetDocument(wxDocument *doc) { m_childDocument = doc; }
void SetView(wxView *view) { m_childView = view; }
+ wxWindow *GetWindow() const { return m_win; }
+
protected:
// we're not a wxEvtHandler but we provide this wxEvtHandler-like function
// which is called from TryBefore() of the derived classes to give our view
wxDocument* m_childDocument;
wxView* m_childView;
+ // the associated window: having it here is not terribly elegant but it
+ // allows us to avoid having any virtual functions in this class
+ wxWindow * const m_win;
+
+
wxDECLARE_NO_COPY_CLASS(wxDocChildFrameAnyBase);
};
long style = wxDEFAULT_FRAME_STYLE,
const wxString& name = wxFrameNameStr)
: BaseClass(parent, id, title, pos, size, style, name),
- wxDocChildFrameAnyBase(doc, view)
+ wxDocChildFrameAnyBase(doc, view, this)
{
- if ( view )
- view->SetFrame(this);
-
this->Connect(wxEVT_ACTIVATE,
wxActivateEventHandler(wxDocChildFrameAny::OnActivate));
this->Connect(wxEVT_CLOSE_WINDOW,
// otherwise we could simply typedef it
// ----------------------------------------------------------------------------
+#ifdef __VISUALC6__
+ // "non dll-interface class 'wxDocChildFrameAny<>' used as base interface
+ // for dll-interface class 'wxDocChildFrame'" -- this is bogus as the
+ // template will be DLL-exported but only once it is used as base class
+ // here!
+ #pragma warning (disable:4275)
+#endif
+
typedef wxDocChildFrameAny<wxFrame, wxFrame> wxDocChildFrameBase;
class WXDLLIMPEXP_CORE wxDocChildFrame : public wxDocChildFrameBase
wxDECLARE_NO_COPY_CLASS(wxDocChildFrame);
};
-WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxDocChildFrameBase )
+#ifdef __VISUALC6__
+ #pragma warning (default:4275)
+#endif
// ----------------------------------------------------------------------------
// A default parent frame