]> git.sesse.net Git - kdenlive/blob - src/utils/resourcewidget.h
Fix indent, Use const'ref
[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     QString m_folder;
74     AbstractService *m_currentService;
75     void parseLicense(const QString &);
76     OnlineItemInfo m_currentInfo;
77 #if KDE_IS_VERSION(4,4,0)
78     KPixmapSequenceOverlayPainter *m_busyWidget;
79 #endif
80     QAction *m_autoPlay;
81     QString m_tmpThumbFile;
82     QString m_title;
83     QString m_image;
84     QString m_desc;
85     QString m_meta;
86     void updateLayout();
87    
88 signals:
89     void addClip(const KUrl &, const stringMap &data);
90 };
91
92
93 #endif
94