Searched refs:hWnd (Results 1 - 25 of 55) sorted by relevance

123

/external/chromium_org/third_party/npapi/npspy/windows/
H A Dgui_pause.cpp43 static void onCommand(HWND hWnd, int id, HWND hWndCtl, UINT codeNotify) argument
48 EndDialog(hWnd, IDOK);
51 EndDialog(hWnd, IDCANCEL);
58 static BOOL onInitDialog(HWND hWnd, HWND hWndFocus, LPARAM lParam) argument
60 SetWindowPos(hWnd, NULL, 0,0,0,0, SWP_NOZORDER);
64 BOOL CALLBACK PauseDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
69 return (BOOL)HANDLE_WM_INITDIALOG(hWnd, wParam, lParam, onInitDialog);
71 HANDLE_WM_COMMAND(hWnd, wParam, lParam, onCommand);
74 EndDialog(hWnd, IDCANCEL);
H A Dgui_log.cpp47 static void onChooseDir(HWND hWnd) argument
49 Logger * logger = (Logger *)GetWindowLong(hWnd, DWL_USER);
56 GetDlgItemText(hWnd, IDC_EDIT_FILE, string, strlen(string));
65 if(PickupDirectory(hWnd, string))
78 SetDlgItemText(hWnd, IDC_EDIT_FILE, string);
82 static void onCommand(HWND hWnd, int id, HWND hWndCtl, UINT codeNotify) argument
87 EnableWindow(GetDlgItem(hWnd, IDC_EDIT_FILE), (BST_CHECKED == IsDlgButtonChecked(hWnd, IDC_CHECK_TOFILE)));
88 EnableWindow(GetDlgItem(hWnd, IDC_BUTTON_CHOOSEDIR), (BST_CHECKED == IsDlgButtonChecked(hWnd, IDC_CHECK_TOFIL
98 onApply(HWND hWnd) argument
114 onNotify(HWND hWnd, int idCtrl, LPNMHDR lpNMHdr) argument
126 onInitDialog(HWND hWnd, HWND hWndFocus, LPARAM lParam) argument
150 LogPageProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
[all...]
H A Dgui_fiter.cpp46 static void onCommand(HWND hWnd, int id, HWND hWndCtl, UINT codeNotify) argument
53 CheckDlgButton(hWnd, i, BST_CHECKED);
59 CheckDlgButton(hWnd, i, BST_UNCHECKED);
67 static void onApply(HWND hWnd) argument
69 Logger * logger = (Logger *)GetWindowLong(hWnd, DWL_USER);
79 mutedcalls[i - IDC_CHECK_NPN_VERSION + 1] = (BST_UNCHECKED == IsDlgButtonChecked(hWnd, i));
85 static void onNotify(HWND hWnd, int idCtrl, LPNMHDR lpNMHdr) argument
92 onApply(hWnd);
97 static BOOL onInitDialog(HWND hWnd, HWND hWndFocus, LPARAM lParam) argument
104 SetWindowLong(hWnd, DWL_USE
124 FilterPageProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
[all...]
H A Dgui_advanced.cpp46 static void onApply(HWND hWnd) argument
48 Logger * logger = (Logger *)GetWindowLong(hWnd, DWL_USER);
52 logger->bSPALID = (BST_CHECKED == IsDlgButtonChecked(hWnd, IDC_CHECK_SPALID));
56 static void onNotify(HWND hWnd, int idCtrl, LPNMHDR lpNMHdr) argument
63 onApply(hWnd);
68 static BOOL onInitDialog(HWND hWnd, HWND hWndFocus, LPARAM lParam) argument
75 SetWindowLong(hWnd, DWL_USER, (long)logger);
80 CheckDlgButton(hWnd, IDC_CHECK_SPALID, logger->bSPALID ? BST_CHECKED : BST_UNCHECKED);
86 BOOL CALLBACK AdvancedPageProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
91 return (BOOL)HANDLE_WM_INITDIALOG(hWnd, wPara
[all...]
H A Dgui_general.cpp46 static void onApply(HWND hWnd) argument
48 Logger * logger = (Logger *)GetWindowLong(hWnd, DWL_USER);
52 logger->bOnTop = (BST_CHECKED == IsDlgButtonChecked(hWnd, IDC_CHECK_ONTOP));
56 static void onNotify(HWND hWnd, int idCtrl, LPNMHDR lpNMHdr) argument
63 onApply(hWnd);
68 static BOOL onInitDialog(HWND hWnd, HWND hWndFocus, LPARAM lParam) argument
75 SetWindowLong(hWnd, DWL_USER, (long)logger);
80 CheckDlgButton(hWnd, IDC_CHECK_ONTOP, logger->bOnTop ? BST_CHECKED : BST_UNCHECKED);
86 BOOL CALLBACK GeneralPageProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
91 return (BOOL)HANDLE_WM_INITDIALOG(hWnd, wPara
[all...]
H A Dgui_main.cpp54 static void onOptions(HWND hWnd, Logger * logger) argument
104 psh.hwndParent = hWnd;
123 if(hWnd != NULL)
126 if(GetWindowRect(hWnd, &rc))
140 SetWindowPos(hWnd, logger->bOnTop ? HWND_TOPMOST : HWND_NOTOPMOST, 0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
146 static void onCommand(HWND hWnd, int id, HWND hWndCtl, UINT codeNotify) argument
148 LoggerWin * logger = (LoggerWin *)GetWindowLong(hWnd, DWL_USER);
153 logger->bMutedAll = (BST_CHECKED == IsDlgButtonChecked(hWnd, IDC_CHECK_MUTE));
156 onOptions(hWnd, logger);
167 static BOOL onInitDialog(HWND hWnd, HWN argument
186 onDestroy(HWND hWnd) argument
193 onSize(HWND hWnd, UINT state, int cx, int cy) argument
259 MainDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
[all...]
H A Dloggerw.cpp49 BOOL CALLBACK MainDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
50 BOOL CALLBACK PauseDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
53 hWnd(NULL),
109 hWnd = CreateDialogParam(hInst, MAKEINTRESOURCE(IDD_DIALOG_MAIN), GetDesktopWindow(), (DLGPROC)MainDlgProc, (LPARAM)this);
110 if(hWnd == NULL)
117 SetWindowPos(hWnd, bOnTop ? HWND_TOPMOST : HWND_NOTOPMOST, 0,0,0,0, SWP_NOMOVE | SWP_NOSIZE);
124 if(hWnd != NULL)
127 HWND hWndOutput = GetDlgItem(hWnd, IDC_MAIN_OUTPUT);
134 DialogBox(hInst, MAKEINTRESOURCE(IDD_DIALOG_PAUSE), hWnd, (DLGPROC)PauseDlgProc);
139 if(GetWindowRect(hWnd,
[all...]
H A Dloggerw.h48 HWND hWnd; member in class:LoggerWin
H A Ddirpick.cpp61 static void fillComboBox(HWND hWnd) argument
63 HWND hWndCB = GetDlgItem(hWnd, ID_COMBO_DIR);
64 HWND hWndTempLB = GetDlgItem(hWnd, ID_LISTTEMP_DIR);
171 static void fillListBox(HWND hWnd, LPSTR lpszDir) argument
173 HWND hWndLB = GetDlgItem(hWnd, ID_LIST_DIR);
174 HWND hWndTempLB = GetDlgItem(hWnd, ID_LISTTEMP_DIR);
175 HWND hWndEdit = GetDlgItem(hWnd, ID_EDIT_DIR);
389 static void onInitDialog(HWND hWnd, LPSTR lpsz) argument
391 hWndDirPicker = hWnd;
414 MessageBox(GetParent(hWnd), szTex
423 shutDialog(HWND hWnd) argument
428 onCommand(HWND hWnd, int id, HWND hWndCtl, UINT codeNotify) argument
520 DirPickDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-gdi/
H A Dgraw_gdi.c38 window_proc(HWND hWnd, argument
49 return DefWindowProc(hWnd, uMsg, wParam, lParam);
72 HWND hWnd = NULL; local
100 hWnd = CreateWindowEx(0,
112 if (hWnd == NULL)
115 hDC = GetDC(hWnd);
124 if (hWnd)
125 DestroyWindow(hWnd);
/external/mesa3d/src/gallium/targets/graw-gdi/
H A Dgraw_gdi.c38 window_proc(HWND hWnd, argument
49 return DefWindowProc(hWnd, uMsg, wParam, lParam);
72 HWND hWnd = NULL; local
100 hWnd = CreateWindowEx(0,
112 if (hWnd == NULL)
115 hDC = GetDC(hWnd);
124 if (hWnd)
125 DestroyWindow(hWnd);
/external/chromium_org/third_party/skia/src/views/win/
H A Dskia_win.cpp130 HWND hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW, local
133 if (!hWnd)
151 gSkWind = create_sk_window(hWnd, argc, argv);
155 ShowWindow(hWnd, nCmdShow);
156 UpdateWindow(hWnd);
171 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
175 return DefWindowProc(hWnd, message, wParam, lParam);
180 if (gSkWind->wndProc(hWnd, message, wParam, lParam)) {
183 return DefWindowProc(hWnd, message, wParam, lParam);
/external/skia/src/views/win/
H A Dskia_win.cpp130 HWND hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW, local
133 if (!hWnd)
151 gSkWind = create_sk_window(hWnd, argc, argv);
155 ShowWindow(hWnd, nCmdShow);
156 UpdateWindow(hWnd);
171 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
175 return DefWindowProc(hWnd, message, wParam, lParam);
180 if (gSkWind->wndProc(hWnd, message, wParam, lParam)) {
183 return DefWindowProc(hWnd, message, wParam, lParam);
/external/pdfium/fpdfsdk/include/
H A Dfx_systemhandler.h38 virtual void InvalidateRect(FX_HWND hWnd, FX_RECT rect) = 0;
43 virtual CFX_WideString GetClipboardText(FX_HWND hWnd) = 0;
44 virtual FX_BOOL SetClipboardText(FX_HWND hWnd, CFX_WideString string) = 0;
46 virtual void ClientToScreen(FX_HWND hWnd, FX_INT32& x, FX_INT32& y) = 0;
47 virtual void ScreenToClient(FX_HWND hWnd, FX_INT32& x, FX_INT32& y) = 0;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
H A Dstw_ext_pbuffer.c47 WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
63 return DefWindowProc(hWnd, uMsg, wParam, lParam);
82 HWND hWnd; local
177 hWnd = CreateWindowEx(dwExStyle,
189 if (!hWnd) {
198 GetClientRect(hWnd, &rect);
205 hDC = GetDC(hWnd);
249 hDC = GetDC(fb->hWnd);
270 return ReleaseDC(fb->hWnd, hDC);
287 return DestroyWindow(fb->hWnd);
[all...]
H A Dstw_framebuffer.c56 if (fb->hWnd == hwnd) {
95 ReleaseDC(fb->hWnd, fb->hDC);
126 assert(fb->hWnd);
135 if (!GetClientRect(fb->hWnd, &client_rect)) {
162 if (ClientToScreen(fb->hWnd, &client_pos) &&
163 GetWindowRect(fb->hWnd, &window_rect)) {
173 debug_printf("%s: hwnd = %p\n", __FUNCTION__, fb->hWnd);
244 HWND hWnd; local
249 hWnd = WindowFromDC( hdc );
250 if(!hWnd)
[all...]
H A Dstw_framebuffer.h62 HWND hWnd; member in struct:stw_framebuffer
/external/mesa3d/src/gallium/state_trackers/wgl/
H A Dstw_ext_pbuffer.c47 WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
63 return DefWindowProc(hWnd, uMsg, wParam, lParam);
82 HWND hWnd; local
177 hWnd = CreateWindowEx(dwExStyle,
189 if (!hWnd) {
198 GetClientRect(hWnd, &rect);
205 hDC = GetDC(hWnd);
249 hDC = GetDC(fb->hWnd);
270 return ReleaseDC(fb->hWnd, hDC);
287 return DestroyWindow(fb->hWnd);
[all...]
H A Dstw_framebuffer.c56 if (fb->hWnd == hwnd) {
95 ReleaseDC(fb->hWnd, fb->hDC);
126 assert(fb->hWnd);
135 if (!GetClientRect(fb->hWnd, &client_rect)) {
162 if (ClientToScreen(fb->hWnd, &client_pos) &&
163 GetWindowRect(fb->hWnd, &window_rect)) {
173 debug_printf("%s: hwnd = %p\n", __FUNCTION__, fb->hWnd);
244 HWND hWnd; local
249 hWnd = WindowFromDC( hdc );
250 if(!hWnd)
[all...]
H A Dstw_framebuffer.h62 HWND hWnd; member in struct:stw_framebuffer
/external/chromium_org/third_party/skia/include/views/
H A DSkOSWindow_Win.h49 bool wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
50 static bool QuitOnDeactivate(HWND hWnd);
/external/skia/include/views/
H A DSkOSWindow_Win.h49 bool wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
50 static bool QuitOnDeactivate(HWND hWnd);
/external/deqp/framework/platform/win32/
H A DtcuWin32Window.cpp29 static LRESULT CALLBACK win32WindowProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
31 Win32Window* window = reinterpret_cast<Win32Window*>(GetWindowLongPtr(hWnd, GWLP_USERDATA));
35 return DefWindowProc(hWnd, uMsg, wParam, lParam);
/external/chromium_org/third_party/skia/src/views/mac/
H A DSkOSWindow_Mac.mm21 SkOSWindow::SkOSWindow(void* hWnd) : fHWND(hWnd) {
/external/skia/src/views/mac/
H A DSkOSWindow_Mac.mm21 SkOSWindow::SkOSWindow(void* hWnd) : fHWND(hWnd) {

Completed in 517 milliseconds

123