You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.5 KiB
87 lines
2.5 KiB
/***************************************************************************
|
|
* Copyright (C) 2005 by Olivier Goffart *
|
|
* ogoffart@kde.org *
|
|
* *
|
|
* 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. *
|
|
***************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
|
|
#include "soundrecorder.h"
|
|
|
|
#include <kdebug.h>
|
|
#include <klocale.h>
|
|
#include <tqtimer.h>
|
|
#include <klibloader.h>
|
|
|
|
#include "khotkeysglobal.h"
|
|
|
|
namespace KHotKeys
|
|
{
|
|
|
|
SoundRecorder::create_ptr SoundRecorder::create_fun = NULL;
|
|
|
|
bool SoundRecorder::init( KLibrary* lib )
|
|
{
|
|
#ifdef HAVE_ARTS
|
|
if( create_fun == NULL && lib != NULL )
|
|
create_fun = (create_ptr) lib->symbol( "khotkeys_soundrecorder_create" );
|
|
#endif
|
|
// kdDebug( 1217 ) << "soundrecorder:" << create_fun << ":" << lib << endl;
|
|
return create_fun != NULL;
|
|
}
|
|
|
|
SoundRecorder* SoundRecorder::create( TQObject* parent, const char* name )
|
|
{
|
|
#ifdef HAVE_ARTS
|
|
if( create_fun != NULL )
|
|
return create_fun( parent, name );
|
|
#endif
|
|
return new SoundRecorder( parent, name );
|
|
}
|
|
|
|
SoundRecorder::SoundRecorder(TQObject *parent, const char *name) : TQObject(parent, name) {}
|
|
|
|
SoundRecorder::~SoundRecorder()
|
|
{
|
|
}
|
|
|
|
void SoundRecorder::start()
|
|
{
|
|
}
|
|
|
|
void SoundRecorder::stop()
|
|
{
|
|
}
|
|
|
|
void SoundRecorder::abort()
|
|
{
|
|
}
|
|
|
|
|
|
Sound SoundRecorder::sound()
|
|
{
|
|
Sound s;
|
|
return s;
|
|
}
|
|
|
|
}
|
|
|
|
#include "soundrecorder.moc"
|