| 133 | |
| 134 | // SubWidget |
| 135 | template<> inline |
| 136 | ExampleColorWidget<SubWidget>::ExampleColorWidget(Widget* const parent) |
| 137 | : SubWidget(parent), |
| 138 | cur('r'), |
| 139 | reverse(false), |
| 140 | r(0), g(0), b(0) |
| 141 | { |
| 142 | setSize(300, 300); |
| 143 | parent->getApp().addIdleCallback(this); |
| 144 | } |
| 145 | |
| 146 | // TopLevelWidget |
| 147 | template<> inline |
nothing calls this directly
no test coverage detected