| 125 | }; |
| 126 | |
| 127 | void SetBackgroundColor(QColor color) |
| 128 | { |
| 129 | if (!color.isValid()) return; |
| 130 | if (color.alpha() == 0) color.setAlpha(1); |
| 131 | backgroundColor = color; |
| 132 | repaint(); |
| 133 | settings.setValue(BG_COLOR, color.name(QColor::HexArgb)); |
| 134 | }; |
| 135 | |
| 136 | QColor TextColor() |
| 137 | { |
nothing calls this directly
no outgoing calls
no test coverage detected