]> git.saurik.com Git - wxWidgets.git/blob - samples/memcheck/memcheck.cpp
Updates to memcheck
[wxWidgets.git] / samples / memcheck / memcheck.cpp
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 and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #pragma interface
15 #endif
16
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
19
20 #ifdef __BORLANDC__
21 #pragma hdrstop
22 #endif
23
24 #ifndef WX_PRECOMP
25 #include "wx/wx.h"
26 #endif
27
28 #include "wx/date.h"
29
30 #ifdef __WXGTK__
31 #include "mondrian.xpm"
32 #endif
33
34 #if !WXDEBUG
35 #error You must set WXDEBUG to 1 on the 'make' command line (MSW) or with configure (GTK)
36 #endif
37
38 // Define a new application type
39 class MyApp: public wxApp
40 { public:
41 bool OnInit(void);
42 };
43
44 // Define a new frame type
45 class MyFrame: public wxFrame
46 { public:
47 MyFrame(wxFrame *parent);
48 void OnQuit(wxCommandEvent& event);
49
50 DECLARE_EVENT_TABLE()
51 };
52
53 IMPLEMENT_APP(MyApp)
54
55 // `Main program' equivalent, creating windows and returning main app frame
56 bool MyApp::OnInit(void)
57 {
58 // Create the main frame window
59 MyFrame *frame = new MyFrame((wxFrame *) NULL);
60
61 // Give it an icon
62 #ifdef wx_msw
63 frame->SetIcon(wxIcon("mondrian"));
64 frame->SetIcon(wxIcon(mondrian_xpm));
65 #endif
66
67 // Make a menubar
68 wxMenu *file_menu = new wxMenu;
69
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);
74
75 // Make a panel with a message
76 wxPanel *panel = new wxPanel(frame);
77
78 (void)new wxStaticText(panel, -1, "Hello, this is a minimal debugging wxWindows program!", wxPoint(10, 10));
79
80 // Show the frame
81 frame->Show(TRUE);
82
83 wxDebugContext::SetCheckpoint();
84 wxDebugContext::SetFile("debug.log");
85
86 wxString *thing = new wxString;
87 wxDate* date = new wxDate;
88
89 // non-object allocation
90 char *ordinaryNonObject = new char[1000];
91
92 const char *data = (const char*) thing ;
93
94 wxDebugContext::PrintClasses();
95 wxDebugContext::Dump();
96 wxDebugContext::PrintStatistics();
97
98 // Don't delete these two objects, to force wxApp to flag a memory leak.
99 // delete thing;
100 // delete date;
101 // delete[] ordinaryNonObject;
102
103 return TRUE;
104 }
105
106 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
107 EVT_MENU(wxID_EXIT, MyFrame::OnQuit)
108 END_EVENT_TABLE()
109
110 // My frame constructor
111 MyFrame::MyFrame(wxFrame *parent):
112 wxFrame(parent, -1, "MemCheck wxWindows Sample", wxPoint(-1, -1), wxSize(400, 200))
113 {}
114
115 // Intercept menu commands
116 void MyFrame::OnQuit(wxCommandEvent& event)
117 {
118 Close(TRUE);
119 }
120