CHintBox/CMsgBox: Add default icon for header (NEUTRINO_ICON_INFO)

This commit is contained in:
M. Liebmann
2016-11-27 21:11:00 +01:00
parent 983d24cd51
commit 1d3a047f6b
2 changed files with 11 additions and 10 deletions

View File

@@ -125,7 +125,7 @@ class CMsgBox : public CHintBox
* @param[in] Title
* @li optional: exepts type const char*, default = NULL, this causes default title "Information"
* @param[in] Icon
* @li optional: exepts type const char*, defines the icon name on the left side of titlebar, default = NULL (non Icon)
* @li optional: exepts type const char*, defines the icon name on the left side of titlebar, default = DEFAULT_HEADER_ICON
* @param[in] Picon
* @li optional: exepts type const char*, defines the picon name on the left side of message text, default = NULL (non Icon)
* @param[in] Width
@@ -165,7 +165,7 @@ class CMsgBox : public CHintBox
*/
CMsgBox(const char* Text,
const char* Title = NULL,
const char* Icon = NULL,
const char* Icon = DEFAULT_HEADER_ICON,
const char* Picon = NULL,
const int& Width = MSGBOX_MIN_WIDTH,
const int& Height = MSGBOX_MIN_HEIGHT,
@@ -179,7 +179,7 @@ class CMsgBox : public CHintBox
* @param[in] Title
* @li optional: exepts type neutrino_locale_t with locale entry from /system/locals.h default = NONEXISTANT_LOCALE, this causes default title "Information"
* @param[in] Icon
* @li optional: exepts type const char*, defines the icon name on the left side of titlebar, default = NULL (non Icon)
* @li optional: exepts type const char*, defines the icon name on the left side of titlebar, default = DEFAULT_HEADER_ICON
* @param[in] Picon
* @li optional: exepts type const char*, defines the picon name on the left side of message text, default = NULL (non Icon)
* @param[in] Width
@@ -219,7 +219,7 @@ class CMsgBox : public CHintBox
*/
CMsgBox(const char* Text,
const neutrino_locale_t locale_Title = NONEXISTANT_LOCALE,
const char* Icon = NULL,
const char* Icon = DEFAULT_HEADER_ICON,
const char* Picon = NULL,
const int& Width = MSGBOX_MIN_WIDTH,
const int& Height = MSGBOX_MIN_HEIGHT,