summaryrefslogtreecommitdiffstats
path: root/ui/gfx/font_smoothing_win.cc
blob: a4be72930a4365e1dc4c5c6fac15337defa49239 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/gfx/font_smoothing_win.h"

#include "base/memory/singleton.h"
#include "ui/base/win/singleton_hwnd.h"

namespace {

// Helper class to cache font smoothing settings and listen for notifications
// to re-query them from the system.
class CachedFontSmoothingSettings : public ui::SingletonHwnd::Observer {
 public:
  static CachedFontSmoothingSettings* GetInstance();

  // Returns the cached Windows font smoothing settings. Queries the settings
  // via Windows APIs and begins listening for changes when called for the
  // first time.
  void GetFontSmoothingSettings(bool* smoothing_enabled,
                                bool* cleartype_enabled);

 private:
  friend struct DefaultSingletonTraits<CachedFontSmoothingSettings>;

  CachedFontSmoothingSettings();
  virtual ~CachedFontSmoothingSettings();

  // Listener for WM_SETTINGCHANGE notifications.
  virtual void OnWndProc(HWND hwnd,
                         UINT message,
                         WPARAM wparam,
                         LPARAM lparam) OVERRIDE;

  // Queries the font settings from the system.
  void QueryFontSettings();

  // Indicates whether the MessagePumpObserver has been registered.
  bool observer_added_;

  // Indicates whether |smoothing_enabled_| and |cleartype_enabled_| are valid
  // or need to be re-queried from the system.
  bool need_to_query_settings_;

  // Indicates that font smoothing is enabled.
  bool smoothing_enabled_;

  // Indicates that the ClearType font smoothing is enabled.
  bool cleartype_enabled_;

  DISALLOW_COPY_AND_ASSIGN(CachedFontSmoothingSettings);
};

// static
CachedFontSmoothingSettings* CachedFontSmoothingSettings::GetInstance() {
  return Singleton<CachedFontSmoothingSettings>::get();
}

void CachedFontSmoothingSettings::GetFontSmoothingSettings(
    bool* smoothing_enabled,
    bool* cleartype_enabled) {
  // If cached settings are stale, query them from the OS.
  if (need_to_query_settings_) {
    QueryFontSettings();
    need_to_query_settings_ = false;
  }
  if (!observer_added_) {
    ui::SingletonHwnd::GetInstance()->AddObserver(this);
    observer_added_ = true;
  }
  *smoothing_enabled = smoothing_enabled_;
  *cleartype_enabled = cleartype_enabled_;
}

CachedFontSmoothingSettings::CachedFontSmoothingSettings()
    : observer_added_(false),
      need_to_query_settings_(true),
      smoothing_enabled_(false),
      cleartype_enabled_(false) {
}

CachedFontSmoothingSettings::~CachedFontSmoothingSettings() {
  // Can't remove the SingletonHwnd observer here since SingletonHwnd may have
  // been destroyed already (both singletons).
}

void CachedFontSmoothingSettings::OnWndProc(HWND hwnd,
                                            UINT message,
                                            WPARAM wparam,
                                            LPARAM lparam) {
  if (message == WM_SETTINGCHANGE)
    need_to_query_settings_ = true;
}

void CachedFontSmoothingSettings::QueryFontSettings() {
  smoothing_enabled_ = false;
  cleartype_enabled_ = false;

  BOOL enabled = false;
  if (SystemParametersInfo(SPI_GETFONTSMOOTHING, 0, &enabled, 0) && enabled) {
    smoothing_enabled_ = true;

    UINT smooth_type = 0;
    if (SystemParametersInfo(SPI_GETFONTSMOOTHINGTYPE, 0, &smooth_type, 0))
      cleartype_enabled_ = (smooth_type == FE_FONTSMOOTHINGCLEARTYPE);
  }
}

}  // namespace

namespace gfx {

void GetCachedFontSmoothingSettings(bool* smoothing_enabled,
                                    bool* cleartype_enabled) {
  CachedFontSmoothingSettings::GetInstance()->GetFontSmoothingSettings(
      smoothing_enabled,
      cleartype_enabled);
}

}  // namespace gfx