1998-05-22 19:57:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: memcheck.cpp
|
|
|
|
// Purpose: Memory-checking sample
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 04/01/98
|
2003-03-17 11:55:54 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
2010-07-13 13:29:13 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-22 19:57:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/wx.h"
|
|
|
|
#endif
|
|
|
|
|
2001-11-20 14:56:47 +00:00
|
|
|
#include "wx/datetime.h"
|
1998-05-22 19:57:05 +00:00
|
|
|
|
2012-03-04 00:28:58 +00:00
|
|
|
#ifndef wxHAS_IMAGES_IN_RESOURCES
|
2010-06-20 17:42:33 +00:00
|
|
|
#include "../sample.xpm"
|
1998-07-31 20:04:04 +00:00
|
|
|
#endif
|
|
|
|
|
1998-11-21 15:40:35 +00:00
|
|
|
#ifndef __WXDEBUG__
|
|
|
|
#error This program must be compiled in debug mode.
|
1998-05-22 19:57:05 +00:00
|
|
|
#endif
|
|
|
|
|
1998-11-25 21:42:56 +00:00
|
|
|
// Normally, new is automatically defined to be the
|
|
|
|
// debugging version. If not, this does it.
|
2005-01-16 13:40:04 +00:00
|
|
|
#if !defined(new) && defined(WXDEBUG_NEW) && wxUSE_MEMORY_TRACING && wxUSE_GLOBAL_MEMORY_OPERATORS
|
1998-11-25 21:42:56 +00:00
|
|
|
#define new WXDEBUG_NEW
|
|
|
|
#endif
|
|
|
|
|
1998-05-22 19:57:05 +00:00
|
|
|
// Define a new application type
|
|
|
|
class MyApp: public wxApp
|
|
|
|
{ public:
|
2018-03-06 22:12:19 +00:00
|
|
|
bool OnInit(void) wxOVERRIDE;
|
1998-05-22 19:57:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Define a new frame type
|
|
|
|
class MyFrame: public wxFrame
|
|
|
|
{ public:
|
|
|
|
MyFrame(wxFrame *parent);
|
|
|
|
void OnQuit(wxCommandEvent& event);
|
|
|
|
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_EVENT_TABLE();
|
1998-05-22 19:57:05 +00:00
|
|
|
};
|
|
|
|
|
2015-04-23 11:49:01 +00:00
|
|
|
wxIMPLEMENT_APP(MyApp);
|
1998-05-22 19:57:05 +00:00
|
|
|
|
|
|
|
// `Main program' equivalent, creating windows and returning main app frame
|
|
|
|
bool MyApp::OnInit(void)
|
|
|
|
{
|
2007-02-04 00:34:18 +00:00
|
|
|
if ( !wxApp::OnInit() )
|
2010-06-20 17:42:33 +00:00
|
|
|
return false;
|
2007-02-04 00:34:18 +00:00
|
|
|
|
1998-05-22 19:57:05 +00:00
|
|
|
// Create the main frame window
|
1998-08-23 03:22:56 +00:00
|
|
|
MyFrame *frame = new MyFrame((wxFrame *) NULL);
|
1998-05-22 19:57:05 +00:00
|
|
|
|
|
|
|
// Give it an icon
|
2010-06-20 17:42:33 +00:00
|
|
|
frame->SetIcon(wxICON(sample));
|
1998-05-22 19:57:05 +00:00
|
|
|
|
|
|
|
// Make a menubar
|
|
|
|
wxMenu *file_menu = new wxMenu;
|
|
|
|
|
2018-09-22 23:15:08 +00:00
|
|
|
file_menu->Append(wxID_EXIT, "E&xit");
|
1998-05-22 19:57:05 +00:00
|
|
|
wxMenuBar *menu_bar = new wxMenuBar;
|
2018-09-22 23:15:08 +00:00
|
|
|
menu_bar->Append(file_menu, "File");
|
1998-05-22 19:57:05 +00:00
|
|
|
frame->SetMenuBar(menu_bar);
|
|
|
|
|
|
|
|
// Make a panel with a message
|
|
|
|
wxPanel *panel = new wxPanel(frame);
|
|
|
|
|
2018-09-22 23:15:08 +00:00
|
|
|
(void)new wxStaticText(panel, wxID_ANY, "Hello, this is a minimal debugging wxWidgets program!", wxPoint(10, 10));
|
1998-05-22 19:57:05 +00:00
|
|
|
|
|
|
|
// Show the frame
|
2005-05-10 20:05:18 +00:00
|
|
|
frame->Show(true);
|
1998-05-22 19:57:05 +00:00
|
|
|
|
2004-12-02 12:03:45 +00:00
|
|
|
#if wxUSE_MEMORY_TRACING
|
1998-07-25 08:31:39 +00:00
|
|
|
wxDebugContext::SetCheckpoint();
|
2004-12-01 12:50:24 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// object allocation
|
2012-12-01 23:06:50 +00:00
|
|
|
wxBrush* brush = new wxBrush(*wxRED_BRUSH);
|
2004-12-01 12:50:24 +00:00
|
|
|
wxBitmap* bitmap = new wxBitmap(100, 100);
|
|
|
|
|
|
|
|
// non-object allocation
|
|
|
|
char *ordinaryNonObject = new char[1000];
|
1998-05-22 19:57:05 +00:00
|
|
|
|
1998-09-11 09:05:26 +00:00
|
|
|
wxString *thing = new wxString;
|
2001-11-20 14:56:47 +00:00
|
|
|
|
|
|
|
#if wxUSE_DATETIME
|
|
|
|
wxDateTime* date = new wxDateTime;
|
|
|
|
#endif // wxUSE_DATETIME
|
1998-05-22 19:57:05 +00:00
|
|
|
|
|
|
|
const char *data = (const char*) thing ;
|
|
|
|
|
2004-12-02 12:03:45 +00:00
|
|
|
#if wxUSE_MEMORY_TRACING
|
2000-09-07 15:02:33 +00:00
|
|
|
// On MSW, Dump() crashes if using wxLogGui,
|
|
|
|
// so use wxLogStderr instead.
|
|
|
|
wxLog* oldLog = wxLog::SetActiveTarget(new wxLogStderr);
|
|
|
|
|
1998-07-25 08:31:39 +00:00
|
|
|
wxDebugContext::PrintClasses();
|
|
|
|
wxDebugContext::Dump();
|
|
|
|
wxDebugContext::PrintStatistics();
|
1998-05-22 19:57:05 +00:00
|
|
|
|
2000-09-07 15:02:33 +00:00
|
|
|
// Set back to wxLogGui
|
|
|
|
delete wxLog::SetActiveTarget(oldLog);
|
2004-12-01 12:50:24 +00:00
|
|
|
#endif
|
2000-09-07 15:02:33 +00:00
|
|
|
|
1998-11-21 15:40:35 +00:00
|
|
|
// Don't delete these objects, to force wxApp to flag a memory leak.
|
1998-05-22 19:57:05 +00:00
|
|
|
// delete thing;
|
|
|
|
// delete date;
|
|
|
|
// delete[] ordinaryNonObject;
|
2005-05-10 20:05:18 +00:00
|
|
|
|
|
|
|
return true;
|
1998-05-22 19:57:05 +00:00
|
|
|
}
|
|
|
|
|
2014-03-30 07:07:55 +00:00
|
|
|
wxBEGIN_EVENT_TABLE(MyFrame, wxFrame)
|
1998-05-22 19:57:05 +00:00
|
|
|
EVT_MENU(wxID_EXIT, MyFrame::OnQuit)
|
2014-03-30 07:07:55 +00:00
|
|
|
wxEND_EVENT_TABLE()
|
1998-05-22 19:57:05 +00:00
|
|
|
|
|
|
|
// My frame constructor
|
|
|
|
MyFrame::MyFrame(wxFrame *parent):
|
2018-09-22 23:15:08 +00:00
|
|
|
wxFrame(parent, wxID_ANY, "MemCheck wxWidgets Sample", wxDefaultPosition, wxSize(400, 200))
|
1998-05-22 19:57:05 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
// Intercept menu commands
|
1998-09-12 17:18:12 +00:00
|
|
|
void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
|
1998-05-22 19:57:05 +00:00
|
|
|
{
|
2005-05-10 20:05:18 +00:00
|
|
|
Close(true);
|
1998-05-22 19:57:05 +00:00
|
|
|
}
|
|
|
|
|