Nepomuk
ktagdisplaywidget.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef _KTAG_DISPLAY_WIDGET_H_
00022 #define _KTAG_DISPLAY_WIDGET_H_
00023
00024 #include <QtGui/QWidget>
00025
00026 #include <nepomuk/nepomuk_export.h>
00027
00031 class NEPOMUK_EXPORT KTagDisplayWidget : public QWidget
00032 {
00033 Q_OBJECT
00034
00035 public:
00036 KTagDisplayWidget( QWidget* parent = 0 );
00037 ~KTagDisplayWidget();
00038
00039 public Q_SLOTS:
00043 void setTags( const QStringList& tags );
00044
00049 void addTag( const QString& tag );
00050
00055 void addTags( const QStringList& tags );
00056
00060 void clear();
00061
00062 Q_SIGNALS:
00063 void tagClicked( const QString& tag );
00064
00065 private:
00066 class Private;
00067 Private* const d;
00068 };
00069
00070 #endif