如何使用不同的高亮条和间距自定义QListWidget

时间:2011-09-01 18:31:39

标签: qt qlistwidget

我正在开发一个应用程序,它需要在屏幕左侧有一个包含多个项目(文本)的菜单。我想要看到的唯一项目是实际文本和高亮条。我还想修改高亮条,以便: 一个。我可以为它设置动画,并将其从一个选项滑动到下一个选项 湾我可以使用带圆角的自定义像素图而不是默认的高亮颜色

我尝试使用QListWidget和样式表并取得了一些成功,但我不相信可以使用此方法围绕高亮条的角落。我也不确定我可以将酒吧的动作从一个项目动画到下一个项目:

preset_list_view->setStyleSheet("QListView {color: rgb(230, 230, 230); background-color: rgba(0,0,0,0); border-style: none} QListView::item:selected {background-image: url(:/ui_resources/elements-preset_select/highlight_bar_270x30-black_bg.bmp)}");

我在网上看了一遍,发现不多。有人提到修改QListWidget的委托,但描述含糊不清。我也不确定这是否能解决我的动画问题。

有什么想法吗?

2 个答案:

答案 0 :(得分:4)

您可以在QListWidget的顶部放置一个半透明的惰性窗口小部件,并在选择更改时为其设置动画。 但是您还需要一个代理来禁用正常选择指示器。

一个工作示例:

#include <QListWidget>
#include <QFrame>
#include <QPropertyAnimation>
#include <QStyledItemDelegate>

class RemoveSelectionDelegate : public QStyledItemDelegate {
public:
    RemoveSelectionDelegate(QObject *parent = 0)
        : QStyledItemDelegate(parent) {
    }

    void paint(QPainter *painter, const QStyleOptionViewItem &option,
               const QModelIndex &index) const {
        // Call the original paint method with the selection state cleared
        // to prevent painting the original selection background
        QStyleOptionViewItemV4 optionV4 =
            *qstyleoption_cast<const QStyleOptionViewItemV4 *>(&option);
        optionV4.state &= ~QStyle::State_Selected;
        QStyledItemDelegate::paint(painter, optionV4, index);
    }
};

class ListWidget : public QListWidget {
    Q_OBJECT
public:
    ListWidget(QWidget *parent = 0)
        : QListWidget(parent)
        , selectionFrame(this)
        , animation(&selectionFrame, "geometry") {
        // Create a semi-transparent frame that doesn't interact with anything
        selectionFrame.setAttribute(Qt::WA_TransparentForMouseEvents);
        selectionFrame.setFocusPolicy(Qt::NoFocus);

        // You can put your transparent image in that stylesheet
        selectionFrame.setStyleSheet("background: solid rgba(0, 0, 125, 25%);");
        selectionFrame.hide();
        animation.setDuration(250);
        animation.setEasingCurve(QEasingCurve::InOutBack);

        connect(this,
                SIGNAL(currentItemChanged(QListWidgetItem*, QListWidgetItem*)),
                SLOT(updateSelection(QListWidgetItem*)) );        
        setItemDelegate(new RemoveSelectionDelegate(this));
    }

private slots:
    void resizeEvent(QResizeEvent *e) {
        QListWidget::resizeEvent(e);
        updateSelection(currentItem());
    }

    void updateSelection(QListWidgetItem* current) {
        animation.stop();
        if (!current) {
            selectionFrame.hide();
            return;
        }
        if (!selectionFrame.isVisible()) {
            selectionFrame.setGeometry(visualItemRect(current));
            selectionFrame.show();
            return;
        }
        animation.setStartValue(selectionFrame.geometry());
        animation.setEndValue(visualItemRect(current));
        animation.start();
    }
private:
    QFrame selectionFrame;
    QPropertyAnimation animation;
};

答案 1 :(得分:1)

因此,如果它只是文本,那么为什么没有QLabw的QDockwidget。

例如,看一下左边的'Qt Designer''小部件框',你可以拖动它并将它放在顶部。那是你在找什么?

您可以根据需要移动dockwidget。