]> git.sesse.net Git - kdenlive/blob - src/utils/resourcewidget.h
Integrate with the required MLT hooks for getting Movit to work.
[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 #include "../definitions.h"
29
30 #include <QDialog>
31 #include <QProcess>
32 #include <kio/jobclasses.h>
33 #include <kdeversion.h>
34
35
36 #if KDE_IS_VERSION(4,4,0)
37 class KPixmapSequenceOverlayPainter;
38 #endif
39 class QAction;
40
41 class ResourceWidget : public QDialog, public Ui::FreeSound_UI
42 {
43     Q_OBJECT
44
45 public:
46     explicit ResourceWidget(const QString & folder, QWidget * parent = 0);
47     ~ResourceWidget();
48
49
50 private slots:
51     void slotStartSearch(int page = 0);
52     void slotUpdateCurrentSound();
53     void slotPlaySound();
54     void slotDisplayMetaInfo(const QMap <QString, QString>& metaInfo);
55     void slotSaveItem(const QString &originalUrl = QString());
56     void slotOpenUrl(const QString &url);
57     void slotChangeService();
58     void slotOnline();
59     void slotOffline();
60     void slotNextPage();
61     void slotPreviousPage();
62     void slotOpenLink(const QUrl &url);
63     void slotLoadThumb(const QString& url);
64     /** @brief A file download is finished */
65     void slotGotFile(KJob *job);
66     void slotSetMetadata(const QString &desc);
67     void slotSetDescription(const QString &desc);
68     void slotSetImage(const QString &desc);
69     void slotSetTitle(const QString &desc);
70     void slotSetMaximum(int max);
71
72 private:
73     void loadConfig();
74     void saveConfig();
75     void parseLicense(const QString &);
76
77     QString m_folder;
78     AbstractService *m_currentService;
79     OnlineItemInfo m_currentInfo;
80 #if KDE_IS_VERSION(4,4,0)
81     KPixmapSequenceOverlayPainter *m_busyWidget;
82 #endif
83     QAction *m_autoPlay;
84     QString m_tmpThumbFile;
85     QString m_title;
86     QString m_image;
87     QString m_desc;
88     QString m_meta;
89     void updateLayout();
90    
91 signals:
92     void addClip(const KUrl &, const stringMap &data);
93 };
94
95
96 #endif
97