mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
// Copyright 2013 The Flutter 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 "flutter/shell/platform/windows/system_utils.h"
|
|
|
|
#include <Windows.h>
|
|
|
|
#include <sstream>
|
|
|
|
#include "flutter/shell/platform/windows/string_conversion.h"
|
|
|
|
namespace flutter {
|
|
|
|
std::vector<LanguageInfo> GetPreferredLanguageInfo() {
|
|
std::vector<std::wstring> languages = GetPreferredLanguages();
|
|
std::vector<LanguageInfo> language_info;
|
|
// TODO populate via WinRT
|
|
return language_info;
|
|
}
|
|
|
|
std::vector<std::wstring> GetPreferredLanguages() {
|
|
std::vector<std::wstring> languages;
|
|
// TODO populate via WinRT
|
|
return languages;
|
|
}
|
|
|
|
LanguageInfo ParseLanguageName(std::wstring language_name) {
|
|
LanguageInfo info;
|
|
|
|
// TODO populate via WinRT
|
|
return info;
|
|
}
|
|
|
|
std::wstring GetUserTimeFormat() {
|
|
// Rather than do the call-allocate-call-free dance, just use a sufficiently
|
|
// large buffer to handle any reasonable time format string.
|
|
const int kBufferSize = 100;
|
|
wchar_t buffer[kBufferSize];
|
|
if (::GetLocaleInfoEx(LOCALE_NAME_USER_DEFAULT, LOCALE_STIMEFORMAT, buffer,
|
|
kBufferSize) == 0) {
|
|
return std::wstring();
|
|
}
|
|
return std::wstring(buffer, kBufferSize);
|
|
}
|
|
|
|
bool Prefer24HourTime(std::wstring time_format) {
|
|
return time_format.find(L"H") != std::wstring::npos;
|
|
}
|
|
|
|
} // namespace flutter
|