refs #275, own info window component

* added to CVariant for value object
* signal in text message to indicate overlay messages
* info window component (currently not runtme aware, maybe changed in future)
* removed old window, adjusted GUI
This commit is contained in:
Klaus Basan
2014-06-17 17:59:14 +02:00
parent ab77f19544
commit 0547b2847e
13 changed files with 435 additions and 239 deletions

View File

@@ -81,7 +81,7 @@ namespace BlackGui
}
else
{
emit this->displayOverlayInfo(CStatusMessage::getInfoMessage("SELCAL received", CStatusMessage::TypeGui));
emit this->displayInInfoWindow(CStatusMessage::getInfoMessage("SELCAL received", CStatusMessage::TypeGui).toCVariant(), 3 * 1000);
}
}
continue; // not displayed
@@ -127,7 +127,7 @@ namespace BlackGui
{
// if the channel is selected, do nothing
if (!this->isCorrespondingTextMessageTabSelected(message))
emit this->displayOverlayInfo(message.asStatusMessage(true, true, "\t"));
emit this->displayInInfoWindow(message.toCVariant(), 5 * 1000);
}
}
}