40 lines
564 B
C++
40 lines
564 B
C++
![]() |
#include "stdafx.h"
|
||
|
#include "basic_form.h"
|
||
|
|
||
|
const std::wstring BasicForm::kClassName = L"Basic";
|
||
|
|
||
|
BasicForm::BasicForm()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
BasicForm::~BasicForm()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
std::wstring BasicForm::GetSkinFolder()
|
||
|
{
|
||
|
return L"basic";
|
||
|
}
|
||
|
|
||
|
std::wstring BasicForm::GetSkinFile()
|
||
|
{
|
||
|
return L"basic.xml";
|
||
|
}
|
||
|
|
||
|
std::wstring BasicForm::GetWindowClassName() const
|
||
|
{
|
||
|
return kClassName;
|
||
|
}
|
||
|
|
||
|
void BasicForm::InitWindow()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
LRESULT BasicForm::OnClose(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
|
||
|
{
|
||
|
PostQuitMessage(0L);
|
||
|
return __super::OnClose(uMsg, wParam, lParam, bHandled);
|
||
|
}
|