]> git.sesse.net Git - kdenlive/blob - src/utils/resourcewidget.h
Initial support for project metadata (that can be embedded in rendered files)
[kdenlive] / src / utils / resourcewidget.h
1 /***************************************************************************
2  *   Copyright (C) 2011 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
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 RESOURCEWIDGET_H
23 #define RESOURCEWIDGET_H
24
25
26 #include "ui_freesound_ui.h"
27 #include "abstractservice.h"
28
29 #include <QDialog>
30 #include <QProcess>
31 #include <kio/jobclasses.h>
32
33
34 class ResourceWidget : public QDialog, public Ui::FreeSound_UI
35 {
36     Q_OBJECT
37
38 public:
39     ResourceWidget(const QString & folder, QWidget * parent = 0);
40     ~ResourceWidget();
41
42
43 private slots:
44     void slotStartSearch(int page = 0);
45     void slotUpdateCurrentSound();
46     void slotPlaySound();
47     void slotForcePlaySound(bool play);
48     void slotPreviewStatusChanged(QProcess::ProcessState state);
49     void slotDisplayMetaInfo(QMap <QString, QString> metaInfo);
50     void slotSaveSound();
51     void slotOpenUrl(const QString &url);
52     void slotChangeService();
53     void slotOnline();
54     void slotOffline();
55     void slotNextPage();
56     void slotPreviousPage();
57
58 private:
59     QString m_folder;
60     AbstractService *m_currentService;
61     void parseLicense(const QString &);
62     OnlineItemInfo m_currentInfo;
63    
64 signals:
65     void addClip(KUrl, const QString &);
66 };
67
68
69 #endif
70