Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: chrome/browser/ui/views/frame/minimize_button_metrics_win.h

Issue 2616523004: Layout avatar button
Patch Set: More stuff Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_MINIMIZE_BUTTON_METRICS_WIN_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_MINIMIZE_BUTTON_METRICS_WIN_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_MINIMIZE_BUTTON_METRICS_WIN_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_MINIMIZE_BUTTON_METRICS_WIN_H_
7 7
8 #include <windows.h> 8 #include <windows.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 11
12 // Class that implements obtaining the X coordinate of the native minimize 12 // Class that implements obtaining the X coordinate of the native minimize
13 // button for the native frame on Windows. 13 // button for the native frame on Windows.
14 // This is a separate class because obtaining it is somewhat tricky and this 14 // This is a separate class because obtaining it is somewhat tricky and this
15 // code is shared between BrowserDesktopWindowTreeHostWin and BrowserFrameWin. 15 // code is shared between BrowserDesktopWindowTreeHostWin and BrowserFrameWin.
16 class MinimizeButtonMetrics { 16 class MinimizeButtonMetrics {
17 public: 17 public:
18 MinimizeButtonMetrics(); 18 MinimizeButtonMetrics();
19 ~MinimizeButtonMetrics(); 19 ~MinimizeButtonMetrics();
20 20
21 void Init(HWND hwnd); 21 void Init(HWND hwnd);
22 22
23 // Obtain the X offset of the native minimize button. Since Windows can lie 23 // Obtain the X offset of the native minimize button. Since Windows can lie
24 // to us if we call this at the wrong moment, this might come from a cached 24 // to us if we call this at the wrong moment, this might come from a cached
25 // value rather than read when called. 25 // value rather than read when called.
26 int GetMinimizeButtonOffsetX() const; 26 int GetMinimizeButtonOffsetX() const;
27 27
28 // Obtain the X offset of the native minimize button. Since Windows can lie
29 // to us if we call this at the wrong moment, this might come from a cached
30 // value rather than read when called.
31 int GetMinimizeButtonHeight() const;
32
28 // Must be called when hwnd_ is activated to update the minimize button 33 // Must be called when hwnd_ is activated to update the minimize button
29 // position cache. 34 // position cache.
30 void OnHWNDActivated(); 35 void OnHWNDActivated();
31 36
32 private: 37 private:
33 // Gets the value for GetMinimizeButtonOffsetX(), caching if found. 38 // Gets the value for GetMinimizeButtonOffsetX(), caching if found.
34 int GetAndCacheMinimizeButtonOffsetX() const; 39 int GetAndCacheMinimizeButtonOffsetX() const;
35 40
36 int GetButtonBoundsPositionOffset(const RECT& button_bounds, 41 int GetButtonBoundsPositionOffset(const RECT& button_bounds,
37 const RECT& window_bounds) const; 42 const RECT& window_bounds) const;
38 43
39 int GetMinimizeButtonOffsetForWindow() const; 44 int GetMinimizeButtonOffsetForWindow() const;
40 45
46 void UpdateButtonBoundsSizes(const RECT& button_bounds,
47 const RECT& window_bounds) const;
48
41 HWND hwnd_; 49 HWND hwnd_;
42 50
43 // Cached offset of the minimize button. If RTL this is the location of the 51 // Cached offset of the minimize button. If RTL this is the location of the
44 // minimize button, if LTR this is the offset from the right edge of the 52 // minimize button, if LTR this is the offset from the right edge of the
45 // client area to the minimize button. 53 // client area to the minimize button.
46 mutable int cached_minimize_button_x_delta_; 54 mutable int cached_minimize_button_x_delta_;
47 55
48 // Static cache of |cached_minimize_button_x_delta_|. 56 // Static cache of |cached_minimize_button_x_delta_|.
49 static int last_cached_minimize_button_x_delta_; 57 static int last_cached_minimize_button_x_delta_;
50 58
51 // Static cache of offset value representing the different between 59 // Static cache of offset value representing the different between
52 // DWMWA_CAPTION_BUTTON_BOUNDS and WM_GETTITLEBARINFOEX 60 // DWMWA_CAPTION_BUTTON_BOUNDS and WM_GETTITLEBARINFOEX
53 static int button_bounds_position_offset_; 61 static int button_bounds_position_offset_;
54 62
63 // Static cache of offset value representingthe height of
64 // DWMWA_CAPTION_BUTTON_BOUNDS.
65 static int button_bounds_height_;
66
55 // Has OnHWNDActivated() been invoked? 67 // Has OnHWNDActivated() been invoked?
56 bool was_activated_; 68 bool was_activated_;
57 69
58 DISALLOW_COPY_AND_ASSIGN(MinimizeButtonMetrics); 70 DISALLOW_COPY_AND_ASSIGN(MinimizeButtonMetrics);
59 }; 71 };
60 72
61 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_MINIMIZE_BUTTON_METRICS_WIN_H_ 73 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_MINIMIZE_BUTTON_METRICS_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698