summaryrefslogtreecommitdiffstats
path: root/ui/ncurses/nc-cui.h
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2014-06-24 13:18:03 +0800
committerJeremy Kerr <jk@ozlabs.org>2014-07-28 13:20:34 +0800
commit4e30f260106ac5f7007e213db1d1e54298393290 (patch)
tree1d215a8c2e5895844f486d8b371c731d3b34f83b /ui/ncurses/nc-cui.h
parent494988c501287e03da3becba5c03cbce7c3d9d20 (diff)
downloadtalos-petitboot-4e30f260106ac5f7007e213db1d1e54298393290.tar.gz
talos-petitboot-4e30f260106ac5f7007e213db1d1e54298393290.zip
ui/ncurses: Use a separate type for help text
Because it's initialised statically, help text won't be directly gettext()-ed. Instead, we need to perform the gettext translation at runtime, and pass untranslated strings into the help_screen code. Instead of trusting callers to pass the untranslated strings though, we encapsulate the help text data into struct help_text, so we know we have an unstranslated string. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'ui/ncurses/nc-cui.h')
-rw-r--r--ui/ncurses/nc-cui.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/ncurses/nc-cui.h b/ui/ncurses/nc-cui.h
index 8632806..e9e4d38 100644
--- a/ui/ncurses/nc-cui.h
+++ b/ui/ncurses/nc-cui.h
@@ -23,6 +23,7 @@
#include "ui/common/joystick.h"
#include "nc-menu.h"
+#include "nc-helpscreen.h"
struct cui_opt_data {
const char *name;
@@ -75,7 +76,8 @@ void cui_item_edit(struct pmenu_item *item);
void cui_item_new(struct pmenu *menu);
void cui_show_sysinfo(struct cui *cui);
void cui_show_config(struct cui *cui);
-void cui_show_help(struct cui *cui, const char *title, const char *text);
+void cui_show_help(struct cui *cui, const char *title,
+ const struct help_text *text);
int cui_send_config(struct cui *cui, struct config *config);
void cui_send_reinit(struct cui *cui);
OpenPOWER on IntegriCloud