Searched refs:fWidth (Results 1 - 25 of 86) sorted by last modified time

1234

/haiku/src/apps/charactermap/
H A DCharacterView.cpp299 fWidth(width * 2),
306 *width = fWidth;
336 float fWidth; member in class:PreviewItem
/haiku/src/preferences/screen/
H A DMonitorView.cpp32 fWidth(width),
128 if (fWidth == width && fHeight == height)
131 fWidth = width;
199 float factorX = (float)fWidth / fMaxWidth;
232 fDPI = (int32)round((fWidth / x + fHeight / y) / 2);
/haiku/src/kits/interface/
H A DColumnTypes.cpp133 fWidth(0),
145 fWidth = 0;
159 fWidth = width;
166 return fWidth;
260 fWidth(0)
269 fWidth = width;
276 return fWidth;
H A DColumnListView.cpp705 fWidth(width),
724 return fWidth;
731 fWidth = width;
778 return fWidth;
1996 message->AddFloat("width", column->fWidth);
/haiku/headers/private/interface/
H A DColumnTypes.h72 float fWidth; member in class:BStringField
115 float fWidth; member in class:BDateField
/haiku/src/apps/deskcalc/
H A DCalcView.cpp203 fWidth(1),
237 fWidth(1),
626 float sizeCol = fWidth / (float)fColumns;
738 fWidth = width;
866 BRect keypadRect(0.0, sizeDisp, fWidth, fHeight);
1014 float width = fWidth;
1051 if (width != fWidth || height != fHeight)
1079 if (width != fWidth || height != fHeight)
1422 BRect r(0.0, 0.0, fWidth, fHeight);
1435 r.right = fWidth;
[all...]
H A DCalcView.h130 float fWidth; member in class:CalcView
/haiku/src/apps/haikudepot/model/
H A DScreenshotCoordinate.h39 uint16 fWidth; member in class:ScreenshotCoordinate
H A DScreenshotCoordinate.cpp16 fWidth(0),
25 from->FindUInt16(kWidthKey, &fWidth);
33 fWidth(width),
54 return fWidth;
68 return !fCode.IsEmpty() && fWidth > 0 && fHeight > 0;
75 return fCode == other.fCode && fHeight == other.fHeight && fWidth == other.fWidth;
83 result.SetToFormat("%s_%" B_PRIu16 "x%" B_PRIu16 , fCode.String(), fWidth, fHeight);
102 result = into->AddUInt16(kWidthKey, fWidth);
/haiku/src/apps/haikudepot/packagemodel/
H A DScreenshotInfo.cpp15 fWidth(),
26 fWidth(width),
36 fWidth(other.fWidth),
47 fWidth = other.fWidth;
58 && fWidth == other.fWidth
H A DScreenshotInfo.h28 { return fWidth; }
36 int32 fWidth; member in class:ScreenshotInfo
/haiku/src/apps/cortex/ValControl/
H A DValControl.cpp692 float fWidth = e.frame.Width(); local
694 if (curFrame.Width() != fWidth
696 e.pView->ResizeTo(fWidth + 5.0, fHeight);
H A DValControlDigitSegment.cpp413 float fWidth = pFont->StringWidth(&c, 1); local
414 if(fWidth > fMax)
415 fMax = fWidth;
/haiku/src/add-ons/translators/psd/
H A DPSDLoader.cpp42 fWidth = _GetInt32FromStream(fStream);
200 int32 rowBytes = (fWidth * fDepth) / 8;
266 bitsHeader.bounds.right = fWidth - 1;
276 bitsHeader.rowBytes = sizeof(uint32) * fWidth;
288 uint8 *lineData = new uint8[fWidth * sizeof(uint32)];
293 int32 rowBytes = (fWidth / 8 ) * fHeight;
316 for (int w = 0; w < fWidth; w++) {
326 target->Write(lineData, fWidth * sizeof(uint32));
339 for (int w = 0; w < fWidth; w++) {
348 target->Write(lineData, fWidth * sizeo
[all...]
H A DPSDLoader.h107 int32 fWidth; member in class:PSDLoader
/haiku/src/apps/icon-o-matic/import_export/svg/
H A DDocumentBuilder.cpp34 : fWidth(0),
54 fWidth = width;
76 bounds.Set(0.0, 0.0, (int32)fWidth - 1, (int32)fHeight - 1);
H A DDocumentBuilder.h51 uint32 fWidth; member in class:DocumentBuilder
/haiku/src/apps/terminal/
H A DTerminalBuffer.cpp334 int32 oldWidth = fWidth;
350 fWidth = oldWidth;
357 fWidth = width;
H A DHistoryBuffer.cpp23 fWidth(0),
57 fWidth = width;
H A DBasicTerminalBuffer.h70 int32 Width() const { return fWidth; }
226 int32 fWidth; member in class:BasicTerminalBuffer
H A DBasicTerminalBuffer.cpp109 fWidth(0),
146 fWidth = width;
176 error = _ResetTabStops(fWidth);
204 if (width == fWidth && height == fHeight)
217 return _ResizeHistory(fWidth, historyCapacity);
272 fWidth * sizeof(TerminalCell));
279 destLine->Clear(fAttributes, fWidth);
287 TerminalLine* lineBuffer = ALLOC_LINE_ON_STACK(fWidth);
298 TerminalLine* lineBuffer = ALLOC_LINE_ON_STACK(fWidth);
321 TerminalLine* lineBuffer = ALLOC_LINE_ON_STACK(fWidth);
[all...]
/haiku/src/kits/tracker/
H A DViewState.h90 float fWidth; member in class:BPrivate::BColumn
194 return fWidth;
250 fWidth = w;
H A DViewState.cpp54 const char* kColumnWidthName = "BColumn:fWidth";
111 stream->Read(&fWidth, sizeof(float));
124 fWidth = B_SWAP_FLOAT(fWidth);
132 fWidth = ceilf(fWidth * _Scale());
146 if (message.FindFloat(kColumnWidthName, index, &fWidth) != B_OK)
147 fWidth = -1.0f;
149 fWidth = ceilf(fWidth * _Scal
[all...]
/haiku/src/servers/app/drawing/interface/virtual/
H A DDWindowBuffer.cpp11 fWidth(0),
59 return fWidth;
87 fWidth = info->window_bounds.right - info->window_bounds.left + 1;
93 fWidth = 0;
110 fWidth = width;
H A DDWindowBuffer.h37 uint32 fWidth; member in class:DWindowBuffer

Completed in 224 milliseconds

1234