1/////////////////////////////////////////////////////////////////////////////
2// Name:        docmdi.h
3// Purpose:     Frame classes for MDI document/view applications
4// Author:      Julian Smart
5// Modified by:
6// Created:     01/02/97
7// RCS-ID:      $Id: docmdi.h 41020 2006-09-05 20:47:48Z VZ $
8// Copyright:   (c) Julian Smart
9// Licence:     wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_DOCMDI_H_
13#define _WX_DOCMDI_H_
14
15#include "wx/defs.h"
16
17#if wxUSE_MDI_ARCHITECTURE
18
19#include "wx/docview.h"
20#include "wx/mdi.h"
21
22/*
23 * Use this instead of wxMDIParentFrame
24 */
25
26class WXDLLEXPORT wxDocMDIParentFrame: public wxMDIParentFrame
27{
28public:
29    wxDocMDIParentFrame();
30    wxDocMDIParentFrame(wxDocManager *manager, wxFrame *parent, wxWindowID id,
31        const wxString& title, const wxPoint& pos = wxDefaultPosition,
32        const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxT("frame"));
33
34    bool Create(wxDocManager *manager, wxFrame *parent, wxWindowID id,
35        const wxString& title, const wxPoint& pos = wxDefaultPosition,
36        const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxT("frame"));
37
38    // Extend event processing to search the document manager's event table
39    virtual bool ProcessEvent(wxEvent& event);
40
41    wxDocManager *GetDocumentManager(void) const { return m_docManager; }
42
43    void OnExit(wxCommandEvent& event);
44    void OnMRUFile(wxCommandEvent& event);
45    void OnCloseWindow(wxCloseEvent& event);
46
47protected:
48    void Init();
49    wxDocManager *m_docManager;
50
51private:
52    DECLARE_CLASS(wxDocMDIParentFrame)
53    DECLARE_EVENT_TABLE()
54    DECLARE_NO_COPY_CLASS(wxDocMDIParentFrame)
55};
56
57/*
58 * Use this instead of wxMDIChildFrame
59 */
60
61class WXDLLEXPORT wxDocMDIChildFrame: public wxMDIChildFrame
62{
63public:
64    wxDocMDIChildFrame();
65    wxDocMDIChildFrame(wxDocument *doc, wxView *view, wxMDIParentFrame *frame, wxWindowID id,
66        const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
67        long type = wxDEFAULT_FRAME_STYLE, const wxString& name = wxT("frame"));
68    virtual ~wxDocMDIChildFrame();
69
70    bool Create(wxDocument *doc,
71                wxView *view,
72                wxMDIParentFrame *frame,
73                wxWindowID id,
74                const wxString& title,
75                const wxPoint& pos = wxDefaultPosition,
76                const wxSize& size = wxDefaultSize,
77                long type = wxDEFAULT_FRAME_STYLE,
78                const wxString& name = wxFrameNameStr);
79
80    // Extend event processing to search the view's event table
81    virtual bool ProcessEvent(wxEvent& event);
82
83    void OnActivate(wxActivateEvent& event);
84    void OnCloseWindow(wxCloseEvent& event);
85
86    inline wxDocument *GetDocument() const { return m_childDocument; }
87    inline wxView *GetView(void) const { return m_childView; }
88    inline void SetDocument(wxDocument *doc) { m_childDocument = doc; }
89    inline void SetView(wxView *view) { m_childView = view; }
90    bool Destroy() { m_childView = (wxView *)NULL; return wxMDIChildFrame::Destroy(); }
91
92protected:
93    void Init();
94    wxDocument*       m_childDocument;
95    wxView*           m_childView;
96
97private:
98    DECLARE_EVENT_TABLE()
99    DECLARE_CLASS(wxDocMDIChildFrame)
100    DECLARE_NO_COPY_CLASS(wxDocMDIChildFrame)
101};
102
103#endif
104    // wxUSE_MDI_ARCHITECTURE
105
106#endif
107    // _WX_DOCMDI_H_
108