動畫按鈕組控件能夠用來當作各類漂亮的導航條用,既能夠設置成頂部底部+左側右側,還自帶精美的滑動效果,還能夠設置懸停滑動等各類顏色,原創做者雨田哥(QQ:3246214072),馳騁Qt控件界多年,雨田哥是我見過的在這塊水平至關牛逼的,在我之上,想要什麼效果均可以搞出來,你們也能夠找他定製控件,物美價廉!c++
#ifndef BUTTONGROUP_H #define BUTTONGROUP_H /** * 動畫按鈕組控件 做者:feiyangqingyun(QQ:517216493) 2018-9-12 * 參考雨田哥(QQ:3246214072) https://blog.csdn.net/ly305750665/article/details/80736504 * 1:可設置線條的寬度 * 2:可設置線條的顏色 * 3:可設置線條的位置 上下左右 * 4:可設置按鈕的正常+懸停+選中背景顏色 * 5:可設置文字的正常+懸停+選中背景顏色 * 6:切換位置線條自動跟隨 * 7:可設置按鈕字符串組合生成按鈕組 * 8:可設置線條滑動的速度 */ #include <QWidget> class QBoxLayout; class QAbstractButton; class QButtonGroup; class QPropertyAnimation; #ifdef quc #if (QT_VERSION < QT_VERSION_CHECK(5,7,0)) #include <QtDesigner/QDesignerExportWidget> #else #include <QtUiPlugin/QDesignerExportWidget> #endif class QDESIGNER_WIDGET_EXPORT ButtonGroup : public QWidget #else class ButtonGroup : public QWidget #endif { Q_OBJECT Q_ENUMS(LinePosition) Q_PROPERTY(int interval READ getInterval WRITE setInterval) Q_PROPERTY(int lineLen READ getLineLen WRITE setLineLen) Q_PROPERTY(int index READ getIndex WRITE setIndex) Q_PROPERTY(QString texts READ getTexts WRITE setTexts) Q_PROPERTY(LinePosition linePosition READ getLinePosition WRITE setLinePosition) Q_PROPERTY(QColor lineColor READ getLineColor WRITE setLineColor) Q_PROPERTY(QColor btnNormalColor READ getBtnNormalColor WRITE setBtnNormalColor) Q_PROPERTY(QColor btnHoverColor READ getBtnHoverColor WRITE setBtnHoverColor) Q_PROPERTY(QColor btnDarkColor READ getBtnDarkColor WRITE setBtnDarkColor) Q_PROPERTY(QColor textNormalColor READ getTextNormalColor WRITE setTextNormalColor) Q_PROPERTY(QColor textHoverColor READ getTextHoverColor WRITE setTextHoverColor) Q_PROPERTY(QColor textDarkColor READ getTextDarkColor WRITE setTextDarkColor) Q_PROPERTY(QColor baseColor READ getBaseColor WRITE setBaseColor) public: enum LinePosition { LinePosition_Left = 0, //左邊 LinePosition_Right = 1, //右邊 LinePosition_Top = 2, //上邊 LinePosition_Bottom = 3 //下邊 }; explicit ButtonGroup(QWidget *parent = 0); ~ButtonGroup(); protected: void resizeEvent(QResizeEvent *); void showEvent(QShowEvent *); void paintEvent(QPaintEvent *); private: int interval; //線條移動的速度 int lineLen; //線條的長度 int index; //當前索引 QString texts; //按鈕文本集合 LinePosition linePosition; //線條方向 QColor lineColor; //線條的顏色 QColor btnNormalColor; //按鈕正常顏色 QColor btnHoverColor; //按鈕通過顏色 QColor btnDarkColor; //按鈕加深選中顏色 QColor textNormalColor; //文字正常顏色 QColor textHoverColor; //文字通過顏色 QColor textDarkColor; //文字加深選中顏色 QColor baseColor; //基準顏色 int previousIndex; //上一個按鈕索引 int offset; //偏移量 QSize btnSize; //按鈕的尺寸 QBoxLayout *layout; //佈局 QButtonGroup *btnGroup; //按鈕組 QList<QAbstractButton *> btns; //按鈕集合 QPropertyAnimation *animation; //屬性動畫 private slots: void onButtonClicked(int index); void onValueChanged(const QVariant &value); public: int getInterval() const; int getLineLen() const; int getIndex() const; QString getTexts() const; LinePosition getLinePosition() const; QColor getLineColor() const; QColor getBtnNormalColor() const; QColor getBtnHoverColor() const; QColor getBtnDarkColor() const; QColor getTextNormalColor() const; QColor getTextHoverColor() const; QColor getTextDarkColor() const; QColor getBaseColor() const; QSize sizeHint() const; QSize minimumSizeHint() const; public Q_SLOTS: //設置線條移動的速度 void setInterval(int interval); //設置線條的尺寸 void setLineLen(int lineLen); //設置當前索引,選中按鈕 void setIndex(int index); //設置按鈕文本集合 void setTexts(const QString &texts); //設置線條方向 void setLinePosition(const LinePosition &linePosition); //設置線條顏色 void setLineColor(const QColor &lineColor); //設置按鈕正常顏色 void setBtnNormalColor(const QColor &btnNormalColor); //設置按鈕懸停顏色 void setBtnHoverColor(const QColor &btnHoverColor); //設置鼠標選中顏色 void setBtnDarkColor(const QColor &btnDarkColor); //設置文字正常顏色 void setTextNormalColor(const QColor &textNormalColor); //設置文字懸停顏色 void setTextHoverColor(const QColor &textHoverColor); //設置文字選中顏色 void setTextDarkColor(const QColor &textDarkColor); //設置基準顏色 void setBaseColor(const QColor &baseColor, bool normal = false); //初始化按下按鈕 void init(); //添加按鈕 void addButton(QAbstractButton *btn, int id); //結束添加 void addFinsh(); //設置按鈕樣式 void setBtnStyle(); Q_SIGNALS: void buttonClicked(int index); void buttonClicked(QAbstractButton *btn); }; #endif // BUTTONGROUP_H
void ButtonGroup::paintEvent(QPaintEvent *) { if (btns.count() == 0) { return; } QPainter painter(this); painter.setRenderHints(QPainter::Antialiasing); //設置顏色 painter.setPen(Qt::NoPen); painter.setBrush(lineColor); //根據不一樣的位置繪製線條區域,也能夠改爲繪製兩點之間的距離 if (linePosition == LinePosition_Top) { painter.drawRect(offset, 0, btnSize.width(), lineLen); } else if (linePosition == LinePosition_Bottom) { painter.drawRect(offset, this->height() - lineLen, btnSize.width(), lineLen); } else if (linePosition == LinePosition_Left) { painter.drawRect(0, offset, lineLen, btnSize.height()); } else if (linePosition == LinePosition_Right) { painter.drawRect(this->width() - lineLen, offset, lineLen, btnSize.height()); } } void ButtonGroup::onButtonClicked(int index) { //當前按鈕選中 btnGroup->button(index)->setChecked(true); //更新當前按鈕和上一個按鈕的索引 previousIndex = this->index; this->index = index; //根據線條位置設置動畫啓動和結束值 if (linePosition == LinePosition_Top || linePosition == LinePosition_Bottom) { animation->setStartValue(btns.at(previousIndex)->x()); animation->setEndValue(btns.at(index)->x()); } else if (linePosition == LinePosition_Left || linePosition == LinePosition_Right) { animation->setStartValue(btns.at(previousIndex)->y()); animation->setEndValue(btns.at(index)->y()); } //啓動動畫移動線條 animation->start(); //發送信號出去 emit buttonClicked(index); emit buttonClicked(btns.at(index)); }