Searched refs:fWidth (Results 51 - 75 of 86) sorted by relevance

1234

/haiku/src/apps/switcher/
H A DWindowsView.cpp172 fWidth = width;
192 return BSize(fWidth, fHeight);
202 return BSize(fWidth, fHeight);
214 int32 fWidth; member in class:StringItemRenderer
/haiku/src/add-ons/translators/psd/
H A DPSDWriter.h65 int32 fWidth; member in class:PSDWriter
H A DPSDLoader.h107 int32 fWidth; member in class:PSDLoader
H A DPSDWriter.cpp54 fWidth = bounds.IntegerWidth() + 1;
106 psdHeader << fHeight << fWidth; // Image size local
138 psdLayersSection << (uint32)fWidth;
280 int32 channelSize = fWidth * fHeight;
299 for (int32 w = 0; w < fWidth; w++) {
/haiku/src/add-ons/translators/gif/
H A DGIFLoad.h81 int fWidth; member in class:GIFLoad
/haiku/src/add-ons/screen_savers/flurry/
H A DFlurry.h35 float fWidth; member in class:FlurryView
/haiku/src/servers/notification/
H A DNotificationWindow.h63 float fWidth; member in class:NotificationWindow
H A DNotificationWindow.cpp275 return fWidth;
452 float originalWidth = fWidth;
454 if (settings.FindFloat(kWidthName, &fWidth) != B_OK)
455 fWidth = kDefaultWidth;
456 if (originalWidth != fWidth)
457 GetLayout()->SetExplicitSize(BSize(fWidth, B_SIZE_UNSET));
/haiku/src/apps/mandelbrot/
H A DFractalEngine.h43 uint16 fWidth; member in class:FractalEngine
/haiku/src/kits/tracker/
H A DViewState.h90 float fWidth; member in class:BPrivate::BColumn
194 return fWidth;
250 fWidth = w;
/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;
/haiku/src/apps/cortex/ValControl/
H A DValControlDigitSegment.cpp413 float fWidth = pFont->StringWidth(&c, 1); local
414 if(fWidth > fMax)
415 fMax = fWidth;
/haiku/src/apps/showimage/
H A DFilter.cpp971 fWidth(0),
994 fWidth = GetSrcImage()->Bounds().IntegerWidth();
998 rect.Set(0, 0, fHeight, fWidth);
1000 rect.Set(0, 0, fWidth, fHeight);
1113 for (x = 0; x <= fWidth; x++) {
1122 for (x = 0; x <= fWidth; x ++) {
1124 destY = fWidth - x;
1131 for (x = 0; x <= fWidth; x ++) {
1140 for (x = 0; x <= fWidth; x ++) {
1141 destX = fWidth
[all...]
/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;
/haiku/src/preferences/filetypes/
H A DAttributeListView.cpp163 fWidth(width),
175 fWidth(60),
251 fWidth = other.Width();
/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);
/haiku/headers/libs/print/libprint/
H A DHalftone.h124 int fWidth; member in class:Halftone
/haiku/src/servers/app/
H A DServerCursor.cpp115 fWidth = 0;
/haiku/src/apps/deskcalc/
H A DCalcView.h130 float fWidth; member in class:CalcView
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...]
/haiku/src/libs/print/libprint/
H A DHalftone.cpp300 fWidth = width;
317 || fWidth != width)
/haiku/src/apps/haikudepot/textview/
H A DParagraphLayout.h186 { return fWidth; }
243 float fWidth; member in class:ParagraphLayout
/haiku/headers/private/interface/
H A DColumnTypes.h72 float fWidth; member in class:BStringField
115 float fWidth; member in class:BDateField
/haiku/src/apps/sudoku/
H A DSudokuView.cpp567 fWidth = (Bounds().Width() + 2 - kStrongLineSize * (fBlockSize - 1)) / size;
570 _FitFont(fFieldFont, fWidth - 2, fHeight - 2);
579 fHintWidth = (fWidth - 2) / fBlockSize;
814 float width = fWidth - 1;
823 width += fWidth;
887 + BPoint((fWidth - StringWidth(text)) / 2, fBaseline));
992 return BPoint(x * fWidth - 1 + x / fBlockSize * kStrongLineSize + 1,
1001 BPoint rightBottom = leftTop + BPoint(fWidth - 2, fHeight - 2);
1103 float block = fWidth * fBlockSize + kStrongLineSize;
1105 uint32 offsetX = (uint32)floor((where.x - x * block) / fWidth);
[all...]

Completed in 127 milliseconds

1234