]> git.saurik.com Git - wxWidgets.git/blame - samples/mfc/mfctest.cpp
HP-UX fixes: use INSTALL_DIR as install doesn't have -d option; fixes for threads...
[wxWidgets.git] / samples / mfc / mfctest.cpp
CommitLineData
bbf1f0e5
KB
1// hello.cpp : Defines the class behaviors for the application.
2// Hello is a simple program which consists of a main window
3// and an "About" dialog which can be invoked by a menu choice.
4// It is intended to serve as a starting-point for new
5// applications.
6//
7// This is a part of the Microsoft Foundation Classes C++ library.
8// Copyright (C) 1992 Microsoft Corporation
9// All rights reserved.
10//
11// This source code is only intended as a supplement to the
12// Microsoft Foundation Classes Reference and Microsoft
13// WinHelp documentation provided with the library.
14// See these sources for detailed information regarding the
15// Microsoft Foundation Classes product.
16
17// *** MODIFIED BY JULIAN SMART TO DEMONSTRATE CO-EXISTANCE WITH wxWINDOWS ***
18//
19// This sample pops up an initial wxWindows frame, with a menu item
20// that allows a new MFC window to be created. Note that CDummyWindow
21// is a class that allows a wxWindows window to be seen as a CWnd
22// for the purposes of specifying a valid main window to the
23// MFC initialisation.
24//
25// You can easily modify this code so that an MFC window pops up
26// initially as the main frame, and allows wxWindows frames to be
22431134 27// created subsequently.
bbf1f0e5 28//
22431134
JS
29// (1) Make MyApp::OnInit not create a main window.
30// (2) Make MFC's InitInstance create a main window, and remove
bbf1f0e5 31// creation of CDummyWindow.
22431134
JS
32//
33// This can be accomplished by setting START_WITH_MFC_WINDOW to 1 below.
34
35#define START_WITH_MFC_WINDOW 0
36
bbf1f0e5 37//
3f8e5072
JS
38// IMPORTANT NOTES:
39//
40// (1) You need to set wxUSE_MFC to 1 in include/wx/msw/setup.h, which switches
41// off some debugging features and also removes the windows.h inclusion
42// in wxprec.h (MFC headers don't like this to have been included previously).
22431134 43// Set to 'Use MFC in a shared DLL' or add _AFXDLL to preprocessor settings.
3f8e5072
JS
44// Then recompile wxWindows and this sample.
45//
22431134 46// (2) I can't get the sample to link and run using a static MFC library, only the DLL
3f8e5072
JS
47// version. Perhaps someone else is a wizard at working out the required settings
48// in the wxWin library and the sample; then debugging the assert problem may be
49// easier.
f6bcfd97 50//
22431134 51// (3) Compiling wxWindows in DLL mode currently includes windows.h, so you must only
f6bcfd97 52// try linking wxWindows statically.
bbf1f0e5
KB
53
54// For compilers that support precompilation, includes "wx/wx.h".
55#include "wx/wxprec.h"
56
57#ifdef __BORLANDC__
58#pragma hdrstop
59#endif
60
bbf1f0e5 61#include "wx/wx.h"
bbf1f0e5 62
f6bcfd97
BP
63#if defined(_WINDOWS_) || !wxUSE_MFC
64#error Sorry, you need to edit include/wx/msw/setup.h, set wxUSE_MFC to 1, and recompile.
818e52c2
JS
65#endif
66
bbf1f0e5
KB
67#ifdef new
68#undef new
69#endif
70
71#include "stdafx.h"
72
73#ifdef DrawText
74#undef DrawText
75#endif
76
77#include "resource.h"
78
79#include "mfctest.h"
80
bbf1f0e5
KB
81/////////////////////////////////////////////////////////////////////////////
82
83// theApp:
84// Just creating this application object runs the whole application.
85//
86CTheApp theApp;
87
88// wxWindows elements
89
90// Define a new application type
91class MyApp: public wxApp
92{ public:
22431134
JS
93bool OnInit(void);
94wxFrame *CreateFrame(void);
95};
bbf1f0e5 96
bbf1f0e5
KB
97class MyCanvas: public wxScrolledWindow
98{
22431134 99public:
bbf1f0e5
KB
100 MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size);
101 void OnPaint(wxPaintEvent& event);
102 void OnMouseEvent(wxMouseEvent& event);
22431134 103 DECLARE_EVENT_TABLE()
bbf1f0e5
KB
104};
105
106class MyChild: public wxFrame
107{
22431134 108public:
bbf1f0e5
KB
109 MyCanvas *canvas;
110 MyChild(wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& size, const long style);
111 ~MyChild(void);
22431134 112
bbf1f0e5
KB
113 void OnQuit(wxCommandEvent& event);
114 void OnNew(wxCommandEvent& event);
115 void OnActivate(wxActivateEvent& event);
22431134
JS
116
117 DECLARE_EVENT_TABLE()
bbf1f0e5
KB
118};
119
120// For drawing lines in a canvas
121long xpos = -1;
122long ypos = -1;
123
bbf1f0e5
KB
124// ID for the menu quit command
125#define HELLO_QUIT 1
126#define HELLO_NEW 2
127
128DECLARE_APP(MyApp)
129IMPLEMENT_APP(MyApp)
130
131/////////////////////////////////////////////////////////////////////////////
132
133// CMainWindow constructor:
134// Create the window with the appropriate style, size, menu, etc.
135//
136CMainWindow::CMainWindow()
137{
2f6c54eb
VZ
138 LoadAccelTable( "MainAccelTable" );
139 Create( NULL, "Hello Foundation Application",
140 WS_OVERLAPPEDWINDOW, rectDefault, NULL, "MainMenu" );
bbf1f0e5
KB
141}
142
143// OnPaint:
144// This routine draws the string "Hello, Windows!" in the center of the
145// client area. It is called whenever Windows sends a WM_PAINT message.
146// Note that creating a CPaintDC automatically does a BeginPaint and
147// an EndPaint call is done when it is destroyed at the end of this
148// function. CPaintDC's constructor needs the window (this).
149//
150void CMainWindow::OnPaint()
151{
2f6c54eb
VZ
152 CString s = "Hello, Windows!";
153 CPaintDC dc( this );
154 CRect rect;
22431134 155
2f6c54eb
VZ
156 GetClientRect( rect );
157 dc.SetTextAlign( TA_BASELINE | TA_CENTER );
158 dc.SetTextColor( ::GetSysColor( COLOR_WINDOWTEXT ) );
159 dc.SetBkMode(TRANSPARENT);
160 dc.TextOut( ( rect.right / 2 ), ( rect.bottom / 2 ),
22431134 161 s, s.GetLength() );
bbf1f0e5
KB
162}
163
164// OnAbout:
165// This member function is called when a WM_COMMAND message with an
166// IDM_ABOUT code is received by the CMainWindow class object. The
167// message map below is responsible for this routing.
168//
169// We create a ClDialog object using the "AboutBox" resource (see
170// hello.rc), and invoke it.
171//
172void CMainWindow::OnAbout()
173{
2f6c54eb
VZ
174 CDialog about( "AboutBox", this );
175 about.DoModal();
bbf1f0e5
KB
176}
177
178void CMainWindow::OnTest()
179{
22431134
JS
180 wxMessageBox("This is a wxWindows message box.\nWe're about to create a new wxWindows frame.", "wxWindows", wxOK);
181 wxGetApp().CreateFrame();
bbf1f0e5
KB
182}
183
184// CMainWindow message map:
185// Associate messages with member functions.
186//
187// It is implied that the ON_WM_PAINT macro expects a member function
188// "void OnPaint()".
189//
190// It is implied that members connected with the ON_COMMAND macro
191// receive no arguments and are void of return type, e.g., "void OnAbout()".
192//
193BEGIN_MESSAGE_MAP( CMainWindow, CFrameWnd )
22431134
JS
194//{{AFX_MSG_MAP( CMainWindow )
195ON_WM_PAINT()
196ON_COMMAND( IDM_ABOUT, OnAbout )
197ON_COMMAND( IDM_TEST, OnTest )
198//}}AFX_MSG_MAP
bbf1f0e5
KB
199END_MESSAGE_MAP()
200
201/////////////////////////////////////////////////////////////////////////////
202// CTheApp
203
204// InitInstance:
205// When any CTheApp object is created, this member function is automatically
206// called. Any data may be set up at this point.
207//
208// Also, the main window of the application should be created and shown here.
209// Return TRUE if the initialization is successful.
210//
211BOOL CTheApp::InitInstance()
212{
2f6c54eb 213 SetDialogBkColor(); // hook gray dialogs (was default in MFC V1)
22431134 214
bbf1f0e5 215 wxEntry((WXHINSTANCE) m_hInstance, (WXHINSTANCE) m_hPrevInstance, m_lpCmdLine, m_nCmdShow, FALSE);
22431134
JS
216
217#if START_WITH_MFC_WINDOW
218 // Demonstrate creation of an initial MFC main window.
2f6c54eb
VZ
219 m_pMainWnd = new CMainWindow();
220 m_pMainWnd->ShowWindow( m_nCmdShow );
221 m_pMainWnd->UpdateWindow();
22431134
JS
222#else
223 // Demonstrate creation of an initial wxWindows main window.
224 // Wrap wxWindows window in a dummy MFC window and
225 // make the main window.
bbf1f0e5
KB
226 if (wxTheApp && wxTheApp->GetTopWindow())
227 {
228 m_pMainWnd = new CDummyWindow((HWND) wxTheApp->GetTopWindow()->GetHWND());
229 }
22431134
JS
230#endif
231
2f6c54eb 232 return TRUE;
bbf1f0e5
KB
233}
234
235int CTheApp::ExitInstance()
236{
22431134
JS
237 // OnExit isn't called by CleanUp so must be called explicitly.
238 wxTheApp->OnExit();
239 wxApp::CleanUp();
240
241 return CWinApp::ExitInstance();
bbf1f0e5
KB
242}
243
244// Override this to provide wxWindows message loop
245// compatibility
246
247BOOL CTheApp::PreTranslateMessage(MSG *msg)
248{
22431134
JS
249 if (wxTheApp && wxTheApp->ProcessMessage((WXMSG*) msg))
250 return TRUE;
251 else
252 return CWinApp::PreTranslateMessage(msg);
bbf1f0e5
KB
253}
254
255BOOL CTheApp::OnIdle(LONG lCount)
256{
257 if (wxTheApp)
258 return wxTheApp->ProcessIdle();
259 else
260 return FALSE;
261}
262
263/*********************************************************************
22431134
JS
264* wxWindows elements
265********************************************************************/
266
bbf1f0e5
KB
267bool MyApp::OnInit(void)
268{
22431134
JS
269#if !START_WITH_MFC_WINDOW
270
271 // Exit app when the top level frame is deleted
272 SetExitOnFrameDelete(TRUE);
273
274 (void) CreateFrame();
275#endif
276
277 return TRUE;
bbf1f0e5
KB
278}
279
280wxFrame *MyApp::CreateFrame(void)
281{
22431134
JS
282 MyChild *subframe = new MyChild(NULL, "Canvas Frame", wxPoint(10, 10), wxSize(300, 300),
283 wxDEFAULT_FRAME_STYLE);
284
285 subframe->SetTitle("wxWindows canvas frame");
286
287 // Give it a status line
288 subframe->CreateStatusBar();
289
290 // Make a menubar
291 wxMenu *file_menu = new wxMenu;
292
293 file_menu->Append(HELLO_NEW, "&New MFC Window");
294 file_menu->Append(HELLO_QUIT, "&Close");
295
296 wxMenuBar *menu_bar = new wxMenuBar;
297
298 menu_bar->Append(file_menu, "&File");
299
300 // Associate the menu bar with the frame
301 subframe->SetMenuBar(menu_bar);
302
303 int width, height;
304 subframe->GetClientSize(&width, &height);
305
306 MyCanvas *canvas = new MyCanvas(subframe, wxPoint(0, 0), wxSize(width, height));
307 canvas->SetCursor(wxCursor(wxCURSOR_PENCIL));
308 subframe->canvas = canvas;
309 subframe->Show(TRUE);
310
311 // Return the main frame window
312 return subframe;
bbf1f0e5
KB
313}
314
315BEGIN_EVENT_TABLE(MyCanvas, wxScrolledWindow)
316 EVT_PAINT(MyCanvas::OnPaint)
317 EVT_MOUSE_EVENTS(MyCanvas::OnMouseEvent)
318END_EVENT_TABLE()
319
320// Define a constructor for my canvas
321MyCanvas::MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size):
22431134 322wxScrolledWindow(parent, -1, pos, size)
bbf1f0e5
KB
323{
324}
325
326// Define the repainting behaviour
327void MyCanvas::OnPaint(wxPaintEvent& event)
328{
329 wxPaintDC dc(this);
22431134 330
f5e5bd66 331 dc.SetFont(* wxSWISS_FONT);
17b74d79 332 dc.SetPen(* wxGREEN_PEN);
bbf1f0e5
KB
333 dc.DrawLine(0, 0, 200, 200);
334 dc.DrawLine(200, 0, 0, 200);
22431134 335
17b74d79
JS
336 dc.SetBrush(* wxCYAN_BRUSH);
337 dc.SetPen(* wxRED_PEN);
bbf1f0e5
KB
338 dc.DrawRectangle(100, 100, 100, 50);
339 dc.DrawRoundedRectangle(150, 150, 100, 50, 20);
22431134 340
bbf1f0e5
KB
341 dc.DrawEllipse(250, 250, 100, 50);
342 dc.DrawSpline(50, 200, 50, 100, 200, 10);
343 dc.DrawLine(50, 230, 200, 230);
344 dc.DrawText("This is a test string", 50, 230);
345}
346
347// This implements a tiny doodling program! Drag the mouse using
348// the left button.
349void MyCanvas::OnMouseEvent(wxMouseEvent& event)
350{
351 wxClientDC dc(this);
17b74d79 352 dc.SetPen(* wxBLACK_PEN);
3f8e5072 353 wxPoint pos = event.GetPosition();
bbf1f0e5
KB
354 if (xpos > -1 && ypos > -1 && event.Dragging())
355 {
3f8e5072 356 dc.DrawLine(xpos, ypos, pos.x, pos.y);
bbf1f0e5 357 }
3f8e5072
JS
358 xpos = pos.x;
359 ypos = pos.y;
bbf1f0e5
KB
360}
361
362BEGIN_EVENT_TABLE(MyChild, wxFrame)
363 EVT_MENU(HELLO_QUIT, MyChild::OnQuit)
364 EVT_MENU(HELLO_NEW, MyChild::OnNew)
365 EVT_ACTIVATE(MyChild::OnActivate)
366END_EVENT_TABLE()
367
368MyChild::MyChild(wxFrame *frame, const wxString& title, const wxPoint& pos, const wxSize& size, const long style):
22431134 369wxFrame(frame, -1, title, pos, size, style)
bbf1f0e5 370{
22431134 371 canvas = NULL;
bbf1f0e5
KB
372}
373
374MyChild::~MyChild(void)
375{
376}
377
378void MyChild::OnQuit(wxCommandEvent& event)
379{
380 Close(TRUE);
381}
382
383void MyChild::OnNew(wxCommandEvent& event)
384{
385 CMainWindow *mainWin = new CMainWindow();
386 mainWin->ShowWindow( TRUE );
387 mainWin->UpdateWindow();
388}
22431134 389
bbf1f0e5
KB
390void MyChild::OnActivate(wxActivateEvent& event)
391{
22431134
JS
392 if (event.GetActive() && canvas)
393 canvas->SetFocus();
bbf1f0e5
KB
394}
395
bbf1f0e5
KB
396// Dummy MFC window for specifying a valid main window to MFC, using
397// a wxWindows HWND.
398CDummyWindow::CDummyWindow(HWND hWnd):CWnd()
399{
22431134 400 Attach(hWnd);
bbf1f0e5
KB
401}
402
403// Don't let the CWnd destructor delete the HWND
404CDummyWindow::~CDummyWindow(void)
405{
22431134 406 Detach();
bbf1f0e5
KB
407}
408