mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-22 00:45:40 +02:00
* Fixed warnings in 'lib/rdaudioconvert.cpp'. * Fixed warnings in 'lib/rdaudioexport.cpp'. * Fixed warnings in 'lib/rdaudioimport.cpp'. * Fixed warnings in 'lib/rdcart_dialog.cpp'. * Fixed warnings in 'lib/rdconf.cpp'. * Fixed warnings in 'lib/rdcopyaudio.cpp'. * Fixed warnings in 'lib/rdescape_string.cpp'. * Fixed warnings in 'lib/rdevent_line.cpp'. * Fixed warnings in 'lib/rdfeed.cpp'. * Refactored 'RDOneShot' to use int values in 'lib/rdoneshot.cpp' and 'lib/rdoneshot.h'. * Fixed warnings in 'lib/rdpeaksexport.cpp'. * Fixed warnings in 'lib/rdtrimaudio.cpp'. * Fixed warnings in 'lib/rdwavefile.cpp'. * Fixed warnings in 'rdhpi/rdhpiplaystream.cpp'. * Fixed warnings in 'rdhpi/rdhpirecordstream.cpp'. * Fixed warnings in 'rdhpi/rdhpisoundcard.cpp'. * Fixed warnings in 'pam_rd/pam_rd.cpp'. * Fixed warnings in 'rdadmin/edit_rdairplay.cpp'. * Fixed warnings in 'rdairplay/list_log.cpp'. * Fixed warnings in 'rdairplay/log_play.cpp'. * Fixed warnings in 'rdairplay/pie_counter.cpp'. * Fixed warnings in 'rdairplay/rlm_host.cpp'. * Fixed warnings in 'rdcatchd/rdcatchd.cpp'. * Fixed warnings in 'rdlogedit/editlog.cpp'. * Fixed warnings in 'rdlogmanager/rdlogmanager.cpp'. * Fixed warnings in 'rdrepl/replfactory.h'. * Fixed warnings in 'ripcd/acu1p.cpp' and 'ripcd/acu1p.h'. * Fixed warnings in 'ripcd/bt16x2.cpp' and 'ripcd/bt16x2.h'. * Fixed warnings in 'ripcd/btss164.cpp' and 'ripcd/btss164.h'. * Fixed warnings in 'ripcd/btss42.cpp' and 'ripcd/btss42.h'. * Fixed warnings in 'ripcd/btss44.cpp' and 'ripcd/btss44.h'. * Fixed warnings in 'ripcd/btss82.cpp' and 'ripcd/btss82.h'. * Fixed warnings in 'ripcd/btsrc16.cpp' and 'ripcd/btsrc16.h'. * Fixed warnings in 'ripcd/btsrc8iii.cpp' and 'ripcd/btsrc8iii.h'. * Fixed warnings in 'ripcd/livewire_mcastgpio.cpp'. * Fixed warnings in 'ripcd/local_gpio.cpp' and 'ripcd/local_gpio.h'. * Fixed warnings in 'ripcd/sas64000gpi.cpp' and 'ripcd/sas64000gpi.h'. * Fixed warnings in 'ripcd/vguest.cpp' and 'ripcd/vguest.h'. * Fixed warnings in 'utils/rdhpiinfo/rdhpiinfo.cpp' * Fixed warnings in 'utils/rdgen/wavlib.cpp' * Fixed warnings in 'utils/rdimport/rdimport.cpp' * Fixed warnings in 'utils/rdsoftkeys/rdsoftkeys.cpp' * Fixed warnings in 'web/rdxport/export.cpp'
71 lines
1.9 KiB
C++
71 lines
1.9 KiB
C++
// rdoneshot.cpp
|
|
//
|
|
// A class for providing one-shot single use timers.
|
|
//
|
|
// (C) Copyright 2008 Fred Gleason <fredg@paravelsystems.com>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
// published by the Free Software Foundation.
|
|
//
|
|
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
//
|
|
|
|
#include <rdoneshot.h>
|
|
|
|
RDOneShot::RDOneShot(QObject *parent,const char *name)
|
|
: QObject(parent,name)
|
|
{
|
|
//
|
|
// Timeout Mapper
|
|
//
|
|
shot_count=0;
|
|
shot_mapper=new QSignalMapper(this);
|
|
connect(shot_mapper,SIGNAL(mapped(int)),this,SLOT(timeoutData(int)));
|
|
|
|
//
|
|
// Zombie Timer
|
|
//
|
|
shot_zombie_timer=new QTimer(this);
|
|
connect(shot_zombie_timer,SIGNAL(timeout()),this,SLOT(zombieData()));
|
|
}
|
|
|
|
|
|
void RDOneShot::start(int value,int msecs)
|
|
{
|
|
shot_values[shot_count]=value;
|
|
shot_timers[shot_count]=new QTimer(this);
|
|
shot_mapper->setMapping(shot_timers[shot_count],shot_count);
|
|
connect(shot_timers[shot_count],SIGNAL(timeout()),
|
|
shot_mapper,SLOT(map()));
|
|
shot_timers[shot_count]->start(msecs,true);
|
|
shot_count++;
|
|
}
|
|
|
|
|
|
void RDOneShot::timeoutData(int id)
|
|
{
|
|
emit timeout(shot_values[id]);
|
|
shot_zombie_timer->start(10,true);
|
|
}
|
|
|
|
|
|
void RDOneShot::zombieData()
|
|
{
|
|
for(std::map<int,QTimer *>::iterator it=shot_timers.begin();
|
|
it!=shot_timers.end();it++) {
|
|
if(!it->second->isActive()) {
|
|
shot_values.erase(it->first);
|
|
delete it->second;
|
|
shot_timers.erase(it);
|
|
}
|
|
}
|
|
}
|