Searched refs:maxHeight (Results 26 - 48 of 48) sorted by relevance

12

/haiku/src/apps/networkstatus/
H A DNetworkStatusView.cpp66 extern "C" _EXPORT BView *instantiate_deskbar_item(float maxWidth, float maxHeight);
592 instantiate_deskbar_item(float maxWidth, float maxHeight) argument
594 return new NetworkStatusView(BRect(0, 0, maxHeight - 1, maxHeight - 1),
/haiku/src/servers/mail/
H A DDeskbarView.cpp60 float maxHeight);
78 instantiate_deskbar_item(float maxWidth, float maxHeight) argument
80 return new DeskbarView(BRect(0, 0, maxHeight - 1, maxHeight - 1));
/haiku/src/servers/app/
H A DDesktopListener.cpp274 int32 maxWidth, int32 minHeight, int32 maxHeight)
283 maxHeight);
273 NotifySizeLimitsChanged(Window* window, int32 minWidth, int32 maxWidth, int32 minHeight, int32 maxHeight) argument
H A DWindow.h234 int32 minHeight, int32 maxHeight);
237 int32* minHeight, int32* maxHeight) const;
H A DServerWindow.cpp932 int32 minWidth, maxWidth, minHeight, maxHeight; local
937 link.Read<float>(&value); maxHeight = (int32)value;
942 link.Read<int32>(&maxHeight);
946 "\n", Title(), minWidth, maxWidth, minHeight, maxHeight));
948 fWindow->SetSizeLimits(minWidth, maxWidth, minHeight, maxHeight);
952 &minHeight, &maxHeight);
959 fLink.Attach<float>((float)maxHeight);
964 minHeight, maxHeight);
4144 int32 minWidth, maxWidth, minHeight, maxHeight; local
4145 fWindow->GetSizeLimits(&minWidth, &maxWidth, &minHeight, &maxHeight);
[all...]
H A DWindow.cpp1176 int32 maxHeight)
1187 fMaxHeight = maxHeight;
1202 int32* minHeight, int32* maxHeight) const
1207 *maxHeight = fMaxHeight;
2054 else if (maxHeightDiff < 0.0) // we're currently larger than maxHeight
1175 SetSizeLimits(int32 minWidth, int32 maxWidth, int32 minHeight, int32 maxHeight) argument
/haiku/src/servers/app/stackandtile/
H A DSATGroup.cpp201 int32 minHeight, maxHeight; local
203 window->GetSizeLimits(&minWidth, &maxWidth, &minHeight, &maxHeight);
216 if (maxHeight < maxH)
217 maxHeight = maxH;
227 if (maxHeight > kMaxSolverValue)
228 maxHeight = kMaxSolverValue;
230 topWindow->AddDecorator(&minWidth, &maxWidth, &minHeight, &maxHeight);
235 fMaxHeightConstraint->SetRightSide(maxHeight);
H A DStackAndTile.cpp458 int32 minHeight, int32 maxHeight)
463 satWindow->SetOriginalSizeLimits(minWidth, maxWidth, minHeight, maxHeight);
457 SizeLimitsChanged(Window* window, int32 minWidth, int32 maxWidth, int32 minHeight, int32 maxHeight) argument
/haiku/src/kits/interface/
H A DLayoutUtils.cpp199 float maxHeight; local
201 view->GetHeightForWidth(frame.Width(), &minHeight, &maxHeight,
H A DWindow.cpp1380 float minHeight, float maxHeight)
1382 if (minWidth > maxWidth || minHeight > maxHeight)
1392 fLink->Attach<float>(maxHeight);
1516 BWindow::SetZoomLimits(float maxWidth, float maxHeight) argument
1523 if (maxHeight > fMaxHeight)
1524 maxHeight = fMaxHeight;
1525 fMaxZoomHeight = maxHeight;
1379 SetSizeLimits(float minWidth, float maxWidth, float minHeight, float maxHeight) argument
H A DTextView.cpp5088 float maxHeight = fTextRect.bottom + fLayoutData->bottomInset - viewHeight; local
5097 if (y > maxHeight)
5098 y = maxHeight;
/haiku/src/apps/drivesetup/
H A DMainWindow.cpp1454 float maxHeight = 0; local
1459 maxHeight += _ColumnListViewHeight(fListView, NULL);
1467 maxHeight += B_H_SCROLL_BAR_HEIGHT;
1468 maxHeight += 1.5 * parentRow->Height(); // the label row
1469 maxHeight += fDiskView->Bounds().Height();
1470 maxHeight += fMenuBar->Bounds().Height();
1473 SetZoomLimits(maxWidth, maxHeight);
/haiku/src/apps/cortex/RouteApp/
H A DStatusView.cpp191 float minWidth, maxWidth, minHeight, maxHeight; local
192 Window()->GetSizeLimits(&minWidth, &maxWidth, &minHeight, &maxHeight);
194 Window()->SetSizeLimits(minWidth, maxWidth, minHeight, maxHeight);
H A DRouteWindow.cpp169 float minWidth, maxWidth, minHeight, maxHeight; local
170 GetSizeLimits(&minWidth, &maxWidth, &minHeight, &maxHeight);
173 SetSizeLimits(minWidth, maxWidth, minHeight, maxHeight);
/haiku/src/apps/powerstatus/
H A DPowerStatusView.cpp55 float maxHeight);
931 instantiate_deskbar_item(float maxWidth, float maxHeight) argument
933 return new PowerStatusReplicant(BRect(0, 0, maxHeight - 1, maxHeight - 1),
/haiku/src/tests/servers/app/playground/
H A DObjectWindow.cpp345 float maxHeight = minHeight + 100; local
346 SetSizeLimits(minWidth, maxWidth, minHeight, maxHeight);
/haiku/src/servers/app/decorator/
H A DDecorator.h195 int32* maxWidth, int32* maxHeight) const;
H A DDecorator.cpp864 int32* maxWidth, int32* maxHeight) const
/haiku/src/preferences/screen/
H A DScreenWindow.cpp318 uint16 maxHeight = 0; local
331 if (maxHeight < mode.height)
332 maxHeight = mode.height;
385 fMonitorView->SetMaxResolution(maxWidth, maxHeight);
/haiku/src/libs/print/libprint/
H A DPreview.cpp979 float maxHeight = rect.Height() + 1 - windowBorderHeight - Frame().top; local
986 if (height > maxHeight) height = maxHeight;
/haiku/src/apps/workspaces/
H A DWorkspaces.cpp62 float maxHeight);
1107 instantiate_deskbar_item(float maxWidth, float maxHeight) argument
1125 float height = maxHeight;
/haiku/src/apps/processcontroller/
H A DProcessController.cpp124 float maxHeight);
127 instantiate_deskbar_item(float maxWidth, float maxHeight) argument
146 return new ProcessController(width - 1, maxHeight - 1);
/haiku/src/apps/showimage/
H A DShowImageWindow.cpp554 float maxHeight = frame.Height() + 1 - windowBorder - Frame().top; local
563 if (maxHeight > maxH)
564 maxHeight = maxH;
572 if (height > maxHeight)
573 height = maxHeight;

Completed in 168 milliseconds

12