2011-07-30 18:13:09 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2011 by Peter Penz <peter.penz19@gmail.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the *
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef KFILEITEMLISTWIDGET_H
|
|
|
|
#define KFILEITEMLISTWIDGET_H
|
|
|
|
|
|
|
|
#include <libdolphin_export.h>
|
|
|
|
|
2012-04-21 19:28:16 +00:00
|
|
|
#include <kitemviews/kstandarditemlistwidget.h>
|
2011-07-30 18:13:09 +00:00
|
|
|
|
2012-04-21 19:28:16 +00:00
|
|
|
class LIBDOLPHINPRIVATE_EXPORT KFileItemListWidgetInformant : public KStandardItemListWidgetInformant
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
KFileItemListWidgetInformant();
|
|
|
|
virtual ~KFileItemListWidgetInformant();
|
2011-07-30 18:13:09 +00:00
|
|
|
|
2012-04-21 19:28:16 +00:00
|
|
|
protected:
|
2013-09-04 19:34:03 +00:00
|
|
|
virtual QString itemText(int index, const KItemListView* view) const;
|
2014-03-05 09:48:33 +00:00
|
|
|
virtual bool itemIsLink(int index, const KItemListView* view) const;
|
2012-04-21 19:28:16 +00:00
|
|
|
virtual QString roleText(const QByteArray& role, const QHash<QByteArray, QVariant>& values) const;
|
2014-03-05 09:48:33 +00:00
|
|
|
virtual QFont customizedFontForLinks(const QFont& baseFont) const;
|
2012-04-21 19:28:16 +00:00
|
|
|
};
|
2012-03-26 22:44:39 +00:00
|
|
|
|
2012-04-21 19:28:16 +00:00
|
|
|
class LIBDOLPHINPRIVATE_EXPORT KFileItemListWidget : public KStandardItemListWidget
|
2011-07-30 18:13:09 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2012-04-21 19:28:16 +00:00
|
|
|
KFileItemListWidget(KItemListWidgetInformant* informant, QGraphicsItem* parent);
|
2011-07-30 18:13:09 +00:00
|
|
|
virtual ~KFileItemListWidget();
|
|
|
|
|
2012-04-21 19:28:16 +00:00
|
|
|
static KItemListWidgetInformant* createInformant();
|
2011-09-23 22:18:09 +00:00
|
|
|
|
2011-07-30 18:13:09 +00:00
|
|
|
protected:
|
2012-04-21 19:28:16 +00:00
|
|
|
virtual bool isRoleRightAligned(const QByteArray& role) const;
|
2012-05-01 21:11:06 +00:00
|
|
|
virtual bool isHidden() const;
|
2012-05-26 13:32:57 +00:00
|
|
|
virtual QFont customizedFont(const QFont& baseFont) const;
|
2012-07-20 10:09:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Selection length without MIME-type extension
|
|
|
|
*/
|
|
|
|
virtual int selectionLength(const QString& text) const;
|
2011-07-30 18:13:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|