| 117 | // ============================================================================ |
| 118 | |
| 119 | ToggleButton::ToggleButton(QWidget *parent) |
| 120 | : ToolbarButton(parent) |
| 121 | { |
| 122 | // Toggle buttons maintain on/off state |
| 123 | setCheckable(true); |
| 124 | |
| 125 | // Set object name for QSS styling |
| 126 | setObjectName("ToggleButton"); |
| 127 | } |
| 128 | |
| 129 | // ============================================================================ |
| 130 | // ThreeStateButton |
nothing calls this directly
no outgoing calls
no test coverage detected