OfficeAssistant_Win10/OfficeAssistant_msvc/MyButton.cpp

76 lines
2.1 KiB
C++
Raw Normal View History

2023-07-26 19:48:14 +08:00
//
// Created by HW on 2023/07/26.
//
2023-07-27 13:44:54 +08:00
#define TEXT_SIZE 7
2023-07-26 19:48:14 +08:00
#include "MyButton.h"
2023-07-30 01:06:42 +08:00
MyButton::MyButton(ButtonStruct &buttonStruct,int width,int height,QList<MyButton *> *buttons,QWidget *parent) : QPushButton(parent) {
2023-07-27 13:44:54 +08:00
this->buttons=buttons;
2023-07-26 19:48:14 +08:00
this->width2=width;
this->height2=height;
2023-07-30 01:06:42 +08:00
this->text=buttonStruct.text;
2023-07-30 10:26:41 +08:00
this->url = buttonStruct.url;
2023-07-30 01:06:42 +08:00
this->logo=buttonStruct.image;
this->logo_cover = buttonStruct.image_cover;
2023-07-27 13:44:54 +08:00
this->setStyleSheet("background-color:#333332;/*border:none;*/");
2023-07-26 19:48:14 +08:00
}
MyButton::~MyButton() {
delete logo;
2023-07-30 01:06:42 +08:00
delete logo_cover;
2023-07-26 19:48:14 +08:00
}
void MyButton::paintEvent(QPaintEvent *e) {
QPushButton::paintEvent(e);
QPainter painter(this);
painter.setRenderHint(QPainter::Antialiasing);
2023-07-27 13:44:54 +08:00
int logo_width=width()/3;
int logo_x=width()/3;
int logo_y=(height()-logo_width)/3;
setContentsMargins(0,0,0,0);
2023-07-26 19:48:14 +08:00
QFont ft;
2023-07-27 13:44:54 +08:00
ft.setPixelSize(TEXT_SIZE);
int text_x=(width()-TEXT_SIZE*text.length()*scale*2)/2;
int text_y=(logo_width+logo_y+10);
QRectF logo_rect(logo_x, logo_y, logo_width, logo_width);
QRectF text_rect(text_x,text_y, TEXT_SIZE*text.length()*scale*2,TEXT_SIZE*scale*2);
2023-07-26 19:48:14 +08:00
painter.setPen(QColor("#FFFFFF"));
painter.drawImage(logo_rect, *logo);
painter.drawText(text_rect, Qt::AlignCenter, text);
2023-07-27 13:44:54 +08:00
if(checked){
QRectF rect(0, this->height()-6, this->width(), 5);
painter.fillRect(rect, QColor("#FFFFFF"));
}
}
QSize MyButton::sizeHint() const {
return QSize(width2,height2);
}
void MyButton::enterEvent(QEvent *event) {
QWidget::enterEvent(event);
this->setStyleSheet("background-color:#646464;border:none;");
}
void MyButton::leaveEvent(QEvent *event) {
QWidget::leaveEvent(event);
this->setStyleSheet("background-color:#333332;border:none;");
}
void MyButton::mousePressEvent(QMouseEvent *event) {
QPushButton::mousePressEvent(event);
2023-07-26 19:48:14 +08:00
}
2023-07-27 13:44:54 +08:00
void MyButton::mouseReleaseEvent(QMouseEvent *event) {
QPushButton::mouseReleaseEvent(event);
for(auto button:*buttons){
button->setChecked(false);
button->update();
}
if(checked)
checked=false;
else
checked=true;
2023-07-30 10:26:41 +08:00
emit clicked1(text, url);
2023-07-27 13:44:54 +08:00
}