]> git.sesse.net Git - kdenlive/blob - src/utils/freesound.h
48fbfaed4c511d6c2b07d76ca84a587d5941479f
[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 enum SERVICETYPE { FREESOUND = 0, OPENCLIPART = 1 };
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(int page = 0);
45     void slotDataIsHere(KIO::Job *,const QByteArray & data );
46     void slotShowResults();
47     void slotUpdateCurrentSound();
48     void slotPlaySound();
49     void slotForcePlaySound(bool play);
50     void slotPreviewStatusChanged(QProcess::ProcessState state);
51     void slotSaveSound();
52     void slotOpenUrl(const QString &url);
53     void slotChangeService();
54     void slotOnline();
55     void slotOffline();
56     void slotNextPage();
57     void slotPreviousPage();
58
59 private:
60     QString m_folder;
61     QByteArray m_result;
62     QVariant m_data;
63     QString m_currentPreview;
64     QString m_currentUrl;
65     QProcess *m_previewProcess;
66     SERVICETYPE m_service;
67    
68 signals:
69     void addClip(KUrl, const QString &);
70 };
71
72
73 #endif
74