blob: 23cf368d952d961ed09c582ac4f66515e0380543 (
plain)
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** \file
*
* Command Palette input placeholder hint data
*
* Authors:
* Sushant A A <sushant.co19@gmail.com>
*
* Copyright (C) 2021 Authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "actions-hint-data.h"
#include <glibmm/i18n.h>
std::vector<Glib::ustring>
InkActionHintData::get_actions()
{
// To get all the Placeholder hints
std::vector<Glib::ustring> action_names;
for (auto hint : data) {
action_names.emplace_back(hint.first);
}
return action_names;
}
Glib::ustring
InkActionHintData::get_tooltip_hint_for_action(Glib::ustring const &action_name, bool translated)
{
// Hint for a particular Action
Glib::ustring value;
auto search = data.find(action_name);
if (search != data.end()) {
value = translated ? _(search->second.c_str()) : search->second;
}
return value;
}
void
InkActionHintData::add_data(std::vector<std::vector<Glib::ustring>> &hint_data)
{
for (auto hint : hint_data) {
// Action Name , Hint
data.emplace(hint[0], hint[1]);
}
}
|