Index: /s10k/CommonUtils/LICENSE
===================================================================
--- /s10k/CommonUtils/LICENSE	(revision 1108)
+++ /s10k/CommonUtils/LICENSE	(revision 1109)
@@ -1,5 +1,5 @@
 MIT License
 
-Copyright (c) 2017 random-guy
+Copyright (C) 2017 - 2018 Fábio Bento (fabiobento512)
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
Index: /s10k/CommonUtils/README.md
===================================================================
--- /s10k/CommonUtils/README.md	(revision 1108)
+++ /s10k/CommonUtils/README.md	(revision 1109)
@@ -1,2 +1,2 @@
 # CommonUtils
-Common C++ Qt Utils for random-guy projects
+Common C++ Qt Utils for fabiobento512 projects
Index: /s10k/CommonUtils/util.cpp
===================================================================
--- /s10k/CommonUtils/util.cpp	(revision 1108)
+++ /s10k/CommonUtils/util.cpp	(revision 1109)
@@ -1,4 +1,4 @@
 /**
- * Copyright (C) 2017 - Fábio Bento (random-guy)
+ * Copyright (C) 2017 - 2018 Fábio Bento (fabiobento512)
  *
  * This library is distributed under the MIT License. See notice at the end
@@ -266,6 +266,9 @@
 namespace Dialogs {
 
-void showInfo(const QString &message){
+void showInfo(const QString &message, const bool richText){
     QMessageBox msgBox;
+	if(richText){
+		msgBox.setTextFormat(Qt::RichText);
+	}
     msgBox.setIcon(QMessageBox::Information);
     msgBox.setText(message);
@@ -273,14 +276,9 @@
 }
 
-void showRichInfo(const QString &message){
+void showWarning(const QString &message, const bool richText){
     QMessageBox msgBox;
-    msgBox.setTextFormat(Qt::RichText);
-    msgBox.setIcon(QMessageBox::Information);
-    msgBox.setText(message);
-    msgBox.exec();
-}
-
-void showWarning(const QString &message){
-    QMessageBox msgBox;
+	if(richText){
+		msgBox.setTextFormat(Qt::RichText);
+	}
     msgBox.setIcon(QMessageBox::Warning);
     msgBox.setText(message);
@@ -288,13 +286,9 @@
 }
 
-void showError(const QString &message){
+void showError(const QString &message, const bool richText){
     QMessageBox msgBox;
-    msgBox.setIcon(QMessageBox::Critical);
-    msgBox.setText(message);
-    msgBox.exec();
-}
-
-void showRichError(const QString &message){
-    QMessageBox msgBox;
+	if(richText){
+		msgBox.setTextFormat(Qt::RichText);
+	}
     msgBox.setIcon(QMessageBox::Critical);
     msgBox.setText(message);
@@ -538,4 +532,13 @@
 namespace StatusBar {
 
+void showInfo(QStatusBar * const statusBar, const QString &message){
+
+    QPalette myPalete = QPalette();
+    myPalete.setColor( QPalette::WindowText, QColor(0,38,255));
+    statusBar->setPalette( myPalete );
+    statusBar->showMessage(message,10000); //display by 10 seconds
+
+}
+
 void showError(QStatusBar * const statusBar, const QString &message){
 
@@ -563,5 +566,5 @@
 
 /**
- * Copyright (c) 2017 - Fábio Bento (random-guy)
+ * Copyright (c) 2017 - 2018 Fábio Bento (fabiobento512)
  *
  * Permission is hereby granted, free of charge, to any person
Index: /s10k/CommonUtils/util.h
===================================================================
--- /s10k/CommonUtils/util.h	(revision 1108)
+++ /s10k/CommonUtils/util.h	(revision 1109)
@@ -1,4 +1,4 @@
 /**
- * Copyright (C) 2017 - Fábio Bento (random-guy)
+ * Copyright (C) 2017 - 2018 Fábio Bento (fabiobento512)
  *
  * This library is distributed under the MIT License. See notice at the end
@@ -96,13 +96,9 @@
 namespace Dialogs {
 
-void showInfo(const QString &message);
+void showInfo(const QString &message, const bool richText = false);
 
-void showRichInfo(const QString &message);
+void showWarning(const QString &message, const bool richText = false);
 
-void showWarning(const QString &message);
-
-void showError(const QString &message);
-
-void showRichError(const QString &message);
+void showError(const QString &message, const bool richText = false);
 
 bool showQuestion(QWidget * parent, QString message, QMessageBox::StandardButton standardButton=QMessageBox::NoButton);
@@ -151,4 +147,5 @@
 namespace StatusBar {
 
+void showInfo(QStatusBar * const statusBar, const QString &message);
 void showError(QStatusBar * const statusBar, const QString &message);
 void showSuccess(QStatusBar * const  statusBar,const QString &message);
@@ -162,5 +159,5 @@
 
 /**
- * Copyright (c) 2017 - Fábio Bento (random-guy)
+ * Copyright (c) 2017 - 2018 Fábio Bento (fabiobento512)
  *
  * Permission is hereby granted, free of charge, to any person
