]> git.sesse.net Git - kdenlive/blob - src/utils/resourcewidget.h
Various fixes and improvments to online resources
[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 class KPixmapSequenceOverlayPainter;
34 class QAction;
35
36 class ResourceWidget : public QDialog, public Ui::FreeSound_UI
37 {
38     Q_OBJECT
39
40 public:
41     ResourceWidget(const QString & folder, QWidget * parent = 0);
42     ~ResourceWidget();
43
44
45 private slots:
46     void slotStartSearch(int page = 0);
47     void slotUpdateCurrentSound();
48     void slotPlaySound();
49     void slotForcePlaySound(bool play);
50     void slotPreviewStatusChanged(QProcess::ProcessState state);
51     void slotDisplayMetaInfo(QMap <QString, QString> metaInfo);
52     void slotSaveItem(const QString originalUrl = QString());
53     void slotOpenUrl(const QString &url);
54     void slotChangeService();
55     void slotOnline();
56     void slotOffline();
57     void slotNextPage();
58     void slotPreviousPage();
59     void slotOpenLink(const QUrl &url);
60     void slotLoadThumb(const QString url);
61     /** @brief A file download is finished */
62     void slotGotFile(KJob *job);
63     void slotSetMetadata(const QString desc);
64     void slotSetDescription(const QString desc);
65     void slotSetImage(const QString desc);
66     void slotSetTitle(const QString desc);
67
68 private:
69     QString m_folder;
70     AbstractService *m_currentService;
71     void parseLicense(const QString &);
72     OnlineItemInfo m_currentInfo;
73     KPixmapSequenceOverlayPainter *m_busyWidget;
74     QAction *m_autoPlay;
75     QString m_tmpThumbFile;
76     QString m_title;
77     QString m_image;
78     QString m_desc;
79     QString m_meta;
80     void updateLayout();
81    
82 signals:
83     void addClip(KUrl, const QString &);
84 };
85
86
87 #endif
88