| 52 | } |
| 53 | |
| 54 | void ExpandButton::buttonClicked() { |
| 55 | switch (currentState) { |
| 56 | case EXPANDBUTTON_1 : |
| 57 | currentState = EXPANDBUTTON_2; |
| 58 | break; |
| 59 | case EXPANDBUTTON_2 : |
| 60 | currentState = EXPANDBUTTON_3; |
| 61 | break; |
| 62 | case EXPANDBUTTON_3 : |
| 63 | currentState = EXPANDBUTTON_1; |
| 64 | break; |
| 65 | } |
| 66 | setState(currentState); |
| 67 | } |
| 68 | |
| 69 | |
| 70 | void ExpandButton::reloadIcon() { |
nothing calls this directly
no outgoing calls
no test coverage detected