2010-10-06 16:54:07 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
|
|
|
*
|
|
|
|
* 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 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* 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 KEEPASSX_EDITENTRYWIDGET_P_H
|
|
|
|
#define KEEPASSX_EDITENTRYWIDGET_P_H
|
|
|
|
|
2013-10-03 09:18:16 -04:00
|
|
|
#include <QListWidget>
|
|
|
|
#include <QScrollBar>
|
|
|
|
#include <QSize>
|
|
|
|
#include <QStyledItemDelegate>
|
2017-02-21 15:34:13 -05:00
|
|
|
#include <QPainter>
|
2010-10-06 16:54:07 -04:00
|
|
|
|
|
|
|
class CategoryListViewDelegate : public QStyledItemDelegate
|
|
|
|
{
|
|
|
|
public:
|
2017-02-21 15:34:13 -05:00
|
|
|
explicit CategoryListViewDelegate(QListView* parent = nullptr)
|
|
|
|
: QStyledItemDelegate(parent), m_size(96, 96)
|
|
|
|
{}
|
2010-10-06 16:54:07 -04:00
|
|
|
|
2017-02-21 15:34:13 -05:00
|
|
|
protected:
|
|
|
|
void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override
|
2010-10-06 16:54:07 -04:00
|
|
|
{
|
2017-02-21 15:34:13 -05:00
|
|
|
QStyleOptionViewItem opt = option;
|
|
|
|
initStyleOption(&opt, index);
|
|
|
|
|
|
|
|
painter->save();
|
|
|
|
|
|
|
|
QIcon icon = opt.icon;
|
|
|
|
QSize iconSize = opt.icon.actualSize(QSize(32, 32));
|
|
|
|
opt.icon = QIcon();
|
|
|
|
opt.decorationAlignment = Qt::AlignHCenter | Qt::AlignVCenter;
|
|
|
|
opt.decorationPosition = QStyleOptionViewItem::Top;
|
|
|
|
|
|
|
|
QStyle* style = opt.widget ? opt.widget->style() : QApplication::style();
|
|
|
|
style->drawControl(QStyle::CE_ItemViewItem, &opt, painter, opt.widget);
|
|
|
|
|
|
|
|
QRect fontRect = painter->fontMetrics().boundingRect(
|
|
|
|
QRect(0, 0, m_size.width(), m_size.height()), Qt::AlignHCenter | Qt::AlignBottom | Qt::TextWordWrap, opt.text);
|
|
|
|
|
|
|
|
int paddingTop = fontRect.height() < 30 ? 15 : 10;
|
|
|
|
int left = opt.rect.left() + opt.rect.width() / 2 - iconSize.width() / 2;
|
|
|
|
painter->drawPixmap(left, opt.rect.top() + paddingTop, icon.pixmap(iconSize));
|
|
|
|
|
|
|
|
painter->restore();
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override
|
|
|
|
{
|
|
|
|
Q_UNUSED(option);
|
|
|
|
Q_UNUSED(index);
|
|
|
|
return m_size;
|
2010-10-06 16:54:07 -04:00
|
|
|
}
|
2017-02-21 15:34:13 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
QSize m_size;
|
2010-10-06 16:54:07 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
class CategoryListWidget : public QListWidget
|
|
|
|
{
|
|
|
|
public:
|
2017-02-21 15:34:13 -05:00
|
|
|
explicit CategoryListWidget(QWidget* parent = 0)
|
|
|
|
: QListWidget(parent)
|
2010-10-06 16:54:07 -04:00
|
|
|
{
|
2017-02-21 15:34:13 -05:00
|
|
|
setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding);
|
2010-10-06 16:54:07 -04:00
|
|
|
setItemDelegate(new CategoryListViewDelegate(this));
|
2017-02-21 15:34:13 -05:00
|
|
|
setMovement(QListView::Static);
|
|
|
|
setViewMode(QListWidget::IconMode);
|
|
|
|
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
setWordWrap(true);
|
2010-10-06 16:54:07 -04:00
|
|
|
}
|
2017-02-21 15:34:13 -05:00
|
|
|
protected:
|
|
|
|
QSize sizeHint() const override
|
2010-10-06 16:54:07 -04:00
|
|
|
{
|
|
|
|
QSize sizeHint = QListWidget::sizeHint();
|
|
|
|
|
2017-02-21 15:34:13 -05:00
|
|
|
int width = sizeHintForColumn(0) + frameWidth() * 2;
|
2010-10-06 16:54:07 -04:00
|
|
|
if (verticalScrollBar()->isVisible()) {
|
|
|
|
width += verticalScrollBar()->width();
|
|
|
|
}
|
|
|
|
sizeHint.setWidth(width);
|
|
|
|
|
|
|
|
return sizeHint;
|
|
|
|
}
|
2017-02-21 15:34:13 -05:00
|
|
|
|
|
|
|
QSize minimumSizeHint() const override
|
|
|
|
{
|
|
|
|
return QSize(sizeHint().width(), sizeHintForRow(0) * 2);
|
|
|
|
}
|
2010-10-06 16:54:07 -04:00
|
|
|
};
|
|
|
|
|
2012-04-28 13:11:15 -04:00
|
|
|
class AttributesListView : public QListView
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit AttributesListView(QWidget* parent = 0) : QListView(parent)
|
|
|
|
{
|
|
|
|
setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding);
|
|
|
|
}
|
|
|
|
|
2017-02-21 15:34:13 -05:00
|
|
|
QSize sizeHint() const override
|
2012-04-28 13:11:15 -04:00
|
|
|
{
|
|
|
|
QSize sizeHint = QListView::sizeHint();
|
|
|
|
|
2017-02-21 15:34:13 -05:00
|
|
|
int width = sizeHintForColumn(0) + frameWidth() * 2;
|
2012-04-28 13:11:15 -04:00
|
|
|
if (verticalScrollBar()->isVisible()) {
|
|
|
|
width += verticalScrollBar()->width();
|
|
|
|
}
|
|
|
|
sizeHint.setWidth(width);
|
|
|
|
|
|
|
|
return sizeHint;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-10-06 16:54:07 -04:00
|
|
|
#endif // KEEPASSX_EDITENTRYWIDGET_P_H
|