// SPDX-License-Identifier: GPL-2.0-or-later /** \file * * Command Palette input placeholder hint data * * Authors: * Sushant A A * * Copyright (C) 2021 Authors * * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "actions-hint-data.h" #include std::vector InkActionHintData::get_actions() { // To get all the Placeholder hints std::vector 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> &hint_data) { for (auto hint : hint_data) { // Action Name , Hint data.emplace(hint[0], hint[1]); } }