]> git.sesse.net Git - kdenlive/blob - src/utils/freesound.h
2d7f9a56d4ff8de7b1f43ddc3ddbf29c006ad8a0
[kdenlive] / src / utils / freesound.h
1 /***************************************************************************
2  *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *   Copyright (C) 2011 by Marco Gittler (marco@gitma.de)                  *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
19  ***************************************************************************/
20
21
22 #ifndef FREESOUND_H
23 #define FREESOUND_H
24
25
26 #include "ui_freesound_ui.h"
27
28 #include <QDialog>
29 #include <QProcess>
30 #include <kio/jobclasses.h>
31
32
33
34 class FreeSound : public QDialog, public Ui::FreeSound_UI
35 {
36     Q_OBJECT
37
38 public:
39     FreeSound(const QString & folder, QWidget * parent = 0);
40     ~FreeSound();
41
42
43 private slots:
44     void slotStartSearch();
45     void slotDataIsHere(KIO::Job *,const QByteArray & data );
46     void slotShowResults();
47     void slotUpdateCurrentSound();
48     void slotPlaySound();
49     void slotPreviewStatusChanged(QProcess::ProcessState state);
50     void slotSaveSound();
51     void slotOpenUrl(const QString &url);
52
53 private:
54     QString m_folder;
55     QByteArray m_result;
56     QVariant m_data;
57     QString m_currentPreview;
58     QString m_currentUrl;
59     QProcess *m_previewProcess;
60    
61 signals:
62     void addClip(KUrl);
63 };
64
65
66 #endif
67