┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/tagcloud/tagcloud.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-01-14 19:26:23 +0000
committerPeter Penz <[email protected]>2009-01-14 19:26:23 +0000
commit307285e9635a4bf584d6e5d7478876b90ef870f0 (patch)
treedb36cbbdc7996ab86c38be8f96fe83597d350dfb /src/tagcloud/tagcloud.h
parent86d9c40ab71df5b8bd5063251337d5ca0c22380a (diff)
Group classes into folders, Dolphin is too big in the meantime for having a flat directory hierarchy. dolphin/src/CMakeLists.txt will be cleaned up later.
svn path=/trunk/KDE/kdebase/apps/; revision=911065
Diffstat (limited to 'src/tagcloud/tagcloud.h')
-rw-r--r--src/tagcloud/tagcloud.h142
1 files changed, 0 insertions, 142 deletions
diff --git a/src/tagcloud/tagcloud.h b/src/tagcloud/tagcloud.h
deleted file mode 100644
index 9710ca9b7..000000000
--- a/src/tagcloud/tagcloud.h
+++ /dev/null
@@ -1,142 +0,0 @@
-/*
- 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.
- */
-
-#ifndef _NEPOMUK_TAG_CLOUD_H_
-#define _NEPOMUK_TAG_CLOUD_H_
-
-#include <QtGui/QFrame>
-#include <QtCore/QList>
-
-#include <nepomuk/tag.h>
-
-#include <Soprano/Statement>
-
-class QResizeEvent;
-class QPaintEvent;
-class QMouseEvent;
-class QEvent;
-
-namespace Nepomuk {
- class TagCloud : public QFrame
- {
- Q_OBJECT
-
- public:
- TagCloud( QWidget* parent = 0 );
- ~TagCloud();
-
- enum Sorting {
- SortAlpabetically,
- SortByWeight,
- SortRandom
- };
-
- int heightForWidth( int w ) const;
- QSize sizeHint() const;
- QSize minimumSizeHint() const;
-
- bool zoomEnabled() const;
-
- public Q_SLOTS:
- /**
- * Set the maximum used font size. The default is 0
- * which means to calculate proper values from the KDE
- * defaults.
- */
- void setMaxFontSize( int size );
-
- /**
- * Set the minimum used font size. The default is 0
- * which means to calculate proper values from the KDE
- * defaults.
- */
- void setMinFontSize( int size );
-
- /**
- * Set the maximum number of displayed tags. The default is 0
- * which means to display all tags.
- *
- * NOT IMPLEMENTED YET
- */
- void setMaxNumberDisplayedTags( int n );
-
- /**
- * Allow selection of tags, i.e. enabling and disabling of tags.
- */
- void setSelectionEnabled( bool enabled );
-
- void setNewTagButtonEnabled( bool enabled );
- void setContextMenuEnabled( bool enabled );
- void setAlignment( Qt::Alignment alignment );
-
- void setZoomEnabled( bool zoom );
-
- /**
- * Default: SortAlpabetically
- */
- void setSorting( Sorting );
-
- /**
- * Will reset tags set via showTags()
- */
- void showAllTags();
-
- /**
- * Set the tags to be shown in the tag cloud.
- * If the new tag button is enabled (setEnableNewTagButton())
- * new tags will automatically be added to the list of shown tags.
- */
- void showTags( const QList<Tag>& tags );
-
- void showResourceTags( const Resource& resource );
-
- /**
- * Select or deselect a tag. This does only make sense
- * if selection is enabled and \p tag is actually
- * displayed.
- *
- * \sa setSelectionEnabled
- */
- void setTagSelected( const Tag& tag, bool selected );
-
- void setCustomNewTagAction( QAction* action );
-
- Q_SIGNALS:
- void tagClicked( const Nepomuk::Tag& tag );
- void tagAdded( const Nepomuk::Tag& tag );
- void tagToggled( const Nepomuk::Tag& tag, bool enabled );
-
- protected:
- void resizeEvent( QResizeEvent* e );
- void paintEvent( QPaintEvent* e );
- void mousePressEvent( QMouseEvent* );
- void mouseMoveEvent( QMouseEvent* );
- void leaveEvent( QEvent* );
-
- private Q_SLOTS:
- void slotStatementAdded( const Soprano::Statement& s );
- void slotStatementRemoved( const Soprano::Statement& s );
-
- private:
- class Private;
- Private* const d;
- };
-}
-
-#endif