Chromium Code Reviews| Index: ui/gfx/decorated_text_mac.mm |
| diff --git a/ui/gfx/decorated_text_mac.mm b/ui/gfx/decorated_text_mac.mm |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..bfeb973cf84a5c67eed5794105ce1ae10a05f152 |
| --- /dev/null |
| +++ b/ui/gfx/decorated_text_mac.mm |
| @@ -0,0 +1,51 @@ |
| +// Copyright 2016 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/decorated_text_mac.h" |
|
tapted
2016/12/21 11:20:27
nit: import
spqchan
2016/12/21 22:00:13
Done.
|
| + |
| +#import <Cocoa/Cocoa.h> |
| + |
| +#import "base/mac/scoped_nsobject.h" |
| +#include "base/strings/sys_string_conversions.h" |
| +#include "ui/gfx/decorated_text.h" |
| + |
| +namespace gfx { |
| + |
| +NSAttributedString* GetAttributedStringFromDecoratedText( |
| + const DecoratedText& decorated_text) { |
| + base::scoped_nsobject<NSMutableAttributedString> str( |
| + [[NSMutableAttributedString alloc] |
| + initWithString:base::SysUTF16ToNSString(decorated_text.text)]); |
| + [str beginEditing]; |
| + |
| + NSValue* const line_style = |
| + @(NSUnderlineStyleSingle | NSUnderlinePatternSolid); |
| + |
| + for (const auto& attribute : decorated_text.attributes) { |
| + DCHECK(!attribute.range.is_reversed()); |
| + DCHECK_LE(attribute.range.end(), [str length]); |
| + |
| + NSMutableDictionary* attrs = [NSMutableDictionary dictionary]; |
| + NSRange range = attribute.range.ToNSRange(); |
| + |
| + if (attribute.font.GetNativeFont()) |
| + attrs[NSFontAttributeName] = attribute.font.GetNativeFont(); |
| + |
| + // NSFont does not have underline as an attribute. Hence handle it |
| + // separately. |
| + const bool underline = attribute.font.GetStyle() & gfx::Font::UNDERLINE; |
| + if (underline) |
| + attrs[NSUnderlineStyleAttributeName] = line_style; |
| + |
| + if (attribute.strike) |
| + attrs[NSStrikethroughStyleAttributeName] = line_style; |
| + |
| + [str setAttributes:attrs range:range]; |
| + } |
| + |
| + [str endEditing]; |
| + return str.autorelease(); |
| +} |
| + |
| +} // namespace gfx |