Ejemplo n.º 1
0
bool CCaptureWindow::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID)
{
    if (m_fCreateFirst) {
        if (m_pEventHandler!=NULL)
            m_pEventHandler->OnRestoreSettings();
        m_fCreateFirst=false;
    }

    return CreateBasicWindow(hwndParent,Style,ExStyle,ID,
                             CAPTURE_WINDOW_CLASS,CAPTURE_TITLE_TEXT,m_hinst);
}
Ejemplo n.º 2
0
bool CColorPalette::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID)
{
	return CreateBasicWindow(hwndParent,Style,ExStyle,ID,
							 PALETTE_WINDOW_CLASS,NULL,m_hinst);
}
Ejemplo n.º 3
0
bool CEventInfoPopup::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID)
{
	return CreateBasicWindow(hwndParent,Style,ExStyle,ID,m_pszWindowClass,NULL,m_hinst);
}
Ejemplo n.º 4
0
bool CSideBar::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID)
{
	return CreateBasicWindow(hwndParent,Style,ExStyle,ID,
							 CLASS_NAME,NULL,m_hinst);
}
Ejemplo n.º 5
0
bool CInformationPanel::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID)
{
	return CreateBasicWindow(hwndParent,Style,ExStyle,ID,
							 m_pszClassName,TEXT("情報"),m_hinst);
}
Ejemplo n.º 6
0
bool CCapturePreview::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID)
{
    return CreateBasicWindow(hwndParent,Style,ExStyle,ID,
                             CAPTURE_PREVIEW_WINDOW_CLASS,NULL,m_hinst);
}