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

1 2 3 4 5 6

  /external/webkit/WebKit/chromium/public/win/
WebScreenInfoFactory.h 36 typedef struct HWND__* HWND;
44 WEBKIT_API static WebScreenInfo screenInfo(HWND);
WebInputEventFactory.h 46 WEBKIT_API static WebKeyboardEvent keyboardEvent(HWND, UINT, WPARAM, LPARAM);
47 WEBKIT_API static WebMouseEvent mouseEvent(HWND, UINT, WPARAM, LPARAM);
48 WEBKIT_API static WebMouseWheelEvent mouseWheelEvent(HWND, UINT, WPARAM, LPARAM);
  /external/webkit/WebKit/win/
WebNodeHighlight.h 51 void placeBehindWindow(HWND);
59 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM);
66 HWND m_inspectedWebViewWindow;
67 HWND m_overlay;
68 HWND m_observedWindow;
71 friend static LRESULT CALLBACK OverlayWndProc(HWND, UINT, WPARAM, LPARAM);
  /external/webkit/WebCore/platform/win/
WindowMessageListener.h 32 typedef struct HWND__* HWND;
41 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM) = 0;
WindowMessageBroadcaster.h 42 static void addListener(HWND, WindowMessageListener*);
43 static void removeListener(HWND, WindowMessageListener*);
48 static LRESULT CALLBACK SubclassedWndProc(HWND, UINT, WPARAM, LPARAM);
50 WindowMessageBroadcaster(HWND);
62 HWND m_subclassedWindow;
WheelEventWin.cpp 39 static IntPoint positionForEvent(HWND hWnd, LPARAM lParam)
42 ScreenToClient(hWnd, &point);
46 static IntPoint globalPositionForEvent(HWND hWnd, LPARAM lParam)
68 PlatformWheelEvent::PlatformWheelEvent(HWND hWnd, const FloatSize& delta, const FloatPoint& location)
86 ScreenToClient(hWnd, &point);
90 PlatformWheelEvent::PlatformWheelEvent(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isMouseHWheel
    [all...]
WindowMessageBroadcaster.cpp 36 typedef HashMap<HWND, WindowMessageBroadcaster*> InstanceMap;
44 void WindowMessageBroadcaster::addListener(HWND hwnd, WindowMessageListener* listener)
46 WindowMessageBroadcaster* broadcaster = instancesMap().get(hwnd);
48 broadcaster = new WindowMessageBroadcaster(hwnd);
49 instancesMap().add(hwnd, broadcaster);
55 void WindowMessageBroadcaster::removeListener(HWND hwnd, WindowMessageListener* listener)
57 WindowMessageBroadcaster* broadcaster = instancesMap().get(hwnd);
64 WindowMessageBroadcaster::WindowMessageBroadcaster(HWND hwnd
    [all...]
  /external/webkit/WebKitTools/WebKitAPITest/
HostWindow.h 40 HWND window() const { return m_window; }
44 static LRESULT CALLBACK wndProc(HWND, UINT uMsg, WPARAM, LPARAM);
46 HWND m_window;
TestsController.h 55 static LRESULT CALLBACK wndProc(HWND, UINT uMsg, WPARAM, LPARAM);
57 HWND m_window;
  /external/chromium/base/
win_util.h 60 // Useful for subclassing a HWND. Returns the previous window procedure.
61 WNDPROC SetWindowProc(HWND hwnd, WNDPROC wndproc);
64 bool IsSubclassed(HWND window, WNDPROC subclass_proc);
70 bool Subclass(HWND window, WNDPROC subclass_proc);
76 bool Unsubclass(HWND window, WNDPROC subclass_proc);
80 WNDPROC GetSuperclassWNDPROC(HWND window);
84 void* SetWindowUserData(HWND hwnd, void* user_data);
85 void* GetWindowUserData(HWND hwnd)
    [all...]
fix_wp64.h 33 inline LONG_PTR SetWindowLongPtrA(HWND window, int index, LONG_PTR new_long) {
40 inline LONG_PTR SetWindowLongPtrW(HWND window, int index, LONG_PTR new_long) {
47 inline LONG_PTR GetWindowLongPtrA(HWND window, int index) {
54 inline LONG_PTR GetWindowLongPtrW(HWND window, int index) {
61 inline LONG_PTR SetClassLongPtrA(HWND window, int index, LONG_PTR new_long) {
68 inline LONG_PTR SetClassLongPtrW(HWND window, int index, LONG_PTR new_long) {
base_drop_target.h 20 // before the HWND is deleted too.
25 // Create a new BaseDropTarget associating it with the given HWND.
26 explicit BaseDropTarget(HWND hwnd);
30 // from drags initiated within the owning HWND.
32 // drag-drop operations within the same HWND, such as dragging
57 // Returns the hosting HWND.
58 HWND GetHWND() { return hwnd_; }
60 // Invoked when the cursor first moves over the hwnd during a dnd session.
78 // Invoked when the cursor moves outside the bounds of the hwnd during
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
DumpRenderTreeWin.h 38 typedef struct HWND__* HWND;
44 extern HWND webViewWindow;
52 IWebView* createWebViewAndOffscreenWindow(HWND* webViewWindow = 0);
53 Vector<HWND>& openWindows();
54 typedef HashMap<HWND, COMPtr<IWebView> > WindowToWebViewMap;
  /external/qemu/distrib/sdl-1.2.12/src/video/windib/
SDL_dibevents_c.h 30 DIB_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  /external/webkit/WebKit/win/WebCoreSupport/
WebInspectorClient.h 87 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM);
92 HWND m_inspectedWebViewHwnd;
93 HWND m_hwnd;
95 HWND m_webViewHwnd;
104 static friend LRESULT CALLBACK WebInspectorWndProc(HWND, UINT, WPARAM, LPARAM);
EmbeddedWidget.h 42 static PassRefPtr<EmbeddedWidget> create(IWebEmbeddedView*, WebCore::Element* element, HWND parentWindow, const WebCore::IntSize&);
55 bool createWindow(HWND parentWindow, const WebCore::IntSize& size);
76 HWND m_window;
  /external/webkit/JavaScriptCore/wtf/win/
MainThreadWin.cpp 41 static HWND threadingWindowHandle;
45 LRESULT CALLBACK ThreadingWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
50 return DefWindowProc(hWnd, message, wParam, lParam);
59 HWND hWndParent = 0;
  /external/libpng/contrib/visupng/
PngFile.h 16 void PngFileInitialize (HWND hwnd) ;
17 BOOL PngFileOpenDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ;
18 BOOL PngFileSaveDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ;
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5events_c.h 30 DX5_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  /external/skia/include/views/
SkOSWindow_Win.h 24 SkOSWindow(void* hwnd);
32 bool wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
33 static bool QuitOnDeactivate(HWND hWnd);
  /external/webkit/WebCore/plugins/win/
PluginMessageThrottlerWin.h 38 HWND hWnd;
51 void appendMessage(HWND, UINT msg, WPARAM, LPARAM);
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
dsetup.h 52 int WINAPI DirectXSetup( HWND hwnd, LPSTR root_path, DWORD flags );
53 int WINAPI DirectXDeviceDriverSetup( HWND hwnd, LPSTR driver_class, LPSTR inf_path, LPSTR driver_path, DWORD flags );
57 typedef int (WINAPI * LPDIRECTXSETUP)( HWND, LPSTR, DWORD );
58 typedef int (WINAPI * LPDIRECTXDEVICEDRIVERSETUP)( HWND, LPSTR, LPSTR, LPSTR, DWORD );
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
DSETUP.H 52 int WINAPI DirectXSetup( HWND hwnd, LPSTR root_path, DWORD flags );
53 int WINAPI DirectXDeviceDriverSetup( HWND hwnd, LPSTR driver_class, LPSTR inf_path, LPSTR driver_path, DWORD flags );
57 typedef int (WINAPI * LPDIRECTXSETUP)( HWND, LPSTR, DWORD );
58 typedef int (WINAPI * LPDIRECTXDEVICEDRIVERSETUP)( HWND, LPSTR, LPSTR, LPSTR, DWORD );
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_lowvideo.h 79 extern HWND SDL_Window;
94 extern void (*WIN_PaletteChanged)(_THIS, HWND window);
100 extern LONG (*HandleMessage)(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
128 extern void DX5_SoundFocus(HWND window);
132 LRESULT CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  /external/webkit/WebCore/platform/graphics/win/
QTMovieWin.h 51 virtual LRESULT fullscreenClientWndProc(HWND, UINT message, WPARAM, LPARAM) = 0;
115 HWND enterFullscreen(QTMovieWinFullscreenClient*);
120 static LRESULT fullscreenWndProc(HWND, UINT message, WPARAM, LPARAM);

Completed in 848 milliseconds

1 2 3 4 5 6