Lines Matching refs:height

195 	size.height = B_SIZE_UNSET;
238 *_height = size.height;
568 ResizeTo(Bounds().Width(), GroupLayout()->MinSize().height);
649 TransportControlGroup::_CreateSkipBackwardsShape(float height) const
653 float stopWidth = ceilf(height / 6);
655 shape->MoveTo(BPoint(-stopWidth, height));
656 shape->LineTo(BPoint(0, height));
661 shape->MoveTo(BPoint(0, height / 2));
662 shape->LineTo(BPoint(height, height));
663 shape->LineTo(BPoint(height, 0));
666 shape->MoveTo(BPoint(height, height / 2));
667 shape->LineTo(BPoint(height * 2, height));
668 shape->LineTo(BPoint(height * 2, 0));
676 TransportControlGroup::_CreateSkipForwardShape(float height) const
680 shape->MoveTo(BPoint(height, height / 2));
681 shape->LineTo(BPoint(0, height));
685 shape->MoveTo(BPoint(height * 2, height / 2));
686 shape->LineTo(BPoint(height, height));
687 shape->LineTo(BPoint(height, 0));
690 float stopWidth = ceilf(height / 6);
692 shape->MoveTo(BPoint(height * 2, height));
693 shape->LineTo(BPoint(height * 2 + stopWidth, height));
694 shape->LineTo(BPoint(height * 2 + stopWidth, 0));
695 shape->LineTo(BPoint(height * 2, 0));
703 TransportControlGroup::_CreateRewindShape(float height) const
707 shape->MoveTo(BPoint(0, height / 2));
708 shape->LineTo(BPoint(height, height));
709 shape->LineTo(BPoint(height, 0));
712 shape->MoveTo(BPoint(height, height / 2));
713 shape->LineTo(BPoint(height * 2, height));
714 shape->LineTo(BPoint(height * 2, 0));
722 TransportControlGroup::_CreateForwardShape(float height) const
726 shape->MoveTo(BPoint(height, height / 2));
727 shape->LineTo(BPoint(0, height));
731 shape->MoveTo(BPoint(height * 2, height / 2));
732 shape->LineTo(BPoint(height, height));
733 shape->LineTo(BPoint(height, 0));
741 TransportControlGroup::_CreatePlayShape(float height) const
745 float step = floorf(height / 8);
747 shape->MoveTo(BPoint(height + step, height / 2));
748 shape->LineTo(BPoint(-step, height + step));
757 TransportControlGroup::_CreatePauseShape(float height) const
761 float stemWidth = floorf(height / 3);
763 shape->MoveTo(BPoint(0, height));
764 shape->LineTo(BPoint(stemWidth, height));
769 shape->MoveTo(BPoint(height - stemWidth, height));
770 shape->LineTo(BPoint(height, height));
771 shape->LineTo(BPoint(height, 0));
772 shape->LineTo(BPoint(height - stemWidth, 0));
780 TransportControlGroup::_CreateStopShape(float height) const
784 shape->MoveTo(BPoint(0, height));
785 shape->LineTo(BPoint(height, height));
786 shape->LineTo(BPoint(height, 0));
795 add_bow(BShape* shape, float offset, float size, float height, float step)
803 shape->MoveTo(BPoint(offset, height / 2 + size));
806 BPoint(offset + outerControlWidth, height / 2 + size),
807 BPoint(offset + width, height / 2 + outerControlHeight),
808 BPoint(offset + width, height / 2)
812 BPoint(offset + width, height / 2 - outerControlHeight),
813 BPoint(offset + outerControlWidth, height / 2 - size),
814 BPoint(offset, height / 2 - size)
818 BPoint(offset + innerControlWidth, height / 2 - size),
819 BPoint(offset + width - step, height / 2 - innerControlHeight),
820 BPoint(offset + width - step, height / 2)
824 BPoint(offset + width - step, height / 2 + innerControlHeight),
825 BPoint(offset + innerControlWidth, height / 2 + size),
826 BPoint(offset, height / 2 + size)
833 TransportControlGroup::_CreateSpeakerShape(float height) const
837 float step = floorf(height / 8);
838 float magnetWidth = floorf(height / 5);
839 float chassieWidth = floorf(height / 1.5);
840 float chassieHeight = floorf(height / 4);
842 shape->MoveTo(BPoint(0, height - step));
843 shape->LineTo(BPoint(magnetWidth, height - step));
844 shape->LineTo(BPoint(magnetWidth, height / 2 + chassieHeight));
845 shape->LineTo(BPoint(magnetWidth + chassieWidth - step, height + step));
846 shape->LineTo(BPoint(magnetWidth + chassieWidth, height + step));
849 shape->LineTo(BPoint(magnetWidth, height / 2 - chassieHeight));
855 add_bow(shape, offset, 3 * step, height, step * 2);
857 add_bow(shape, offset, 5 * step, height, step * 2);
859 add_bow(shape, offset, 7 * step, height, step * 2);