~ubuntu-branches/ubuntu/maverick/kdebase/maverick-updates

« back to all changes in this revision

Viewing changes to apps/dolphin/src/panels/information/metadatawidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers, Martin Alfke, Modestas Vainius
  • Date: 2010-05-01 23:37:50 UTC
  • mfrom: (0.7.4 upstream) (0.4.4 experimental)
  • mto: This revision was merged to the branch mainline in revision 285.
  • Revision ID: james.westby@ubuntu.com-20100501233750-maq4i4sh8ymjbneb
Tags: 4:4.4.3-1
* New upstream release:
  - Konsole does not crash when closing a broken restored session.
    (Closes: #555831)
  - Konqueror does not crash when closing fast a tab. (Closes: #441298)

[Martin Alfke]
* Update of debian/copyright for kde 4.4

[ Modestas Vainius ]
* Bump kde-sc-dev-latest build dependency to 4.4.3.
* Confirm symbol files for 4.4.2 on hurd-i386 i386 ia64 kfreebsd-amd64
  kfreebsd-i386 mips powerpc s390 sparc.
* Release KDE SC 4.4.3 to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2007 by Sebastian Trueg <trueg@kde.org>                 *
3
 
 *                                                                         *
4
 
 *   This program is free software; you can redistribute it and/or modify  *
5
 
 *   it under the terms of the GNU General Public License as published by  *
6
 
 *   the Free Software Foundation; either version 2 of the License, or     *
7
 
 *   (at your option) any later version.                                   *
8
 
 *                                                                         *
9
 
 *   This program is distributed in the hope that it will be useful,       *
10
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12
 
 *   GNU General Public License for more details.                          *
13
 
 *                                                                         *
14
 
 *   You should have received a copy of the GNU General Public License     *
15
 
 *   along with this program; if not, write to the                         *
16
 
 *   Free Software Foundation, Inc.,                                       *
17
 
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
18
 
 ***************************************************************************/
19
 
 
20
 
#ifndef METADATA_WIDGET_H
21
 
#define METADATA_WIDGET_H
22
 
 
23
 
#include <QtGui/QWidget>
24
 
 
25
 
#include <kurl.h>
26
 
 
27
 
namespace Nepomuk {
28
 
    class Tag;
29
 
}
30
 
 
31
 
class MetaDataWidget : public QWidget
32
 
{
33
 
    Q_OBJECT
34
 
 
35
 
public:
36
 
    MetaDataWidget(QWidget* parent = 0);
37
 
    virtual ~MetaDataWidget();
38
 
 
39
 
    /**
40
 
     * \return true if the KMetaData system could be found and initialized.
41
 
     * false if KMetaData was not available at compile time or if it has not
42
 
     * been initialized properly.
43
 
     */
44
 
    static bool metaDataAvailable();
45
 
 
46
 
    void setRatingVisible(bool visible);
47
 
    bool isRatingVisible() const;
48
 
 
49
 
    void setCommentVisible(bool visible);
50
 
    bool isCommentVisible() const;
51
 
 
52
 
    void setTagsVisible(bool visible);
53
 
    bool areTagsVisible() const;
54
 
 
55
 
public Q_SLOTS:
56
 
    void setFile(const KUrl& url);
57
 
    void setFiles(const KUrl::List& urls);
58
 
 
59
 
signals:
60
 
    /**
61
 
     * This signal gets emitted if the metadata for the set file was changed on the
62
 
     * outside. NOT IMPLEMENTED YET.
63
 
     */
64
 
    void metaDataChanged();
65
 
 
66
 
private Q_SLOTS:
67
 
    void slotCommentChanged(const QString&);
68
 
    void slotRatingChanged(unsigned int rating);
69
 
    void metadataUpdateDone();
70
 
    void slotTagClicked( const Nepomuk::Tag& );
71
 
    void slotLoadingFinished();
72
 
 
73
 
protected:
74
 
    bool eventFilter(QObject* obj, QEvent* event);
75
 
 
76
 
private:
77
 
    class Private;
78
 
    Private* d;
79
 
};
80
 
 
81
 
#endif