• Home
  • Raw
  • Download

Lines Matching refs:hwnd

431     static HRESULT (WINAPI *My_SHGetSpecialFolderPath)(HWND hwnd,  in GetSpecialFolderPath()
1002 static void create_bitmap(HWND hwnd) in create_bitmap() argument
1014 hdc = GetDC(hwnd); in create_bitmap()
1025 ReleaseDC(hwnd, hdc); in create_bitmap()
1106 WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) in WindowProc() argument
1114 hdc = BeginPaint(hwnd, &ps); in WindowProc()
1124 EndPaint(hwnd, &ps); in WindowProc()
1127 return DefWindowProc(hwnd, msg, wParam, lParam); in WindowProc()
1133 HWND hwnd; in CreateBackground() local
1153 hwnd = CreateWindow("SetupWindowClass", in CreateBackground()
1163 ShowWindow(hwnd, SW_SHOWMAXIMIZED); in CreateBackground()
1164 UpdateWindow(hwnd); in CreateBackground()
1165 return hwnd; in CreateBackground()
1171 static void CenterWindow(HWND hwnd) in CenterWindow() argument
1176 GetWindowRect(hwnd, &rc); in CenterWindow()
1179 MoveWindow(hwnd, in CenterWindow()
1188 IntroDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) in IntroDlgProc() argument
1195 create_bitmap(hwnd); in IntroDlgProc()
1197 SendDlgItemMessage(hwnd, IDC_BITMAP, STM_SETIMAGE, in IntroDlgProc()
1199 CenterWindow(GetParent(hwnd)); in IntroDlgProc()
1205 SetDlgItemText(hwnd, IDC_TITLE, Buffer); in IntroDlgProc()
1206 SetDlgItemText(hwnd, IDC_INTRO_TEXT, info); in IntroDlgProc()
1207 SetDlgItemText(hwnd, IDC_BUILD_INFO, build_info); in IntroDlgProc()
1215 PropSheet_SetWizButtons(GetParent(hwnd), PSWIZB_NEXT); in IntroDlgProc()
1373 static BOOL GetOtherPythonVersion(HWND hwnd, LPSTR version) in GetOtherPythonVersion() argument
1385 of.hwndOwner = GetParent(hwnd); in GetOtherPythonVersion()
1409 itemindex = SendMessage(hwnd, LB_INSERTSTRING, -1, in GetOtherPythonVersion()
1411 SendMessage(hwnd, LB_SETCURSEL, itemindex, 0); in GetOtherPythonVersion()
1412 SendMessage(hwnd, LB_SETITEMDATA, itemindex, in GetOtherPythonVersion()
1431 static BOOL GetPythonVersions(HWND hwnd, HKEY hkRoot, LPSTR version) in GetPythonVersions() argument
1469 itemindex = SendMessage(hwnd, LB_ADDSTRING, 0, in GetPythonVersions()
1472 SendMessage(hwnd, LB_SETITEMDATA, itemindex, in GetPythonVersions()
1508 void CheckRootKey(HWND hwnd) in CheckRootKey() argument
1519 MessageBox(hwnd, "Don't know Python's installation type", in CheckRootKey()
1537 SelectPythonDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) in SelectPythonDlgProc() argument
1544 SendDlgItemMessage(hwnd, IDC_BITMAP, STM_SETIMAGE, in SelectPythonDlgProc()
1546 GetPythonVersions(GetDlgItem(hwnd, IDC_VERSIONS_LIST), in SelectPythonDlgProc()
1548 GetPythonVersions(GetDlgItem(hwnd, IDC_VERSIONS_LIST), in SelectPythonDlgProc()
1553 count = SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST, in SelectPythonDlgProc()
1556 SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST, LB_SETCURSEL, in SelectPythonDlgProc()
1568 SetDlgItemText(hwnd, IDC_TITLE, buffer); in SelectPythonDlgProc()
1581 MessageBox(hwnd, msg, "Cannot install", in SelectPythonDlgProc()
1602 PropSheet_SetWizButtons(GetParent(hwnd), in SelectPythonDlgProc()
1604 id = SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST, in SelectPythonDlgProc()
1607 PropSheet_SetWizButtons(GetParent(hwnd), in SelectPythonDlgProc()
1609 SetDlgItemText(hwnd, IDC_PATH, ""); in SelectPythonDlgProc()
1610 SetDlgItemText(hwnd, IDC_INSTALL_PATH, ""); in SelectPythonDlgProc()
1617 PropSheet_SetWizButtons(GetParent(hwnd), in SelectPythonDlgProc()
1621 SendDlgItemMessage(hwnd, in SelectPythonDlgProc()
1628 SetDlgItemText(hwnd, IDC_PATH, python_dir); in SelectPythonDlgProc()
1630 result = SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST, in SelectPythonDlgProc()
1635 SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST, in SelectPythonDlgProc()
1660 SetDlgItemText(hwnd, IDC_INSTALL_PATH, install_path); in SelectPythonDlgProc()
1674 id = SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST, in SelectPythonDlgProc()
1677 PropSheet_SetWizButtons(GetParent(hwnd), in SelectPythonDlgProc()
1680 PropSheet_SetWizButtons(GetParent(hwnd), in SelectPythonDlgProc()
1839 InstallFilesDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) in InstallFilesDlgProc() argument
1848 SendDlgItemMessage(hwnd, IDC_BITMAP, STM_SETIMAGE, in InstallFilesDlgProc()
1856 SetDlgItemText(hwnd, IDC_TITLE, Buffer); in InstallFilesDlgProc()
1857 SetDlgItemText(hwnd, IDC_INFO, "Ready to install"); in InstallFilesDlgProc()
1861 SendDlgItemMessage(hwnd, IDC_PROGRESS, PBM_SETRANGE, 0, lParam); in InstallFilesDlgProc()
1866 SendDlgItemMessage(hwnd, IDC_PROGRESS, PBM_SETPOS, wParam, in InstallFilesDlgProc()
1868 SetDlgItemText(hwnd, IDC_INFO, (LPSTR)lParam); in InstallFilesDlgProc()
1877 PropSheet_SetWizButtons(GetParent(hwnd), in InstallFilesDlgProc()
1886 hDialog = hwnd; in InstallFilesDlgProc()
1895 PropSheet_SetWizButtons(GetParent(hwnd), 0); in InstallFilesDlgProc()
1896 SendMessage(GetParent(hwnd), PSM_CANCELTOCLOSE, 0, 0); in InstallFilesDlgProc()
1904 CheckRootKey(hwnd); in InstallFilesDlgProc()
1931 SetDlgItemText (hwnd, IDC_TITLE, in InstallFilesDlgProc()
1939 SetDlgItemText(hwnd, IDC_TITLE, "Installing files..."); in InstallFilesDlgProc()
1948 SetDlgItemText(hwnd, IDC_TITLE, in InstallFilesDlgProc()
1967 SetDlgItemText(hwnd, IDC_TITLE, in InstallFilesDlgProc()
1994 FinishedDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) in FinishedDlgProc() argument
2001 SendDlgItemMessage(hwnd, IDC_BITMAP, STM_SETIMAGE, in FinishedDlgProc()
2004 SetDlgItemText(hwnd, IDC_INFO, get_failure_reason()); in FinishedDlgProc()
2008 PostMessage(hwnd, WM_USER, 0, 0L); in FinishedDlgProc()
2021 SetDlgItemText(hwnd, IDC_TITLE, in FinishedDlgProc()
2039 SetDlgItemText(hwnd, IDC_INFO, buffer); in FinishedDlgProc()
2040 SetDlgItemText(hwnd, IDC_TITLE, in FinishedDlgProc()
2056 PropSheet_SetWizButtons(GetParent(hwnd), PSWIZB_FINISH); in FinishedDlgProc()
2075 void RunWizard(HWND hwnd) in RunWizard() argument
2115 psh.hwndParent = hwnd; in RunWizard()