summaryrefslogtreecommitdiffstats
path: root/src/actions/actions-hint-data.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:24:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:24:48 +0000
commitcca66b9ec4e494c1d919bff0f71a820d8afab1fa (patch)
tree146f39ded1c938019e1ed42d30923c2ac9e86789 /src/actions/actions-hint-data.cpp
parentInitial commit. (diff)
downloadinkscape-upstream.tar.xz
inkscape-upstream.zip
Adding upstream version 1.2.2.upstream/1.2.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/actions/actions-hint-data.cpp')
-rw-r--r--src/actions/actions-hint-data.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/actions/actions-hint-data.cpp b/src/actions/actions-hint-data.cpp
new file mode 100644
index 0000000..23cf368
--- /dev/null
+++ b/src/actions/actions-hint-data.cpp
@@ -0,0 +1,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]);
+ }
+} \ No newline at end of file