1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_BASE_WEBUI_WEB_UI_UTIL_H_
6 #define UI_BASE_WEBUI_WEB_UI_UTIL_H_
10 #include "base/strings/string_piece.h"
11 #include "base/values.h"
12 #include "ui/base/ui_base_export.h"
13 #include "ui/base/window_open_disposition.h"
20 // Convenience routine to convert SkBitmap object to data url
21 // so that it can be used in WebUI.
22 UI_BASE_EXPORT
std::string
GetBitmapDataUrl(const SkBitmap
& bitmap
);
24 // Convenience routine to get data url that corresponds to given
25 // resource_id as a bitmap. This function does not check if the
26 // resource for the |resource_id| is a bitmap, therefore it is the
27 // caller's responsibility to make sure the resource is indeed a
28 // bitmap. Returns empty string if a resource does not exist for given
30 UI_BASE_EXPORT
std::string
GetBitmapDataUrlFromResource(int resource_id
);
32 // Extracts a disposition from click event arguments. |args| should contain
33 // an integer button and booleans alt key, ctrl key, meta key, and shift key
34 // (in that order), starting at |start_index|.
35 UI_BASE_EXPORT WindowOpenDisposition
36 GetDispositionFromClick(const base::ListValue
* args
, int start_index
);
38 // Pares a formatted scale factor string into float and sets to |scale_factor|.
39 UI_BASE_EXPORT
bool ParseScaleFactor(const base::StringPiece
& identifier
,
42 // Parses a URL containing some path @{scale}x. If it does not contain a scale
43 // factor then the default scale factor is returned.
44 UI_BASE_EXPORT
void ParsePathAndScale(const GURL
& url
,
48 // Helper function to set some default values (e.g., font family, size,
49 // language, and text direction) into the given dictionary. Requires an
50 // application locale (i.e. g_browser_process->GetApplicationLocale()).
51 UI_BASE_EXPORT
void SetLoadTimeDataDefaults(
52 const std::string
& app_locale
,
53 base::DictionaryValue
* localized_strings
);
55 // Get a CSS declaration for common text styles for all of Web UI.
56 UI_BASE_EXPORT
std::string
GetWebUiCssTextDefaults();
58 // Appends the CSS declaration returned by GetWebUiCssTextDefaults() as an
60 UI_BASE_EXPORT
void AppendWebUiCssTextDefaults(std::string
* html
);
62 // Get some common font styles for all of WebUI.
63 UI_BASE_EXPORT
std::string
GetFontFamily();
64 UI_BASE_EXPORT
std::string
GetFontSize();
65 UI_BASE_EXPORT
std::string
GetTextDirection();
69 #endif // UI_BASE_WEBUI_WEB_UI_UTIL_H_