Searched refs:horizontal (Results 26 - 50 of 54) sorted by last modified time

123

/haiku/headers/os/interface/
H A DSplitView.h23 void SetInsets(float horizontal, float vertical);
H A DGridLayout.h14 BGridLayout(float horizontal
28 void SetSpacing(float horizontal, float vertical);
H A DTwoDimensionalLayout.h22 void SetInsets(float horizontal, float vertical);
/haiku/src/kits/interface/
H A DTwoDimensionalLayout.cpp32 // The basic idea of the layout process is simple. The horizontal and the
36 // The horizontal dimension must be laid out first and and the results are
216 // active layout context when doing last horizontal layout
296 BTwoDimensionalLayout::SetInsets(float horizontal, float vertical) argument
298 fLeftInset = BControlLook::ComposeSpacing(horizontal);
487 // layout the horizontal/vertical elements
H A DGridLayout.cpp155 BGridLayout::BGridLayout(float horizontal, float vertical) argument
165 SetSpacing(horizontal, vertical);
283 BGridLayout::SetSpacing(float horizontal, float vertical) argument
285 horizontal = BControlLook::ComposeSpacing(horizontal);
287 if (horizontal != fHSpacing || vertical != fVSpacing) {
288 fHSpacing = horizontal;
H A DLayoutItem.cpp132 // The item has height for width, so we do the horizontal alignment
135 && alignment.horizontal != B_ALIGN_USE_FULL_WIDTH) {
137 * alignment.horizontal);
140 alignment.horizontal = B_ALIGN_USE_FULL_WIDTH;
H A DAlignment.cpp12 switch (horizontal) {
21 return (float)horizontal;
H A DSpaceLayoutItem.cpp166 fAlignment.horizontal = alignment.horizontal;
/haiku/src/tests/kits/interface/
H A DChannelSliderTest.cpp39 BChannelSlider *horizontal = new BChannelSlider(BRect(150, 10, 160, 20), local
40 "horizontal slider", "Horizontal", new BMessage('test'), 3);
41 AddChild(horizontal);
42 horizontal->ResizeToPreferred();
44 horizontal = new BChannelSlider(BRect(150, 10, 160, 20),
45 "horizontal slider", "Horizontalp", new BMessage('test'),
47 AddChild(horizontal);
48 horizontal->SetLimitLabels("Wminp", "Wmaxp");
49 horizontal->ResizeToPreferred();
50 horizontal
[all...]
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DGroupView.h19 void SetSpacing(float horizontal, float vertical);
/haiku/src/libs/alm/
H A DArea.cpp323 Area::SetInsets(float horizontal, float vertical) argument
325 if (horizontal != B_SIZE_UNSET)
326 horizontal = BControlLook::ComposeSpacing(horizontal);
330 fLeftTopInset.Set(horizontal, horizontal);
/haiku/src/apps/debuganalyzer/gui/chart/
H A DChart.cpp512 Chart::_UpdateScrollBar(bool horizontal) argument
514 const ChartDataRange& range = horizontal ? fDomain : fRange;
515 const ChartDataRange& displayRange = horizontal
517 float chartSize = horizontal ? fChartFrame.Width() : fChartFrame.Height();
519 float& scrollSize = horizontal ? fHScrollSize : fVScrollSize;
520 float& scrollValue = horizontal ? fHScrollValue : fVScrollValue;
521 BScrollBar* scrollBar = ScrollBar(horizontal ? B_HORIZONTAL : B_VERTICAL);
547 Chart::_ScrollTo(float value, bool horizontal) argument
549 float& scrollValue = horizontal ? fHScrollValue : fVScrollValue;
553 const ChartDataRange& range = horizontal
[all...]
H A DChart.h90 void _UpdateScrollBar(bool horizontal);
91 void _ScrollTo(float value, bool horizontal);
H A DChartLegend.h35 float* horizontal, float* vertical) = 0;
H A DStringChartLegend.cpp44 float* horizontal, float* vertical)
46 *horizontal = 2 * fEmWidth;
43 GetMinimumLegendSpacing(BView* view, float* horizontal, float* vertical) argument
H A DStringChartLegend.h32 float* horizontal, float* vertical);
/haiku/src/apps/cortex/DiagramView/
H A DDiagramBox.cpp302 DiagramBox::ResizeBy(float horizontal, float vertical) argument
305 fFrame.right += horizontal;
H A DDiagramBox.h82 virtual void ResizeBy(float horizontal, float vertical);
H A DDiagramEndPoint.cpp289 float horizontal,
293 m_frame.right += horizontal;
288 ResizeBy( float horizontal, float vertical) argument
H A DDiagramEndPoint.h148 float horizontal,
H A DDiagramItem.h218 float horizontal,
217 ResizeBy( float horizontal, float vertical) argument
H A DDiagramItemGroup.cpp601 DiagramItemGroup::GetItemAlignment(float *horizontal, float *vertical) argument
604 if (horizontal)
605 *horizontal = fItemAlignment.x;
H A DDiagramItemGroup.h108 void SetItemAlignment(float horizontal, float vertical) argument
110 fItemAlignment.Set(horizontal, vertical);
113 void GetItemAlignment(float *horizontal, float *vertical);
/haiku/headers/libs/alm/
H A DALMLayoutBuilder.h47 BALMLayoutBuilder& SetInsets(float horizontal, float vertical);
51 BALMLayoutBuilder& SetSpacing(float horizontal, float vertical);
H A DArea.h83 void SetInsets(float horizontal, float vertical);

Completed in 99 milliseconds

123