summaryrefslogtreecommitdiff
path: root/chromium/ui/gfx/text_utils.h
blob: 42bce4397316966d33565ff84408996ece8cec87 (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
// Copyright 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.

#ifndef UI_GFX_TEXT_UTILS_H_
#define UI_GFX_TEXT_UTILS_H_

#include "base/strings/string16.h"
#include "ui/base/ui_export.h"

namespace gfx {

// Strip the accelerator char (typically '&') from a menu string.  A double
// accelerator char ('&&') will be converted to a single char.  The out params
// |accelerated_char_pos| and |accelerated_char_span| will be set to the index
// and span of the last accelerated character, respectively, or -1 and 0 if
// there was none.
UI_EXPORT base::string16 RemoveAcceleratorChar(const base::string16& s,
                                               base::char16 accelerator_char,
                                               int* accelerated_char_pos,
                                               int* accelerated_char_span);

}  // namespace gfx

#endif  // UI_GFX_TEXT_UTILS_H_