refs #680, call help URL from menu

* added central functionality in CGuiApplication
* function in global setup for URL
This commit is contained in:
Klaus Basan
2016-06-21 02:29:28 +02:00
parent 22162970fd
commit 83d0234d3c
6 changed files with 30 additions and 0 deletions

View File

@@ -57,6 +57,11 @@ namespace BlackCore
return getDbRootDirectoryUrl().withAppendedPath("/page/index.php");
}
CUrl CGlobalSetup::getHelpPageUrl() const
{
return getDbRootDirectoryUrl().withAppendedPath("/page/index.php");
}
CUrl CGlobalSetup::getDbLoginServiceUrl() const
{
return getDbRootDirectoryUrl().

View File

@@ -84,6 +84,9 @@ namespace BlackCore
//! Home page url
BlackMisc::Network::CUrl getDbHomePageUrl() const;
//! Help page URL
BlackMisc::Network::CUrl getHelpPageUrl() const;
//! Login service
BlackMisc::Network::CUrl getDbLoginServiceUrl() const;