/*************************************************************************** begin : Mon Jun 17 2002 copyright : (C) 2002 by Arnold Krille email : arnold@arnoldarts.de ***************************************************************************/ /*************************************************************************** * * * 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; version 2 of the License. * * * ***************************************************************************/ #ifndef KRECORD_PRIVATE_H #define KRECORD_PRIVATE_H #include #include #include #include #include #include #include #include #include "krecfileview.h" class KRecord; class KRecMainWidget; class KRecFile; class KRecExportItem; class KAudioRecordStream; class KAudioPlayStream; class TDEConfig; class ArtsActions; class TDEAction; class TDEActionMenu; class TDEToggleAction; class TDERecentFilesAction; namespace KSettings { class Dialog; } class KRecPrivate : public TQObject { TQ_OBJECT public: /// Constructor KRecPrivate( KRecord*, const char* =0 ); /// Destructor ~KRecPrivate(); public slots: /* /// Does nothing. void nothing() { } /// Starts Recording. void startRec(); /// Starts Playback. void startPlay(); /// ByteStreamSender informs of his playing. void playIsRunning() { playing=true; checkActions(); } /// ByteStreamSender informs of his playing. void playStops() { playing=false; checkActions(); } /// Stops Recording. void stopRec(); /// If we can play or not. void canPlay( bool b ) { _canplay = b; checkActions(); } /// If we can record or not. void canRecord( bool b ) { _canrecord = b; checkActions(); } */ // void startUpWindow( bool on ); void showConfDialog(); /// Checks all the Actions and sets Enabled/Disabled. void checkActions(); /// Enables Play-thru from the AMAN_RECORD to the AMAN_PLAY. void playthru( bool ); void newFile(); void openFile(); void saveFile(); void saveAsFile(); bool closeFile(); void exportFile(); void endExportFile(); void endExportFile2(); void toBegin(); void toEnd(); void forceTipOfDay(); void execaRtsControl(); void execKMix(); private: void pNewFile( KRecFile* ); void pSaveFile( const TQString &); public: TDEAction *aRecord, *aPlay, *aStop, *aExportFile; TDEAction *aBegin, *aEnd; TDEToggleAction *aThru, *aStartUpWindow; TDEAction *aExecaRtsControl, *aExecKMix; KSettings::Dialog *_confdlg; KArtsServer *server; KArtsDispatcher *dispatcher; KAudioPlayStream *m_playStream; KAudioRecordStream * m_recStream; Arts::StereoVolumeControl volumecontrol; Arts::StereoEffect comp; KArtsWidget *w; long vc_id, comp_id; ArtsActions *artsactions; bool b_arts, b_comp; KRecord *_impl; KRecMainWidget *mainwidget; KRecFile *_currentFile; KRecExportItem *_exportitem; }; class KRecMainWidget : public TQWidget { TQ_OBJECT public: KRecMainWidget( TQWidget* p, const char* n=0 ) : TQWidget( p,n ) { _layout = new TQBoxLayout( this, TQBoxLayout::LeftToRight, 2 ); _kaw_volumecontrol = new KArtsWidget( this ); _layout->addWidget( _kaw_volumecontrol, 0 ); _fileview = new KRecFileView( this ); _layout->addWidget( _fileview, 500 ); } TQBoxLayout *_layout; KArtsWidget *_kaw_volumecontrol; Arts::Widget _artswidget; KRecFileView *_fileview; }; #endif