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