]> git.sesse.net Git - kdenlive/blob - src/utils/resourcewidget.h
Fix compilation without nepomuk
[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 slotDisplayMetaInfo(QMap <QString, QString> metaInfo);
50     void slotSaveItem(const QString originalUrl = QString());
51     void slotOpenUrl(const QString &url);
52     void slotChangeService();
53     void slotOnline();
54     void slotOffline();
55     void slotNextPage();
56     void slotPreviousPage();
57     void slotOpenLink(const QUrl &url);
58     void slotLoadThumb(const QString url);
59     /** @brief A file download is finished */
60     void slotGotFile(KJob *job);
61     void slotSetMetadata(const QString desc);
62     void slotSetDescription(const QString desc);
63     void slotSetImage(const QString desc);
64     void slotSetTitle(const QString desc);
65
66 private:
67     QString m_folder;
68     AbstractService *m_currentService;
69     void parseLicense(const QString &);
70     OnlineItemInfo m_currentInfo;
71     KPixmapSequenceOverlayPainter *m_busyWidget;
72     QAction *m_autoPlay;
73     QString m_tmpThumbFile;
74     QString m_title;
75     QString m_image;
76     QString m_desc;
77     QString m_meta;
78     void updateLayout();
79    
80 signals:
81     void addClip(KUrl, const QString &);
82 };
83
84
85 #endif
86