本文整理汇总了C++中Locale::queryString方法的典型用法代码示例。如果您正苦于以下问题:C++ Locale::queryString方法的具体用法?C++ Locale::queryString怎么用?C++ Locale::queryString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Locale
的用法示例。
在下文中一共展示了Locale::queryString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: fileListNameForWidth
String RenderTheme::fileListNameForWidth(Locale& locale, const FileList* fileList, const Font& font, int width) const
{
if (width <= 0)
return String();
String string;
if (fileList->isEmpty()) {
string = locale.queryString(blink::WebLocalizedString::FileButtonNoFileSelectedLabel);
} else if (fileList->length() == 1) {
string = fileList->item(0)->name();
} else {
// FIXME: Localization of fileList->length().
return StringTruncator::rightTruncate(locale.queryString(blink::WebLocalizedString::MultipleFileUploadText, String::number(fileList->length())), width, font, StringTruncator::EnableRoundingHacks);
}
return StringTruncator::centerTruncate(string, width, font, StringTruncator::EnableRoundingHacks);
}
示例2: getSupportedKeySizes
void getSupportedKeySizes(Locale& locale, Vector<String>& sizes)
{
sizes.resize(2);
sizes[0] = locale.queryString(blink::WebLocalizedString::KeygenMenuHighGradeKeySize);
sizes[1] = locale.queryString(blink::WebLocalizedString::KeygenMenuMediumGradeKeySize);
}