// What to do when a view is created. Creates actual
// windows for displaying the view.
-bool DrawingView::OnCreate(wxDocument *doc, long WXUNUSED(flags) )
+bool DrawingView::OnCreate(wxDocument *doc, long flags)
{
+ if ( !wxView::OnCreate(doc, flags) )
+ return false;
+
MyApp& app = wxGetApp();
if ( app.GetMode() != MyApp::Mode_Single )
{
// create a new window and canvas inside it
- m_frame = app.CreateChildFrame(doc, this, true);
- m_frame->SetTitle("Drawing View");
-
- m_canvas = new MyCanvas(this, m_frame);
- m_frame->Show(true);
+ wxFrame* frame = app.CreateChildFrame(this, true);
+ wxASSERT(frame == GetFrame());
+ m_canvas = new MyCanvas(this);
}
else // single document mode
{
// reuse the existing window and canvas
- m_frame = wxStaticCast(app.GetTopWindow(), wxFrame);
m_canvas = app.GetMainWindowCanvas();
m_canvas->SetView(this);
- // Associate the appropriate frame with this view.
- SetFrame(m_frame);
-
- // Make sure the document manager knows that this is the
- // current view.
- Activate(true);
-
// Initialize the edit menu Undo and Redo items
doc->GetCommandProcessor()->SetEditMenu(app.GetMainWindowEditMenu());
doc->GetCommandProcessor()->Initialize();
}
+ GetFrame()->Show();
return true;
}
m_canvas->ResetView();
m_canvas = NULL;
- if ( m_frame )
- m_frame->SetTitle(wxTheApp->GetAppDisplayName());
+ if (GetFrame())
+ wxStaticCast(GetFrame(), wxFrame)->SetTitle(wxTheApp->GetAppDisplayName());
}
else // not single window mode
{
if ( deleteWindow )
- wxDELETE(m_frame);
+ {
+ GetFrame()->Destroy();
+ SetFrame(NULL);
+ }
}
-
- SetFrame(NULL);
-
return true;
}
EVT_MENU(wxID_SELECTALL, TextEditView::OnSelectAll)
END_EVENT_TABLE()
-bool TextEditView::OnCreate(wxDocument *doc, long WXUNUSED(flags))
+bool TextEditView::OnCreate(wxDocument *doc, long flags)
{
- m_frame = wxGetApp().CreateChildFrame(doc, this, false);
- m_text = new wxTextCtrl(m_frame, wxID_ANY, "",
- wxPoint(0, 0), m_frame->GetClientSize(),
- wxTE_MULTILINE);
-
- m_frame->SetTitle("Text View");
- m_frame->Show(true);
+ if ( !wxView::OnCreate(doc, flags) )
+ return false;
- Activate(true);
+ wxFrame* frame = wxGetApp().CreateChildFrame(this, false);
+ wxASSERT(frame == GetFrame());
+ m_text = new wxTextCtrl(frame, wxID_ANY, "",
+ wxDefaultPosition, wxDefaultSize,
+ wxTE_MULTILINE);
+ frame->Show();
return true;
}
else // not single window mode
{
if ( deleteWindow )
- wxDELETE(m_frame);
+ {
+ GetFrame()->Destroy();
+ SetFrame(NULL);
+ }
}
-
return true;
}
// Define a constructor for my canvas
MyCanvas::MyCanvas(wxView *view, wxWindow *parent)
- : wxScrolledWindow(parent, wxID_ANY, wxPoint(0, 0), parent->GetClientSize())
+ : wxScrolledWindow(parent ? parent : view->GetFrame())
{
m_view = view;
m_currentSegment = NULL;
// ----------------------------------------------------------------------------
// Define a constructor for my canvas
-ImageCanvas::ImageCanvas(wxView* view, wxWindow* parent)
- : wxScrolledWindow(parent, wxID_ANY, wxPoint(0, 0), parent->GetClientSize())
+ImageCanvas::ImageCanvas(wxView* view)
+ : wxScrolledWindow(view->GetFrame())
{
- SetScrollRate( 10, 10 );
-
m_view = view;
+ SetScrollRate( 10, 10 );
}
// Define the repainting behaviour
return wxStaticCast(wxView::GetDocument(), ImageDocument);
}
-bool ImageView::OnCreate(wxDocument* doc, long WXUNUSED(flags))
+bool ImageView::OnCreate(wxDocument* doc, long flags)
{
- m_frame = wxGetApp().CreateChildFrame(doc, this, false);
- m_frame->SetTitle("Image View");
- m_canvas = new ImageCanvas(this, m_frame);
- m_frame->Show(true);
- Activate(true);
+ if ( !wxView::OnCreate(doc, flags) )
+ return false;
+
+ wxFrame* frame = wxGetApp().CreateChildFrame(this, false);
+ wxASSERT(frame == GetFrame());
+ m_canvas = new ImageCanvas(this);
+ frame->Show();
+
return true;
}
else // not single window mode
{
if ( deleteWindow )
- wxDELETE(m_frame);
+ {
+ GetFrame()->Destroy();
+ SetFrame(NULL);
+ }
}
return true;
}
public:
// view may be NULL if we're not associated with one yet, but parent must
// be a valid pointer
- MyCanvas(wxView *view, wxWindow *parent);
+ MyCanvas(wxView *view, wxWindow *parent = NULL);
virtual ~MyCanvas();
virtual void OnDraw(wxDC& dc);
class DrawingView : public wxView
{
public:
- DrawingView() { m_canvas = NULL; m_frame = NULL; }
+ DrawingView() : wxView(), m_canvas(NULL) {}
virtual bool OnCreate(wxDocument *doc, long flags);
virtual void OnDraw(wxDC *dc);
private:
void OnCut(wxCommandEvent& event);
- wxFrame *m_frame;
MyCanvas *m_canvas;
DECLARE_EVENT_TABLE()
class TextEditView : public wxView
{
public:
- TextEditView() : wxView() { m_frame = NULL; m_text = NULL; }
+ TextEditView() : wxView(), m_text(NULL) {}
virtual bool OnCreate(wxDocument *doc, long flags);
virtual void OnDraw(wxDC *dc);
void OnPaste(wxCommandEvent& WXUNUSED(event)) { m_text->Paste(); }
void OnSelectAll(wxCommandEvent& WXUNUSED(event)) { m_text->SelectAll(); }
- wxFrame *m_frame;
wxTextCtrl *m_text;
DECLARE_EVENT_TABLE()
class ImageCanvas : public wxScrolledWindow
{
public:
- ImageCanvas(wxView*, wxWindow* parent);
+ ImageCanvas(wxView*);
virtual void OnDraw(wxDC& dc);
-
- // in a normal multiple document application a canvas is associated with
- // one view from the beginning until the end, but to support the single
- // document mode in which all documents reuse the same MyApp::GetCanvas()
- // we need to allow switching the canvas from one view to another one
-
- void SetView(wxView* view)
- {
- wxASSERT_MSG( !m_view, "shouldn't be already associated with a view" );
-
- m_view = view;
- }
-
- void ResetView()
- {
- wxASSERT_MSG( m_view, "should be associated with a view" );
-
- m_view = NULL;
- }
-
private:
wxView *m_view;
};
class ImageView : public wxView
{
public:
- ImageView() : wxView(), m_frame(NULL) {}
+ ImageView() : wxView() {}
virtual bool OnCreate(wxDocument*, long flags);
virtual void OnDraw(wxDC*);
ImageDocument* GetDocument();
private:
- wxFrame* m_frame;
ImageCanvas* m_canvas;
DECLARE_DYNAMIC_CLASS(ImageView)