summaryrefslogtreecommitdiffstats
path: root/kaffeine/src/input/dvb/crontimer.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-10 00:59:09 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-10 00:59:09 +0000
commit7f66b9e8ba186fb14a2db598a87dfa8de7b5a47b (patch)
treeb5e07812e82f00c780d2c035dca102b8e364f447 /kaffeine/src/input/dvb/crontimer.cpp
downloadkaffeine-7f66b9e8ba186fb14a2db598a87dfa8de7b5a47b.tar.gz
kaffeine-7f66b9e8ba186fb14a2db598a87dfa8de7b5a47b.zip
Added old abandoned KDE3 version of Kaffeine
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kaffeine@1088031 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kaffeine/src/input/dvb/crontimer.cpp')
-rw-r--r--kaffeine/src/input/dvb/crontimer.cpp109
1 files changed, 109 insertions, 0 deletions
diff --git a/kaffeine/src/input/dvb/crontimer.cpp b/kaffeine/src/input/dvb/crontimer.cpp
new file mode 100644
index 0000000..00078ea
--- /dev/null
+++ b/kaffeine/src/input/dvb/crontimer.cpp
@@ -0,0 +1,109 @@
+/*
+ * crontimer.cpp
+ *
+ * Copyright (C) 2005 Christophe Thommeret <hftom@free.fr>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#include <kmessagebox.h>
+#include <klocale.h>
+#include <kiconloader.h>
+#include <kpushbutton.h>
+
+#include "crontimer.h"
+
+CronTimer::CronTimer( int m, QWidget *parent ) : CronTimerUI( parent )
+{
+ connect( cronBtnGrp, SIGNAL(clicked(int)), this, SLOT(modeSelected(int)) );
+ mode = m;
+ switch ( mode ) {
+ case Noone : cronBtnGrp->setButton( 0 ); break;
+ case Daily : cronBtnGrp->setButton( 1 ); break;
+ case Weekly : cronBtnGrp->setButton( 2 ); break;
+ case Monthly : cronBtnGrp->setButton( 3 ); break;
+ default : cronBtnGrp->setButton( 4 );
+ }
+ if ( mode>Monthly ) {
+ daysGb->setEnabled( true );
+ if ( mode&Monday ) monCb->setChecked( true );
+ if ( mode&Tuesday ) tueCb->setChecked( true );
+ if ( mode&Wednesday ) wedCb->setChecked( true );
+ if ( mode&Thursday ) thuCb->setChecked( true );
+ if ( mode&Friday ) friCb->setChecked( true );
+ if ( mode&Saturday ) satCb->setChecked( true );
+ if ( mode&Sunday ) sunCb->setChecked( true );
+ }
+ else
+ daysGb->setEnabled( false );
+
+ KIconLoader *icon = new KIconLoader();
+ cancelBtn->setGuiItem( KGuiItem(i18n("Cancel"), icon->loadIconSet("cancel", KIcon::Small) ) );
+ okBtn->setGuiItem( KGuiItem(i18n("OK"), icon->loadIconSet("ok", KIcon::Small) ) );
+ delete icon;
+}
+
+
+
+CronTimer::~CronTimer()
+{
+}
+
+
+
+int CronTimer::getMode() const
+{
+ return mode;
+}
+
+
+
+void CronTimer::modeSelected( int id )
+{
+ if ( id==4 )
+ daysGb->setEnabled( true );
+ else
+ daysGb->setEnabled( false );
+}
+
+
+
+void CronTimer::accept()
+{
+ switch ( cronBtnGrp->selectedId() ) {
+ case 0 : mode = Noone; break;
+ case 1 : mode = Daily; break;
+ case 2 : mode = Weekly; break;
+ case 3 : mode = Monthly; break;
+ case 4 : {
+ mode = Custom;
+ if ( monCb->isChecked() ) mode+=Monday;
+ if ( tueCb->isChecked() ) mode+=Tuesday;
+ if ( wedCb->isChecked() ) mode+=Wednesday;
+ if ( thuCb->isChecked() ) mode+=Thursday;
+ if ( friCb->isChecked() ) mode+=Friday;
+ if ( satCb->isChecked() ) mode+=Saturday;
+ if ( sunCb->isChecked() ) mode+=Sunday;
+ if ( mode<Monday ) {
+ KMessageBox::sorry( this, i18n("You have to choose some days.") );
+ return;
+ }
+ }
+ }
+
+ done( Accepted );
+}
+
+#include "crontimer.moc"