コード例 #1
0
ファイル: Capture.cpp プロジェクト: ChenglongWang/TVTest
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);
}
コード例 #2
0
ファイル: ColorPalette.cpp プロジェクト: DBCTRADO/TVTest
bool CColorPalette::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID)
{
	return CreateBasicWindow(hwndParent,Style,ExStyle,ID,
							 PALETTE_WINDOW_CLASS,NULL,m_hinst);
}
コード例 #3
0
ファイル: EventInfoPopup.cpp プロジェクト: ACUVE/TVTest
bool CEventInfoPopup::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID)
{
	return CreateBasicWindow(hwndParent,Style,ExStyle,ID,m_pszWindowClass,NULL,m_hinst);
}
コード例 #4
0
ファイル: SideBar.cpp プロジェクト: DBCTRADO/TVTest
bool CSideBar::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID)
{
	return CreateBasicWindow(hwndParent,Style,ExStyle,ID,
							 CLASS_NAME,NULL,m_hinst);
}
コード例 #5
0
ファイル: InformationPanel.cpp プロジェクト: DBCTRADO/TVTest
bool CInformationPanel::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID)
{
	return CreateBasicWindow(hwndParent,Style,ExStyle,ID,
							 m_pszClassName,TEXT("情報"),m_hinst);
}
コード例 #6
0
ファイル: Capture.cpp プロジェクト: ChenglongWang/TVTest
bool CCapturePreview::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID)
{
    return CreateBasicWindow(hwndParent,Style,ExStyle,ID,
                             CAPTURE_PREVIEW_WINDOW_CLASS,NULL,m_hinst);
}