1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
/*
This file is part of the Nepomuk KDE project.
Copyright (C) 2007 Sebastian Trueg <[email protected]>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "resourcetaggingwidget.h"
#include "tagcloud.h"
#include "taggingpopup.h"
#include <QtGui/QVBoxLayout>
#include <QtGui/QContextMenuEvent>
#include <QtGui/QCursor>
#include <QtGui/QLabel>
#include <QtCore/QSet>
#include <KLocale>
namespace Nepomuk {
inline uint qHash( const Tag& res )
{
return qHash( res.resourceUri().toString() );
}
}
class Nepomuk::ResourceTaggingWidget::Private
{
public:
QList<Nepomuk::Resource> resources;
TagCloud* resourceTagCloud;
TaggingPopup* popup;
QList<Tag> resourceTags;
void showTaggingPopup( const QPoint& );
void _k_slotShowTaggingPopup();
static QList<Tag> intersectTags( const QList<Resource>& );
};
void Nepomuk::ResourceTaggingWidget::Private::showTaggingPopup( const QPoint& pos )
{
popup->showAllTags();
resourceTags = intersectTags( resources );
Q_FOREACH( const Tag &tag, resourceTags ) {
popup->setTagSelected( tag, true );
}
popup->exec( pos );
foreach( Resource res, resources ) {
res.setTags( resourceTags );
}
resourceTagCloud->showTags( resourceTags );
}
void Nepomuk::ResourceTaggingWidget::Private::_k_slotShowTaggingPopup()
{
showTaggingPopup( QCursor::pos() );
}
QList<Nepomuk::Tag> Nepomuk::ResourceTaggingWidget::Private::intersectTags( const QList<Resource>& res )
{
if ( res.count() == 1 ) {
return res.first().tags();
}
else if ( !res.isEmpty() ) {
// determine the tags used for all resources
QSet<Tag> tags = QSet<Tag>::fromList( res.first().tags() );
QList<Resource>::const_iterator it = res.begin();
for ( ++it; it != res.end(); ++it ) {
tags.intersect( QSet<Tag>::fromList( (*it).tags() ) );
}
return tags.values();
}
else {
return QList<Tag>();
}
}
Nepomuk::ResourceTaggingWidget::ResourceTaggingWidget( QWidget* parent )
: QWidget( parent ),
d( new Private() )
{
QVBoxLayout* layout = new QVBoxLayout( this );
layout->setMargin( 0 );
d->resourceTagCloud = new TagCloud( this );
layout->addWidget( d->resourceTagCloud );
QLabel* changeTagsLabel = new QLabel( "<p align=center><a style=\"font-size:small;\" href=\"dummy\">" + i18nc( "@label", "Change tags..." ) + "</a>", this );
connect( changeTagsLabel, SIGNAL( linkActivated( const QString ) ),
this, SLOT( _k_slotShowTaggingPopup() ) );
layout->addWidget( changeTagsLabel );
// the popup tag cloud
d->popup = new TaggingPopup;
d->popup->setSelectionEnabled( true );
d->popup->setNewTagButtonEnabled( true );
connect( d->popup, SIGNAL( tagToggled( const Nepomuk::Tag&, bool ) ),
this, SLOT( slotTagToggled( const Nepomuk::Tag&, bool ) ) );
connect( d->popup, SIGNAL( tagAdded( const Nepomuk::Tag& ) ),
this, SLOT( slotTagAdded( const Nepomuk::Tag& ) ) );
connect( d->resourceTagCloud, SIGNAL( tagClicked( const Nepomuk::Tag& ) ),
this, SIGNAL( tagClicked( const Nepomuk::Tag& ) ) );
}
Nepomuk::ResourceTaggingWidget::~ResourceTaggingWidget()
{
delete d->popup;
delete d;
}
void Nepomuk::ResourceTaggingWidget::setResource( const Nepomuk::Resource& res )
{
setResources( QList<Resource>() << res );
}
void Nepomuk::ResourceTaggingWidget::setResources( const QList<Nepomuk::Resource>& resList )
{
d->resources = resList;
d->resourceTagCloud->showTags( d->intersectTags( resList ) );
}
void Nepomuk::ResourceTaggingWidget::slotTagToggled( const Nepomuk::Tag& tag, bool enabled )
{
if ( enabled ) {
d->resourceTags.append( tag );
}
else {
d->resourceTags.removeAll( tag );
}
d->popup->hide();
}
void Nepomuk::ResourceTaggingWidget::slotTagAdded( const Nepomuk::Tag& tag )
{
// assign it right away
d->resourceTags.append( tag );
// d->resource.addTag( tag );
}
void Nepomuk::ResourceTaggingWidget::contextMenuEvent( QContextMenuEvent* e )
{
d->showTaggingPopup( e->globalPos() );
}
#include "resourcetaggingwidget.moc"
|