void SettingsNotification::init(){ WulforUtil *WU = WulforUtil::getInstance(); {//Text checkBox_TRAY->setChecked(WBGET(WB_TRAY_ENABLED)); checkBox_TRAY->setEnabled(QSystemTrayIcon::isSystemTrayAvailable()); checkBox_EXIT_CONFIRM->setChecked(WBGET(WB_EXIT_CONFIRM)); groupBox->setChecked(WBGET(WB_NOTIFY_ENABLED)); unsigned emap = static_cast<unsigned>(WIGET(WI_NOTIFY_EVENTMAP)); checkBox_NICKSAY->setChecked(emap & Notification::NICKSAY); checkBox_ANY->setChecked(emap & Notification::ANY); checkBox_PM->setChecked(emap & Notification::PM); checkBox_TRDONE->setChecked(emap & Notification::TRANSFER); checkBox_MWACTIVE->setChecked(WBGET(WB_NOTIFY_SHOW_ON_ACTIVE)); checkBox_MWVISIBLE->setChecked(WBGET(WB_NOTIFY_CH_ICON_ALWAYS)); comboBox->setCurrentIndex(WIGET(WI_NOTIFY_MODULE)); } {//Sound QString encoded = WSGET(WS_NOTIFY_SOUNDS); QString decoded = QByteArray::fromBase64(encoded.toAscii()); QStringList sounds = decoded.split("\n"); if (sounds.size() == 3){ lineEdit_SNDNICKSAY->setText(sounds.at(0)); lineEdit_SNDPM->setText(sounds.at(1)); lineEdit_SNDTRDONE->setText(sounds.at(2)); } groupBox_SND->setChecked(WBGET(WB_NOTIFY_SND_ENABLED)); groupBox_SNDCMD->setChecked(WBGET(WB_NOTIFY_SND_EXTERNAL)); lineEdit_SNDCMD->setText(WSGET(WS_NOTIFY_SND_CMD)); unsigned emap = static_cast<unsigned>(WIGET(WI_NOTIFY_SNDMAP)); groupBox_NICK->setChecked(emap & Notification::NICKSAY); groupBox_PM->setChecked(emap & Notification::PM); groupBox_TR->setChecked(emap & Notification::TRANSFER); } toolButton_BRWNICK->setIcon(WU->getPixmap(WulforUtil::eiFOLDER_BLUE)); toolButton_BRWPM->setIcon(WU->getPixmap(WulforUtil::eiFOLDER_BLUE)); toolButton_BRWTR->setIcon(WU->getPixmap(WulforUtil::eiFOLDER_BLUE)); connect(toolButton_BRWNICK, SIGNAL(clicked()), this, SLOT(slotBrowseFile())); connect(toolButton_BRWPM, SIGNAL(clicked()), this, SLOT(slotBrowseFile())); connect(toolButton_BRWTR, SIGNAL(clicked()), this, SLOT(slotBrowseFile())); connect(pushButton_TESTNICKSAY, SIGNAL(clicked()), this, SLOT(slotTest())); connect(pushButton_TESTPM, SIGNAL(clicked()), this, SLOT(slotTest())); connect(pushButton_TESTTR, SIGNAL(clicked()), this, SLOT(slotTest())); connect(groupBox_SNDCMD, SIGNAL(toggled(bool)), this, SLOT(slotToggleSndCmd(bool))); }
void SettingsNotification::init(){ WulforUtil *WU = WulforUtil::getInstance(); {//Text checkBox_EXIT_CONFIRM->setChecked(WBGET(WB_EXIT_CONFIRM)); groupBox->setChecked(WBGET(WB_NOTIFY_ENABLED)); unsigned emap = static_cast<unsigned>(WIGET(WI_NOTIFY_EVENTMAP)); checkBox_NICKSAY->setChecked(emap & Notification::NICKSAY); checkBox_ANY->setChecked(emap & Notification::ANY); checkBox_PM->setChecked(emap & Notification::PM); checkBox_TRDONE->setChecked(emap & Notification::TRANSFER); checkBox_FAVJOIN->setChecked(emap & Notification::FAVORITE); checkBox_MWACTIVE->setChecked(WBGET(WB_NOTIFY_SHOW_ON_ACTIVE)); checkBox_MWVISIBLE->setChecked(WBGET(WB_NOTIFY_SHOW_ON_VISIBLE)); checkBox_CHICON->setChecked(WBGET(WB_NOTIFY_CH_ICON_ALWAYS)); if (WBGET(WB_NOTIFY_SHOW_ON_ACTIVE)){ checkBox_MWVISIBLE->setChecked(true); checkBox_MWVISIBLE->setDisabled(true); } comboBox->setCurrentIndex(WIGET(WI_NOTIFY_MODULE)); } {//Sound QString encoded = WSGET(WS_NOTIFY_SOUNDS); QString decoded = QByteArray::fromBase64(encoded.toAscii()); QStringList sounds = decoded.split("\n"); if (sounds.size() == 4){ lineEdit_SNDNICKSAY->setText(sounds.at(0)); lineEdit_SNDPM->setText(sounds.at(1)); lineEdit_SNDTRDONE->setText(sounds.at(2)); lineEdit_FAV->setText(sounds.at(3)); } groupBox_SND->setChecked(WBGET(WB_NOTIFY_SND_ENABLED)); groupBox_SNDCMD->setChecked(WBGET(WB_NOTIFY_SND_EXTERNAL)); lineEdit_SNDCMD->setText(WSGET(WS_NOTIFY_SND_CMD)); unsigned emap = static_cast<unsigned>(WIGET(WI_NOTIFY_SNDMAP)); groupBox_NICK->setChecked(emap & Notification::NICKSAY); groupBox_PM->setChecked(emap & Notification::PM); groupBox_TR->setChecked(emap & Notification::TRANSFER); groupBox_FAV->setChecked(emap & Notification::FAVORITE); checkBox_ACTIVEPM->setChecked(WBGET("notification/play-sound-with-active-pm", true)); } toolButton_BRWNICK->setIcon(WU->getPixmap(WulforUtil::eiFOLDER_BLUE)); toolButton_BRWPM->setIcon(WU->getPixmap(WulforUtil::eiFOLDER_BLUE)); toolButton_BRWTR->setIcon(WU->getPixmap(WulforUtil::eiFOLDER_BLUE)); toolButton_BRWFAV->setIcon(WU->getPixmap(WulforUtil::eiFOLDER_BLUE)); connect(toolButton_BRWNICK, SIGNAL(clicked()), this, SLOT(slotBrowseFile())); connect(toolButton_BRWPM, SIGNAL(clicked()), this, SLOT(slotBrowseFile())); connect(toolButton_BRWTR, SIGNAL(clicked()), this, SLOT(slotBrowseFile())); connect(toolButton_BRWFAV, SIGNAL(clicked()), this, SLOT(slotBrowseFile())); connect(pushButton_TESTNICKSAY, SIGNAL(clicked()), this, SLOT(slotTest())); connect(pushButton_TESTPM, SIGNAL(clicked()), this, SLOT(slotTest())); connect(pushButton_TESTTR, SIGNAL(clicked()), this, SLOT(slotTest())); connect(pushButton_TESTFAV, SIGNAL(clicked()), this, SLOT(slotTest())); connect(groupBox_SNDCMD, SIGNAL(toggled(bool)), this, SLOT(slotToggleSndCmd(bool))); #ifndef DBUS_NOTIFY frame->setVisible(false); #endif }