klettres
timer.cpp
Go to the documentation of this file.00001 /*************************************************************************** 00002 * Copyright (C) 2005 by Michael Goettsche * 00003 * michael.goettsche@kdemail.net * 00004 * Copyright (C) 2006 by Anne-Marie Mahfouf * 00005 * annemarie.mahfouf@free.fr * 00006 * * 00007 * This program is free software; you can redistribute it and/or modify * 00008 * it under the terms of the GNU General Public License as published by * 00009 * the Free Software Foundation; either version 2 of the License, or * 00010 * (at your option) any later version. * 00011 * * 00012 * This program is distributed in the hope that it will be useful, * 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00015 * GNU General Public License for more details. * 00016 * * 00017 * You should have received a copy of the GNU General Public License * 00018 * along with this program; if not, write to the * 00019 * Free Software Foundation, Inc., * 00020 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * 00021 ***************************************************************************/ 00022 00023 #include "timer.h" 00024 00025 00026 #include <KLocale> 00027 00028 #include "prefs.h" 00029 00030 Timer::Timer() 00031 :QWidget() 00032 { 00033 ui_timer.setupUi(this); 00034 ui_timer.timeGrownLabel->setText(QString::number(Prefs::grownTimer()) + ' ' + i18n("tenths of second")); 00035 ui_timer.timeKidLabel->setText(QString::number(Prefs::kidTimer()) + ' ' + i18n("tenths of second")); 00036 connect(ui_timer.kcfg_GrownTimer, SIGNAL(valueChanged(int)), this, SLOT(sliderValueChanged())); 00037 connect(ui_timer.kcfg_KidTimer, SIGNAL(valueChanged(int)), this, SLOT(sliderValueChanged())); 00038 } 00039 00040 00041 void Timer::sliderValueChanged() 00042 { 00043 ui_timer.timeKidLabel->setText(QString::number(ui_timer.kcfg_KidTimer->value()) + ' ' + i18n("tenths of second")); 00044 ui_timer.timeGrownLabel->setText(QString::number(ui_timer.kcfg_GrownTimer->value()) + ' ' + i18n("tenths of second")); 00045 } 00046 00047 00048 #include "timer.moc"
KDE 4.0 API Reference