/* BEGIN_COMMON_COPYRIGHT_HEADER * (c)LGPL2+ * * LXDE-Qt - a lightweight, Qt based, desktop toolset * http://razor-qt.org * * Copyright: 2010-2011 Razor team * Authors: * Petr Vanek * * This program or library is free software; you can redistribute it * and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General * Public License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA * * END_COMMON_COPYRIGHT_HEADER */ #include #include "basicsettings.h" #include "mainwindow.h" BasicSettings::BasicSettings(LxQt::Settings* settings, QWidget *parent) : QWidget(parent), mSettings(settings) { setupUi(this); restoreSettings(); connect(topLeftButton, SIGNAL(clicked()), this, SLOT(updateNotification())); connect(topRightButton, SIGNAL(clicked()), this, SLOT(updateNotification())); connect(bottomRightButton, SIGNAL(clicked()), this, SLOT(updateNotification())); connect(bottomLeftButton, SIGNAL(clicked()), this, SLOT(updateNotification())); LxQt::Notification serverTest; QString serverName = serverTest.serverInfo().name; if (serverName != "lxqt-notificationd") { if (serverName.isEmpty()) { warningLabel->setText(tr( "Warning: No notifications daemon is running.\n" "A fallback will be used.")); } else { warningLabel->setText(tr( "Warning: A third-party notifications daemon (%1) is running.\n" "These settings won't have any effect on it!" ).arg(serverName)); } } } BasicSettings::~BasicSettings() { } void BasicSettings::restoreSettings() { QString placement = mSettings->value("placement", "bottom-right").toString().toLower(); if (placement == "bottom-right") bottomRightButton->setChecked(true); else if (placement == "bottom-left") bottomLeftButton->setChecked(true); else if (placement == "top-right") topRightButton->setChecked(true); else if (placement == "top-left") topLeftButton->setChecked(true); else bottomRightButton->setChecked(true); } void BasicSettings::updateNotification() { if (bottomRightButton->isChecked()) mSettings->setValue("placement", "bottom-right"); else if (bottomLeftButton->isChecked()) mSettings->setValue("placement", "bottom-left"); else if (topRightButton->isChecked()) mSettings->setValue("placement", "top-right"); else if (topLeftButton->isChecked()) mSettings->setValue("placement", "top-left"); LxQt::Notification::notify(//"lxqt-config-notificationd", tr("Notification demo"), tr("This is a test notification.\n" "All notifications will now appear here on LXQt."), "lxqt-logo.png"); }