]>
git.saurik.com Git - wxWidgets.git/blob - samples/memcheck/memcheck.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Memory-checking sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
31 #error You must set WXDEBUG to 1 on the 'make' command line (MSW) or with configure (GTK)
34 // #define new WXDEBUG_NEW
36 // Define a new application type
37 class MyApp
: public wxApp
42 // Define a new frame type
43 class MyFrame
: public wxFrame
45 MyFrame(wxFrame
*parent
);
46 void OnQuit(wxCommandEvent
& event
);
53 // `Main program' equivalent, creating windows and returning main app frame
54 bool MyApp::OnInit(void)
56 // Create the main frame window
57 MyFrame
*frame
= new MyFrame(NULL
);
61 frame
->SetIcon(wxIcon("mondrian"));
64 frame
->SetIcon(wxIcon("mondrian.xbm"));
68 wxMenu
*file_menu
= new wxMenu
;
70 file_menu
->Append(wxID_EXIT
, "E&xit");
71 wxMenuBar
*menu_bar
= new wxMenuBar
;
72 menu_bar
->Append(file_menu
, "File");
73 frame
->SetMenuBar(menu_bar
);
75 // Make a panel with a message
76 wxPanel
*panel
= new wxPanel(frame
);
78 (void)new wxStaticText(panel
, -1, "Hello, this is a minimal debugging wxWindows program!", wxPoint(10, 10));
83 wxDebugContext::SetCheckpoint();
84 wxDebugContext::SetFile("debug.log");
86 wxString
*thing
= new wxString
; // WXDEBUG_NEW wxString;
87 wxDate
* date
= new wxDate
;
89 // Proves that defining 'new' to be 'WXDEBUG_NEW' doesn't mess up
90 // non-object allocation
91 char *ordinaryNonObject
= new char[1000];
93 const char *data
= (const char*) thing
;
95 wxDebugContext::PrintClasses();
96 wxDebugContext::Dump();
97 wxDebugContext::PrintStatistics();
99 // Don't delete these two objects, to force wxApp to flag a memory leak.
102 // delete[] ordinaryNonObject;
107 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
108 EVT_MENU(wxID_EXIT
, MyFrame::OnQuit
)
111 // My frame constructor
112 MyFrame::MyFrame(wxFrame
*parent
):
113 wxFrame(parent
, -1, "MemCheck wxWindows Sample", wxPoint(-1, -1), wxSize(400, 200))
116 // Intercept menu commands
117 void MyFrame::OnQuit(wxCommandEvent
& event
)