?? splashscreen.cpp
字號:
/****************************************************
Author: S. Senthil kumar
File: SplashScreen.cpp
Purpose: For showing splash screen
******************************************************/
#include "Global.h"
#include "SplashDialog.h"
extern int CanPlayMusic;
extern CString GetMusicDirectory();
extern int autoplay;
extern int sndenable;
SplashScreen::SplashScreen()
{
}
int SplashScreen::OnInitDialog()
{
return 1;
}
void SplashScreen::OnOK()
{
DestroyWindow();
}
void SplashScreen::OnCancel()
{
DestroyWindow();
}
void SplashScreen::PostNcDestroy()
{
delete this;
}
void SplashScreen::OnLButtonDown(UINT flags,CPoint point)
{
DestroyWindow();
}
BEGIN_MESSAGE_MAP(SplashScreen,CDialog)
ON_WM_LBUTTONDOWN()
END_MESSAGE_MAP()
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -