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); }
bool CColorPalette::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID) { return CreateBasicWindow(hwndParent,Style,ExStyle,ID, PALETTE_WINDOW_CLASS,NULL,m_hinst); }
bool CEventInfoPopup::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID) { return CreateBasicWindow(hwndParent,Style,ExStyle,ID,m_pszWindowClass,NULL,m_hinst); }
bool CSideBar::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID) { return CreateBasicWindow(hwndParent,Style,ExStyle,ID, CLASS_NAME,NULL,m_hinst); }
bool CInformationPanel::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID) { return CreateBasicWindow(hwndParent,Style,ExStyle,ID, m_pszClassName,TEXT("情報"),m_hinst); }
bool CCapturePreview::Create(HWND hwndParent,DWORD Style,DWORD ExStyle,int ID) { return CreateBasicWindow(hwndParent,Style,ExStyle,ID, CAPTURE_PREVIEW_WINDOW_CLASS,NULL,m_hinst); }