diff options
Diffstat (limited to 'indra/newview/llviewerhelp.h')
-rw-r--r-- | indra/newview/llviewerhelp.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/indra/newview/llviewerhelp.h b/indra/newview/llviewerhelp.h index 17aab6f239..07971a593e 100644 --- a/indra/newview/llviewerhelp.h +++ b/indra/newview/llviewerhelp.h @@ -51,11 +51,17 @@ class LLViewerHelp : public LLHelp, public LLSingleton<LLViewerHelp> /// display the specified help topic in the help viewer /*virtual*/ void showTopic(const std::string &topic); + // return topic derived from viewer UI focus, else default topic + std::string getTopicFromFocus(); + /// return default (fallback) topic name suitable for showTopic() /*virtual*/ std::string defaultTopic(); - // return topic derived from viewer UI focus, else default topic - std::string getTopicFromFocus(); + // return topic to use before the user logs in + /*virtual*/ std::string preLoginTopic(); + + // return topic to use for the top-level help, invoked by F1 + /*virtual*/ std::string f1HelpTopic(); private: static void showHelp(); // make sure help UI is visible & raised |