Searched refs:fMaxValue (Results 1 - 8 of 8) sorted by relevance

/haiku/src/kits/interface/
H A DSpinner.cpp106 if (data->FindInt32("_max", &fMaxValue) != B_OK)
107 fMaxValue = INT32_MAX;
136 status = data->AddInt32("_max", fMaxValue);
183 SetIncrementEnabled(enable && Value() < fMaxValue);
201 fMaxValue = max;
210 *max = fMaxValue;
228 else if (value > fMaxValue)
229 value = fMaxValue;
237 SetIncrementEnabled(IsEnabled() && value < fMaxValue);
265 fMaxValue
[all...]
H A DDecimalSpinner.cpp146 if (data->FindDouble("_max", &fMaxValue) != B_OK)
185 status = data->AddDouble("_max", fMaxValue);
241 SetIncrementEnabled(enable && Value() < fMaxValue);
259 fMaxValue = max;
268 *max = fMaxValue;
293 else if (value > fMaxValue)
294 value = fMaxValue;
306 SetIncrementEnabled(IsEnabled() && value < fMaxValue);
334 fMaxValue = 100.0;
H A DSlider.cpp48 fMaxValue(maxValue),
78 fMaxValue(maxValue),
108 fMaxValue(maxValue),
169 if (archive->FindInt32("_max", &fMaxValue) != B_OK)
170 fMaxValue = 100;
281 ret = archive->AddInt32("_max", fMaxValue);
527 newValue = fMaxValue;
538 if (newValue > fMaxValue)
539 newValue = fMaxValue;
724 if (value > fMaxValue)
[all...]
/haiku/headers/private/interface/
H A DDecimalSpinner.h45 double MaxValue() const { return fMaxValue; }
86 double fMaxValue; member in class:BDecimalSpinner
H A DSpinner.h42 int32 MaxValue() const { return fMaxValue; }
78 int32 fMaxValue; member in class:BSpinner
/haiku/src/add-ons/media/media-add-ons/vst_host/
H A DVSTHost.cpp67 fMaxValue.SetTo(temp);
68 ValidateValues(&fMaxValue);
114 max_item->Name = fMaxValue;
252 return fMaxValue.String();
H A DVSTHost.h125 BString fMaxValue; member in class:VSTParameter
/haiku/headers/os/interface/
H A DSlider.h207 int32 fMaxValue; member in class:BSlider

Completed in 55 milliseconds