]> git.saurik.com Git - wxWidgets.git/blame_incremental - samples/memcheck/memcheck.cpp
[ 1578466 ] Support for custom floating panes
[wxWidgets.git] / samples / memcheck / memcheck.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: memcheck.cpp
3// Purpose: Memory-checking sample
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
16#pragma hdrstop
17#endif
18
19#ifndef WX_PRECOMP
20#include "wx/wx.h"
21#endif
22
23#include "wx/datetime.h"
24
25#if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__)
26#include "mondrian.xpm"
27#endif
28
29#ifndef __WXDEBUG__
30#error This program must be compiled in debug mode.
31#endif
32
33// Normally, new is automatically defined to be the
34// debugging version. If not, this does it.
35#if !defined(new) && defined(WXDEBUG_NEW) && wxUSE_MEMORY_TRACING && wxUSE_GLOBAL_MEMORY_OPERATORS
36#define new WXDEBUG_NEW
37#endif
38
39// Define a new application type
40class MyApp: public wxApp
41{ public:
42 bool OnInit(void);
43};
44
45// Define a new frame type
46class MyFrame: public wxFrame
47{ public:
48 MyFrame(wxFrame *parent);
49 void OnQuit(wxCommandEvent& event);
50
51DECLARE_EVENT_TABLE()
52};
53
54IMPLEMENT_APP(MyApp)
55
56// `Main program' equivalent, creating windows and returning main app frame
57bool MyApp::OnInit(void)
58{
59 // Create the main frame window
60 MyFrame *frame = new MyFrame((wxFrame *) NULL);
61
62 // Give it an icon
63 frame->SetIcon(wxICON(mondrian));
64
65 // Make a menubar
66 wxMenu *file_menu = new wxMenu;
67
68 file_menu->Append(wxID_EXIT, _T("E&xit"));
69 wxMenuBar *menu_bar = new wxMenuBar;
70 menu_bar->Append(file_menu, _T("File"));
71 frame->SetMenuBar(menu_bar);
72
73 // Make a panel with a message
74 wxPanel *panel = new wxPanel(frame);
75
76 (void)new wxStaticText(panel, wxID_ANY, _T("Hello, this is a minimal debugging wxWidgets program!"), wxPoint(10, 10));
77
78 // Show the frame
79 frame->Show(true);
80
81#if wxUSE_MEMORY_TRACING
82 wxDebugContext::SetCheckpoint();
83#endif
84
85 // object allocation
86 wxBrush* brush = new wxBrush(*wxRED);
87 wxBitmap* bitmap = new wxBitmap(100, 100);
88
89 // non-object allocation
90 char *ordinaryNonObject = new char[1000];
91
92 wxString *thing = new wxString;
93
94#if wxUSE_DATETIME
95 wxDateTime* date = new wxDateTime;
96#endif // wxUSE_DATETIME
97
98 const char *data = (const char*) thing ;
99
100#if wxUSE_MEMORY_TRACING
101 // On MSW, Dump() crashes if using wxLogGui,
102 // so use wxLogStderr instead.
103 wxLog* oldLog = wxLog::SetActiveTarget(new wxLogStderr);
104
105 wxDebugContext::PrintClasses();
106 wxDebugContext::Dump();
107 wxDebugContext::PrintStatistics();
108
109 // Set back to wxLogGui
110 delete wxLog::SetActiveTarget(oldLog);
111#endif
112
113 // Don't delete these objects, to force wxApp to flag a memory leak.
114// delete thing;
115// delete date;
116// delete[] ordinaryNonObject;
117
118 return true;
119}
120
121BEGIN_EVENT_TABLE(MyFrame, wxFrame)
122 EVT_MENU(wxID_EXIT, MyFrame::OnQuit)
123END_EVENT_TABLE()
124
125// My frame constructor
126MyFrame::MyFrame(wxFrame *parent):
127 wxFrame(parent, wxID_ANY, _T("MemCheck wxWidgets Sample"), wxDefaultPosition, wxSize(400, 200))
128{}
129
130// Intercept menu commands
131void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
132{
133 Close(true);
134}
135