Searched refs:horizontal (Results 1 - 25 of 54) sorted by relevance

123

/haiku/headers/os/interface/
H A DAlignment.h12 alignment horizontal; member in class:BAlignment
17 inline BAlignment(alignment horizontal,
26 inline void SetHorizontal(alignment horizontal);
42 : horizontal(B_ALIGN_HORIZONTAL_UNSET),
50 : horizontal(other.horizontal),
57 BAlignment::BAlignment(alignment horizontal, vertical_alignment vertical) argument
58 : horizontal(horizontal),
67 return horizontal;
79 SetHorizontal(alignment horizontal) argument
[all...]
H A DGridView.h14 BGridView(float horizontal
18 float horizontal = B_USE_DEFAULT_SPACING,
H A DScrollView.h19 uint32 flags = 0, bool horizontal = false,
23 uint32 flags, bool horizontal,
101 void _Init(bool horizontal, bool vertical);
106 void _AlignScrollBars(bool horizontal,
109 static BRect _ComputeFrame(BRect frame, BScrollBar* horizontal,
112 static BRect _ComputeFrame(BView* target, BScrollBar* horizontal,
H A DGridLayoutBuilder.h12 BGridLayoutBuilder(float horizontal
H A DGridLayout.h14 BGridLayout(float horizontal
28 void SetSpacing(float horizontal, float vertical);
/haiku/src/kits/interface/
H A DAlignment.cpp12 switch (horizontal) {
21 return (float)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 DScrollView.cpp30 uint32 flags, bool horizontal, bool vertical, border_style border)
36 _Init(horizontal, vertical);
41 bool horizontal, bool vertical, border_style border)
47 _Init(horizontal, vertical);
760 BScrollView::_Init(bool horizontal, bool vertical) argument
769 if (horizontal) {
802 if (horizontal)
812 _AlignScrollBars(horizontal, vertical, targetFrame);
868 BScrollView::_AlignScrollBars(bool horizontal, bool vertical, BRect targetFrame) argument
870 if (horizontal) {
29 BScrollView(const char* name, BView* target, uint32 resizingMode, uint32 flags, bool horizontal, bool vertical, border_style border) argument
40 BScrollView(const char* name, BView* target, uint32 flags, bool horizontal, bool vertical, border_style border) argument
916 _ComputeFrame(BRect frame, BScrollBar* horizontal, BScrollBar* vertical, border_style border, uint32 borders) argument
948 _ComputeFrame(BView *target, BScrollBar* horizontal, BScrollBar* vertical, border_style border, uint32 borders) argument
[all...]
H A DSplitView.cpp54 BSplitView::SetInsets(float horizontal, float vertical) argument
56 horizontal = BControlLook::ComposeSpacing(horizontal);
58 fSplitLayout->SetInsets(horizontal, vertical, horizontal, vertical);
H A DLayoutUtils.cpp150 alignment.horizontal = layoutAlignment.horizontal;
166 && alignment.horizontal != B_ALIGN_USE_FULL_WIDTH) {
189 // The view has height for width, so we do the horizontal alignment
192 && alignment.horizontal != B_ALIGN_USE_FULL_WIDTH) {
197 alignment.horizontal = B_ALIGN_USE_FULL_WIDTH;
245 // enforce horizontal limits; favor left edge
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/apps/cortex/DiagramView/
H A DDiagramItemGroup.h108 void SetItemAlignment(float horizontal, float vertical) argument
110 fItemAlignment.Set(horizontal, vertical);
113 void GetItemAlignment(float *horizontal, float *vertical);
H A DDiagramBox.h82 virtual void ResizeBy(float horizontal, float vertical);
H A DDiagramEndPoint.h148 float horizontal,
H A DDiagramEndPoint.cpp289 float horizontal,
293 m_frame.right += horizontal;
288 ResizeBy( float horizontal, float vertical) argument
/haiku/src/servers/app/decorator/
H A DDefaultWindowBehaviour.h96 void _SetBorderHighlights(int8 horizontal,
99 ServerCursor* _ResizeCursorFor(int8 horizontal,
101 void _SetResizeCursor(int8 horizontal,
H A DDefaultWindowBehaviour.cpp424 int8 horizontal, int8 vertical)
428 fHorizontal(horizontal),
695 int8 horizontal; local
697 _ComputeResizeDirection(x, y, horizontal, vertical);
700 horizontal = NONE;
705 if (horizontal != fHorizontal || vertical != fVertical) {
707 fHorizontal = horizontal;
1037 DefaultWindowBehaviour::_SetBorderHighlights(int8 horizontal, int8 vertical, argument
1047 switch (horizontal) {
1072 if (horizontal !
423 ResizeBorderState(DefaultWindowBehaviour& behavior, BPoint where, int8 horizontal, int8 vertical) argument
1103 _ResizeCursorFor(int8 horizontal, int8 vertical) argument
1134 _SetResizeCursor(int8 horizontal, int8 vertical) argument
[all...]
/haiku/src/apps/debuganalyzer/gui/chart/
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 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 DStringChartLegend.h32 float* horizontal, float* vertical);
H A DChart.h90 void _UpdateScrollBar(bool horizontal);
91 void _ScrollTo(float value, bool horizontal);
/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/headers/libs/alm/
H A DALMLayoutBuilder.h47 BALMLayoutBuilder& SetInsets(float horizontal, float vertical);
51 BALMLayoutBuilder& SetSpacing(float horizontal, float vertical);

Completed in 154 milliseconds

123