| 203 | } |
| 204 | |
| 205 | void TitleBar::setRestoreButton(bool max) |
| 206 | { |
| 207 | QString iconPath = GetIconPath(); |
| 208 | if (!max) { |
| 209 | _maximizeButton->setIcon(QIcon(iconPath+"/maximize.svg")); |
| 210 | } else { |
| 211 | _maximizeButton->setIcon(QIcon(iconPath+"/restore.svg")); |
| 212 | } |
| 213 | } |
| 214 | |
| 215 | void TitleBar::mousePressEvent(QMouseEvent* event) |
| 216 | { |
no test coverage detected