source: dev/trunk/ab5.0/abdev/abdev/src/WindowComponents/MdiWindow.cpp@ 489

Last change on this file since 489 was 489, checked in by dai_9181, 16 years ago

abdevをATL化するための下準備

File size: 453 bytes
Line 
1#include "stdafx.h"
2
3#include "../../common.h"
4
5using namespace ActiveBasic::IDE::WindowComponents;
6
7LRESULT MdiWindow::OnCreate(LPCREATESTRUCT lpcs){
8 // フレームウィンドウのビューウィンドウを作成
9 CreateMDIClient();
10
11 // メッセージループにメッセージフィルタとアイドルハンドラを追加
12 CMessageLoop* pLoop = Program::_Module.GetMessageLoop();
13 pLoop->AddMessageFilter(this);
14 pLoop->AddIdleHandler(this);
15
16 return 0;
17}
Note: See TracBrowser for help on using the repository browser.