refs #258, notification sounds for voice room joined/left

* settings for notification sounds
* wav files
* changes in GUI
This commit is contained in:
Klaus Basan
2014-06-05 02:19:00 +02:00
parent 02bb054f5a
commit 1b804ca8d7
9 changed files with 292 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ namespace BlackMisc
{
namespace Settings
{
//! \brief Helper / utility methods for settings
//! Helper / utility methods for settings
class CSettingUtilities
{
private:
@@ -43,6 +43,20 @@ namespace BlackMisc
return cmd;
}
//! Command Set boolean value true
static const QString &CmdSetTrue()
{
static const QString cmd("set:true");
return cmd;
}
//! Command Set boolean value false
static const QString &CmdSetFalse()
{
static const QString cmd("set:false");
return cmd;
}
//! \brief Wrong path message
static BlackMisc::CStatusMessage wrongPathMessage(const QString &path = "");