HomeSort by relevance Sort by last modified time
    Searched refs:HWND (Results 51 - 75 of 141) sorted by null

1 23 4 5 6

  /prebuilt/windows/sdl/include/SDL/
SDL_syswm.h 129 HWND hwnd; /* The window for the message */ member in struct:SDL_SysWMmsg
138 HWND window; /* The Win32 display window */
  /external/webkit/WebKitTools/WinLauncher/
WinLauncher.cpp 44 HWND hMainWnd;
45 HWND hURLBarWnd;
48 HWND gViewWindow = 0;
57 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
58 INT_PTR CALLBACK About(HWND, UINT, WPARAM, LPARAM);
59 LRESULT CALLBACK MyEditProc(HWND, UINT, WPARAM, LPARAM);
239 if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) {
326 void PrintView(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
376 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam
    [all...]
  /external/webkit/WebKit/win/
FullscreenVideoController.h 115 virtual LRESULT fullscreenClientWndProc(HWND, UINT message, WPARAM, LPARAM);
137 static LRESULT CALLBACK hudWndProc(HWND, UINT message, WPARAM, LPARAM);
151 HWND m_hudWindow, m_videoWindow;
WebDropSource.cpp 100 HWND viewWindow;
132 HWND viewWindow;
WebScrollBar.h 128 HWND m_containingWindow;
  /external/webkit/WebCore/plugins/
PluginView.h 57 typedef struct HWND__* HWND;
58 typedef HWND PlatformPluginWidget;
216 static LRESULT CALLBACK PluginViewWndProc(HWND, UINT, WPARAM, LPARAM);
217 LRESULT wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
269 static HDC WINAPI hookedBeginPaint(HWND, PAINTSTRUCT*);
270 static BOOL WINAPI hookedEndPaint(HWND, const PAINTSTRUCT*);
  /external/chromium/base/
win_util.cc 256 WNDPROC SetWindowProc(HWND hwnd, WNDPROC proc) {
261 reinterpret_cast<WNDPROC>(GetWindowLongPtr(hwnd, GWLP_WNDPROC));
262 SetWindowLongPtr(hwnd, GWLP_WNDPROC, reinterpret_cast<LONG_PTR>(proc));
266 void* SetWindowUserData(HWND hwnd, void* user_data) {
268 reinterpret_cast<void*>(SetWindowLongPtr(hwnd, GWLP_USERDATA,
272 void* GetWindowUserData(HWND hwnd) {
273 return reinterpret_cast<void*>(GetWindowLongPtr(hwnd, GWLP_USERDATA))
    [all...]
  /external/webkit/WebCore/platform/
PlatformKeyboardEvent.h 43 typedef struct HWND__ *HWND;
139 PlatformKeyboardEvent(HWND, WPARAM, LPARAM, Type, bool);
PlatformMouseEvent.h 44 typedef struct HWND__* HWND;
139 PlatformMouseEvent(HWND, UINT, WPARAM, LPARAM, bool activatedWebView = false);
Widget.h 49 typedef struct HWND__* HWND;
50 typedef HWND PlatformWidget;
110 // A widget may or may not be backed by a platform-specific object (e.g., HWND on Windows, NSView on Mac, QWidget on Qt).
118 // Plugin - Mac, Windows (windowed only), Qt (windowed only, widget is an HWND on windows), Gtk (windowed only)
  /external/webkit/WebCore/plugins/win/
PluginViewWin.cpp 96 static inline HWND windowHandleForPageClient(PlatformPageClient client)
107 return (HWND)client->GetHandle();
140 typedef HDC (WINAPI *PtrBeginPaint)(HWND, PAINTSTRUCT*);
141 typedef BOOL (WINAPI *PtrEndPaint)(HWND, const PAINTSTRUCT*);
144 extern "C" HDC __stdcall _HBeginPaint(HWND hWnd, LPPAINTSTRUCT lpPaint);
145 extern "C" BOOL __stdcall _HEndPaint(HWND hWnd, const PAINTSTRUCT* lpPaint);
148 HDC WINAPI PluginView::hookedBeginPaint(HWND hWnd, PAINTSTRUCT* lpPaint
    [all...]
PaintHooks.asm 20 ;HDC __stdcall _HBeginPaint(HWND hWnd, LPPAINTSTRUCT lpPaint);
35 ;BOOL __stdcall _HEndPaint(HWND hWnd, const PAINTSTRUCT* lpPaint);
PluginMessageThrottlerWin.cpp 61 void PluginMessageThrottlerWin::appendMessage(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
65 message->hWnd = hWnd;
91 ::CallWindowProc(m_pluginView->pluginWndProc(), message->hWnd, message->msg, message->wParam, message->lParam);
  /external/webkit/WebCore/platform/win/
PlatformScreenWin.cpp 43 HWND window = widget ? widget->root()->hostWindow()->platformPageClient() : 0;
SharedTimerWin.cpp 68 static HWND timerWindowHandle = 0;
86 LRESULT CALLBACK TimerWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
94 PostMessage(hWnd, message, wParam, lParam);
114 return DefWindowProc(hWnd, message, wParam, lParam);
  /external/webkit/WebKit/chromium/src/win/
WebScreenInfoFactory.cpp 50 WebScreenInfo WebScreenInfoFactory::screenInfo(HWND window)
WebInputEventFactory.cpp 89 WebKeyboardEvent WebInputEventFactory::keyboardEvent(HWND hwnd, UINT message,
155 static LPARAM GetRelativeCursorPos(HWND hwnd)
159 ScreenToClient(hwnd, &pos);
168 WebMouseEvent WebInputEventFactory::mouseEvent(HWND hwnd, UINT message,
190 lparam = GetRelativeCursorPos(hwnd);
237 ClientToScreen(hwnd, &globalPoint);
297 WebMouseWheelEvent WebInputEventFactory::mouseWheelEvent(HWND hwnd, UINT message
    [all...]
  /external/webkit/WebKitTools/WebKitAPITest/
HostWindow.cpp 78 LRESULT HostWindow::wndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
80 return DefWindowProcW(hWnd, uMsg, wParam, lParam);
TestsController.cpp 136 LRESULT TestsController::wndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
139 KillTimer(hWnd, runNextTestTimerID);
144 return DefWindowProcW(hWnd, uMsg, wParam, lParam);
  /external/icu4c/samples/layout/
clayout.c 36 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
42 void PrettyTitle(HWND hwnd, char *fileName)
48 SetWindowTextA(hwnd, title);
51 void InitParagraph(HWND hwnd, Context *context)
67 SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
73 HWND hwnd; local
98 hwnd = CreateWindow(szAppName, NULL
    [all...]
layout.cpp 35 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
41 void PrettyTitle(HWND hwnd, char *fileName)
47 SetWindowTextA(hwnd, title);
50 void InitParagraph(HWND hwnd, Context *context)
66 SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
72 HWND hwnd; local
97 hwnd = CreateWindow(szAppName, NULL
    [all...]
  /external/libpng/contrib/visupng/
VisualPng.c 40 LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);
41 BOOL CALLBACK AboutDlgProc (HWND, UINT, WPARAM, LPARAM) ;
43 BOOL CenterAbout (HWND hwndChild, HWND hwndParent);
51 BOOL LoadImageFile(HWND hwnd, PTSTR pstrPathName,
55 BOOL DisplayImage (HWND hwnd, BYTE **ppDib,
81 HWND hwnd; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_sysevents.c 56 #define IsZoomed(HWND) 1
71 HWND SDL_Window = NULL;
86 LONG (*HandleMessage)(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)=NULL;
89 void (*WIN_PaletteChanged)(_THIS, HWND window);
108 BOOL (WINAPI *SHFullScreen)(HWND hwndRequester, DWORD dwState) = 0;
259 TrackMouseTimerProc(HWND hWnd, UINT uMsg, UINT idEvent, DWORD dwTime)
264 GetClientRect(hWnd, &rect);
265 MapWindowPoints(hWnd, NULL, (LPPOINT)&rect, 2)
    [all...]
  /external/webkit/WebCore/platform/network/
ResourceHandle.h 50 typedef struct HWND__* HWND;
170 friend LRESULT __stdcall ResourceHandleWndProc(HWND, unsigned message, WPARAM, LPARAM);
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-win32.c 45 static HWND sWnd;
78 static BOOL initEGL(HWND wnd)
162 static LRESULT CALLBACK wndProc(HWND wnd, UINT message,

Completed in 670 milliseconds

1 23 4 5 6