Searched refs:HWND (Results 101 - 125 of 275) sorted by relevance

1234567891011

/external/quake/quake/src/QW/scitech/include/
H A Dmglwin.h32 typedef HWND MGL_HWND;
64 void MGLAPI MGL_registerFullScreenWindow(HWND hwndFullScreen);
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
H A DMGLWIN.H32 typedef HWND MGL_HWND;
64 void MGLAPI MGL_registerFullScreenWindow(HWND hwndFullScreen);
/external/webkit/Source/WebCore/platform/graphics/win/
H A DQTMovieWinTimer.cpp43 static HWND timerWindowHandle = 0;
48 static LRESULT CALLBACK TimerWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
H A DMediaPlayerPrivateFullscreenWindow.cpp62 void MediaPlayerPrivateFullscreenWindow::createWindow(HWND parentHwnd)
125 LRESULT MediaPlayerPrivateFullscreenWindow::staticWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
141 LRESULT MediaPlayerPrivateFullscreenWindow::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
H A DResizeViewWhileHidden.cpp66 static void CALLBACK timerCallback(HWND hwnd, UINT, UINT_PTR timerID, DWORD)
95 HWND window = WKViewGetWindow(webView.platformView());
/external/webkit/Tools/WinCELauncher/
H A Dmain.cpp34 static LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
100 HWND hMainWindow = CreateWindowW(kMainWindowClassName, kMainWindowTitle, styles,
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebInspectorClient.cpp91 HWND frontendHwnd = ::CreateWindowEx(0, kWebInspectorWindowClassName, 0, WS_OVERLAPPEDWINDOW,
156 HWND frontendWebViewHwnd;
207 WebInspectorFrontendClient::WebInspectorFrontendClient(WebView* inspectedWebView, HWND inspectedWebViewHwnd, HWND frontendHwnd, const COMPtr<WebView>& frontendWebView, HWND frontendWebViewHwnd, WebInspectorClient* inspectorClient, PassOwnPtr<Settings> settings)
294 HWND hostWindow;
355 HWND hostWindow;
393 HWND hostWindow;
484 static LRESULT CALLBACK WebInspectorWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
506 void WebInspectorFrontendClient::windowReceivedMessage(HWND, UIN
[all...]
/external/webkit/Tools/WinLauncher/
H A DWinLauncher.cpp44 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);
326 void PrintView(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
376 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
416 LRESULT CALLBACK MyEditProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
441 INT_PTR CALLBACK About(HWND hDl
[all...]
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebView.cpp63 SOFT_LINK(IMM32, ImmGetContext, HIMC, WINAPI, (HWND hwnd), (hwnd))
64 SOFT_LINK(IMM32, ImmReleaseContext, BOOL, WINAPI, (HWND hWnd, HIMC hIMC), (hWnd, hIMC))
69 SOFT_LINK(IMM32, ImmAssociateContextEx, BOOL, WINAPI, (HWND hWnd, HIMC hIMC, DWORD dwFlags), (hWnd, hIMC, dwFlags))
75 SOFT_LINK_OPTIONAL(USER32, SetGestureConfig, BOOL, WINAPI, (HWND, DWORD, UINT, PGESTURECONFIG, UINT));
79 SOFT_LINK_OPTIONAL(Uxtheme, BeginPanningFeedback, BOOL, WINAPI, (HWND));
80 SOFT_LINK_OPTIONAL(Uxtheme, EndPanningFeedback, BOOL, WINAPI, (HWND, BOOL));
81 SOFT_LINK_OPTIONAL(Uxtheme, UpdatePanningFeedback, BOOL, WINAPI, (HWND, LONG, LONG, BOOL));
106 LRESULT CALLBACK WebView::WebViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
124 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
262 WebView::WebView(RECT rect, WebContext* context, WebPageGroup* pageGroup, HWND parentWindo
[all...]
/external/chromium/chrome/browser/ui/
H A Dinput_window_dialog_win.cc27 WinInputWindowDialog(HWND parent,
201 WinInputWindowDialog::WinInputWindowDialog(HWND parent,
227 InputWindowDialog* InputWindowDialog::Create(HWND parent,
H A Dwindow_sizer_win.cc92 HWND window = reinterpret_cast<HWND>(b->window()->GetNativeHandle());
/external/chromium/chrome/browser/ui/views/tabs/
H A Dnative_view_photobooth_win.cc51 NativeViewPhotoboothWin::NativeViewPhotoboothWin(HWND initial_hwnd)
59 // Detach the attached HWND. The creator of the photo-booth is responsible
65 void NativeViewPhotoboothWin::Replace(HWND new_hwnd) {
98 // We compel the contained HWND to paint now, synchronously. We do this to
123 void NativeViewPhotoboothWin::CreateCaptureWindow(HWND initial_hwnd) {
124 // Snapshotting a HWND is tricky - if the HWND is clipped (e.g. positioned
125 // partially off-screen) then just blitting from the HWND' DC to the capture
127 // visible area of the HWND.
131 // size of the unclipped HWND, an
[all...]
/external/webkit/Source/WebKit/win/
H A DFullscreenVideoController.h119 virtual LRESULT fullscreenClientWndProc(HWND, UINT message, WPARAM, LPARAM);
140 static LRESULT CALLBACK hudWndProc(HWND, UINT message, WPARAM, LPARAM);
155 HWND m_hudWindow;
H A DWebDropSource.cpp100 HWND viewWindow;
132 HWND viewWindow;
/external/webkit/Source/WebKit2/Platform/win/
H A DRunLoopWin.cpp39 LRESULT CALLBACK RunLoop::RunLoopWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
57 LRESULT RunLoop::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
82 bool RunLoop::dispatchSentMessagesUntil(const Vector<HWND>& windows, CoreIPC::BinarySemaphore& semaphore, double absoluteTime)
/external/chromium/chrome/browser/
H A Dexternal_tab_container_win.h66 HWND parent,
100 static bool IsExternalTabContainer(HWND window);
110 static ExternalTabContainer* GetContainerForTab(HWND tab_window);
223 virtual void OnFinalMessage(HWND window);
255 bool ProcessUnhandledKeyStroke(HWND window, UINT message, WPARAM wparam,
359 virtual bool ProcessUnhandledKeyStroke(HWND window, UINT message,
H A Dfullscreen_win.cc51 HWND wnd = ::GetForegroundWindow();
H A Dprocess_singleton_win.cc34 BOOL CALLBACK BrowserWindowEnumeration(HWND window, LPARAM param) {
205 LRESULT ProcessSingleton::OnCopyData(HWND hwnd, const COPYDATASTRUCT* cds) {
303 LRESULT CALLBACK ProcessSingleton::WndProc(HWND hwnd, UINT message,
307 return OnCopyData(reinterpret_cast<HWND>(wparam),
/external/chromium/chrome/browser/ui/views/
H A Dabout_ipc_dialog.cc78 HWND settings_dialog = NULL;
92 void InitDialog(HWND hwnd) {
155 INT_PTR CALLBACK DialogProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) {
185 void RunSettingsDialog(HWND parent) {
278 HWND parent_window = GetRootView()->GetWidget()->GetNativeView();
281 HWND list_hwnd = message_list_.Create(parent_window,
H A Dbrowser_bubble_win.cc55 void OnActivate(UINT action, BOOL minimized, HWND window) {
91 virtual void OnSetFocus(HWND focused_window) {
116 // We make the BorderWidgetWin the owner of the Bubble HWND, so that the
H A Ddropdown_bar_host_win.cc19 HWND hwnd = contents->GetContentNativeView();
/external/chromium/chrome/browser/ui/views/status_icons/
H A Dstatus_tray_win.cc40 LRESULT CALLBACK StatusTrayWin::WndProcStatic(HWND hwnd,
52 LRESULT CALLBACK StatusTrayWin::WndProc(HWND hwnd,
/external/webkit/Source/WebCore/platform/
H A DPasteboard.h59 typedef struct HWND__* HWND; typedef in typeref:struct:HWND__
132 HWND m_owner;
/external/webkit/Source/WebCore/plugins/win/
H A DPluginViewWin.cpp100 static inline HWND windowHandleForPageClient(PlatformPageClient client)
111 return (HWND)client->GetHandle();
144 typedef HDC (WINAPI *PtrBeginPaint)(HWND, PAINTSTRUCT*);
145 typedef BOOL (WINAPI *PtrEndPaint)(HWND, const PAINTSTRUCT*);
148 extern "C" HDC __stdcall _HBeginPaint(HWND hWnd, LPPAINTSTRUCT lpPaint);
149 extern "C" BOOL __stdcall _HEndPaint(HWND hWnd, const PAINTSTRUCT* lpPaint);
152 HDC WINAPI PluginView::hookedBeginPaint(HWND hWnd, PAINTSTRUCT* lpPaint)
185 BOOL WINAPI PluginView::hookedEndPaint(HWND hWnd, const PAINTSTRUCT* lpPaint)
270 static void setUpOffscreenPaintingHooks(HDC (WINAPI*hookedBeginPaint)(HWND, PAINTSTRUCT*), BOOL (WINAPI*hookedEndPaint)(HWND, cons
[all...]
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_manager_win.cc31 HWND parent_view,

Completed in 446 milliseconds

1234567891011