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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/npapi/npspy/windows/
windowsxx.h 41 /* void onNotify(HWND hWnd, int idCtrl, LPNMHDR lpNMHdr) */
42 #define HANDLE_WM_NOTIFY(hwnd, wParam, lParam, fn) \
43 (fn)((hwnd), (int)(wParam), (LPNMHDR)lParam)
  /external/chromium_org/ui/views/widget/
child_window_message_processor.cc 16 HWND hwnd,
19 return new ui::ViewProp(hwnd, kChildWindowKey, processor);
23 ChildWindowMessageProcessor* ChildWindowMessageProcessor::Get(HWND hwnd) {
25 ui::ViewProp::GetValue(hwnd, kChildWindowKey));
child_window_message_processor.h 23 // Registers |processor| for |hwnd|. The caller takes ownership of the
25 static ui::ViewProp* Register(HWND hwnd,
28 // Returns the ChildWindowMessageProcessor for |hwnd|, NULL if there isn't
30 static ChildWindowMessageProcessor* Get(HWND hwnd);
33 // the HWND this ChildWindowMessageProcessor was registered for. Returns true
  /external/chromium_org/chrome/test/base/
interactive_test_utils_win.cc 32 HWND hwnd = window->GetRootWindow()->GetAcceleratedWidget(); local
34 HWND hwnd = window;
36 ::ShowWindow(hwnd, SW_HIDE);
45 HWND hwnd = window->GetRootWindow()->GetAcceleratedWidget(); local
47 HWND hwnd = window;
50 ::ShowWindow(hwnd, SW_SHOW)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/win/
HWndDC.h 43 explicit HWndDC(HWND hwnd)
44 : m_hwnd(hwnd)
45 , m_hdc(::GetDC(hwnd))
49 HWndDC(HWND hwnd, HRGN hrgnClip, DWORD flags)
50 : m_hwnd(hwnd)
51 , m_hdc(::GetDCEx(hwnd, hrgnClip, flags))
60 HDC setHWnd(HWND hwnd)
    [all...]
  /external/chromium_org/third_party/skia/include/views/
SkApplication.h 15 extern SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv);
  /external/skia/include/views/
SkApplication.h 15 extern SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv);
  /external/chromium_org/content/browser/renderer_host/input/
web_input_event_builders_win.h 16 static WebKit::WebKeyboardEvent Build(HWND hwnd, UINT message,
22 static WebKit::WebMouseEvent Build(HWND hwnd, UINT message,
28 static WebKit::WebMouseWheelEvent Build(HWND hwnd, UINT message,
  /external/chromium_org/ui/base/win/
hwnd_subclass_unittest.cc 24 virtual BOOL ProcessWindowMessage(HWND window,
53 virtual bool FilterMessage(HWND hwnd,
73 EXPECT_TRUE(window.hwnd() != NULL);
77 HWNDSubclass::AddFilterToTarget(window.hwnd(), &mf);
81 ::SendMessage(window.hwnd(), WM_NCHITTEST, 0, 0);
92 ::SendMessage(window.hwnd(), WM_NCHITTEST, 0, 0);
102 EXPECT_TRUE(window.hwnd() != NULL);
107 HWNDSubclass::AddFilterToTarget(window.hwnd(), &mf1);
108 HWNDSubclass::AddFilterToTarget(window.hwnd(), &mf2)
    [all...]
hwnd_util.h 22 UI_EXPORT string16 GetClassName(HWND hwnd);
24 // Useful for subclassing a HWND. Returns the previous window procedure.
25 UI_EXPORT WNDPROC SetWindowProc(HWND hwnd, WNDPROC wndproc);
29 UI_EXPORT void* SetWindowUserData(HWND hwnd, void* user_data);
30 UI_EXPORT void* GetWindowUserData(HWND hwnd);
34 UI_EXPORT bool DoesWindowBelongToActiveWindow(HWND window)
    [all...]
shell.h 47 UI_EXPORT void SetAppIdForWindow(const string16& app_id, HWND hwnd);
50 UI_EXPORT void SetAppIconForWindow(const string16& app_icon, HWND hwnd);
57 HWND hwnd);
message_box_win.h 19 UI_EXPORT int MessageBox(HWND hwnd,
mouse_wheel_util.h 16 // Marks the passed |hwnd| as supporting mouse-wheel message rerouting.
17 // We reroute the mouse wheel messages to such HWND when they are under the
20 UI_EXPORT ViewProp* SetWindowSupportsRerouteMouseWheel(HWND hwnd);
29 UI_EXPORT bool RerouteMouseWheel(HWND window, WPARAM w_param,
  /external/chromium_org/gpu/gles2_conform_support/native/
egl_native_gtk.cc 45 GtkWidget* hwnd = gtk_window_new(GTK_WINDOW_POPUP); local
47 GtkWidget* hwnd = gtk_window_new(GTK_WINDOW_TOPLEVEL);
50 gtk_window_set_title(GTK_WINDOW(hwnd), title);
51 gtk_window_set_default_size(GTK_WINDOW(hwnd), width, height);
52 gtk_widget_set_double_buffered(hwnd, FALSE);
53 gtk_widget_set_app_paintable(hwnd, TRUE);
56 gtk_widget_show_now(hwnd);
58 *pNativeWindow = GDK_WINDOW_XWINDOW(hwnd->window);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3dapi/
galliumdxgi.idl 62 * - GDI: HWND
96 [in] HWND hwnd,
105 [in] HWND hwnd,
111 [in] HWND hwnd
116 [in] HWND hwnd,
  /external/chromium_org/ui/views/win/
scoped_fullscreen_visibility.h 17 // Scoping class that ensures a HWND remains hidden while it enters or leaves
22 explicit ScopedFullscreenVisibility(HWND hwnd);
25 // Returns true if |hwnd| is currently hidden due to instance(s) of this
27 static bool IsHiddenForFullscreen(HWND hwnd);
30 typedef std::map<HWND, int> FullscreenHWNDs;
32 HWND hwnd_;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/
galliumdxgi.idl 62 * - GDI: HWND
96 [in] HWND hwnd,
105 [in] HWND hwnd,
111 [in] HWND hwnd
116 [in] HWND hwnd,
  /external/chromium_org/content/browser/
system_message_window_win.h 27 LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
30 static LRESULT CALLBACK WndProcThunk(HWND hwnd,
35 GetWindowLongPtr(hwnd, GWLP_USERDATA));
37 return msg_wnd->WndProc(hwnd, message, wparam, lparam);
38 return ::DefWindowProc(hwnd, message, wparam, lparam);
42 HWND window_;
  /external/chromium/chrome/browser/automation/
testing_automation_provider_win.cc 26 HWND hwnd = window_tracker_->GetResource(handle); local
27 if (hwnd) {
30 GetWindowPlacement(hwnd, &window_placement);
40 HWND window = browser->window()->GetNativeHandle();
49 HWND hwnd = window_tracker_->GetResource(handle); local
50 if (hwnd) {
53 GetWindowPlacement(hwnd, &window_placement);
63 HWND hwnd = window_tracker_->GetResource(handle) local
75 HWND hwnd = window_tracker_->GetResource(handle); local
    [all...]
  /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/chromium_org/ui/compositor/test/
test_compositor_host_win.cc 20 compositor_.reset(new ui::Compositor(this, hwnd()));
25 DestroyWindow(hwnd());
30 ShowWindow(hwnd(), SW_SHOWNORMAL);
40 ::GetClientRect(hwnd(), &rect);
41 InvalidateRect(hwnd(), &rect, FALSE);
51 ValidateRect(hwnd(), NULL);
56 GetClientRect(hwnd(), &r);
  /external/chromium_org/chrome_frame/test/
win_event_receiver.h 23 // Called when an event has been received. |hwnd| is the window that generated
25 virtual void OnEventReceived(DWORD event, HWND hwnd, LONG object_id,
53 DWORD event, HWND hwnd, LONG object_id, LONG child_id,
65 virtual void OnWindowOpen(HWND hwnd) = 0;
66 virtual void OnWindowClose(HWND hwnd) = 0;
109 typedef std::pair<HWND, linked_ptr<base::win::ObjectWatcher::Delegate>
    [all...]
  /external/chromium_org/tools/memory_watcher/
hotkey.h 32 return RegisterHotKey(hwnd(), hotkey_id, modifiers_, vkey_) == TRUE;
36 UnregisterHotKey(hwnd(), hotkey_id);
37 DestroyWindow(hwnd());
  /external/chromium_org/chrome/browser/ui/views/frame/
minimize_button_metrics_win.h 21 void Init(HWND hwnd);
33 HWND hwnd_;

Completed in 1522 milliseconds

1 2 3 4 5 6 7 8 91011>>