1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: mdi.cpp
|
|
|
|
// Purpose: MDI sample
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 04/01/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart and Markus Holzem
|
1999-05-23 23:45:47 +00:00
|
|
|
// Licence: wxWindows license
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
// ===========================================================================
|
|
|
|
// declarations
|
|
|
|
// ===========================================================================
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// For compilers that support precompilation, includes "wx/wx.h".
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
1999-05-23 23:45:47 +00:00
|
|
|
#pragma hdrstop
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
1999-05-23 23:45:47 +00:00
|
|
|
#include "wx/wx.h"
|
|
|
|
#include "wx/mdi.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
1998-07-24 19:05:25 +00:00
|
|
|
#include <wx/toolbar.h>
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-10-19 21:51:15 +00:00
|
|
|
#if defined(__WXGTK__) || defined(__WXMOTIF__)
|
1999-05-23 23:45:47 +00:00
|
|
|
#include "mondrian.xpm"
|
|
|
|
#include "bitmaps/new.xpm"
|
|
|
|
#include "bitmaps/open.xpm"
|
|
|
|
#include "bitmaps/save.xpm"
|
|
|
|
#include "bitmaps/copy.xpm"
|
|
|
|
#include "bitmaps/cut.xpm"
|
|
|
|
#include "bitmaps/paste.xpm"
|
|
|
|
#include "bitmaps/print.xpm"
|
|
|
|
#include "bitmaps/help.xpm"
|
1998-07-22 22:13:31 +00:00
|
|
|
#endif
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "mdi.h"
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
IMPLEMENT_APP(MyApp)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// global variables
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
1998-08-23 03:22:56 +00:00
|
|
|
MyFrame *frame = (MyFrame *) NULL;
|
1998-05-20 14:01:55 +00:00
|
|
|
wxList my_children;
|
|
|
|
|
|
|
|
// For drawing lines in a canvas
|
1999-05-23 23:45:47 +00:00
|
|
|
static long xpos = -1;
|
|
|
|
static long ypos = -1;
|
|
|
|
|
|
|
|
static int gs_nFrames = 0;
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// event tables
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE(MyFrame, wxMDIParentFrame)
|
|
|
|
EVT_MENU(MDI_ABOUT, MyFrame::OnAbout)
|
|
|
|
EVT_MENU(MDI_NEW_WINDOW, MyFrame::OnNewWindow)
|
|
|
|
EVT_MENU(MDI_QUIT, MyFrame::OnQuit)
|
|
|
|
|
|
|
|
EVT_CLOSE(MyFrame::OnClose)
|
|
|
|
|
|
|
|
EVT_SIZE(MyFrame::OnSize)
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
// Note that MDI_NEW_WINDOW and MDI_ABOUT commands get passed
|
|
|
|
// to the parent window for processing, so no need to
|
|
|
|
// duplicate event handlers here.
|
|
|
|
BEGIN_EVENT_TABLE(MyChild, wxMDIChildFrame)
|
|
|
|
EVT_MENU(MDI_CHILD_QUIT, MyChild::OnQuit)
|
|
|
|
EVT_MENU(MDI_REFRESH, MyChild::OnRefresh)
|
|
|
|
|
|
|
|
EVT_CLOSE(MyChild::OnClose)
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE(MyCanvas, wxScrolledWindow)
|
|
|
|
EVT_MOUSE_EVENTS(MyCanvas::OnEvent)
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
// ===========================================================================
|
|
|
|
// implementation
|
|
|
|
// ===========================================================================
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// MyApp
|
|
|
|
// ---------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Initialise this in OnInit, not statically
|
1999-05-23 23:45:47 +00:00
|
|
|
bool MyApp::OnInit()
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
// Create the main frame window
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
frame = new MyFrame((wxFrame *)NULL, -1, "MDI Demo",
|
|
|
|
wxPoint(-1, -1), wxSize(500, 400),
|
|
|
|
wxDEFAULT_FRAME_STYLE | wxHSCROLL | wxVSCROLL);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
// Give it an icon
|
1998-07-10 14:15:17 +00:00
|
|
|
#ifdef __WXMSW__
|
1999-05-23 23:45:47 +00:00
|
|
|
frame->SetIcon(wxIcon("mdi_icn"));
|
1998-08-17 14:29:53 +00:00
|
|
|
#else
|
1999-05-23 23:45:47 +00:00
|
|
|
frame->SetIcon(wxIcon( mondrian_xpm ));
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
// Make a menubar
|
|
|
|
wxMenu *file_menu = new wxMenu;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
file_menu->Append(MDI_NEW_WINDOW, "&New window", "Create a new child window");
|
|
|
|
file_menu->Append(MDI_QUIT, "&Exit", "Quit the program");
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
wxMenu *help_menu = new wxMenu;
|
|
|
|
help_menu->Append(MDI_ABOUT, "&About");
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
wxMenuBar *menu_bar = new wxMenuBar;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
menu_bar->Append(file_menu, "&File");
|
|
|
|
menu_bar->Append(help_menu, "&Help");
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
// Associate the menu bar with the frame
|
|
|
|
frame->SetMenuBar(menu_bar);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
frame->CreateStatusBar();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
frame->Show(TRUE);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
SetTopWindow(frame);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
return TRUE;
|
1998-05-20 14:01:55 +00:00
|
|
|
}
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// MyFrame
|
|
|
|
// ---------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Define my frame constructor
|
1999-05-23 23:45:47 +00:00
|
|
|
MyFrame::MyFrame(wxWindow *parent,
|
|
|
|
const wxWindowID id,
|
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const long style)
|
|
|
|
: wxMDIParentFrame(parent, id, title, pos, size, style)
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
textWindow = new wxTextCtrl(this, -1, "A help window",
|
|
|
|
wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxTE_MULTILINE | wxSUNKEN_BORDER);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
CreateToolBar(wxNO_BORDER | wxTB_FLAT | wxTB_HORIZONTAL);
|
1998-07-27 09:47:57 +00:00
|
|
|
InitToolBar(GetToolBar());
|
1998-07-31 13:01:34 +00:00
|
|
|
|
|
|
|
// Accelerators
|
|
|
|
wxAcceleratorEntry entries[3];
|
|
|
|
entries[0].Set(wxACCEL_CTRL, (int) 'N', MDI_NEW_WINDOW);
|
|
|
|
entries[1].Set(wxACCEL_CTRL, (int) 'X', MDI_QUIT);
|
|
|
|
entries[2].Set(wxACCEL_CTRL, (int) 'A', MDI_ABOUT);
|
|
|
|
wxAcceleratorTable accel(3, entries);
|
|
|
|
SetAcceleratorTable(accel);
|
1998-05-20 14:01:55 +00:00
|
|
|
}
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
void MyFrame::OnClose(wxCloseEvent& event)
|
|
|
|
{
|
|
|
|
if ( event.CanVeto() && (gs_nFrames > 0) )
|
|
|
|
{
|
|
|
|
wxString msg;
|
1999-05-30 16:20:42 +00:00
|
|
|
msg.Printf(_T("%d windows still open, close anyhow?"), gs_nFrames);
|
1999-05-23 23:45:47 +00:00
|
|
|
if ( wxMessageBox(msg, "Please confirm",
|
|
|
|
wxICON_QUESTION | wxYES_NO) != wxYES )
|
|
|
|
{
|
|
|
|
event.Veto();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
Close();
|
1998-05-20 14:01:55 +00:00
|
|
|
}
|
|
|
|
|
1998-07-27 20:50:48 +00:00
|
|
|
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event) )
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
(void)wxMessageBox("wxWindows 2.0 MDI Demo\n"
|
|
|
|
"Author: Julian Smart (c) 1997\n"
|
|
|
|
"Usage: mdi.exe", "About MDI Demo");
|
1998-05-20 14:01:55 +00:00
|
|
|
}
|
|
|
|
|
1998-07-27 20:50:48 +00:00
|
|
|
void MyFrame::OnNewWindow(wxCommandEvent& WXUNUSED(event) )
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
// Make another frame, containing a canvas
|
|
|
|
MyChild *subframe = new MyChild(frame, "Canvas Frame",
|
|
|
|
wxPoint(-1, -1), wxSize(-1, -1),
|
|
|
|
wxDEFAULT_FRAME_STYLE);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
wxString title;
|
1999-05-30 16:20:42 +00:00
|
|
|
title.Printf(_T("Canvas Frame %d"), ++gs_nFrames);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
subframe->SetTitle(title);
|
|
|
|
|
|
|
|
// Give it an icon
|
1998-07-10 14:15:17 +00:00
|
|
|
#ifdef __WXMSW__
|
1999-05-23 23:45:47 +00:00
|
|
|
subframe->SetIcon(wxIcon("chrt_icn"));
|
1998-10-19 21:51:15 +00:00
|
|
|
#else
|
1999-05-23 23:45:47 +00:00
|
|
|
subframe->SetIcon(wxIcon( mondrian_xpm ));
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
// Make a menubar
|
|
|
|
wxMenu *file_menu = new wxMenu;
|
|
|
|
|
|
|
|
file_menu->Append(MDI_NEW_WINDOW, "&New window");
|
|
|
|
file_menu->Append(MDI_CHILD_QUIT, "&Close child", "Close this window");
|
|
|
|
file_menu->Append(MDI_QUIT, "&Exit");
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
wxMenu *option_menu = new wxMenu;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
// Dummy option
|
|
|
|
option_menu->Append(MDI_REFRESH, "&Refresh picture");
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
wxMenu *help_menu = new wxMenu;
|
|
|
|
help_menu->Append(MDI_ABOUT, "&About");
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
wxMenuBar *menu_bar = new wxMenuBar;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
menu_bar->Append(file_menu, "&File");
|
|
|
|
menu_bar->Append(option_menu, "&Options");
|
|
|
|
menu_bar->Append(help_menu, "&Help");
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
// Associate the menu bar with the frame
|
|
|
|
subframe->SetMenuBar(menu_bar);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
int width, height;
|
|
|
|
subframe->GetClientSize(&width, &height);
|
|
|
|
MyCanvas *canvas = new MyCanvas(subframe, wxPoint(0, 0), wxSize(width, height));
|
|
|
|
canvas->SetCursor(wxCursor(wxCURSOR_PENCIL));
|
|
|
|
subframe->canvas = canvas;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
// Give it scrollbars
|
|
|
|
canvas->SetScrollbars(20, 20, 50, 50);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
subframe->CreateStatusBar();
|
|
|
|
subframe->SetStatusText(title);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
subframe->Show(TRUE);
|
1998-05-20 14:01:55 +00:00
|
|
|
}
|
|
|
|
|
1999-09-29 22:47:56 +00:00
|
|
|
void MyFrame::OnSize(wxSizeEvent& WXUNUSED(event))
|
1999-05-23 23:45:47 +00:00
|
|
|
{
|
|
|
|
int w, h;
|
|
|
|
GetClientSize(&w, &h);
|
|
|
|
|
|
|
|
textWindow->SetSize(0, 0, 200, h);
|
|
|
|
GetClientWindow()->SetSize(200, 0, w - 200, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::InitToolBar(wxToolBar* toolBar)
|
|
|
|
{
|
|
|
|
wxBitmap* bitmaps[8];
|
|
|
|
|
|
|
|
#ifdef __WXMSW__
|
|
|
|
bitmaps[0] = new wxBitmap("icon1", wxBITMAP_TYPE_RESOURCE);
|
|
|
|
bitmaps[1] = new wxBitmap("icon2", wxBITMAP_TYPE_RESOURCE);
|
|
|
|
bitmaps[2] = new wxBitmap("icon3", wxBITMAP_TYPE_RESOURCE);
|
|
|
|
bitmaps[3] = new wxBitmap("icon4", wxBITMAP_TYPE_RESOURCE);
|
|
|
|
bitmaps[4] = new wxBitmap("icon5", wxBITMAP_TYPE_RESOURCE);
|
|
|
|
bitmaps[5] = new wxBitmap("icon6", wxBITMAP_TYPE_RESOURCE);
|
|
|
|
bitmaps[6] = new wxBitmap("icon7", wxBITMAP_TYPE_RESOURCE);
|
|
|
|
bitmaps[7] = new wxBitmap("icon8", wxBITMAP_TYPE_RESOURCE);
|
|
|
|
#else
|
|
|
|
bitmaps[0] = new wxBitmap( new_xpm );
|
|
|
|
bitmaps[1] = new wxBitmap( open_xpm );
|
|
|
|
bitmaps[2] = new wxBitmap( save_xpm );
|
|
|
|
bitmaps[3] = new wxBitmap( copy_xpm );
|
|
|
|
bitmaps[4] = new wxBitmap( cut_xpm );
|
|
|
|
bitmaps[5] = new wxBitmap( paste_xpm );
|
|
|
|
bitmaps[6] = new wxBitmap( print_xpm );
|
|
|
|
bitmaps[7] = new wxBitmap( help_xpm );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __WXMSW__
|
|
|
|
int width = 24;
|
|
|
|
#else
|
|
|
|
int width = 16;
|
|
|
|
#endif
|
|
|
|
int currentX = 5;
|
|
|
|
|
|
|
|
toolBar->AddTool( MDI_NEW_WINDOW, *(bitmaps[0]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "New file");
|
|
|
|
currentX += width + 5;
|
|
|
|
toolBar->AddTool(1, *bitmaps[1], wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Open file");
|
|
|
|
currentX += width + 5;
|
|
|
|
toolBar->AddTool(2, *bitmaps[2], wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Save file");
|
|
|
|
currentX += width + 5;
|
|
|
|
toolBar->AddSeparator();
|
|
|
|
toolBar->AddTool(3, *bitmaps[3], wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Copy");
|
|
|
|
currentX += width + 5;
|
|
|
|
toolBar->AddTool(4, *bitmaps[4], wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Cut");
|
|
|
|
currentX += width + 5;
|
|
|
|
toolBar->AddTool(5, *bitmaps[5], wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Paste");
|
|
|
|
currentX += width + 5;
|
|
|
|
toolBar->AddSeparator();
|
|
|
|
toolBar->AddTool(6, *bitmaps[6], wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Print");
|
|
|
|
currentX += width + 5;
|
|
|
|
toolBar->AddSeparator();
|
|
|
|
toolBar->AddTool(7, *bitmaps[7], wxNullBitmap, TRUE, currentX, -1, (wxObject *) NULL, "Help");
|
|
|
|
|
|
|
|
toolBar->Realize();
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 8; i++)
|
|
|
|
delete bitmaps[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// MyCanvas
|
|
|
|
// ---------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Define a constructor for my canvas
|
1999-05-23 23:45:47 +00:00
|
|
|
MyCanvas::MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size)
|
|
|
|
: wxScrolledWindow(parent, -1, pos, size,
|
|
|
|
wxSUNKEN_BORDER|wxVSCROLL|wxHSCROLL)
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1998-10-27 17:58:46 +00:00
|
|
|
SetBackgroundColour(wxColour("WHITE"));
|
1999-05-23 23:45:47 +00:00
|
|
|
|
|
|
|
m_dirty = FALSE;
|
1998-05-20 14:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Define the repainting behaviour
|
|
|
|
void MyCanvas::OnDraw(wxDC& dc)
|
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
dc.SetFont(*wxSWISS_FONT);
|
|
|
|
dc.SetPen(*wxGREEN_PEN);
|
|
|
|
dc.DrawLine(0, 0, 200, 200);
|
|
|
|
dc.DrawLine(200, 0, 0, 200);
|
|
|
|
|
|
|
|
dc.SetBrush(*wxCYAN_BRUSH);
|
|
|
|
dc.SetPen(*wxRED_PEN);
|
|
|
|
dc.DrawRectangle(100, 100, 100, 50);
|
|
|
|
dc.DrawRoundedRectangle(150, 150, 100, 50, 20);
|
|
|
|
|
|
|
|
dc.DrawEllipse(250, 250, 100, 50);
|
|
|
|
dc.DrawSpline(50, 200, 50, 100, 200, 10);
|
|
|
|
dc.DrawLine(50, 230, 200, 230);
|
|
|
|
dc.DrawText("This is a test string", 50, 230);
|
|
|
|
|
|
|
|
wxPoint points[3];
|
|
|
|
points[0].x = 200; points[0].y = 300;
|
|
|
|
points[1].x = 100; points[1].y = 400;
|
|
|
|
points[2].x = 300; points[2].y = 400;
|
|
|
|
|
|
|
|
dc.DrawPolygon(3, points);
|
1998-05-20 14:01:55 +00:00
|
|
|
}
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
// This implements a tiny doodling program! Drag the mouse using the left
|
|
|
|
// button.
|
1998-05-20 14:01:55 +00:00
|
|
|
void MyCanvas::OnEvent(wxMouseEvent& event)
|
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
wxClientDC dc(this);
|
|
|
|
PrepareDC(dc);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
wxPoint pt(event.GetLogicalPosition(dc));
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
if (xpos > -1 && ypos > -1 && event.Dragging())
|
|
|
|
{
|
|
|
|
dc.SetPen(*wxBLACK_PEN);
|
|
|
|
dc.DrawLine(xpos, ypos, pt.x, pt.y);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
m_dirty = TRUE;
|
|
|
|
}
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
xpos = pt.x;
|
|
|
|
ypos = pt.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// MyChild
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
MyChild::MyChild(wxMDIParentFrame *parent, const wxString& title,
|
|
|
|
const wxPoint& pos, const wxSize& size,
|
|
|
|
const long style)
|
|
|
|
: wxMDIChildFrame(parent, -1, title, pos, size, style)
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
canvas = (MyCanvas *) NULL;
|
|
|
|
my_children.Append(this);
|
1998-05-20 14:01:55 +00:00
|
|
|
}
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
MyChild::~MyChild()
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
my_children.DeleteObject(this);
|
1998-05-20 14:01:55 +00:00
|
|
|
}
|
|
|
|
|
1998-07-13 23:30:59 +00:00
|
|
|
void MyChild::OnQuit(wxCommandEvent& WXUNUSED(event))
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
Close(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyChild::OnRefresh(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
Refresh();
|
1998-05-20 14:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MyChild::OnActivate(wxActivateEvent& event)
|
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
if ( event.GetActive() && canvas )
|
|
|
|
canvas->SetFocus();
|
1998-05-20 14:01:55 +00:00
|
|
|
}
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
void MyChild::OnClose(wxCloseEvent& event)
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-05-23 23:45:47 +00:00
|
|
|
if ( canvas && canvas->IsDirty() )
|
|
|
|
{
|
|
|
|
if ( wxMessageBox("Really close?", "Please confirm",
|
|
|
|
wxICON_QUESTION | wxYES_NO) != wxYES )
|
|
|
|
{
|
|
|
|
event.Veto();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
gs_nFrames--;
|
|
|
|
|
|
|
|
event.Skip();
|
1998-05-20 14:01:55 +00:00
|
|
|
}
|
|
|
|
|
1999-05-23 23:45:47 +00:00
|
|
|
|