From 3978688cbe832e2b72c8048b96c9a7c43ce11bc9 Mon Sep 17 00:00:00 2001 From: zautrix Date: Mon, 25 Apr 2005 13:36:57 +0000 Subject: alarm fix --- (limited to 'kalarmd') diff --git a/kalarmd/simplealarmdaemonimpl.cpp b/kalarmd/simplealarmdaemonimpl.cpp index c747dfd..37e7d0d 100644 --- a/kalarmd/simplealarmdaemonimpl.cpp +++ b/kalarmd/simplealarmdaemonimpl.cpp @@ -56,8 +56,8 @@ SimpleAlarmDaemonImpl::SimpleAlarmDaemonImpl( QWidget *parent ) mPopUp->insertItem( "What's Next?", this, SLOT ( showWN() ) ); mPopUp->insertItem( "Next Days!", this, SLOT ( showKO() ) ); mPopUp->insertSeparator(); - //mPopUp->insertItem( "Todo List", this, SLOT ( showTodo() ) ); - //mPopUp->insertSeparator(); + mPopUp->insertItem( "Todo List", this, SLOT ( showTodo() ) ); + mPopUp->insertSeparator(); mPopUp->insertItem( "Addresses", this, SLOT ( showAdd() ) ); mPopUp->insertSeparator(); mPopUp->insertItem( "Edit Journal", this, SLOT ( writeJournal() ) ); @@ -109,13 +109,15 @@ SimpleAlarmDaemonImpl::SimpleAlarmDaemonImpl( QWidget *parent ) mBeepPopUp->insertItem( "3", 3 ); mBeepPopUp->insertItem( "1", 1 ); mBeepPopUp->insertItem( "Off", 0 ); + mBeepPopUp->insertSeparator(); + mBeepPopUp->insertItem( "Simulate", 1000 ); mBeepPopUp->setCheckable( true ); mPopUp->insertSeparator(); mPopUp->insertItem( "Play beeps", mBeepPopUp ); mPopUp->insertSeparator(); mPopUp->insertItem( "Timer", mTimerPopUp ); - mPopUp->insertSeparator(); - mPopUp->insertItem( "Simulate", this, SLOT ( simulate() ) ); + //mPopUp->insertSeparator(); + //mPopUp->insertItem( "Simulate", this, SLOT ( simulate() ) ); mPopUp->resize( mPopUp->sizeHint() ); mPlayBeeps = 60; @@ -256,6 +258,10 @@ void SimpleAlarmDaemonImpl::confSound( int num ) } void SimpleAlarmDaemonImpl::slotPlayBeep( int num ) { + if ( num == 1000 ) { + simulate(); + return; + } mBeepPopUp->setItemChecked ( mPlayBeeps,false ); mPlayBeeps = num; mBeepPopUp->setItemChecked ( mPlayBeeps, true ); -- cgit v0.9.0.2