MainWnd.cpp 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. #include "MainWnd.h"
  2. #include "ui_MainWnd.h"
  3. #include "Login.h"
  4. #include <QMouseEvent>
  5. #include <qDebug>
  6. #include "OriginalWnd/OriginalWnd.h"
  7. #include "form/form.h"
  8. MainWnd::MainWnd(QWidget *parent)
  9. : QMainWindow(parent)
  10. , ui(new Ui::MainWnd)
  11. {
  12. ui->setupUi(this);
  13. initForm();
  14. }
  15. MainWnd::~MainWnd()
  16. {
  17. delete ui;
  18. }
  19. void MainWnd::initForm()
  20. {
  21. // 隐藏原生标题栏
  22. setWindowFlags(Qt::FramelessWindowHint | Qt::Dialog);
  23. // 窗口背景透明
  24. setAttribute(Qt::WA_TranslucentBackground, true);
  25. QPixmap pixmap(":/images/light/logo1.png");
  26. QPixmap scaledPixmap = pixmap.scaled(90, 49, Qt::KeepAspectRatio);
  27. ui->label_logo->setPixmap(scaledPixmap);
  28. Login *login = new Login;
  29. ui->stackedWidget_3->addWidget(login);
  30. ui->stackedWidget_3->setCurrentIndex(ui->stackedWidget_3->indexOf(login));
  31. //登录监听
  32. ui->label_logo->installEventFilter(this);
  33. //安装监听事件,点击左侧按钮图标变化
  34. ui->tabBondBtn->installEventFilter(this);
  35. ui->tabBondBtn_2->installEventFilter(this);
  36. ui->tabBondBtn_3->installEventFilter(this);
  37. ui->tabBondBtn_4->installEventFilter(this);
  38. ui->tabBondBtn_5->installEventFilter(this);
  39. ui->tabBondBtn_6->installEventFilter(this);
  40. ui->tabBondBtn_7->installEventFilter(this);
  41. ui->tabBondBtn_8->installEventFilter(this);
  42. ui->tabBondBtn_9->installEventFilter(this);
  43. }
  44. bool MainWnd::eventFilter(QObject *obj, QEvent *event)
  45. {
  46. if (obj == this->ui->label_logo)
  47. {
  48. //判断事件类型是否为鼠标事件
  49. if (event->type() == QEvent::MouseButtonPress)
  50. {
  51. //转换为鼠标事件
  52. QMouseEvent* mouseenevt = static_cast<QMouseEvent*>(event);
  53. //判断鼠标左键点击
  54. if (mouseenevt->button() == Qt::LeftButton)
  55. {
  56. Login *login = new Login;
  57. ui->stackedWidget_3->addWidget(login);
  58. ui->stackedWidget_3->setCurrentIndex(ui->stackedWidget_3->indexOf(login));
  59. return true;
  60. }
  61. }
  62. }
  63. static const QStringList buttonNames = {
  64. "home",
  65. "Productionn assistance",
  66. "Program",
  67. "Message",
  68. "Module",
  69. "Disposition",
  70. "Diagnosis",
  71. "System",
  72. "Help"
  73. };
  74. static QToolButton* lastHoveredButton = nullptr; // 用于跟踪上一个悬停的按钮
  75. static QMap<QToolButton*, QString> buttonLightIcons; // 存储每个按钮的亮色图标路径
  76. // 处理鼠标按下事件或鼠标悬停进入事件
  77. if (event->type() == QEvent::MouseButtonPress || event->type() == QEvent::HoverEnter) {
  78. if (obj && obj->inherits("QToolButton")) {
  79. QToolButton* button = static_cast<QToolButton*>(obj);
  80. // 恢复所有按钮为亮色图标(如果没有选中)
  81. for (int i = 0; i < buttonNames.size(); ++i) {
  82. QToolButton* currentButton = nullptr;
  83. switch (i) {
  84. case 0: currentButton = ui->tabBondBtn; break;
  85. case 1: currentButton = ui->tabBondBtn_2; break;
  86. case 2: currentButton = ui->tabBondBtn_3; break;
  87. case 3: currentButton = ui->tabBondBtn_4; break;
  88. case 4: currentButton = ui->tabBondBtn_5; break;
  89. case 5: currentButton = ui->tabBondBtn_6; break;
  90. case 6: currentButton = ui->tabBondBtn_7; break;
  91. case 7: currentButton = ui->tabBondBtn_8; break;
  92. case 8: currentButton = ui->tabBondBtn_9; break;
  93. }
  94. if (currentButton) {
  95. QString lightIconPath = QString(":/images/light/%1.png").arg(buttonNames[i]);
  96. if (currentButton == button) {
  97. // 当前悬停的按钮,设置为深色图标
  98. QString deepIconPath = QString(":/images/deep/%1.png").arg(buttonNames[i]);
  99. currentButton->setIcon(QIcon(deepIconPath));
  100. currentButton->setChecked(true);
  101. } else if (!currentButton->isChecked()) {
  102. // 恢复为亮色图标
  103. buttonLightIcons[currentButton] = lightIconPath; // 存储亮色图标路径
  104. currentButton->setIcon(QIcon(lightIconPath));
  105. }
  106. }
  107. }
  108. // 如果上一个悬停按钮存在且不是当前按钮,恢复其亮色图标
  109. if (lastHoveredButton && lastHoveredButton != button && !lastHoveredButton->isChecked()) {
  110. QString lightIconPath = buttonLightIcons.value(lastHoveredButton);
  111. if (!lightIconPath.isEmpty()) {
  112. lastHoveredButton->setIcon(QIcon(lightIconPath));
  113. }
  114. }
  115. lastHoveredButton = button; // 更新为当前悬停的按钮
  116. }
  117. return true; // 表示事件已处理
  118. }
  119. // 处理鼠标离开事件
  120. if (event->type() == QEvent::HoverLeave) {
  121. if (obj && obj->inherits("QToolButton")) {
  122. QToolButton* button = static_cast<QToolButton*>(obj);
  123. if (button == lastHoveredButton && !button->isChecked()) {
  124. QString lightIconPath = buttonLightIcons.value(button);
  125. if (!lightIconPath.isEmpty()) {
  126. button->setIcon(QIcon(lightIconPath));
  127. }
  128. lastHoveredButton = nullptr; // 重置上一个悬停的按钮
  129. }
  130. }
  131. return true; // 表示事件已处理
  132. }
  133. return QWidget::eventFilter(obj, event); // 如果没有处理返回默认事件处理
  134. }
  135. // void MainWnd::on_pushButton_4_clicked()
  136. // {
  137. // Demo001_1 *demo001_1 = new Demo001_1;
  138. // ui->switchShowPageUI->addWidget(demo001_1);
  139. // ui->switchShowPageUI->setCurrentIndex(ui->switchShowPageUI->indexOf(demo001_1));
  140. // }
  141. // void MainWnd::on_pushButton_5_clicked()
  142. // {
  143. // Demo001_2 *demo001_2 = new Demo001_2;
  144. // ui->switchShowPageUI->addWidget(demo001_2);
  145. // ui->switchShowPageUI->setCurrentIndex(ui->switchShowPageUI->indexOf(demo001_2));
  146. // }
  147. // void MainWnd::on_pushButton_6_clicked()
  148. // {
  149. // Demo001_3 *demo001_3 = new Demo001_3;
  150. // ui->switchShowPageUI->addWidget(demo001_3);
  151. // ui->switchShowPageUI->setCurrentIndex(ui->switchShowPageUI->indexOf(demo001_3));
  152. // }
  153. void MainWnd::on_tabBondBtn_clicked()
  154. {
  155. OriginalWnd *originalWnd = new OriginalWnd;
  156. ui->stackedWidget_3->addWidget(originalWnd);
  157. ui->stackedWidget_3->setCurrentIndex(ui->stackedWidget_3->indexOf(originalWnd));
  158. }