mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Sends the flutter/settings update message to the engine after starting it. For now values other than 24-hour time preference are hard-coded, but dark mode support can be added later. Fixes https://github.com/flutter/flutter/issues/65590
43 lines
1.3 KiB
C++
43 lines
1.3 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.
|
|
|
|
// This file contains utilities for system-level information/settings.
|
|
|
|
#ifndef FLUTTER_SHELL_PLATFORM_WINDOWS_SYSTEM_UTILS_H_
|
|
#define FLUTTER_SHELL_PLATFORM_WINDOWS_SYSTEM_UTILS_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace flutter {
|
|
|
|
// Components of a system language/locale.
|
|
struct LanguageInfo {
|
|
std::string language;
|
|
std::string region;
|
|
std::string script;
|
|
};
|
|
|
|
// Returns the list of user-preferred languages, in preference order,
|
|
// parsed into LanguageInfo structures.
|
|
std::vector<LanguageInfo> GetPreferredLanguageInfo();
|
|
|
|
// Returns the list of user-preferred languages, in preference order.
|
|
// The language names are as described at:
|
|
// https://docs.microsoft.com/en-us/windows/win32/intl/language-names
|
|
std::vector<std::wstring> GetPreferredLanguages();
|
|
|
|
// Parses a Windows language name into its components.
|
|
LanguageInfo ParseLanguageName(std::wstring language_name);
|
|
|
|
// Returns the user's system time format string.
|
|
std::wstring GetUserTimeFormat();
|
|
|
|
// Returns true if the time_format is set to use 24 hour time.
|
|
bool Prefer24HourTime(std::wstring time_format);
|
|
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_SHELL_PLATFORM_WINDOWS_SYSTEM_UTILS_H_
|