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