2012-04-19 22:42:35 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2012-04-19 22:42:35 +02:00
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
|
|
|
#ifndef LOCATIONCOMPLETERDELEGATE_H
|
|
|
|
#define LOCATIONCOMPLETERDELEGATE_H
|
|
|
|
|
|
|
|
#include <QStyledItemDelegate>
|
|
|
|
|
|
|
|
#include "qz_namespace.h"
|
|
|
|
|
2012-04-22 17:09:43 +02:00
|
|
|
class LocationCompleterView;
|
2012-04-19 22:42:35 +02:00
|
|
|
|
|
|
|
class QT_QUPZILLA_EXPORT LocationCompleterDelegate : public QStyledItemDelegate
|
|
|
|
{
|
|
|
|
public:
|
2012-04-22 17:09:43 +02:00
|
|
|
explicit LocationCompleterDelegate(LocationCompleterView* parent = 0);
|
2012-04-19 22:42:35 +02:00
|
|
|
|
|
|
|
void paint(QPainter* painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
|
2012-12-04 14:29:27 +01:00
|
|
|
void drawSwitchToTab(bool enable);
|
|
|
|
|
2012-04-19 22:42:35 +02:00
|
|
|
private:
|
2013-02-04 12:44:56 +01:00
|
|
|
void drawHighlightedTextLine(const QRect &rect, const QString &text, const QString &searchText,
|
2012-08-25 13:08:21 +02:00
|
|
|
QPainter* painter, const QStyle* style, const QStyleOptionViewItemV4 &option,
|
|
|
|
const QPalette::ColorRole &role) const;
|
|
|
|
|
|
|
|
void drawTextLine(const QRect &rect, QString text, QPainter* painter,
|
|
|
|
const QStyle* style, const QStyleOptionViewItemV4 &option,
|
|
|
|
const QPalette::ColorRole &role) const;
|
|
|
|
|
|
|
|
inline QRect adjustRect(const QRect &original, const QRect &created) const;
|
|
|
|
|
2012-04-19 22:42:35 +02:00
|
|
|
mutable int m_rowHeight;
|
|
|
|
mutable int m_padding;
|
2012-12-04 14:29:27 +01:00
|
|
|
bool m_drawSwitchToTab;
|
2012-04-19 22:42:35 +02:00
|
|
|
|
2012-04-22 17:09:43 +02:00
|
|
|
LocationCompleterView* m_view;
|
2012-04-19 22:42:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LOCATIONCOMPLETERDELEGATE_H
|