Lines Matching refs:weight

79 	inline	ThisBuilder&		Add(BView* view, float weight);
81 inline ThisBuilder& Add(BLayoutItem* item, float weight);
85 float weight = 1.0f);
87 float weight = 1.0f);
89 float weight = 1.0f);
94 float weight = 1.0f);
96 float weight = 1.0f);
98 float weight = 1.0f);
102 float weight = 1.0f);
104 float weight = 1.0f);
106 inline CardBuilder AddCards(float weight = 1.0f);
108 float weight = 1.0f);
110 float weight = 1.0f);
112 inline ThisBuilder& AddGlue(float weight = 1.0f);
222 inline ThisBuilder& SetColumnWeight(int32 column, float weight);
223 inline ThisBuilder& SetRowWeight(int32 row, float weight);
261 inline ThisBuilder& Add(BView* view, float weight);
263 inline ThisBuilder& Add(BLayoutItem* item, float weight);
267 float weight = 1.0f);
269 float weight = 1.0f);
271 float weight = 1.0f);
276 float weight = 1.0f);
278 float weight = 1.0f);
280 float weight = 1.0f);
284 float weight = 1.0f);
286 float weight = 1.0f);
288 inline CardBuilder AddCards(float weight = 1.0f);
290 float weight = 1.0f);
292 float weight = 1.0f);
539 Group<ParentBuilder>::Add(BView* view, float weight)
541 fLayout->AddView(view, weight);
557 Group<ParentBuilder>::Add(BLayoutItem* item, float weight)
559 fLayout->AddItem(item, weight);
567 float weight)
571 fLayout->AddItem(builder.Layout(), weight);
578 Group<ParentBuilder>::AddGroup(BGroupView* groupView, float weight)
582 fLayout->AddItem(builder.Layout(), weight);
589 Group<ParentBuilder>::AddGroup(BGroupLayout* groupLayout, float weight)
593 fLayout->AddItem(builder.Layout(), weight);
601 float verticalSpacing, float weight)
605 fLayout->AddItem(builder.Layout(), weight);
612 Group<ParentBuilder>::AddGrid(BGridLayout* gridLayout, float weight)
616 fLayout->AddItem(builder.Layout(), weight);
623 Group<ParentBuilder>::AddGrid(BGridView* gridView, float weight)
627 fLayout->AddItem(builder.Layout(), weight);
635 float weight)
639 fLayout->AddView(builder.View(), weight);
646 Group<ParentBuilder>::AddSplit(BSplitView* splitView, float weight)
650 fLayout->AddView(builder.View(), weight);
657 Group<ParentBuilder>::AddCards(float weight)
661 fLayout->AddView(builder.View(), weight);
668 Group<ParentBuilder>::AddCards(BCardLayout* cardLayout, float weight)
672 fLayout->AddView(builder.View(), weight);
679 Group<ParentBuilder>::AddCards(BCardView* cardView, float weight)
683 fLayout->AddView(builder.View(), weight);
690 Group<ParentBuilder>::AddGlue(float weight)
692 fLayout->AddItem(BSpaceLayoutItem::CreateGlue(), weight);
1078 Grid<ParentBuilder>::SetColumnWeight(int32 column, float weight)
1080 fLayout->SetColumnWeight(column, weight);
1087 Grid<ParentBuilder>::SetRowWeight(int32 row, float weight)
1089 fLayout->SetRowWeight(row, weight);
1221 Split<ParentBuilder>::Add(BView* view, float weight)
1223 fView->AddChild(view, weight);
1239 Split<ParentBuilder>::Add(BLayoutItem* item, float weight)
1241 fView->AddChild(item, weight);
1249 float weight)
1253 fView->AddChild(builder.Layout(), weight);
1260 Split<ParentBuilder>::AddGroup(BGroupView* groupView, float weight)
1264 fView->AddChild(builder.Layout(), weight);
1271 Split<ParentBuilder>::AddGroup(BGroupLayout* groupLayout, float weight)
1275 fView->AddChild(builder.Layout(), weight);
1283 float weight)
1287 fView->AddChild(builder.Layout(), weight);
1294 Split<ParentBuilder>::AddGrid(BGridView* gridView, float weight)
1298 fView->AddChild(builder.Layout(), weight);
1305 Split<ParentBuilder>::AddGrid(BGridLayout* layout, float weight)
1309 fView->AddChild(builder.Layout(), weight);
1317 float weight)
1321 fView->AddChild(builder.View(), weight);
1328 Split<ParentBuilder>::AddCards(float weight)
1332 fView->AddChild(builder.View(), weight);
1339 Split<ParentBuilder>::AddCards(BCardLayout* cardLayout, float weight)
1343 fView->AddChild(builder.View(), weight);
1350 Split<ParentBuilder>::AddCards(BCardView* cardView, float weight)
1354 fView->AddChild(builder.View(), weight);