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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| ??? getCurrentAffichagePersonnalisation()
{
const std::pair<std::wstring, std::wstring> espace1{ L"", L" " };
// _
const std::pair<std::wstring, std::wstring> espace2{ L"", L" " };
// _
const std::pair <std::wstring, std::wstring> espace3{ L"", L" " };
auto& r_e_1_0 = espace1.first, & r_e_1_1 = espace1.second;
auto& r_e_2_0 = espace2.first, & r_e_2_1 = espace2.second;
auto& r_e_3_0 = espace3.first, & r_e_3_1 = espace3.second;
// h
std::vector<std::pair<std::wstring, std::wstring>> labelsHeure{ { L"h", L"h" }, // 0
{ L"H", L"h" }, // 1
{ L"heure", L"heures" }, // 2
{ L"Heure", L"Heures" }, // 3
{ L"HEURE", L"HEURES" } }; // 4
auto& r_lH_0{ labelsHeure[0] };
auto& r_lH_1{ labelsHeure[1] };
auto& r_lH_2{ labelsHeure[2] };
auto& r_lH_3{ labelsHeure[3] };
auto& r_lH_4{ labelsHeure[4] };
// min
std::vector<std::pair<std::wstring, std::wstring>> labelsMinute{ { L"min", L"min" }, // 0
{ L"Min", L"Min" }, // 1
{ L"MIN", L"MIN" }, // 2
{ L"minute", L"minutes" }, // 3
{ L"Minute", L"Minutes" }, // 4
{ L"MINUTE", L"MINUTES" } }; // 5
auto& r_lM_0{ labelsMinute[0] };
auto& r_lM_1{ labelsMinute[0] };
auto& r_lM_2{ labelsMinute[0] };
auto& r_lM_3{ labelsMinute[0] };
auto& r_lM_4{ labelsMinute[0] };
auto& r_lM_5{ labelsMinute[0] };
//
std::vector<std::wstring> keyColor{ L"\x1b[94;1m", L"\x1b[38;2;0;255;0m", L"\x1b[38;2;255;0;0m", L"\x1b[38;2;255;255;0m" };
std::wstring valuesColor{ L"\x1b[38;2;255;255;255m" }; // Blanc
//
//return { {r_e_1_1}, {r_e_2_1}, {r_e_3_1}, r_lH_2 };
return ???;
} |
Partager