HomeSort by relevance Sort by last modified time
    Searched refs:hwnd_ (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/ui/views/win/
fullscreen_handler.cc 18 : 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_DEFAULTTONEAREST)
    [all...]
scoped_fullscreen_visibility.cc 15 : 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);
fullscreen_handler.h 25 void set_hwnd(HWND hwnd) { hwnd_ = hwnd; }
47 HWND hwnd_; member in class:views::FullscreenHandler
scoped_fullscreen_visibility.h 32 HWND hwnd_; member in class:views::ScopedFullscreenVisibility
hwnd_message_handler.cc 299 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
    [all...]
  /external/chromium_org/base/win/
scoped_hdc.h 22 : 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/
continue_window_win.cc 40 HWND hwnd_; member in class:remoting::__anon15025::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...]
disconnect_window_win.cc 73 HWND hwnd_; member in class:remoting::__anon15038::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_ID
    [all...]
  /external/chromium_org/chrome/browser/ui/views/frame/
minimize_button_metrics_win.cc 44 : 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);
minimize_button_metrics_win.h 28 // 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/
taskbar_window_thumbnailer_win.cc 55 : 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_, hwnd)
    [all...]
taskbar_window_thumbnailer_win.h 65 HWND hwnd_; member in class:TaskbarWindowThumbnailerWin
  /external/chromium_org/content/browser/compositor/
software_output_device_win.cc 19 : 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);
software_output_device_win.h 35 HWND hwnd_; member in class:content::SoftwareOutputDeviceWin
  /external/chromium_org/third_party/webrtc/test/win/
d3d_renderer.cc 35 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);
d3d_renderer.h 43 HWND hwnd_; member in class:webrtc::test::D3dRenderer
  /external/chromium_org/ui/gfx/
canvas_paint_win.h 66 HWND hwnd_; member in class:gfx::CanvasSkiaPaint
canvas_paint_win.cc 14 : hwnd_(hwnd),
26 : hwnd_(NULL),
  /external/chromium_org/ui/base/dragdrop/
drop_target_win.h 54 HWND GetHWND() { return hwnd_; }
105 HWND hwnd_; member in class:ui::DropTargetWin
drop_target_win.cc 16 : hwnd_(hwnd),
  /external/chromium_org/ui/gfx/win/
window_impl.cc 169 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;
window_impl.h 56 HWND hwnd() const { return hwnd_; }
111 HWND hwnd_; member in class:gfx::WindowImpl
  /external/chromium_org/ui/views/controls/menu/
native_menu_win.cc 82 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 1829 milliseconds