Searched refs:hwnd_ (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/ui/views/win/
H A Dfullscreen_handler.cc18 : hwnd_(NULL),
49 ScopedFullscreenVisibility visibility(hwnd_);
56 saved_window_info_.maximized = !!::IsZoomed(hwnd_);
58 ::SendMessage(hwnd_, WM_SYSCOMMAND, SC_RESTORE, 0);
59 saved_window_info_.style = GetWindowLong(hwnd_, GWL_STYLE);
60 saved_window_info_.ex_style = GetWindowLong(hwnd_, GWL_EXSTYLE);
61 GetWindowRect(hwnd_, &saved_window_info_.window_rect);
68 SetWindowLong(hwnd_, GWL_STYLE,
70 SetWindowLong(hwnd_, GWL_EXSTYLE,
79 GetMonitorInfo(MonitorFromWindow(hwnd_, MONITOR_DEFAULTTONEARES
[all...]
H A Dscoped_fullscreen_visibility.cc15 : hwnd_(hwnd) {
18 FullscreenHWNDs::iterator it = full_screen_windows_->find(hwnd_);
22 full_screen_windows_->insert(std::make_pair(hwnd_, 1));
27 SetWindowPos(hwnd_, NULL, 0, 0, 0, 0,
34 FullscreenHWNDs::iterator it = full_screen_windows_->find(hwnd_);
38 ShowWindow(hwnd_, SW_SHOW);
H A Dfullscreen_handler.h25 void set_hwnd(HWND hwnd) { hwnd_ = hwnd; }
47 HWND hwnd_; member in class:views::FullscreenHandler
H A Dscoped_fullscreen_visibility.h32 HWND hwnd_; member in class:views::ScopedFullscreenVisibility
H A Dhwnd_message_handler.cc299 hwnd_(owner_->hwnd()),
302 force_(!(GetWindowLong(hwnd_, GWL_STYLE) & WS_CAPTION)) {
303 if (was_visible_ && ::IsWindow(hwnd_))
308 if (!cancel_unlock_ && was_visible_ && ::IsWindow(hwnd_))
319 HWND hwnd_; member in class:views::HWNDMessageHandler::ScopedRedrawLock
/external/chromium_org/base/win/
H A Dscoped_hdc.h22 : hwnd_(hwnd),
24 if (hwnd_) {
25 DCHECK(IsWindow(hwnd_));
37 ReleaseDC(hwnd_, hdc_);
43 HWND hwnd_; member in class:base::win::ScopedGetDC
/external/chromium_org/remoting/host/
H A Dcontinue_window_win.cc40 HWND hwnd_; member in class:remoting::__anon10400::ContinueWindowWin
46 : hwnd_(NULL) {
55 DCHECK(!hwnd_);
58 hwnd_ = CreateDialogParam(instance, MAKEINTRESOURCE(IDD_CONTINUE), NULL,
60 if (!hwnd_) {
65 ShowWindow(hwnd_, SW_SHOW);
100 hwnd_ = NULL;
107 hwnd_ = NULL;
112 hwnd_ = NULL;
122 if (hwnd_) {
[all...]
H A Ddisconnect_window_win.cc73 HWND hwnd_; member in class:remoting::__anon10413::DisconnectWindowWin
109 : hwnd_(NULL),
179 hwnd_ = NULL;
211 HDC hdc = BeginPaint(hwnd_, &ps);
213 GetClientRect(hwnd_, &rect);
220 EndPaint(hwnd_, &ps);
229 DCHECK(!hwnd_);
232 hwnd_ = CreateDialogParam(module, MAKEINTRESOURCE(IDD_DISCONNECT), NULL,
234 if (!hwnd_)
238 if (!has_hotkey_ && RegisterHotKey(hwnd_, DISCONNECT_HOTKEY_I
[all...]
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dminimize_button_metrics_win.cc44 : hwnd_(NULL),
53 DCHECK(!hwnd_);
54 hwnd_ = hwnd;
85 GetClientRect(hwnd_, &client_rect);
90 const int minimize_button_offset = GetMinimizeButtonOffsetForWindow(hwnd_);
98 GetClientRect(hwnd_, &client_rect);
H A Dminimize_button_metrics_win.h28 // Must be called when hwnd_ is activated to update the minimize button
36 HWND hwnd_; member in class:MinimizeButtonMetrics
/external/chromium_org/chrome/browser/ui/views/panels/
H A Dtaskbar_window_thumbnailer_win.cc55 : hwnd_(hwnd),
57 ui::HWNDSubclass::AddFilterToTarget(hwnd_, this);
65 EnableCustomThumbnail(hwnd_, true);
70 EnableCustomThumbnail(hwnd_, false);
82 ::DwmInvalidateIconicBitmaps(hwnd_);
87 EnableCustomThumbnail(hwnd_, false);
90 hwnd_ = new_hwnd;
93 ui::HWNDSubclass::AddFilterToTarget(hwnd_, this);
94 EnableCustomThumbnail(hwnd_, true);
102 DCHECK_EQ(hwnd_, hwn
[all...]
H A Dtaskbar_window_thumbnailer_win.h65 HWND hwnd_; member in class:TaskbarWindowThumbnailerWin
/external/chromium_org/content/browser/compositor/
H A Dsoftware_output_device_win.cc19 : hwnd_(compositor->widget()),
24 LONG style = GetWindowLong(hwnd_, GWL_EXSTYLE);
76 GetWindowRect(hwnd_, &wr);
82 DWORD style = GetWindowLong(hwnd_, GWL_EXSTYLE);
85 SetWindowLong(hwnd_, GWL_EXSTYLE, style);
88 ::UpdateLayeredWindow(hwnd_, NULL, &position, &size, dib_dc, &zero,
92 HDC hdc = ::GetDC(hwnd_);
95 ::ReleaseDC(hwnd_, hdc);
H A Dsoftware_output_device_win.h35 HWND hwnd_; member in class:content::SoftwareOutputDeviceWin
/external/chromium_org/third_party/webrtc/test/win/
H A Dd3d_renderer.cc35 hwnd_(NULL),
62 if (hwnd_ != NULL) {
63 DestroyWindow(hwnd_);
64 assert(!IsWindow(hwnd_));
65 hwnd_ = NULL;
70 hwnd_ = CreateWindowA(kD3DClassName,
82 if (hwnd_ == NULL) {
101 hwnd_,
129 ShowWindow(hwnd_, SW_SHOWNOACTIVATE);
H A Dd3d_renderer.h43 HWND hwnd_; member in class:webrtc::test::D3dRenderer
/external/chromium_org/ui/base/dragdrop/
H A Ddrop_target_win.h54 HWND GetHWND() { return hwnd_; }
105 HWND hwnd_; member in class:ui::DropTargetWin
H A Ddrop_target_win.cc16 : hwnd_(hwnd),
/external/chromium_org/ui/gfx/win/
H A Dwindow_impl.cc169 hwnd_(NULL),
230 if (!hwnd_ && GetLastError() == 0) {
252 CheckWindowCreated(hwnd_);
265 HWND hwnd = hwnd_;
267 hwnd_ = NULL;
278 if (::IsWindow(hwnd_))
279 gfx::SetWindowUserData(hwnd_, NULL);
292 window->hwnd_ = hwnd;
H A Dwindow_impl.h56 HWND hwnd() const { return hwnd_; }
111 HWND hwnd_; member in class:gfx::WindowImpl
/external/chromium_org/ui/gfx/
H A Dcanvas_paint_win.h66 HWND hwnd_; member in class:gfx::CanvasSkiaPaint
H A Dcanvas_paint_win.cc14 : hwnd_(hwnd),
26 : hwnd_(NULL),
/external/chromium_org/ui/views/controls/menu/
H A Dnative_menu_win.cc82 hwnd_ = CreateWindowEx(l10n_util::GetExtendedStyles(), kWindowClassName,
84 gfx::CheckWindowCreated(hwnd_);
85 gfx::SetWindowUserData(hwnd_, this);
89 DestroyWindow(hwnd_);
92 HWND hwnd() const { return hwnd_; }
364 HWND hwnd_; member in class:views::NativeMenuWin::MenuHostWindow

Completed in 543 milliseconds