| 97 | } |
| 98 | |
| 99 | void LabelDisplay::GetModuleDimensions(float& w, float& h) |
| 100 | { |
| 101 | w = MAX((mShowControls ? mWidth : 0), mLabelFont.GetStringWidth(mLabel, mLabelSize) + 6); |
| 102 | h = (mShowControls ? mHeight : 0) + (3 + mLabelFont.GetStringHeight(mLabel, mLabelSize)) * 1.05; |
| 103 | } |
| 104 | |
| 105 | void LabelDisplay::IntSliderUpdated(IntSlider* slider, int oldVal, double time) |
| 106 | { |
nothing calls this directly
no test coverage detected