1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
/////////////////////////////////////////////////////////////////////////////
// Name: samples/docview/view.h
// Purpose: View classes
// Author: Julian Smart
// Modified by: Vadim Zeitlin: merge with the MDI version and general cleanup
// Created: 04/01/98
// Copyright: (c) 1998 Julian Smart
// (c) 2008 Vadim Zeitlin
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_SAMPLES_DOCVIEW_VIEW_H_
#define _WX_SAMPLES_DOCVIEW_VIEW_H_
#include "wx/docview.h"
// ----------------------------------------------------------------------------
// Drawing view classes
// ----------------------------------------------------------------------------
// The window showing the drawing itself
class MyCanvas : public wxScrolledWindow
{
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 = NULL);
virtual ~MyCanvas();
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:
void OnMouseEvent(wxMouseEvent& event);
wxView *m_view;
// the segment being currently drawn or NULL if none
DoodleSegment *m_currentSegment;
// the last mouse press position
wxPoint m_lastMousePos;
wxDECLARE_EVENT_TABLE();
};
// The view using MyCanvas to show its contents
class DrawingView : public wxView
{
public:
DrawingView() : wxView(), m_canvas(NULL) {}
virtual bool OnCreate(wxDocument *doc, long flags);
virtual void OnDraw(wxDC *dc);
virtual void OnUpdate(wxView *sender, wxObject *hint = NULL);
virtual bool OnClose(bool deleteWindow = true);
DrawingDocument* GetDocument();
private:
void OnCut(wxCommandEvent& event);
MyCanvas *m_canvas;
wxDECLARE_EVENT_TABLE();
wxDECLARE_DYNAMIC_CLASS(DrawingView);
};
// ----------------------------------------------------------------------------
// Text view classes
// ----------------------------------------------------------------------------
// The view using a standard wxTextCtrl to show its contents
class TextEditView : public wxView
{
public:
TextEditView() : wxView(), m_text(NULL) {}
virtual bool OnCreate(wxDocument *doc, long flags);
virtual void OnDraw(wxDC *dc);
virtual bool OnClose(bool deleteWindow = true);
wxTextCtrl *GetText() const { return m_text; }
private:
void OnCopy(wxCommandEvent& WXUNUSED(event)) { m_text->Copy(); }
void OnPaste(wxCommandEvent& WXUNUSED(event)) { m_text->Paste(); }
void OnSelectAll(wxCommandEvent& WXUNUSED(event)) { m_text->SelectAll(); }
wxTextCtrl *m_text;
wxDECLARE_EVENT_TABLE();
wxDECLARE_DYNAMIC_CLASS(TextEditView);
};
// ----------------------------------------------------------------------------
// ImageCanvas
// ----------------------------------------------------------------------------
class ImageCanvas : public wxScrolledWindow
{
public:
ImageCanvas(wxView*);
virtual void OnDraw(wxDC& dc);
private:
wxView *m_view;
};
// ----------------------------------------------------------------------------
// ImageView
// ----------------------------------------------------------------------------
class ImageView : public wxView
{
public:
ImageView() : wxView() {}
virtual bool OnCreate(wxDocument*, long flags);
virtual void OnDraw(wxDC*);
virtual bool OnClose(bool deleteWindow = true);
virtual void OnUpdate(wxView *sender, wxObject *hint = NULL);
ImageDocument* GetDocument();
private:
ImageCanvas* m_canvas;
wxDECLARE_DYNAMIC_CLASS(ImageView);
};
// ----------------------------------------------------------------------------
// ImageDetailsView
// ----------------------------------------------------------------------------
class ImageDetailsView : public wxView
{
public:
ImageDetailsView(ImageDetailsDocument *doc);
virtual void OnDraw(wxDC *dc);
virtual bool OnClose(bool deleteWindow);
private:
wxFrame *m_frame;
wxDECLARE_NO_COPY_CLASS(ImageDetailsView);
};
#endif // _WX_SAMPLES_DOCVIEW_VIEW_H_
|