Home
last modified time | relevance | path

Searched refs:hwnd (Results 1 – 11 of 11) sorted by relevance

/GUIX-v6.2.1/guix_studio/ports/
Dgx_win32_studio_display_driver.c102 LRESULT CALLBACK gx_win32_studio_event_process(HWND hwnd, UINT message, WPARAM wParam, LPARAM lPara… in gx_win32_studio_event_process() argument
106 driver_data = gx_win32_get_data_instance_by_win_handle(hwnd); in gx_win32_studio_event_process()
113 GetWindowRect(hwnd, &rect); in gx_win32_studio_event_process()
122 return gx_win32_event_process(hwnd, message, wParam, lParam); in gx_win32_studio_event_process()
Dgx_win32_studio_display_driver.h42 LRESULT CALLBACK gx_win32_studio_event_process(HWND hwnd, UINT message, WPARAM wParam,…
/GUIX-v6.2.1/test/guix_test/regression_test/utility/
Dgx_show_canvas.c23 HWND hwnd; variable
310 LRESULT CALLBACK WndProc(HWND hwnd, unsigned int message, WPARAM wParam, LPARAM lParam) in WndProc() argument
320 BeginPaint(hwnd, &ps); in WndProc()
322 EndPaint(hwnd, &ps); in WndProc()
358 return DefWindowProc(hwnd, message, wParam, lParam); in WndProc()
526 hwnd = win32_window_create(); in show_frame()
559 win_device = GetDC(hwnd); in show_frame()
569 ReleaseDC(hwnd, win_device); in show_frame()
/GUIX-v6.2.1/ports/win32/src/
Dgx_win32_display_driver.c1491 LRESULT CALLBACK gx_win32_event_process(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) in gx_win32_event_process() argument
1503 driver_data = gx_win32_get_data_instance_by_win_handle(hwnd); in gx_win32_event_process()
1525 BeginPaint(hwnd, &ps); in gx_win32_event_process()
1528 EndPaint(hwnd, &ps); in gx_win32_event_process()
1534 SetCapture(hwnd); in gx_win32_event_process()
1655 return DefWindowProc(hwnd, message, wParam, lParam); in gx_win32_event_process()
1709 if ((msg.hwnd == NULL && msg.message == WM_USER) || in gx_win32_input_driver()
/GUIX-v6.2.1/guix_studio/
Dstudiox_screen_driver.h61 void initialize_guix(HWND hwnd);
Dstudiox_util.cpp58 static int CALLBACK BrowseCallbackProc(HWND hwnd,UINT uMsg, LPARAM lParam, LPARAM lpData) in BrowseCallbackProc() argument
68 SendMessage(hwnd, BFFM_SETSELECTION, TRUE, lpData); in BrowseCallbackProc()
81 BOOL BrowseForFolder(HWND hwnd, LPCTSTR caption, LPCTSTR szCurrent, LPTSTR szPath) in BrowseForFolder() argument
92 bi.hwndOwner = hwnd; in BrowseForFolder()
Dexpress_dialog.cpp559 BOOL CALLBACK EnumChildProc(HWND hwnd, LPARAM lParam) in EnumChildProc() argument
561 CWnd *child = CWnd::FromHandle(hwnd); in EnumChildProc()
Dstudiox_util.h16 BOOL BrowseForFolder(HWND hwnd, LPCTSTR caption, LPCTSTR szCurrent, LPTSTR szPath);
Dtarget_screen.cpp143 _In_ HWND hwnd, in TimerProc() argument
Dproperties_win.cpp590 GetClassName(pMsg->hwnd, class_name, MAX_PATH - 1); in PreTranslateMessage()
/GUIX-v6.2.1/test/guix_studio_test/test_view/
Dtest_utils.py305 def enum_callback(hwnd, lParam): argument
306 if user32.IsWindowVisible(hwnd):
307 length = user32.GetWindowTextLengthW(hwnd) + 1
311 user32.GetWindowTextW(hwnd, buffer, length)
312 top_windows.append((hwnd, buffer.value))
318 def get_window_tree(hwnd): argument
320 child = user32.GetWindow(hwnd, GW_CHILD)
379 for hwnd, name in top_windows:
382 studio_windows['main_frame'] = ctypes.c_void_p.from_buffer(hwnd).value
383 get_window_tree(hwnd)